@charset "UTF-8";
/* Monda Regular (400) */
@font-face {
  font-family: "Monda";
  src: url("fonts/Monda-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Monda Medium (500) */
@font-face {
  font-family: "Monda";
  src: url("fonts/Monda-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Monda SemiBold (600) */
@font-face {
  font-family: "Monda";
  src: url("fonts/Monda-SemiBold.ttf") format("truetype"); /* lub Monda-Semibold.ttf */
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Monda Bold (700) */
@font-face {
  font-family: "Monda";
  src: url("fonts/Monda-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("fonts/Switzer-Light.woff2") format("woff2"), url("fonts/Switzer-Light.woff") format("woff"), url("fonts/Switzer-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("fonts/Switzer-Regular.woff2") format("woff2"), url("fonts/Switzer-Regular.woff") format("woff"), url("fonts/Switzer-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("fonts/Switzer-Medium.woff2") format("woff2"), url("fonts/Switzer-Medium.woff") format("woff"), url("fonts/Switzer-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("fonts/Switzer-Semibold.woff2") format("woff2"), url("fonts/Switzer-Semibold.woff") format("woff"), url("fonts/Switzer-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
/* ================= FORMULARZE ================ */
input[type=file]::-webkit-file-upload-button {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  cursor: pointer;
  padding: 0;
}

label {
  color: #1A1A1A;
  text-transform: none;
  margin: 5px 0;
  font-size: 14px;
}

span + label {
  margin-top: 0;
}

input,
select:not(.select2),
textarea,
.input-placeholder {
  margin: 0;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 2px;
  background: #fff;
  height: 46px;
  line-height: 1;
}

.submit-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
}
.submit-controls .button {
  width: 100%;
}

.submit-controls > div {
  width: auto;
  margin-right: 20px;
}

.submit-controls > div:last-child {
  margin-right: 0;
}

.submit-area {
  display: block;
  text-align: right;
}

.submit-area .button {
  margin: 0;
}

.input-wrapper {
  padding: 0 0 10px 0;
  width: 100%;
  position: relative;
}

.form-fields-wrapper {
  margin-right: -10px;
  width: 100%;
}

.columns .form-fields-wrapper {
  width: auto;
}

/* ================= formularze nowe ================ */
/* ---- placeholdery pól ---- */
input ::-webkit-input-placeholder,
textarea ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #333;
  opacity: 0.4;
}
input ::-moz-placeholder,
textarea ::-moz-placeholder {
  /* Firefox 19+ */
  color: #333;
  opacity: 0.4;
}
input :-ms-input-placeholder,
textarea :-ms-input-placeholder {
  /* IE 10+ */
  color: #333;
  opacity: 0.4;
}
input :-moz-placeholder,
textarea :-moz-placeholder {
  /* Firefox 18- */
  color: #333;
  opacity: 0.4;
}

.input-wrapper.floating-label {
  position: relative;
}

.input-wrapper.floating-label > label[for] {
  margin-top: 0;
  pointer-events: none;
}

.input-wrapper.floating-label > label[for]:first-child {
  position: absolute;
  top: 23px;
  transform: translate(0, -50%);
  left: 10px;
  line-height: 1;
  display: inline-block;
  padding: 2px;
  background: #fff;
  cursor: text;
  opacity: 0.5;
  z-index: 1;
  transition: all 200ms;
}

.input-wrapper.floating-label > label[for].active:first-child,
.input-wrapper.floating-label > label[for].stay-active:first-child {
  top: 0;
  left: 5px;
  opacity: 1;
  font-size: 0.7rem;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} /* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-number {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 138px;
  max-width: 138px;
}

.input-number input {
  width: 46px;
  text-align: center;
}

.input-number > span {
  height: 46px;
  width: 46px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  transition: all 300ms;
}

.input-number > span.down {
  border-top: 1px solid rgba(26, 26, 26, 0.15);
  border-left: 1px solid rgba(26, 26, 26, 0.15);
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
}

.input-number > span.up {
  border-top: 1px solid rgba(26, 26, 26, 0.15);
  border-right: 1px solid rgba(26, 26, 26, 0.15);
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
}

.input-number > span.up.disabled:after,
.input-number > span.down.disabled:after {
  line-height: 1;
}

.input-number > span.up:not(.disabled):after,
.input-number > span.down:not(.disabled):after {
  line-height: 1;
  opacity: 50%;
}

.input-number > span.up:after {
  content: url("graphics/commerce/plus.png");
}

.input-number > span.down:after {
  content: url("graphics/commerce/minus.png");
}

.input-number > span.down:hover,
.input-number > span.up:hover {
  background: #eee;
}

.select-placeholder {
  color: #999999;
}

/* ----- select ----- */
.s-hidden {
  visibility: hidden;
  padding-right: 10px;
}

.select:not(.select2) {
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  height: 46px;
  margin: 0;
  width: 100%;
}

.styledSelect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 0px 40px 0 10px;
  font-weight: normal;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#page-products_listing .styledSelect {
  border-radius: 5px;
  gap: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#page-products_listing .styledSelect ul, #page-products_listing .styledSelect li {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.styledSelect:after {
  content: "";
  background: url(graphics/svg/accordion-arrow-select.svg);
  border: none;
  width: 1.3333rem;
  height: 1.3333rem;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  right: 5px;
  top: 50%;
  transform: translate(0, -50%);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  position: absolute;
  pointer-events: none;
}

.styledSelect.active:after {
  transform: rotate(180deg) translate(0, 50%);
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0 0;
  padding: 0 0;
  list-style: none;
  border: 1px solid rgba(26, 26, 26, 0.15);
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options li {
  padding: 5px 10px;
  color: #81878d;
  margin: 3px;
  border-radius: 3px;
}

/* -- SELECT HOVER -- */
.options li:hover {
  background-color: #f6f6f9;
  color: #1A1A1A;
}

/* --- input type=radio, input type=checkbox --- */
input[type=checkbox] + label,
input[type=radio] + label {
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  cursor: pointer;
  margin: 0;
  line-height: 1.5;
}

input[type=checkbox] + label::before {
  content: " ";
  display: inline-block;
  vertical-align: 0.2em;
  width: 22px;
  max-width: 22px;
  min-width: 22px;
  height: 22px;
  margin-right: 10px;
  margin-top: 2px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 2px;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

input[type=checkbox]:checked + label::before {
  content: "✓";
  background: #000;
}

input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=radio] + label::before {
  content: " ";
  display: inline-block;
  vertical-align: 0.2em;
  width: 22px;
  height: 22px;
  max-width: 22px;
  min-width: 22px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 100%;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

input[type=radio]:checked + label::before {
  content: "✓";
  background: #000;
}

input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.checklist.rodo label {
  font-size: 0.65rem;
}

.checklist.wrapper {
  display: block;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 10px 10px;
}

.checklist.wrapper > label {
  margin-bottom: 10px;
}

.checklist.wrapper > label:last-child {
  margin-bottom: 0;
}

/* === DISABLED === */
input[type=checkbox][disabled] + label {
  opacity: 0.8;
}

input[type=checkbox][disabled] + label:before {
  background-color: #f0f0f0;
  opacity: 0.8;
}

input[type=radio][disabled] + label {
  opacity: 0.8;
}

input[type=radio][disabled] + label:before {
  background-color: #f0f0f0;
  opacity: 0.8;
}

input[disabled=disabled] {
  background-color: #f0f0f0;
}

/* === swith toggle === */
.onoffswitch {
  position: relative;
  width: 90px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  position: absolute;
  opacity: 0;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #1A1A1A;
  border-radius: 20px;
  display: block !important;
}

.onoffswitch-checkbox[disabled=""] + .onoffswitch-label {
  opacity: 0.6;
  pointer-events: none;
}

.onoffswitch-label:before {
  display: none !important;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: Monda, tahoma, arial, sans-serif;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "ON";
  padding-left: 10px;
  background-color: #04aa6d;
  color: #ffffff;
}

.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 10px;
  background-color: #eee;
  color: #1A1A1A;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  border: 1px solid #1A1A1A;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}

/* =============== zestawy pól ============== */
.input-combo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.input-combo > div {
  flex: 1;
  margin-right: 10px;
}

.input-combo > div:last-child {
  margin-right: 0;
}

.input-combo > div.post-code {
  flex: 0.5;
}

/* ================ Klasy specjalne ============= */
.question-label {
  display: block;
  margin-top: 20px;
}

span + .question-label {
  margin-top: 0;
}

/* ================ Wyszukiwarka ================== */
.simple-search-wrapper .button.search-button img {
  pointer-events: none;
}

.custom-file {
  cursor: pointer;
}

.custom-file > input {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.custom-file .ico {
  position: static;
  height: 35px;
  width: 35px;
  background-image: url("graphics/svg/drop.svg");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.custom-file-label {
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: flex-end;
}

.required-star {
  color: #D6134B;
}

/* ========== helpery w formularzu ========= */
.card.trzecia, .card.trzyrezta {
  border-right: 1px solid #ddd;
}

.product-card {
  border-bottom: 1px solid #ddd;
}

html,
body,
input,
textarea {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 0.8em 0;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 500;
}

h2 {
  font-size: 2.25rem;
  font-weight: 500;
}

h3 {
  font-size: 1.5em;
  line-height: 1.4;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
  font-weight: bold;
}

#START h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
}

#START h2 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 3rem;
  font-weight: 500;
}

#START p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

span.subtitle {
  color: #1A1A1A;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
}

.button.cta {
  height: 54px;
  font-weight: 600;
}

.container,
.container.alt {
  padding: 0 60px;
}

.social-sharing-module {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 60px;
  border-top: 1px solid #ddd;
}

.social-sharing-module > span.sharing-title {
  margin: 0;
  margin-right: 1.8em;
  font-size: 1.1em;
}

#copy_link_sharing {
  position: relative;
}

#copy_link_sharing:after {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #519c46;
  color: #fff;
  border-radius: 50%;
  transition: all 500ms;
  transform: scale(0);
}

#copy_link_sharing.link-copied:after {
  transform: scale(1);
}

.right-footer-section {
  display: flex;
  gap: 80px;
}

.links ul li {
  list-style: none;
  margin-left: 0;
  margin-bottom: 25px;
}

.links ul li a {
  text-decoration: none;
  transition: all 300ms;
}

.video-wrapper .mp4-video video {
  display: block;
  max-width: 100%;
}

.footer {
  text-align: center;
}

.header {
  max-width: 100%;
}

.header.center h2,
.header.center .text-wrapper {
  text-align: center;
}

.header.center .text-wrapper {
  margin: 0 auto;
}

.header.with-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
  flex-wrap: wrap;
}

.header.with-button .button {
  margin: 0;
  margin-bottom: 10px;
}

.header.with-button h2 {
  margin-bottom: 10px;
  margin-right: 30px;
}

.logo-box .thb {
  filter: grayscale(100%);
  transition: filter 600ms;
}

.logo-box:hover .thb {
  filter: grayscale(0);
}

.quote-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 150px 0;
}

.quote-section .container {
  position: relative;
  z-index: 1;
}

.quote-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.quote-section h2,
.quote-section blockquote,
.quote-section p,
.quote-section span,
.quote-section a {
  color: #fff;
}

.quote-section h2 {
  text-align: center;
}

.quote-section .header {
  padding-bottom: 0;
}

.quote-section blockquote,
.quote-section span.signature {
  text-align: center;
  display: block;
}

blockquote span.signature {
  text-transform: uppercase;
}

.quote-section .slick-next,
.quote-section .slick-prev {
  display: none !important;
}

.counter-wrapper .text-wrapper {
  margin: 0 auto;
  text-align: center;
}

.counter-section > div {
  position: relative;
}

.counter-section > div::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50px;
  bottom: 50px;
  width: 3px;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 1000ms;
}

.counter-section > div.onscreen::after {
  top: 20px;
  bottom: 20px;
  background-color: #fff;
}

.counter-section > div:last-child::after {
  display: none;
}

.counter-section > div:last-child {
  border-right: 0;
}

.counter-card {
  height: 283px;
  align-content: center;
}

.counter-card .content {
  text-align: center;
}

.counter-wrapper .columns > div {
  padding: 0 15px 0 15px;
}

.counter-wrapper .columns > div:first-child {
  padding-left: 0;
}

.counter-wrapper .columns > div:last-child {
  padding-right: 0;
}

.counter-card .content strong {
  line-height: 1.6;
  font-weight: 400;
  font-size: 1.2rem;
  display: block;
  color: #FFF;
}

.counter-card .content .value-wrapper .count,
.counter-card .content .value-wrapper .unit {
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  font-size: 3.2rem;
  font-variant-numeric: tabular-nums;
}

#page-article .counter-card .content .value-wrapper .count,
#page-article .counter-card .content .value-wrapper .unit,
#page-article .counter-card .content strong {
  color: #222;
}

.colage-box-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.colage-box-wrapper .colage-box {
  flex: 1;
  position: relative;
  text-decoration: none;
  transition: flex 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  /* ważne - tnie obraz do granic boxa */
}

/* Gdy cokolwiek jest hovered - wszystkie się lekko kurczą */
.colage-box-wrapper:hover .colage-box {
  flex: 0.7;
}

/* Najechany rośnie */
.colage-box-wrapper .colage-box:hover {
  flex: 1.6;
}

.colage-box-wrapper .colage-box .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.85;
  transition: opacity 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.colage-box-wrapper .colage-box:hover .image {
  opacity: 1;
}

.colage-box-wrapper .colage-box .content {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 60px 30px;
  z-index: 2;
  width: 100%;
  height: auto;
  background: linear-gradient(0deg, #1c2532 0%, rgba(28, 37, 50, 0) 100%);
  box-sizing: border-box;
}

.colage-box-wrapper .colage-box .content h4 {
  color: #fff;
  font-size: 1.8em;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.colage-box-wrapper .colage-box .content .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: all 500ms;
}

.colage-box-wrapper .colage-box .content .controls .button {
  font-size: 0.8rem;
  padding: 0;
  color: #fff;
}

.colage-box-wrapper .colage-box .content .controls .button.txt::after {
  display: none;
}

.colage-box-wrapper .colage-box .content .controls .button:last-child {
  border: 0;
}

#START .contact-data-form-window-section h3,
.contact-data-form-window-section h3 {
  text-align: left;
  font-size: 2.4rem;
}

.colage-box-wrapper .colage-box:hover .content .controls {
  opacity: 1;
  height: 50px;
}

.specyfication-table {
  width: 100%;
  table-layout: auto;
  /* ważne – pozwala komórkom ustalać szerokość dynamicznie */
  border-collapse: collapse;
}

.specyfication-table td.key {
  white-space: nowrap;
  /* zapobiega łamaniu tekstu */
}

.header-modules .button {
  margin: 0;
  min-width: 0;
}

.header-modules .phone-wrapper {
  margin-left: 30px;
}

.phone-wrapper .button .ico {
  padding: 10px;
}

.opSlider-control-prev,
.opSlider-control-next {
  display: none;
}

.banner-content h1,
.banner-content h2,
.banner-content h1 .subtitle,
.banner-content .text-wrapper,
.banner-content .controls {
  text-align: center;
  color: #fff !important;
}

#SYSTEM-FOOT {
  background: #1A1A1A;
}

#SYSTEM-FOOT .container {
  padding-top: 45px;
  padding-bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-section .container .text-wrapper ol {
  display: block;
}

.article-section.ordered-list .container .text-wrapper ol {
  counter-reset: item;
  display: block;
}

.article-section.ordered-list .container .text-wrapper li {
  display: block;
}

.ordered-list li::before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  margin-left: -1em;
}

#page-contactus .columns .contact_data h4:first-child,
#page-contactus .columns .form-wrapper h3:first-child {
  margin-top: 0;
}

#page-contactus .columns .form-wrapper h3 {
  font-size: 1.6em;
}

.company_name,
.add_company_name,
.address,
.phone,
.email,
.hours,
.add_descr,
.fax {
  display: block;
}

.company_name,
.add_company_name,
.address,
.phones-wrapper,
.emails-wrapper,
.hours,
.add_descr,
.fax {
  margin-bottom: 1em;
}

.contact-section-icon {
  overflow: hidden;
}

.contact-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.contact-box.small .contact-icon {
  align-items: center;
}

.contact-icon .icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin: 0;
  margin-right: 20px;
}

.contact-icon .button {
  margin: 0;
}

.contact-icon strong {
  display: block;
  margin-bottom: 5px;
  color: #1A1A1A;
  font-family: Monda, tahoma, arial, sans-serif;
}

.contact-icon .hours {
  margin-top: 0;
}

.contact-box-form-window-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}

.contact-box-form-window-wrapper .contact-box-content {
  padding: 70px;
  flex: 1;
}

.contact-box-form-window-wrapper .image-wrapper {
  width: 45%;
  box-sizing: border-box;
  margin-top: 70px;
  margin-right: 70px;
}

.contact-box-form-window-wrapper .contact_data {
  padding-top: 20px;
}

.contact-box-form-window-wrapper .contact-box-content .controls {
  padding-top: 30px;
}

.contact-box-form-window-wrapper .contact-icon {
  margin-bottom: 0;
}

.contact-box-form-window-wrapper .contact-icon a {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
}

.contact-box-form-window-wrapper .contact-icon .icon {
  margin-right: 10px;
}

.contact-box-form-window-wrapper .buttons {
  padding-top: 20px;
  margin-bottom: 40px;
  font-size: 1.25rem;
}
.contact-box-form-window-wrapper .buttons span {
  margin-bottom: 5px;
}

.contact-data-form-window-section .buttons .phone-wrapper {
  display: initial;
}

.contact-data-form-window-section .email-wrapper.show-email .email,
.contact-data-form-window-section .phone-wrapper.show-phone .phone {
  display: inline-flex;
}

.contact-data-form-window-section .email-wrapper.show-email .button.show-btn,
.contact-data-form-window-section .phone-wrapper.show-phone .button.show-btn {
  display: none;
}

.email-wrapper .email,
.phone-wrapper .phone {
  display: none;
}

.email-wrapper.show-email .email,
.phone-wrapper.show-phone .phone {
  display: flex;
}

.email-wrapper.show-email .button.show-btn,
.phone-wrapper.show-phone .button.show-btn {
  display: none;
}

.phone-number > a:hover {
  text-decoration: none;
}

.map iframe {
  width: 100% !important;
}

#page-contactus .contact-simple-layout {
  display: flex;
  gap: 30px;
  border: 1px solid #1A1A1A;
  padding: 30px;
  border-radius: 0px;
}
#page-contactus .contact-simple-layout .magicFormSubmit {
  margin-right: 0;
}
#page-contactus .contact-simple-layout > div.contact-form {
  width: 65%;
}
#page-contactus .contact-simple-layout > div.contact-content {
  width: 35%;
}

.form-fields-wrapper {
  overflow: visible;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.form-fields-wrapper > .col1,
.form-fields-wrapper > .col2 {
  float: left;
  width: 50%;
  box-sizing: border-box;
}

.form-fields-wrapper > .col1 {
  padding-right: 5px;
}

.form-fields-wrapper > .col2 {
  padding-left: 5px;
}

.form-fields-wrapper .input-wrapper.field-rodo {
  clear: both;
}

.form-fields-wrapper > .col2 .input-wrapper {
  height: calc(100% - 10px);
}

.form-fields-wrapper > .col2 textarea {
  min-height: 120px;
  height: 100%;
}

.form-fields-wrapper .input-wrapper input,
.form-fields-wrapper .input-wrapper textarea {
  display: block;
}

.contact-data-form-section {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border: 1px solid #ddd;
  border-radius: 0px;
}

.contact-data-form-section > div {
  box-sizing: border-box;
  padding: 50px;
}

.contact-data-form-section > div.contact-col {
  background: #eee;
  position: relative;
  width: 40%;
}

.contact-data-form-section > div.contact-col:after {
  content: "";
  position: absolute;
  top: 60px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #eee;
  transform: rotate(45deg);
}

.contact-data-form-section > div.add-module-col {
  width: 60%;
}

.contact-data-form-section h3,
#START .contact-data-form-section h3,
.contact-data-form-section h4,
#START .contact-data-form-section h4 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: left;
  font-size: 2.4rem;
}

.contact-data-form-window-section .main-section {
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.contact-data-form-window-section .main-section h2 {
  margin-top: 0;
}
.contact-data-form-window-section .main-section .buttons > div {
  display: flex;
  gap: 21px;
  align-items: center;
}
.contact-data-form-window-section .main-section .buttons > div img {
  max-width: 25px;
  max-height: 25px;
}

.contact-data-section .contact-box {
  padding: 50px 50px 20px 50px;
  border: 1px solid #ddd;
  border-radius: 0px;
  box-sizing: border-box;
  position: relative;
}

.contact-data-section .contact-box.small {
  padding-right: 50%;
}

.contact-data-section .contact-box.small .image-wrapper {
  position: absolute;
  top: -15px;
  right: 0;
  bottom: -15px;
  width: 40%;
}

.contact-data-section .contact-box.small .image-wrapper .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-data-section .form-fields-wrapper textarea {
  min-height: 179px;
}

.contact-data-section h3,
#START .contact-data-section h3,
.contact-data-section h4,
#START .contact-data-section h4 {
  margin-top: 0;
  text-align: left;
  font-size: 2.6rem;
}

.contact-data-section .phone-wrapper .button,
.contact-data-section .email-wrapper .button,
.contact-data-form-section .phone-wrapper .button,
.contact-data-form-section .email-wrapper .button {
  min-width: 180px;
}

.contact-data-form-section .contact-icon {
  align-items: center;
}

.reveal-phone-number-wrapper {
  position: relative;
}

.phone-window-wrapper {
  display: none;
  position: absolute;
  z-index: 1;
  top: 100%;
  right: 0;
  left: 0;
  padding: 15px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  margin-top: 5px;
}

@keyframes slidein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.phone-window-wrapper.show-me {
  display: block;
  animation-duration: 400ms;
  animation-name: slidein;
  animation-timing-function: ease-in-out;
  padding: 0;
}

.phone-window-wrapper.show-me a {
  padding: 15px;
  color: #111;
}

.blog-article {
  display: flex;
  justify-content: space-between;
}

#START .contact-data-form-window-section h3,
.contact-data-form-window-section h3 {
  margin-top: 0;
}

.mail-phone-combo {
  display: flex;
  gap: 5px;
}

#SYSTEM-FOOT .footer-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#SYSTEM-FOOT .footer-section .links ul li {
  margin-bottom: 10px;
}

.footer-section,
.footer-section a,
.contact-footer-section .address,
.contact-footer-section .tel-mail-combo,
.tel-mail-combo a,
.footer-section .phone-txt {
  color: #fff !important;
  font-weight: 300 !important;
}

.footer-section .tel-mail-combo {
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
}

.footer-section .contact_data {
  display: flex;
  gap: 80px;
}

.footer-section li a {
  font-size: 17px;
  font-weight: 400;
  color: #EDEDED !important;
}

.social-footer-section span {
  margin-bottom: 10px;
}

.social-footer-section .social-icon {
  width: 24px;
  height: 24px;
}

.social-links .social-icon img {
  width: 100%;
  height: 100%;
}

.contact_data .address {
  margin-bottom: 0 !important;
}

.social-footer-section {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-section .links ul {
  margin-bottom: 0;
}

.investment-map {
  position: relative;
  background-color: #ddd;
}

.investment-map h2 {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
}

.investment-map .button {
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
}

.investment-map img {
  display: block;
  width: 100%;
  height: 100%;
}

.point {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  z-index: auto !important;
  cursor: pointer;
}
.point::after {
  content: "";
  background-color: white;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  transition: background-color 0.3s;
  z-index: 0;
}
.point::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'><line x1='6.5' y1='0' x2='6.5' y2='13' stroke='%232A2A2A'/><line x1='13' y1='6.5' x2='0' y2='6.5' stroke='%232A2A2A'/></svg>") center/40% no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'><line x1='6.5' y1='0' x2='6.5' y2='13' stroke='%232A2A2A'/><line x1='13' y1='6.5' x2='0' y2='6.5' stroke='%232A2A2A'/></svg>") center/40% no-repeat;
  background-color: black;
  transition: background-color 0.3s;
}
.point:hover::after, .point:has(.show-me)::after, .point:has(.show-me2)::after {
  background-color: #1A1A1A;
}
.point:hover::before, .point:has(.show-me)::before, .point:has(.show-me2)::before {
  background-color: white;
}

.container.full.map-full-width {
  padding: 0;
  margin-bottom: 50px;
}

.map-tooltip {
  display: none;
  position: absolute;
  left: 0px;
  bottom: 45px;
  width: -moz-max-content;
  width: max-content;
  max-width: 330px;
  height: auto;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: #fff;
  border-radius: 5px;
  padding: 25px 15px;
  z-index: 3;
  cursor: default;
  box-sizing: border-box;
  align-items: center;
}

.map-tooltip.show-me,
.map-tooltip.show-me2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.map-tooltip .button {
  position: relative;
  height: 40px;
  width: 180px;
  padding: 10px;
  margin-top: 5px;
  justify-content: left;
  padding-left: 20px;
  margin-bottom: 15px;
  letter-spacing: normal;
  font-size: 14px;
}

.map-tooltip .button::after {
  background-image: url("graphics/svg/arrow-bw-right-orange.svg");
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 12px;
  width: 29px;
  height: 20px;
}

.map-tooltip .button:hover::after {
  right: -5px;
  transition: all 700ms;
}

.map-tooltip.flipped {
  left: -100px;
}

.title-tooltip {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: left;
}

.addres-tooltip {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

.loading-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loader {
  padding: 10px 20px;
  background: #fff;
  border-radius: 4px;
  color: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Optional: Add a spinning animation */
.loader::after {
  content: " ⠋";
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    content: " ⠋";
  }
  20% {
    content: " ⠙";
  }
  40% {
    content: " ⠹";
  }
  60% {
    content: " ⠸";
  }
  80% {
    content: " ⠼";
  }
  100% {
    content: " ⠴";
  }
}
nav.desktop .nav-button > a span {
  position: relative;
}

nav.desktop .nav-button > a span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 2px;
  width: 0;
  background: #1A1A1A;
  transition: width 300ms ease;
}

nav.desktop .nav-button > a:hover span:after {
  width: 100%;
}

nav.desktop .nav-button > a:hover span:after,
nav.desktop .nav-button.urhere > a span:after {
  height: 2px;
}

.multiblocks_slider.second_variant .splide__track {
  overflow: visible;
}
.multiblocks_slider.second_variant .splide__track::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  bottom: -10px;
  width: 2000px;
  background-color: white;
  z-index: 1;
}

.splide__pagination {
  bottom: -1em;
}

.splide__pagination {
  justify-content: flex-start;
}

.splide__pagination__page {
  width: 40px;
  border-radius: 5px;
  height: 5px;
  margin-right: 10px;
  background: rgba(255, 0, 0, 0.4431372549);
}

.splide__pagination__page.is-active {
  background: #0f91fd;
  /* Highlight for active or progress dots */
  transform: none;
}

.scroll_trigger_animate #scroll-container {
  display: flex;
  gap: 4rem;
  justify-content: center;
  padding: 4rem 0;
}
.scroll_trigger_animate .trigger_content {
  max-width: 700px;
  width: 100%;
  display: flex;
  gap: 4rem;
  flex-direction: column;
  align-items: center;
}
.scroll_trigger_animate .trigger_card {
  width: 100%;
  min-height: 60vh;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.scroll_trigger_animate .trigger_card h2,
.scroll_trigger_animate .trigger_card p {
  margin: 0 !important;
}
.scroll_trigger_animate .new_sticky-wrapper {
  flex-shrink: 0;
  position: relative;
  height: 100vh;
  width: 570px;
  display: block;
}
.scroll_trigger_animate .trigger_card h2,
.scroll_trigger_animate .trigger_card p {
  text-align: center;
}
.scroll_trigger_animate .sticky-box {
  position: fixed;
  width: 570px;
  height: 570px;
  min-height: 570px;
  min-width: 570px;
  border-radius: 12px;
  padding: 1.5rem;
  color: white;
}

#scroll_trigger_animate {
  transition: background-color 0.3s ease;
}

.sticky-box {
  position: fixed;
  width: 570px;
  height: 570px;
  overflow: hidden;
  border-radius: 12px;
}

.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.bg-layer.current {
  opacity: 1;
  z-index: 1;
}

.bg-layer.next {
  opacity: 0;
  z-index: 2;
}

.button {
  margin-bottom: 0;
}

.text_section {
  text-align: center;
}
.text_section .text-wrapper {
  text-align: center;
  margin: 0 auto;
}
.text_section .text-wrapper p {
  margin-bottom: 0;
}

.img_links {
  gap: 100px;
  display: flex;
  align-items: center;
}
.img_links .right {
  text-align: left;
  width: 100%;
  max-width: 700px;
}
.img_links .right .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.img_links .right .content img {
  width: 12px;
  height: 21px;
}
.img_links .right p {
  margin-bottom: 2em;
}
.img_links .right .link {
  display: block;
  padding: 25px 0;
  border-top: 1px solid #1A1A1A;
}
.img_links .right .link h4 {
  margin: 0;
  font-weight: 500;
}
.img_links .right .link:last-of-type {
  border-bottom: 1px solid #1A1A1A;
}

.accordeon h2 {
  margin-top: 0;
}
.accordeon .text-wrapper {
  padding-bottom: 30px;
}
.accordeon {
  gap: 100px;
  display: flex;
  flex-direction: row-reverse;
}
.accordeon .accordion-toggle {
  cursor: pointer;
}
.accordeon .right {
  text-align: left;
  width: 100%;
  max-width: 700px;
}
.accordeon .right .text-wrpapper {
  margin-bottom: 40px;
}
.accordeon .right .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.accordeon .right .accordion-card {
  display: block;
  padding: 25px 0;
  border-top: 1px solid #1A1A1A;
}
.accordeon .right .accordion-card h4 {
  margin: 0;
  font-weight: 500;
}
.accordeon .right .link:last-child {
  border-bottom: 1px solid #1A1A1A;
}

.accordeon.reverse {
  flex-direction: row;
}

.accordion-icon-svg {
  display: inline-block;
  transition: background 0.2s;
  z-index: 2;
}

.accordion-icon-svg svg {
  pointer-events: none;
}

.accordion-content {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  padding-right: 60px;
}

.svg-line {
  transition: transform 0.3s cubic-bezier(0.4, 2, 0.3, 1), opacity 0.3s;
  transform-origin: 24px 24px;
}

.accordion-card.active .svg-vertical {
  transform: rotate(90deg);
}

.accordion-card.active .svg-horizontal {
  opacity: 0;
}

.projects_listing_module .image-wrapper .image img,
#page-knowledge_listing .image-wrapper .image img,
.relation-products .image-wrapper .image img {
  transition: transform 0.3s ease-in-out;
}
.projects_listing_module .image-wrapper .image img:hover,
#page-knowledge_listing .image-wrapper .image img:hover,
.relation-products .image-wrapper .image img:hover {
  transform: scale(1.1);
}
.projects_listing_module .header,
#page-knowledge_listing .header,
.relation-products .header {
  padding-bottom: 30px;
}
.projects_listing_module .card h3,
#page-knowledge_listing .card h3,
.relation-products .card h3 {
  margin: 25px 0 30px 0;
  font-weight: 500;
  line-height: 1.4;
}
.projects_listing_module .image-wrapper,
#page-knowledge_listing .image-wrapper,
.relation-products .image-wrapper {
  margin-bottom: 0;
}
.projects_listing_module .descr,
#page-knowledge_listing .descr,
.relation-products .descr {
  margin-top: -15px;
}

.copyright {
  background-color: #252525;
  padding: 35px 100px;
  text-align: center;
  color: white;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

.PAGE-HEADER {
  margin-bottom: 100px;
}

.PAGE-HEADER .container .breadcrumbs {
  font-size: 1rem;
  font-weight: 400;
}
.PAGE-HEADER .container .breadcrumbs span {
  font-weight: 500;
  color: #1A1A1A;
}
.PAGE-HEADER .container h1 {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.v-separator {
  vertical-align: middle;
  align-self: center;
  color: rgba(26, 26, 26, 0.1490196078);
  font-weight: 400;
}

.under_header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.under_header .button {
  margin-right: 0;
}

.project_details {
  border: 1px solid rgba(26, 26, 26, 0.1490196078);
  padding: 14px 24px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  height: 50px;
  box-sizing: border-box;
  border-radius: 5px;
}
.project_details .detail {
  display: flex;
  align-items: center;
}
.project_details .detail img {
  margin-right: 10px;
  opacity: 70%;
}
.project_details .detail .title {
  opacity: 70%;
  font-weight: 400;
}
.project_details .detail .value {
  font-weight: 500;
  margin-left: 5px;
  font-size: 20px;
}

.gallery_slider {
  margin-top: 90px;
}

#page-product #overview h2 {
  margin-top: 0;
}
#page-product .section-container {
  padding: 80px 20px;
}
#page-product .narrow-container {
  max-width: 1180px;
  margin: 0 auto;
}
#page-product .special-container {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  gap: 170px;
}
#page-product .toc {
  width: 300px;
  position: sticky;
  top: 100px;
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
}
#page-product .toc .button {
  width: 100%;
  margin: 0;
  margin-top: 15px;
}
#page-product .toc .number {
  font-size: 1rem;
  font-weight: 400;
}
#page-product .toc a:first-child {
  padding-top: 0;
}
#page-product .toc a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  font-weight: 500;
  font-size: 1.25rem;
  color: rgba(26, 26, 26, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
}
#page-product .toc a:last-of-type {
  border-bottom: 0;
}
#page-product .toc a.active {
  color: black;
}
#page-product .toc a:hover {
  text-decoration: underline;
}
#page-product .content {
  flex: 1;
}
#page-product .badge {
  display: block;
  background: #eee;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}

#page-product #CANVAS {
  overflow: visible;
}

table tr td,
table tr th,
table {
  border-right: 0;
  border-left: 0;
  border-top: 0;
}

table tr:last-child td {
  border-bottom: 0;
}

.specyfication-table td.key {
  text-transform: none;
  font-weight: 400;
  font-size: 1rem;
  padding-left: 0;
}

.specyfication-table.divided tbody {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  width: 100%;
}
.specyfication-table.divided tbody td,
.specyfication-table.divided tbody th {
  border-bottom: 1px solid #ddd;
  padding: 12px 8px;
}

td.value {
  text-transform: none;
  text-align: right;
  font-weight: 500;
  font-size: 1rem;
  padding-right: 0;
}

.custom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.custom-gallery-grid .grid-item {
  position: relative;
  padding-top: 100%;
  /* 1:1 ratio */
  background-color: #eee;
  border-radius: 0px;
  overflow: hidden;
}
.custom-gallery-grid .grid-item-large {
  grid-column: span 2;
  padding-top: 50%;
  /* 2:1 ratio */
}
.custom-gallery-grid .grid-item a.image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}
.custom-gallery-grid .grid-item a.image:hover {
  transform: scale(1.1);
}
.custom-gallery-grid .grid-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: Monda, tahoma, arial, sans-serif;
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  z-index: 1;
}

#page-product .contact-data-form-window-section {
  max-width: 1180px;
  margin: 0 auto;
}

.offer_number.label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: white;
  border-radius: 2px;
  height: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  z-index: 1;
  font-size: 1rem;
  font-weight: 400;
}

.link-file {
  border-radius: 5px;
  border: 1px solid #1A1A1A;
  padding: 15px;
}

#TOP .container {
  padding: 0 45px;
}

.splide__arrow {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  opacity: 1;
  transition: all 300ms;
}

#page-product .gallery_slider .splide__arrow--prev {
  left: 45px;
}
#page-product .gallery_slider .splide__arrow--next {
  right: 45px;
}
#page-product .relation-products .splide__arrow {
  border: 2px solid #1a1a1a;
}
#page-product .relation-products .splide__arrow--prev {
  left: -2%;
  top: 35%;
}
#page-product .relation-products .splide__arrow--next {
  right: -2%;
  top: 35%;
}

.cb-related_pages .splide .splide__arrow {
  border: 2px solid #1a1a1a;
}
.cb-related_pages .splide .splide__arrow--prev {
  left: -25px;
  top: 30%;
}
.cb-related_pages .splide .splide__arrow--next {
  right: -25px;
  top: 30%;
}

.card .project_details {
  padding: 0;
  border: 0;
  height: auto;
  margin-top: 25px;
}
.card .project_details .value {
  font-weight: 400;
}
.card .project_details .detail img {
  margin-right: 5px;
}

#page-contactus .PAGE-HEADER h1 {
  position: relative;
}
#page-contactus .page-section:has(.contact-data-form-window-section) {
  display: none;
}
#page-contactus .form-wrapper .custom-file img {
  display: none;
}
#page-contactus .address,
#page-contactus .phones-wrapper,
#page-contactus .emails-wrapper {
  margin-bottom: 4px !important;
}
#page-contactus .address > div,
#page-contactus .phones-wrapper > div,
#page-contactus .emails-wrapper > div {
  display: flex;
  gap: 21px;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 2;
  color: #000;
}
#page-contactus .address > div img,
#page-contactus .phones-wrapper > div img,
#page-contactus .emails-wrapper > div img {
  max-width: 25px;
  max-height: 25px;
}
#page-contactus .contact_data_left p {
  font-size: 20px;
  font-weight: 600;
  color: #666;
  max-width: 650px;
}
#page-contactus .contact_data_contactus {
  display: flex;
  align-items: center;
  gap: 70px;
}
#page-contactus .contact_data_contactus .contact_data_left {
  max-width: 666px;
}
#page-contactus .contact_data_contactus .form-wrapper {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  width: 50%;
  max-width: 500px;
}
#page-contactus .contact_data_contactus .company_name {
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
#page-contactus .form-fields-wrapper {
  overflow: visible;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#page-contactus .contact_data_contactus .phones-wrapper,
#page-contactus .contact_data_contactus .emails-wrapper {
  width: auto;
}
#page-contactus .contact_data_contactus .phone-wrapper,
#page-contactus .contact_data_contactus .email-wrapper {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  gap: 10px;
  align-items: center;
}
#page-contactus .contact_data_contactus .address,
#page-contactus .contact_data_contactus p,
#page-contactus .contact_data_contactus .emails-wrapper {
  margin-bottom: 40px;
}
#page-contactus .contact_data_contactus .phone-wrapper .phone-txt,
#page-contactus .contact_data_contactus .phone-wrapper .email,
#page-contactus .contact_data_contactus .email-wrapper .phone-txt,
#page-contactus .contact_data_contactus .email-wrapper .email {
  overflow: visible;
  text-overflow: unset;
  width: auto;
  font-weight: 500;
  font-size: 1.5rem;
}
#page-contactus .submit-controls .button {
  margin: 0;
}

#product_configurator_window .question label,
#product_configurator_window .order_form .input-wrapper.check label {
  position: relative;
  padding-left: 26px;
  /* miejsce na pseudo-element */
  cursor: pointer;
  display: flex;
  align-items: center;
}
#product_configurator_window .question,
#product_configurator_window .order_form .input-wrapper.check {
  /* Stylizacja ramki */
}
#product_configurator_window .question label::before,
#product_configurator_window .order_form .input-wrapper.check label::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  z-index: 1;
}
#product_configurator_window .question label:has(input[type=radio]:checked),
#product_configurator_window .order_form .input-wrapper.check label:has(input[type=radio]:checked) {
  border: 1px solid #1a1a1a;
}
#product_configurator_window .question,
#product_configurator_window .order_form .input-wrapper.check {
  /* Stylizacja zaznaczenia */
}
#product_configurator_window .question label:has(input[type=radio]:checked)::after,
#product_configurator_window .order_form .input-wrapper.check label:has(input[type=radio]:checked)::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 13px;
  width: 9px;
  height: 9px;
  background: #1a1a1a;
  border-radius: 50%;
  z-index: 1;
}
#product_configurator_window .question label,
#product_configurator_window .order_form .input-wrapper.check label {
  display: flex;
  gap: 15px;
  padding: 10px;
  border: 1px solid rgba(26, 26, 26, 0.1490196078);
  border-radius: 5px;
  margin: 10px 0 0 0;
}
#product_configurator_window .question,
#product_configurator_window .order_form .input-wrapper.check {
  /* Styl ramki ogólnej */
}
#product_configurator_window .question label.checkbox,
#product_configurator_window .order_form .input-wrapper.check label.checkbox {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border: 1px solid rgba(26, 26, 26, 0.1490196078);
  border-radius: 5px;
  margin: 10px 0 0 0;
}
#product_configurator_window .question,
#product_configurator_window .order_form .input-wrapper.check {
  /* Kwadratowa ramka 15x15 */
}
#product_configurator_window .question label.checkbox::before,
#product_configurator_window .order_form .input-wrapper.check label.checkbox::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 2px;
  /* delikatne zaokrąglenie */
  background: #fff;
  box-sizing: border-box;
  z-index: 1;
}
#product_configurator_window .question,
#product_configurator_window .order_form .input-wrapper.check {
  /* Styl aktywnego labela */
}
#product_configurator_window .question label.checkbox:has(input[type=checkbox]:checked),
#product_configurator_window .order_form .input-wrapper.check label.checkbox:has(input[type=checkbox]:checked) {
  border: 1px solid #1a1a1a;
}
#product_configurator_window .question label.checkbox:has(input[type=checkbox]:checked)::before,
#product_configurator_window .order_form .input-wrapper.check label.checkbox:has(input[type=checkbox]:checked)::before {
  background: #1a1a1a;
}
#product_configurator_window .question,
#product_configurator_window .order_form .input-wrapper.check {
  /* Wewnętrzny zaznaczony kwadrat */
}
#product_configurator_window .question label.checkbox:has(input[type=checkbox]:checked)::after,
#product_configurator_window .order_form .input-wrapper.check label.checkbox:has(input[type=checkbox]:checked)::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 15px;
  width: 8px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 2px;
  z-index: 2;
  background-image: url("graphics/svg/check.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
#product_configurator_window .order_form .input-wrapper.check label {
  border: 0 !important;
  padding: 0 !important;
  padding-left: 25px !important;
  gap: 5px !important;
}
#product_configurator_window .order_form .input-wrapper.check label.checkbox::before {
  right: auto !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
#product_configurator_window .order_form .input-wrapper.check label.checkbox:has(input[type=checkbox]:checked)::after {
  right: auto !important;
  left: 3px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
#product_configurator_window .window {
  width: 100vw;
  height: 100vh;
  max-width: 80vw;
  max-height: 80vh;
}
#product_configurator_window .window-content {
  padding: 0;
  overflow-y: auto;
}
#product_configurator_window .config-layout {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}
#product_configurator_window .config-left {
  width: 100%;
}
#product_configurator_window .config-right {
  min-width: 550px;
  position: relative;
}
#product_configurator_window .config-top-nav {
  box-sizing: border-box;
  height: 45px;
  background: #fff;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#product_configurator_window .nav-bar-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
}
#product_configurator_window .nav-bar-wrapper > span {
  display: inline-block;
  width: 15px;
  height: 4px;
  border-radius: 3px;
  background: #eee;
  margin-right: 8px;
}
#product_configurator_window .nav-bar-wrapper > span.urhere {
  background: #1a1a1a;
}
#product_configurator_window .product_image_mobile {
  display: none;
}
#product_configurator_window .header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 17px 25px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1490196078);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 100px;
  text-align: left;
}
#product_configurator_window .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  box-sizing: border-box;
  padding: 25px;
  border-top: 1px solid rgba(26, 26, 26, 0.1490196078);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  z-index: 2;
}
#product_configurator_window .bottom .price {
  font-size: 1.5rem;
  font-weight: 500;
}
#product_configurator_window .bottom .content.green-alert,
#product_configurator_window .bottom .content.red-alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
}
#product_configurator_window .bottom .content.green-alert h2,
#product_configurator_window .bottom .content.red-alert h2 {
  margin-bottom: 0;
}
#product_configurator_window .bottom .content.green-alert span,
#product_configurator_window .bottom .content.red-alert span {
  max-width: 410px;
}
#product_configurator_window .bottom .controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
#product_configurator_window .bottom .controls .button {
  margin: 0;
  min-width: 152px;
}
#product_configurator_window .bottom .controls .button.alt img {
  transform: scaleX(-1);
}
#product_configurator_window .bottom .controls.wide {
  width: 100%;
}
#product_configurator_window .bottom .controls.wide .button {
  flex: 1;
  min-width: auto;
}
#product_configurator_window .content-inner h4:first-of-type {
  padding-top: 0;
}
#product_configurator_window .content {
  top: 60px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  padding: 25px;
  overflow-y: auto;
  height: auto;
  scrollbar-color: rgba(26, 26, 26, 0.2) transparent;
}
#product_configurator_window .content h3 {
  margin-top: 0;
  margin-bottom: 25px;
  text-align: left;
  font-weight: 500;
  font-size: 1.5rem;
}
#product_configurator_window .content h4 {
  text-align: left;
  padding-top: 25px;
  border-top: 1px solid rgba(26, 26, 26, 0.1490196078);
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1rem;
}
#product_configurator_window .content {
  /* Ramka 15x15 */
}
#product_configurator_window .content .image-wrapper {
  border-radius: 3px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 75px;
  height: 75px;
  background-color: #f6f7f9;
}
#product_configurator_window .content .image-wrapper img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
#product_configurator_window .content .image-wrapper.big-img {
  width: 160px;
  min-width: 160px;
  height: 75px;
}
#product_configurator_window .content .image-wrapper.big-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#product_configurator_window .content .answer_text {
  text-align: left;
  display: block;
  font-weight: 400;
  line-height: 1.4;
  font-size: 15px;
  margin-bottom: 3px;
}
#product_configurator_window .content .answer_descr {
  display: block;
  line-height: 1.4;
  font-size: 13px;
  color: rgba(26, 26, 26, 0.6980392157);
}
#product_configurator_window .content h4:first-of-type {
  border-top: 0;
  margin-top: 0;
}
#product_configurator_window .nav-header {
  display: flex;
  align-items: center;
  gap: 25px;
}
#product_configurator_window .window-close {
  position: static;
  transform: none;
  background: none;
  width: auto;
  height: auto;
}

#product_configurator_window #pdf_window .window,
#pdf_window .window {
  width: 400px;
  height: 300px;
}
#product_configurator_window #pdf_window .window-header,
#pdf_window .window-header {
  padding: 17px 25px;
  height: 50px;
  box-sizing: border-box;
}
#product_configurator_window #pdf_window .window-content,
#pdf_window .window-content {
  padding: 0px 25px;
  top: 50px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#product_configurator_window #pdf_window .window-content h3,
#pdf_window .window-content h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 24px;
  text-align: left;
  font-weight: 500;
}
#product_configurator_window #pdf_window .window-content p,
#pdf_window .window-content p {
  margin: 0;
}
#product_configurator_window #pdf_window .window-footer .button,
#pdf_window .window-footer .button {
  width: 100%;
  margin: 0;
}
#product_configurator_window #pdf_window .window-close,
#pdf_window .window-close {
  top: 27px;
  right: 15px;
  width: 40px;
  height: 40px;
  z-index: 105;
  transform: translate(0, -50%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.stany_dew {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
.stany_dew .stan {
  background-color: #f6f7f9;
  border: 1px solid rgba(26, 26, 26, 0.1490196078);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 15px;
  font-size: 1rem;
  line-height: 1.4;
  flex: 1;
}
.stany_dew .stan .od {
  font-weight: 400;
  font-size: 1rem;
  margin-right: 3px;
}
.stany_dew .stan .price {
  font-weight: 500;
  font-size: 1.5rem;
  margin-top: 25px;
}
.stany_dew .stan img {
  width: 18px;
  height: 18px;
  margin-bottom: 10px;
}

#page-product .article-section {
  position: relative;
}

.hashpoint {
  position: absolute;
  top: -70px;
}

.heading h2 {
  margin-top: 0;
}

#product_configurator_window .additional_price {
  color: rgba(26, 26, 26, 0.5019607843);
}
#product_configurator_window p.description {
  margin-bottom: 35px;
  text-align: left;
  font-size: 14px;
}
#product_configurator_window .order_form label {
  text-align: left;
}
#product_configurator_window .order_form input {
  height: 40px;
}
#product_configurator_window .order_form input,
#product_configurator_window .order_form textarea {
  border-radius: 5px;
}

#product_configurator_window .summary-table tr td,
#product_configurator_window .summary-table tr th {
  border: none;
}
#product_configurator_window .summary-table td {
  text-align: left;
  padding: 0;
}
#product_configurator_window .summary-table td.key {
  font-weight: 400;
  font-size: 14px;
}
#product_configurator_window .summary-table td.key .title {
  color: rgba(26, 26, 26, 0.6980392157);
}
#product_configurator_window .summary-table tr td.last {
  padding-bottom: 10px;
}
#product_configurator_window .summary-table tr.total td {
  border-top: 1px solid #1a1a1a;
}
#product_configurator_window .summary-table tr.total td.value {
  font-weight: 500;
  font-size: 1.5rem;
}
#product_configurator_window .summary-table tr.total td.key {
  font-weight: 500;
  font-size: 1rem;
}
#product_configurator_window .summary-table td.value {
  text-align: right;
  font-weight: 400;
  font-size: 14px;
}
#product_configurator_window .summary-table h4 {
  border-top: 1px solid rgba(26, 26, 26, 0.1490196078) !important;
  margin-top: 20px !important;
  padding-top: 20px !important;
}

.select2-container {
  z-index: 100000 !important;
}

.select2.search,
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-results__option,
.select2-container--default .select2-results__option--selected {
  text-align: left !important;
  margin-left: 0 !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 40px !important;
  box-sizing: border-box;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 16px !important;
}

.select2-container .select2-selection--single {
  height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px !important;
}

.select2-search__field {
  height: 30px !important;
  border-radius: 5px;
}

.download_pdf {
  width: 100%;
  margin: 30px 0;
}

.klauzule {
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  line-height: 1.6;
}

.breadcrumbs a,
.breadcrumbs span {
  vertical-align: middle;
}

#product_configurator_window .question label.checkbox,
#product_configurator_window .order_form .input-wrapper.check label.checkbox {
  padding-right: 30px;
}

.listing-h3 {
  margin-bottom: 10px !important;
}

#page-error .cb-container .text-wrapper {
  text-align: center;
  margin: 0 auto;
}

#BANER-CONTENT {
  max-width: 1920px;
}
#BANER-CONTENT .photo-section {
  padding-bottom: 90vh;
}
#BANER-CONTENT .footer {
  padding-top: 40px;
}

#TOP {
  height: 100px;
}

#TOP::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 0.35), transparent 95%);
}

#START #TOP::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 0.35), transparent 95%);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  animation: topLineReveal 1s ease forwards;
  animation-delay: 500ms;
}

@keyframes topLineReveal {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
#TOP.sticked #logo {
  height: 40px;
  transition: all 300ms ease-in-out;
}
#TOP.sticked #logo .primary-logo {
  max-height: 40px;
  transition: all 300ms ease-in-out;
}

.contact-data-form-window-section .buttons span {
  position: relative;
}

.contact-data-form-window-section span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 2px;
  width: 0;
  background: #1A1A1A;
  transition: width 300ms ease;
}

.contact-data-form-window-section > a:hover span:after {
  width: 100%;
  height: 2px;
}

.contact-data-form-window-section .main-section p {
  color: #666666;
}
.contact-data-form-window-section .buttons > div {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 24px;
}
.contact-data-form-window-section .buttons > div:last-child {
  margin-bottom: 0;
}
.contact-data-form-window-section .email,
.contact-data-form-window-section .phone-outer {
  font-weight: 500;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.contact-data-form-window-section .email a::after,
.contact-data-form-window-section .email .phone-txt::after,
.contact-data-form-window-section .phone-outer a::after,
.contact-data-form-window-section .phone-outer .phone-txt::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 2px;
  width: 0;
  background: #1A1A1A;
  transition: width 300ms ease;
}
.contact-data-form-window-section .email:hover a::after,
.contact-data-form-window-section .phone-outer:hover .phone-txt::after {
  width: 100%;
  height: 2px;
}

.timeline-mod h2 {
  margin-bottom: 40px;
}

.timeline-wrapper {
  position: relative;
  padding-left: 105px;
}
.timeline-wrapper .timeline-block {
  position: relative;
  border: 1px solid rgba(128, 128, 128, 0.7607843137);
  background-color: #f6f7f9;
  border-radius: 5px;
  padding: 35px;
  margin-bottom: 40px;
}
.timeline-wrapper .timeline-block::before {
  content: "";
  display: block;
  position: absolute;
  left: -83px;
  top: 22px;
  height: calc(100% + 40px);
  width: 1px;
  background-color: rgba(128, 128, 128, 0.7607843137);
}
.timeline-wrapper .timeline-block:last-child::before {
  display: none;
}
.timeline-wrapper .timeline-block .h3 {
  margin-top: 0;
  font-size: 1.5em;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.timeline-wrapper .timeline-block p {
  margin-bottom: 0;
}
.timeline-wrapper .circle {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -83px;
  width: 45px;
  height: 45px;
  background-color: white;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(128, 128, 128, 0.7607843137);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  font-family: Monda, tahoma, arial, sans-serif;
  color: rgba(26, 26, 26, 0.6);
}

.timeline-wrapper .timeline-block:last-child {
  margin-bottom: 0;
}

#START .contact-data-form-window-section {
  max-width: none;
}

.contact-data-form-window-section {
  max-width: 1180px;
  margin: 0 auto;
}
.contact-data-form-window-section .container {
  padding: 0;
}

.PAGE-HEADER .container .breadcrumbs {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.hashpoint {
  position: relative;
  top: -100px;
  height: 0;
}

.listing-tile-wrapper > div {
  padding-bottom: 30px;
}

.listing-tile-wrapper > div .tile {
  padding-bottom: 30px;
}

.investment-map h2,
.investment-map .button {
  display: none;
}

#START .investment-map h2,
#START .investment-map .button {
  display: flex;
}

#config-loader.show-me {
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4901960784);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.spinner-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.relation-products .card h3,
#products-list-wrapper .card h3 {
  min-height: 2lh;
}
.relation-products .image-wrapper .image img,
#products-list-wrapper .image-wrapper .image img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-content .text-wrapper {
  margin: 0 auto;
}

#START .banner-content {
  padding-top: 0px;
}
#START #BANER-CONTENT .banner-content .controls {
  margin-top: 82px;
}

#START .banner-content h1 .subtitle {
  margin-top: 0;
  font-size: 40px;
}

#START .banner-content .text-wrapper p {
  font-size: 19px;
  margin-bottom: 0;
  line-height: 28px;
}

.columns:has(div > .investmentCard) {
  gap: 120px;
}

.container-wrapper .container .columns.x3 > div {
  padding-bottom: 0px;
}

.investmentCard {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.investmentCard .investment-content,
.investmentCard .investment-footer {
  display: flex;
  gap: 60px;
}
.investmentCard .investment-content .left-side,
.investmentCard .investment-footer .left-side {
  width: 57%;
}
.investmentCard .investment-content .left-side .image-wrapper img,
.investmentCard .investment-footer .left-side .image-wrapper img {
  max-height: 450px;
  height: 450px;
}
.investmentCard .investment-content .left-side .icon-text,
.investmentCard .investment-footer .left-side .icon-text {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 33.33%;
}
.investmentCard .investment-content .left-side .icon-text .text,
.investmentCard .investment-footer .left-side .icon-text .text {
  font-size: 18px;
  font-weight: bold;
  max-width: 150px;
}
.investmentCard .investment-content .left-side .icon-text .icon-wrapper,
.investmentCard .investment-footer .left-side .icon-text .icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
}
.investmentCard .investment-content .left-side .icon-text .icon-wrapper img,
.investmentCard .investment-footer .left-side .icon-text .icon-wrapper img {
  width: 100%;
  height: 100%;
}
.investmentCard .investment-content .right-side,
.investmentCard .investment-footer .right-side {
  flex: 1;
}
.investmentCard .investment-content .right-side .image-wrapper,
.investmentCard .investment-footer .right-side .image-wrapper {
  margin-top: 16px;
}
.investmentCard .investment-content .right-side h3 {
  font-size: 28px;
  margin: 35px 0px 26px 0px;
}
.investmentCard .investment-content .right-side .investment-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  margin-bottom: 0;
  max-width: 800px;
}
.investmentCard .investment-content .right-side .status {
  padding: 11px 12px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-weight: bold;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
}
.investmentCard .investment-content .right-side .status.onSale {
  background-color: #EEFFE6;
}
.investmentCard .investment-content .right-side .status.soon {
  background-color: #ededed;
}
.investmentCard .investment-content .right-side .status.sold {
  background: #FFE7E6;
}
.investmentCard .investment-content .right-side .investment-description {
  color: #666666;
}
.investmentCard .investment-content a.image-wrapper {
  display: block;
  height: 100%;
}
.investmentCard .investment-footer .left-side {
  display: flex;
}
.investmentCard .investment-footer .right-side {
  text-align: left;
}
.investmentCard .investment-footer .right-side a.button {
  background-color: #222;
  border: none;
  color: #F6F6F6;
  padding: 15px 32px;
}
.investmentCard .investment-footer .right-side a.button:hover {
  background-color: #6A6A6A;
}
.investmentCard .investment-footer .right-side a.button:after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(graphics/svg/arrow_right.svg);
}
.investmentCard .investment-footer {
  height: 50px;
}

#START .listing-bottom {
  text-align: center;
}

.page_icon_wrapper {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.page_icon_wrapper .image-wrapper.abc {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(50vw, 924px);
  overflow: hidden;
  border-radius: 0;
}
.page_icon_wrapper .image-wrapper.abc .image,
.page_icon_wrapper .image-wrapper.abc .image img {
  width: 100%;
  height: 100%;
}
.page_icon_wrapper .image-wrapper.abc .image img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
}
.page_icon_wrapper .container .tile-side {
  width: 50%;
  margin-right: auto;
  padding: 64px 0px 200px 0px;
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.page_icon_wrapper .container .tile-side .controls {
  position: absolute;
  bottom: 80px;
  left: 0;
}
.page_icon_wrapper .container .tile-side .content {
  width: 80%;
}
.page_icon_wrapper .container .tile-side .content h2 {
  margin: 100px 0 40px 0 !important;
}
.page_icon_wrapper .container .tile-side .content .text-wrapper p {
  font-size: 17px;
  color: #666666;
}

.icon_card_background .text-wrapper p {
  margin-bottom: 0;
}

.container-wrapper {
  filter: grayscale(1);
  background-size: cover;
  padding: 42px 0px 0 0;
}
.container-wrapper .container {
  position: relative;
  z-index: 2;
}
.container-wrapper .container .columns {
  align-items: center;
  justify-content: center;
}
.container-wrapper .container .columns div .icon-card {
  background-color: #ffffff;
  padding: 45px 30px;
}
.container-wrapper .container .columns div .icon-card .icon-wrapper {
  margin-bottom: 36px;
}
.container-wrapper .container .columns div .icon-card .btns {
  margin-top: 25px;
  color: #222;
  transition: all 300ms;
}
.container-wrapper .container .columns div .icon-card .content {
  font-size: 16px;
  color: #666666;
}
.container-wrapper .container .columns div .icon-card .content h3 {
  font-size: 24px;
  color: black;
}
.container-wrapper .container .columns div .icon-card:hover .btns {
  text-decoration: underline;
}

.container-wrapper.image-background .container .columns.x3 div .icon-card .content {
  color: #1a1a1a;
}

.container-wrapper.image-background .container .columns.x3 div .icon-card {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3px);
}

.icon_card_background .container .header {
  padding-bottom: 0px;
}
.icon_card_background .container .header h2 {
  margin-bottom: 30px !important;
  color: #fff;
}

.icon_card_background .container-wrapper.image-background {
  padding: 80px 0px;
}

.button.txt:hover {
  color: #000000;
  background-color: #fefefe;
}

span.button.txt {
  border: none;
}

.realizations_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  --grid-items-transition: all 400ms ease-in-out;
  --grid-image-transtion-scale: 1.2;
  margin: -12px;
}
.realizations_grid .realization_grid-item {
  aspect-ratio: 1/1;
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
}
.realizations_grid .realization_grid-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.realizations_grid .realization_grid-item .image-wrapper {
  width: 100%;
  height: 100%;
}
.realizations_grid .realization_grid-item .image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--grid-items-transition);
}
.realizations_grid .realization_grid-item a .image-wrapper {
  border-radius: 5px;
}
.realizations_grid .realization_grid-item a .realization_title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  opacity: 0;
}
.realizations_grid .realization_grid-item a .realization_title h3 {
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
  font-size: 25px;
}
.realizations_grid .realization_grid-item a .realization_title {
  transition: var(--grid-items-transition);
}
.realizations_grid .realization_grid-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  transition: var(--grid-items-transition);
}
.realizations_grid .realization_grid-item:nth-child(3) {
  grid-row: span 2;
  grid-column: span 1;
  aspect-ratio: 1/2;
}
.realizations_grid .realization_grid-item:nth-child(5) {
  grid-row: span 2;
  grid-column: span 2;
  aspect-ratio: auto;
}
.realizations_grid .realization_grid-item:nth-child(7) {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 2/1;
}
.realizations_grid .realization_grid-item:hover a:before {
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 1;
  border-radius: 3px;
}
.realizations_grid .realization_grid-item:hover img {
  scale: var(--grid-image-transtion-scale);
}
.realizations_grid .realization_grid-item:hover a .realization_title {
  opacity: 1;
}

.listing-module.technology .tile {
  height: 100%;
}
.listing-module.technology .tile .content {
  align-content: center;
  height: 100%;
  padding-left: 157px;
  max-width: 600px;
}

.listing-module.related-realizations .content {
  height: unset;
}
.listing-module.related-realizations .card:hover .button {
  gap: 15px;
}
.listing-module.related-realizations .descr {
  display: none;
}

#START .listing-module .content {
  height: unset;
}
#START .listing-module .card:hover .button {
  gap: 15px;
}

.listing-module .header-with-button {
  margin-bottom: 64px;
}
.listing-module .header-with-button h2 {
  margin-bottom: 0 !important;
}
.listing-module .header {
  padding-bottom: 0;
}
.listing-module .header-with-arrows {
  justify-content: start;
  align-items: center;
  display: flex;
  gap: 24px;
  margin-bottom: 0;
}
.listing-module .header-with-arrows h2 {
  margin-bottom: 0 !important;
}
.listing-module .card {
  height: 100%;
}
.listing-module .content {
  height: 100%;
}
.listing-module .content .controls {
  margin-top: auto;
}
.listing-module .descr {
  color: #666666;
  font-size: 17px;
  line-height: 27px;
}
.listing-module .splide.carousel .splide__track {
  overflow: visible;
}
.listing-module .splide.carousel .splide__arrows {
  display: flex;
  gap: 10px;
}
.listing-module .splide.carousel .splide__arrow {
  position: static;
  transform: none;
  border: 1px solid #D9D9D9;
}
.listing-module .splide.carousel .splide__arrow svg {
  transform: none;
}

.tech-slider .splide.carousel .splide__track {
  overflow: hidden;
}

.splide__arrow:disabled {
  opacity: 0.4;
}

.footer-section .contact-footer-section .contact_data .image-wrapper {
  max-width: 320px;
}

.light-blue {
  background-color: #EFF1F5;
  padding: 150px 0 !important;
}

.black-bg-secondary {
  background-color: #222;
  padding: 150px 0 !important;
  color: #fff;
}

.black-bg {
  background-color: #222;
  color: #fff;
}
.black-bg h1,
.black-bg h2,
.black-bg h3,
.black-bg .subtitle,
.black-bg p {
  color: #fff;
}
.black-bg .content .descr {
  color: #aaa;
}
.black-bg .button.txt {
  color: #aaa;
}
.black-bg .button.txt:hover {
  background-color: unset;
  gap: 12px;
}
.black-bg .button.txt::after {
  filter: invert(1);
}

.about-homepage .tile .content p {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s ease, transform 1s ease;
}

.about-homepage .tile .content.animate p {
  opacity: 1;
  transform: translateY(0);
}

/* opóźnienie dla drugiego paragrafu */
.about-homepage .tile .content.animate p:nth-of-type(2) {
  transition-delay: 0.25s;
}

.about-homepage {
  position: relative;
  padding-bottom: 150px;
  margin: 0 auto;
}
.about-homepage::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(128, 128, 128, 0.7607843137);
  width: 65%;
  margin: 0 auto;
}

.about-homepage .tile {
  display: flex;
  flex-direction: column;
}
.about-homepage .tile .image-wrapper {
  margin-bottom: 50px;
}
.about-homepage .tile .image-wrapper img {
  max-width: 230px;
  height: 150px;
}
.about-homepage .tile .content {
  padding-left: 0;
}
.about-homepage .tile .content p {
  max-width: 850px;
  text-align: center;
  margin: 0 auto;
}

.header-with-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.products-promo-cards .columns > div:last-child {
  padding-bottom: 0;
}

#logo .primary-logo {
  width: 226px;
}

.page_icon_wrapper_second {
  padding-right: 20px;
  --container-max: 1410px;
  --container-pad: 60px;
  --content-full: calc(var(--container-max) + 2 * var(--container-pad));
  display: grid;
  grid-template-columns: 1fr minmax(0, var(--content-full)) 1fr;
  align-items: center;
  /* pionowe wyśrodkowanie obrazu względem treści */
  position: relative;
  max-height: 924px;
  /* jak w Twoim stylu, jeśli nadal chcesz limitu */
  grid-column: 3;
  /* od lewej krawędzi do krawędzi contentu */
  justify-self: start;
}
.page_icon_wrapper_second .header {
  width: 100%;
}
.page_icon_wrapper_second .footer {
  text-align: left;
}
.page_icon_wrapper_second > .container {
  grid-column: 2;
  max-width: var(--container-max);
  padding: 0 var(--container-pad);
  margin: 0 auto;
  text-align: left;
}
.page_icon_wrapper_second > .container .image_icons_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page_icon_wrapper_second > .container .image_icons_wrapper h2 {
  text-align: start !important;
  color: #211C2E;
  margin: 0;
}
.page_icon_wrapper_second > .container .image_icons_wrapper .icon_text {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(33, 28, 46, 0.1019607843);
  font-size: 1rem;
  width: 100%;
  margin: 16px 0 0 0;
  padding: 0 0 10px 0;
}
.page_icon_wrapper_second > .container .image_icons_wrapper .icon_text img {
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.page_icon_wrapper_second > .container .image_icons_wrapper .icon_text .img_icon_blank {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: #F1F1F1;
  /* placeholder, opcjonalnie */
}
.page_icon_wrapper_second > .container .image_icons_wrapper .icon_text p {
  color: #211C2E;
  margin: 0 0 0 10px;
  text-align: left !important;
}
.page_icon_wrapper_second > .container .image_icons_wrapper .icon_text:last-child {
  border-bottom: none;
}
.page_icon_wrapper_second > .container .image_icons_wrapper a {
  margin-top: 32px;
  color: #211C2E;
  text-decoration: none;
  font-weight: 500;
  text-align: left;
  justify-content: flex-start;
}
.page_icon_wrapper_second > .container .image_icons_wrapper a:hover, .page_icon_wrapper_second > .container .image_icons_wrapper a:focus {
  text-decoration: underline;
}
.page_icon_wrapper_second .image_wrapper {
  justify-self: end;
  align-self: center;
  width: min(924px, 50vw);
  aspect-ratio: 1/1;
  overflow: hidden;
  z-index: 1;
}
.page_icon_wrapper_second .image_wrapper .image,
.page_icon_wrapper_second .image_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.page_icon_wrapper.left {
  padding-right: 0;
  padding-left: 20px;
}

.photo-section {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 130px);
}

/* Gradient u góry - wtapianie w header */
.photo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  /* zasięg gradientu */
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 4;
  /* powyżej zdjęć */
  pointer-events: none;
}

.ps-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: unset;
}

.ps-image--skeleton {
  z-index: 2;
  opacity: 0;
  animation: skeletonFadeIn 1s ease-in-out 1s forwards, skeletonFadeOut 1s ease-in-out 7s forwards;
}

.ps-image--color {
  z-index: 1;
  opacity: 0;
  animation: bannerFadeIn 1.5s ease-in-out 3s forwards;
}

@keyframes skeletonFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bannerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes skeletonFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.photo-section .banner-content {
  position: absolute;
  z-index: 5;
  /* powyżej gradientu */
  top: 30%;
  left: 0;
  width: 100%;
}

.contact_data img {
  min-height: 56px;
}

.subpage-tile-listing.columns > div {
  padding: 0 45px 90px 45px;
}

.subpage-tile-listing.columns {
  margin: 0 -45px 0 -45px;
}

.subpage-tile-listing .tile .content {
  justify-content: center;
}
.subpage-tile-listing .tile .content .h3 {
  font-size: 1.5em;
  line-height: 1.4;
  margin: 0 0 0.5em 0;
  font-weight: 400;
}

.subpage-tile-listing .card .image-wrapper {
  margin-bottom: 25px;
}
.subpage-tile-listing a.card {
  display: flex;
  flex-direction: column;
}
.subpage-tile-listing a.card:hover {
  display: flex;
}
.subpage-tile-listing .ribbon {
  background-color: #EDEDED;
  padding: 7px 9px;
  color: #666666;
  line-height: 1;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 7px;
}
.subpage-tile-listing .tile h2 {
  margin-bottom: 7px;
  font-weight: 400;
  font-size: 21px;
  color: #000;
  margin-top: unset;
}
.subpage-tile-listing .content {
  flex: 1;
}
.subpage-tile-listing .content h2 {
  font-size: 1.5em;
  line-height: 1.4;
  margin: 0 0 0.5em 0;
  font-weight: 400;
}
.subpage-tile-listing p {
  color: #666666;
  font-weight: 400;
  margin-bottom: 14px;
  max-width: 600px;
}
.subpage-tile-listing .btns .button {
  border-radius: 5px;
  height: 50px;
}
.subpage-tile-listing .btns .button img {
  filter: unset;
}
.subpage-tile-listing .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.invest-gallery-wrapper {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.main-gallery-slider img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.thumbnails-gallery-slider {
  width: 175px;
  flex-shrink: 0;
}

.splide__track--ttb > .splide__list {
  max-height: 600px;
}

.thumbnails-gallery-slider .splide__track {
  max-height: 600px;
}

.thumbnail-wrapper {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
  aspect-ratio: 16/9;
  overflow: visible;
}

.thumbnail-wrapper:hover,
.splide__slide.is-active .thumbnail-wrapper {
  opacity: 1;
}

.thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .invest-gallery-wrapper {
    flex-direction: column;
  }
  .main-gallery-slider {
    min-height: unset;
    width: 100%;
    margin-bottom: 10px;
  }
  .thumbnails-gallery-slider {
    width: 100%;
    height: auto;
  }
  .thumbnails-gallery-slider .splide__track {
    height: auto !important;
  }
}
#page-realization .PAGE {
  padding-top: 0 !important;
}
#page-realization .black-bg {
  padding-bottom: 60px;
}
#page-realization .invest-gallery-wrapper {
  padding: 60px 0 60px 0;
}
#page-realization .counter-card {
  height: unset;
  padding: 0px 0 60px 0;
}
#page-realization .breadcrumbs {
  text-align: center;
  padding-top: 90px;
}
#page-realization .breadcrumbs span,
#page-realization .breadcrumbs a {
  color: #fff;
}
#page-realization .article-section:first-child {
  margin-top: 0;
}
#page-realization h1 {
  margin-bottom: 0;
  text-align: center;
}
#page-realization .invest-gallery {
  background-color: #222;
  padding-top: 60px;
}
#page-realization .invest-gallery-wrapper {
  margin: 0 auto;
  max-width: 1100px;
}
#page-realization .invest-gallery-wrapper .splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 1px solid #fff;
  border-radius: 3px;
}
#page-realization .invest-gallery-wrapper .splide__track {
  border-radius: 3px;
}
#page-realization .counter-card .content strong {
  font-size: 20px;
}
#page-realization .highlight h2,
#page-realization .highlight .text-wrapper {
  text-align: center;
}
#page-realization .highlight .text-wrapper {
  padding-bottom: 120px;
  margin: 0 auto;
  position: relative;
  font-size: 20px;
}
#page-realization .highlight .text-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(128, 128, 128, 0.7607843137);
  width: 65%;
  margin: 0 auto;
}
#page-realization .highlight #page-realization .article-section:first-child {
  padding-bottom: 90px;
}

.listing-tile-wrapper .tile .image-wrapper {
  max-width: 200px;
  min-width: 200px;
}

#START .listing-module .card .image-wrapper .img-placeholder {
  padding-bottom: 67% !important;
  aspect-ratio: unset;
}

.tech-listing .img-placeholder {
  min-width: 550px;
}

.cb-related_pages .listing-tile-wrapper .content {
  max-width: 600px;
  color: #666;
}

.cb-related_pages .listing-tile-wrapper .tile:hover .controls .button {
  gap: 15px;
}

.icon_cards .subtitle {
  color: #aaaaaa;
}

.icon_cards .icon-card {
  background-color: #fff;
  padding: 45px 30px;
}
.icon_cards .icon-card .h3 {
  font-size: 20px;
  margin-bottom: 0.5em;
}
.icon_cards .icon-card .h3,
.icon_cards .icon-card .text-wrapper {
  color: #666;
}

.double-images {
  display: flex;
  gap: 30px;
}
.double-images > div {
  flex: 1;
}

.text-wrapper {
  max-width: 1000px;
}

.two-photos .content {
  padding-left: 0;
  max-width: 1400px;
  margin: 0 auto;
}

nav.desktop .sub-nav-button > a {
  padding: 0.9rem 1.2rem;
}

#page-contactus .form-fields-wrapper .input-wrapper input,
#page-contactus .form-fields-wrapper .input-wrapper textarea {
  border: 2px solid #AAA;
}
#page-contactus input[type=checkbox] + label::before {
  border: 2px solid #AAA;
}

.cb-text_photo .text-wrapper {
  align-self: center;
}

.icon_cards.video-bg {
  position: relative;
  overflow: hidden;
  padding: 160px 0px;
}

.icon_cards.video-bg .container .header h2 {
  text-align: center;
}

.icon_cards.video-bg .container .footer {
  text-transform: uppercase;
}

.icon_cards.video-bg .video-wrapper {
  position: absolute;
  top: 20px;
  left: 0px;
  right: 0px;
  bottom: 20px;
  overflow: hidden;
}

.icon_cards.video-bg .video-wrapper video {
  height: 100%;
}

.icon_cards.video-bg .icon-card {
  background-color: white;
  padding: 50px;
  padding-top: 30px;
}

.logo-contact img {
  max-width: 300px;
  padding-bottom: 50px;
}

.counter-section .check-onscreen.offscreen-bottom,
.investment-wrapper .check-onscreen.offscreen-bottom {
  top: 50px;
  opacity: 0;
  transition: top 1.4s ease, opacity 1.4s ease;
}

.investment-wrapper .check-onscreen.offscreen-bottom {
  top: 50px;
  opacity: 0;
  transition: top 1.4s ease, opacity 1.4s ease;
}

.counter-section .check-onscreen.onscreen,
.investment-wrapper .check-onscreen.onscreen {
  top: 0;
  opacity: 1;
  transition: top 1.4s ease, opacity 1.4s ease;
}

.investment-wrapper .check-onscreen.onscreen {
  top: 0;
  opacity: 1;
  transition: top 1.4s ease, opacity 1.4s ease;
}

.icon_card_background .check-onscreen.offscreen-bottom {
  top: 40px;
  opacity: 0;
  transition: top 0.9s ease, opacity 0.9s ease;
}

.icon_card_background .check-onscreen.onscreen {
  top: 0;
  opacity: 1;
  transition: top 0.9s ease, opacity 0.9s ease;
}

.columns.x3.subpage-tile-listing .slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1), transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.columns.x3.subpage-tile-listing .slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-typewriter .phone-txt,
.contact-typewriter .email-txt,
.contact-typewriter .address-txt {
  display: inline-block;
}

.contact-typewriter.typing-done .phone-txt,
.contact-typewriter.typing-done .email-txt,
.contact-typewriter.typing-done .address-txt {
  white-space: normal;
}

.contact-typewriter .typing-caret::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  vertical-align: -0.08em;
  background: currentColor;
  animation: blinkCaret 0.8s step-end infinite;
}

@keyframes blinkCaret {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}/*# sourceMappingURL=theme.css.map */