@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: local("Inter Regular"), local("Inter-Regular"), url("fonts/Inter-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  src: local("Inter Light"), local("Inter-Light"), url("fonts/Inter-Light.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: bold;
  src: local("Inter Bold"), local("Inter-Bold"), url("fonts/Inter-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: bold;
  font-style: italic;
  src: local("Inter Thin"), local("Inter-light"), url("fonts/Inter-Light.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 900;
  src: local("Inter ExtraBold"), local("Inter-ExtraBold"), url("fonts/Inter-ExtraBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  src: local("Inter Medium"), local("Inter-Medium"), url("fonts/Inter-Medium.ttf");
  font-display: swap;
}
/*ver->2.0std-02-08-2019*/
/*ver->2.0std-02-08-2019*/
/* ================= FORMULARZE ================ */
label {
  font-size: 16px;
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 10px;
  color: rgba(77, 84, 95, 0.7);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

span + label {
  margin-top: 0;
}

input, select, textarea, .input-placeholder {
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #fff;
  height: 50px;
  line-height: 1;
}

.submit-controls {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.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 ---- */
* ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #333;
  opacity: 0.5;
}
* ::-moz-placeholder { /* Firefox 19+ */
  color: #333;
  opacity: 0.5;
}
* :-ms-input-placeholder { /* IE 10+ */
  color: #333;
  opacity: 0.5;
}
* :-moz-placeholder { /* Firefox 18- */
  color: #333;
  opacity: 0.5;
}

/* 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: 150px;
  max-width: 150px;
}

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

.input-number > span {
  height: 50px;
  width: 50px;
  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 #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.input-number > span.up {
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

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

.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 {
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  height: 50px;
  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 #ccc;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.05;
}

.styledSelect:after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: black transparent transparent transparent;
  position: absolute;
  top: 23px;
  right: 10px;
}

.styledSelect:active, .styledSelect.active {
  background-color: #efefef;
}

.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 #ccc;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options li {
  padding: 0 6px;
  margin: 0 0;
  padding: 0 10px;
}

/* -- SELECT HOVER -- */
.options li:hover {
  background-color: #000;
  color: #fff;
}

/* INNY SELECT */
.select2-container .select2-selection--single {
  height: 50px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 9px 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  margin-top: -13px;
}

.select2-results ul, .select2-results ul li {
  text-align: left;
  margin: 0;
}

.select2-results ul li {
  padding: 9px 15px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #111;
  color: #fff;
}

.select2-container {
  width: 100% !important;
}

/* --- 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 #ccc;
  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 #ccc;
  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.7rem;
}

.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 #4D545F;
  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: freight-big-pro, 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: #4D545F;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  border: 1px solid #4D545F;
  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 {
  padding-left: 50px;
  width: 200px !important;
  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: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  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;
  align-items: center;
  justify-content: flex-end;
}

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

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.2em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.2em;
}

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

#START h1 {
  font-size: 4.6em;
}

#START h2 {
  font-size: 3.4rem;
}

span.subtitle {
  color: #1C2532;
  font-family: Inter, tahoma, arial, sans-serif;
}

a {
  color: #1C2532;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ol {
  display: block;
}

.button {
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: normal;
  font-family: Inter, tahoma, arial, sans-serif;
  border-radius: 45px;
  border: 2px solid #1C2532;
}

.button.alt {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
}

.button.txt, .button.alt.txt {
  height: 2em;
  padding: 0;
  background: none;
  color: #1C2532;
  min-width: 0;
  padding-right: 35px;
  border: 0;
  border-radius: 0;
}

.button.txt:after {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  width: 18px;
  background-image: url("graphics/svg/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: right 300ms;
}

.button.alt.txt:after {
  display: none;
}

.button.txt:hover:after {
  right: 0;
}

.button.alt.txt {
  color: #fff;
  padding-right: 0;
}

.button.cta {
  height: 50px;
  background: #1C2532;
  color: #fff;
}

.button.alt.cta {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.button.file-btn {
  padding-right: 75px;
}

.button.file-btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  box-sizing: border-box;
  background-image: url("graphics/download.png");
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center;
  background-origin: content-box;
}

.button.ico-btn {
  padding-right: 75px;
}

.button.ico-btn .ico {
  background: #1C2532;
  position: absolute;
  top: -1px;
  right: -1px;
  width: 50px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.button.ico-left, .button.ico-right, .button.ico-left:hover, .button.ico-right:hover {
  background: transparent;
  color: #000;
  box-shadow: none;
  text-shadow: none;
  transition: all 300ms;
}

.button.ico-left {
  padding-left: 50px;
}

.button.ico-right {
  padding-right: 50px;
}

.button.ico-left .ico, .button.ico-right .ico {
  position: absolute;
  top: 0;
  padding: 15px;
  box-sizing: border-box;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}

.button.ico-left .ico {
  left: 0;
}

.button.ico-right .ico {
  right: 0;
}

.button.alt.ico-left, .button.alt.ico-right, .button.alt.ico-left:hover, .button.alt.ico-right:hover {
  background: transparent;
  border-color: #1C2532;
  color: #000;
  box-shadow: none;
  text-shadow: none;
  transition: all 300ms;
}

.updated {
  font-size: 0.9rem;
  font-weight: bold;
  color: #1C2532;
}

.social-sharing-module {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
  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);
}

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

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

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

.cb-table table {
  table-layout: fixed;
  max-width: 1000px;
}

.cb-table table tr td, .cb-table table tr th {
  vertical-align: middle;
}

.cb-table table tr td .button, .cb-table table tr th .button {
  margin: 0;
}

.footer {
  text-align: center;
}

.header {
  padding-bottom: 40px;
  max-width: 1350px;
  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;
}

.columns[data-grid=logo-box] {
  justify-content: center;
  background-color: #fff;
  padding: 20px;
  margin: 0;
}

.logo-box {
  background: none;
  margin: 0;
}

.logo-box .thb-wrapper {
  padding-bottom: 50%;
}

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

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

.icon-card-lux-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-bottom: 80px;
}

.icon-card-lux-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
}

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

.icon-card-lux-section .container {
  position: relative;
  z-index: 1;
}

.icon-card-lux-section .icon-card .content {
  color: #fff;
}

.icon-card-lux-section .icon-card h3 {
  color: #fff;
}

.icon-card-lux-section .icon-card .icon-wrapper {
  border-radius: 50%;
  padding: 3px;
  background: #1C2532;
  width: 120px;
  height: 120px;
  margin: 0 auto 1em auto;
}

.icon-card-lux-section .icon-card .icon-wrapper .icon {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.icon-card-lux-section .icon-card .icon-wrapper .icon img {
  width: 50%;
  height: 50%;
}

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

.person-card .content h3 .subtitle {
  margin-top: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-family: Inter, tahoma, arial, sans-serif;
  color: #4D545F;
}

.person-card .controls .button {
  width: 100%;
}

#TOP .container {
  text-align: center;
}

nav.desktop {
  margin: 0 auto;
  float: none;
  padding: 0 140px;
}

nav.desktop .nav-button > a {
  text-transform: uppercase;
  font-size: 0.9rem;
}

nav.desktop .nav-button > a span {
  position: relative;
}

nav.desktop .nav-button > a span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #1C2532;
  transition: all 300ms;
}

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

.header-modules {
  float: right;
  height: 100%;
}

#TOP-MAIN .header-modules {
  padding-left: 0;
  margin-left: 20px;
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  gap: 30px;
}

#TOP .social-icon {
  opacity: 0.7;
}

#TOP .social-icon > span {
  display: none;
}

#TOP .social-icon path {
  fill: #fff;
}

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

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

.flags li, .flags li:hover, .flags li.urhere {
  width: auto;
  padding: 0;
}

.flags a {
  color: #cfcece;
  text-transform: uppercase;
  border: 0;
  padding: 6px;
}

.flags a img {
  width: 100%;
  max-width: 30px;
  margin: 0 auto;
}

#choose_lang {
  background: #1c2532;
  right: 0;
  min-width: 60px;
  box-sizing: border-box;
  padding: 5px;
}

.current_lang {
  position: relative;
  width: auto !important;
}

.current_lang a {
  padding: 5px 25px 5px 5px;
  border: 0px solid #bababb;
}

.current_lang a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: #bababb transparent transparent transparent;
  border-width: 5px 4px 0 4px;
  transform: translate(0, -50%);
}

.current_lang a img {
  width: 25px;
}

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

.opSlider {
  height: 90vh;
}

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

.banner-content h1,
.banner-content h2,
.banner-content .text-wrapper,
.banner-content .controls {
  text-align: left;
}

#BOTTOM {
  padding: 100px 0;
}

#BOTTOM, #SYSTEM-FOOT {
  background: #1C2532;
}

#BOTTOM h3:first-child {
  margin-top: 0;
}

#BOTTOM, #BOTTOM h3, #BOTTOM p, #BOTTOM span, #BOTTOM a, #BOTTOM strong {
  color: #fff;
}

#BOTTOM .social-links {
  margin-top: 1em;
}

#BOTTOM .social-icon {
  width: 22px;
  height: 22px;
  margin-right: 20px;
}

#BOTTOM .social-icon svg path {
  fill: #fff;
}

#BOTTOM .links ul li {
  padding-bottom: 5px;
}

#BOTTOM .links ul li a:hover {
  color: white;
}

#BOTTOM .contact_data_wrapper {
  font-size: 1.1rem;
}

#BOTTOM .contact_data .company_name {
  font-size: 1.2rem;
}

#BOTTOM .contact_data_wrapper .image-wrapper,
#BOTTOM .contact_data_wrapper .image-wrapper .image,
#BOTTOM .contact_data_wrapper .image-wrapper .image img {
  max-width: 130px;
  margin: 0 auto;
  text-align: center;
}

#SYSTEM-FOOT {
  min-height: 0;
  padding: 50px 0 10px 0;
}

#SYSTEM-FOOT .mods.x2 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px;
}

#SYSTEM-FOOT .mods.x2 > div {
  width: 50%;
}

#SYSTEM-FOOT .container {
  height: auto;
  display: block;
}

#SYSTEM-FOOT .contact_data_wrapper .image-wrapper {
  max-width: 170px;
}

#SYSTEM-FOOT .contact_data, #SYSTEM-FOOT .contact_data a {
  color: #9DABBC;
}

#SYSTEM-FOOT .links a {
  color: #9DABBC;
}

#SYSTEM-FOOT .contact_data_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 35px;
}

#SYSTEM-FOOT .contact_data_wrapper .company_name {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact_data_wrapper .address,
.contact_data_wrapper .phones-wrapper,
.contact_data_wrapper .emails-wrapper {
  margin-bottom: 0;
}

#SYSTEM-FOOT .social-links {
  display: block;
}

#SYSTEM-FOOT .social-links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  -moz-column-gap: 10px;
       column-gap: 10px;
  color: #9DABBC;
  margin-bottom: 10px;
}

#SYSTEM-FOOT .social-links a svg {
  display: block;
  min-width: 20px;
  width: 20px;
  height: 20px;
}

#SYSTEM-FOOT .social-links a svg path {
  fill: #9DABBC;
}

.copyright {
  color: #9DABBC;
}

.copyright a {
  color: #fff;
}

#START h2 {
  text-align: left;
}

#logo, #TOP.sticked #logo {
  height: 116px;
  width: 100px;
  transform: translate(0, 0);
  background: #1C2532;
  padding: 5px;
  border-radius: 0 0 10px 10px;
  box-sizing: border-box;
  top: 0;
  bottom: auto;
  transition: all 300ms;
}

#logo img {
  width: 100%;
  position: static;
  transform: none;
}

nav.desktop > ul {
  height: 100%;
}

nav.desktop .nav-button > a {
  color: rgba(255, 255, 255, 0.7);
  font-family: Inter, tahoma, arial, sans-serif;
  font-weight: bold;
  padding-top: 0;
  padding-bottom: 0;
}

nav.desktop .nav-button > a span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav.desktop .nav-button > a:hover, nav.desktop .nav-button.urhere > a {
  color: #fff;
}

nav.desktop .nav-button > a span:after {
  background: #fff;
}

#TOP {
  background: #1C2532;
  border-bottom: 0;
}

#START #TOP.unsticked {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(28, 37, 50, 0.2);
  backdrop-filter: blur(15px);
}

#START #TOP.unsticked #logo {
  top: -100%;
  opacity: 0;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 80px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.banner-content .banner-header h1,
.banner-content .text-wrapper,
.banner-content .controls {
  text-align: center;
}

.banner-content .text-wrapper {
  font-size: 1.55rem;
  opacity: 0.8;
}

.banner-content .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content .banner-logo {
  text-align: center;
  height: 140px;
}

.credo-wrapper {
  text-align: center;
  padding-top: 40px;
}

.credo-wrapper .image-wrapper {
  width: 100px;
  margin: 0 auto;
}

.credo-wrapper .text-wrapper {
  font-size: 2.25rem;
  font-family: freight-big-pro, tahoma, arial, sans-serif;
  line-height: 1.2;
  margin: 0 auto;
  padding-top: 30px;
}

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

.colage-box-wrapper .colage-box {
  flex: 1;
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 500ms;
  border-right: 4px solid #fff;
}

.colage-box-wrapper .colage-box:last-child {
  border-right: 0;
}

.colage-box-wrapper .colage-box .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 500ms;
}

.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 {
  border-right: 1px solid #fff;
  padding: 0px 15px;
  margin-right: 0;
  font-size: 0.8rem;
  height: 14px;
}

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

.colage-box-wrapper .colage-box:hover,
.colage-box-wrapper .colage-box.hover {
  flex: 1.5;
}

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

.multiblocks-frames-card-wrapper {
  background-image: url("graphics/uslugi-tlo.jpg");
  background-repeat: no-repeat;
  background-color: #1C2532;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.multiblocks-frames-card-wrapper.page-section {
  padding: 150px 0;
}

.left-header-section {
  padding-left: 50%;
  position: relative;
}

.left-header-section.with-sticky .header-stycky {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
}

.left-header-section.with-sticky .header-stycky > .uk-sticky-placeholder {
  margin: 0 !important;
}

.left-header-section .header {
  width: 520px !important;
  padding-right: 50px;
  box-sizing: border-box;
  position: relative;
}

.left-header-section > .header h2,
#START .left-header-section .header h2 {
  margin-top: 0;
  text-align: left;
}

.left-header-section .header .controls {
  padding-top: 30px;
}

.left-header-section .header .add-image {
  position: absolute;
  top: 10px;
  left: 100%;
  width: 60px;
  height: 60px;
}

.left-header-section .header .add-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.border-frame {
  border-radius: 0.4375rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(15px);
  padding: 40px;
  transition: all 300ms;
}

a.border-frame {
  text-decoration: none;
  display: block;
}

a.border-frame:hover {
  background: rgba(0, 0, 0, 0.1);
}

.border-frame .controls {
  padding-top: 20px;
}

.border-frame h3 {
  margin-top: 0;
  font-size: 2.25rem;
}

.multiblocks-frames-card-wrapper * {
  color: #fff;
}

.img-pointer-section .header .text-wrapper, #START .img-pointer-section .header .text-wrapper {
  margin: 0 auto;
  text-align: center;
}

.img-pointer-section .header h2, #START .img-pointer-section .header h2 {
  text-align: center;
}

.img-pointer-wrapper {
  position: relative;
}

.img-pointer-wrapper .pointer-image-wrapper {
  padding: 110px 18%;
}

.img-pointer-wrapper .pointer-image-wrapper .round-mark-image {
  text-align: center;
}

.pointer-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.img-point {
  position: relative;
  float: left;
  width: 50%;
  height: 33.333%;
  box-sizing: border-box;
  transform: translate(0, -50%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.pointer-area > div:nth-child(2n) {
  justify-content: flex-end;
  text-align: right;
}

.img-point .content {
  width: 45%;
  padding-bottom: 20px;
  z-index: 5;
  position: relative;
}

.img-point .content h3 {
  margin: 0;
  font-size: 1.1rem;
  font-family: Inter, tahoma, arial, sans-serif;
}

.img-point .mark-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 30%;
}

.img-point .mark-wrapper::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 70.7px;
  height: 1px;
  background: rgba(113, 113, 113, 0.4);
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.img-point .mark-wrapper::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(113, 113, 113, 0.4);
  z-index: 1;
}

.img-point .mark-wrapper .point {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(113, 113, 113, 0.4);
  margin-bottom: -3px;
  margin-right: -3px;
}

.pointer-area .img-point.item-0 .mark-wrapper {
  height: 50px;
  right: 20%;
}

.pointer-area .img-point.item-0 .mark-wrapper::before {
  top: 0;
  right: 50px;
}

.pointer-area .img-point.item-1 .mark-wrapper {
  height: 50px;
  right: 0;
  left: 20%;
}

.pointer-area .img-point.item-1 .mark-wrapper::before {
  top: 0;
  left: 50px;
}

.pointer-area .img-point.item-1 .mark-wrapper::after {
  right: auto;
  left: 0;
  transform: rotate(-45deg);
  transform-origin: 0 0;
}

.pointer-area .img-point.item-1 .mark-wrapper .point {
  bottom: 0;
  left: 0;
  right: auto;
  margin-left: -3px;
  margin-right: 0;
  margin-bottom: -3px;
  margin-top: 0;
}

.pointer-area .img-point.item-2 .mark-wrapper {
  right: 45%;
}

.pointer-area .img-point.item-2 .mark-wrapper::after {
  display: none;
}

.pointer-area .img-point.item-2 .mark-wrapper .point {
  bottom: 0;
  right: 0;
  left: auto;
  margin-left: 0;
  margin-right: -3px;
  margin-bottom: -3px;
  margin-top: 0;
}

.pointer-area .img-point.item-3 .mark-wrapper {
  right: 0;
  left: 45%;
}

.pointer-area .img-point.item-3 .mark-wrapper::after {
  display: none;
}

.pointer-area .img-point.item-3 .mark-wrapper .point {
  right: auto;
  left: 0;
  margin-left: -3px;
  margin-right: 0;
  margin-bottom: -3px;
  margin-top: 0;
}

.pointer-area .img-point.item-4 .mark-wrapper {
  height: 50px;
  right: 20%;
  margin-top: -50px;
}

.pointer-area .img-point.item-4 .mark-wrapper::before {
  right: 50px;
}

.pointer-area .img-point.item-4 .mark-wrapper::after {
  top: 0;
  transform: rotate(-45deg);
}

.pointer-area .img-point.item-4 .mark-wrapper .point {
  bottom: 100%;
  right: 0;
  left: auto;
}

.pointer-area .img-point.item-5 .mark-wrapper {
  height: 50px;
  margin-top: -50px;
  right: 0;
  left: 20%;
}

.pointer-area .img-point.item-5 .mark-wrapper::before {
  left: 50px;
}

.pointer-area .img-point.item-5 .mark-wrapper::after {
  top: 0;
  right: auto;
  left: 0;
  transform: rotate(45deg);
  transform-origin: 0 0;
}

.pointer-area .img-point.item-5 .mark-wrapper .point {
  bottom: 100%;
  left: 0;
  right: auto;
  margin-left: -3px;
  margin-right: 0;
  margin-bottom: -3px;
  margin-top: 0;
}

.fee-calculator-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 70px;
}

.fee-calculator-section > div {
  flex: 1;
  width: 50%;
  box-sizing: border-box;
}

.fee-calculator-form-wrapper {
  border-radius: 10px;
  background: #FFF;
  backdrop-filter: blur(15px);
  padding: 50px;
}

.submit-controls {
  margin-top: 15px;
  gap: 10px;
}

.fee-calculator-form-wrapper .submit-controls > div,
.fee-calculator-form-wrapper .submit-controls > div .button {
  width: 100%;
}

.background-area {
  background-image: url("graphics/bottom-back.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom center;
}

#BOTTOM {
  background-image: url("graphics/bottom-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#BOTTOM .contact_data {
  text-align: center;
}

#BOTTOM .contact_data > img {
  width: 120px;
  margin: 0 auto;
}

#BOTTOM .contact_data h3,
#BOTTOM .contact_data .company_name,
#BOTTOM .contact_data .address,
#BOTTOM .contact_data .phones-wrapper,
#BOTTOM .contact_data .phones-wrapper .phone-wrapper,
#BOTTOM .contact_data .emails-wrapper {
  text-align: center;
}

#BOTTOM .contact_data h3 {
  font-size: 3.4rem;
  margin-top: 0;
  margin-bottom: 20px;
}

#BOTTOM .contact_data .phones-wrapper .phone-wrapper > span {
  margin: 0 auto;
}

.form-wrapper {
  max-width: 900px;
  box-sizing: border-box;
}

.form-wrapper.frame {
  background-color: #fff;
  border: 0;
  box-shadow: 5px 5px 46px rgba(0, 0, 0, 0.1);
  padding: 60px 60px 50px 60px;
  border: 0;
  border-radius: 10px;
  max-width: 100%;
}

.text-wrapper {
  max-width: 100%;
}

.article-section .text-wrapper ul li:before {
  width: 16px;
  height: 16px;
  top: 0.4rem;
}

.article-section .multiblocks-frames-card-wrapper .text-wrapper ul li:before {
  background-image: url("graphics/svg/li-point-white.svg");
}

.article-section .text-wrapper ul li > h3, .article-section .text-wrapper ul li > h4,
.article-section .text-wrapper ol li > h3, .article-section .text-wrapper ol li > h4 {
  margin-top: 0;
}

.text-wrapper h3:first-child,
.text-wrapper h4:first-child {
  margin-top: 0;
}

.article-section.cb-text_content.border-content .cb-container .text-wrapper {
  border: 3px solid #96c8d2;
  background-image: url("graphics/tlo-ramka.jpg");
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  border-radius: 10px;
  padding: 40px;
}

.article-section.cb-text_content.border-content2 .cb-container .text-wrapper {
  border: 3px solid #96c8d2;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
}

.article-section.cb-text_content.highlight .text-wrapper {
  font-size: 3.6rem;
  padding-top: 120px;
  text-align: center;
  color: #1C2532;
  font-weight: normal;
  font-family: freight-big-pro, tahoma, arial, sans-serif;
  background-image: url("graphics/LOGO-COLOR.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 90px;
  line-height: 1.2;
}

.article-section.cb-text_content.highlight .text-wrapper p {
  margin-bottom: 0;
}

.cb-gallery.file_gallery .gallery > div .image-wrapper,
.cb-gallery.file_gallery_vertical .gallery > div .image-wrapper {
  padding-bottom: 140%;
}

.cb-gallery.file_gallery_vertical .gallery > div .image-wrapper {
  padding-bottom: 80%;
}

.cb-gallery.file_gallery .gallery > div .image,
.cb-gallery.file_gallery_vertical .gallery > div .image {
  width: 100%;
  height: 100%;
  background: #eee;
  padding: 10px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cb-gallery.file_gallery .gallery > div .image a,
.cb-gallery.file_gallery_vertical .gallery > div .image a {
  height: 100%;
}

.cb-gallery.file_gallery .gallery > div .image img,
.cb-gallery.file_gallery_vertical .gallery > div .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}

.cb-gallery.file_gallery .gallery > div .image:hover img,
.cb-gallery.file_gallery_vertical .gallery > div .image:hover img {
  transform: none !important;
}

.article-section.cb-text_content.border-content .cb-container .text-wrapper {
  font-size: 1rem;
}

.calculator-form-wrapper {
  padding: 40px;
  border-radius: 10px;
  border: 0;
  margin-top: -120px;
  background: #fff;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0px 15px 60px -8px rgba(28, 37, 50, 0.2);
}

#calculator-results table.key-val-table tr td:last-child {
  text-align: right;
}

.calculator-results {
  margin-top: 30px;
}

.calculator-results .table-wrapper.details-table {
  background: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

.listing-tile-wrapper .tile {
  max-width: 100%;
}

.listing-tile-wrapper .tile .content p {
  overflow: hidden;
  display: box;
  box-orient: vertical;
  line-clamp: 3;
  display: -moz-box;
  -moz-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.PAGE {
  padding: 60px 0;
}

.breadcrumps img, .breadcrumps svg {
  margin: 0 8px;
}

.page-header-wrapper {
  margin: 0;
  background-image: url("graphics/page-header-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0;
  padding: 120px 0;
}

.page-header-wrapper h1 {
  color: #fff;
  margin: 0;
}

.page-header-wrapper .breadcrumps a,
.page-header-wrapper .breadcrumps span {
  color: #fff;
}

.page-header-wrapper .breadcrumps svg path {
  fill: #fff !important;
}

.blog-nav {
  transform: translate(0, -50%);
  padding: 20px 20px 20px 20px;
  border-radius: 7px;
  background: #FFF;
  box-shadow: 0px 15px 60px -8px rgba(28, 37, 50, 0.2);
}

.blog-nav > .button {
  margin: 0 !important;
}

.blog-nav .subcategories-tree-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.blog-nav .subcategories-tree-controls > .button {
  margin: 0;
  border-color: rgba(77, 84, 95, 0.5);
  border-width: 2px;
  color: #4D545F;
}

.blog-nav .subcategories-tree-controls > .button.urhere, .blog-nav .subcategories-tree-controls > .button:hover {
  border-color: #1C2532;
  border-width: 2px;
  color: #1C2532;
}

.blog-articles-wrapper.first-article {
  padding-bottom: 60px;
  padding-top: 15px;
}

.updated {
  color: #4D545F;
  font-weight: normal;
  font-size: 1rem;
  margin-bottom: 10px;
}

.first-article-tile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 60px;
       column-gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(113, 113, 113, 0.4);
}

.first-article-tile .img-placeholder {
  padding-bottom: 65%;
}

.first-article-tile > div {
  flex: 1;
}

.first-article-tile h3 {
  font-size: 1.8rem;
  margin-top: 0;
}

.first-article-tile .content .controls {
  padding-top: 40px;
}

.blog-articles-wrapper .card h3 {
  font-size: 1.2rem;
}

.blog-articles-wrapper .card .image-wrapper .img-placeholder,
.blog-articles-wrapper .card .image .img-placeholder {
  padding-bottom: 66.666%;
}

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

#page-contactus .columns .form-wrapper h2 {
  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: 10px;
}

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

.contact-icon .icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin: 0;
  margin-right: 10px;
}

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

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

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

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

.email-wrapper.show-email, .phone-wrapper.show-phone {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

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

.contact-simple-layout {
  overflow: hidden;
}

.contact-simple-layout > div {
  float: left;
}

.contact-simple-layout > div h2:first-child, .contact-layout > div h3:first-child {
  margin-top: 0;
}

.contact-simple-layout > div.contact-content {
  width: 35%;
}

.contact-simple-layout > div.contact-form {
  width: 65%;
}

.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: visible;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 100px;
  background-color: #fff;
  border: 0;
  box-shadow: 5px 5px 46px rgba(0, 0, 0, 0.1);
  padding: 60px;
  border-radius: 10px;
}

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

.contact-data-form-section > div.contact-col {
  background: none;
  position: relative;
  width: 50%;
}

.contact-data-form-section > div.add-module-col {
  width: 50%;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 40px 40px 30px 40px;
}

.contact-data-form-section > div.add-module-col .form-wrapper .button {
  width: 100%;
  margin-right: 0;
}

.contact-data-form-section > div.add-module-col .form-wrapper .submit-controls > div {
  width: 100%;
}

.contact-data-form-section h2, #START .contact-data-form-section h2,
.contact-data-form-section h3, #START .contact-data-form-section h3 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: left;
}

.contact-data-form-section .contact_data {
  padding-top: 20px;
}

.contact-data-form-section .contact_data.with-image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.contact-data-form-section .contact_data.with-image .image-wrapper {
  width: 170px;
  height: 170px;
}

.contact-data-form-section .contact_data.with-image .image-wrapper .image {
  width: 100%;
  height: 100%;
}

.contact-data-form-section .contact_data.with-image .image-wrapper .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-data-form-section .contact_data .button {
  min-width: 180px;
  width: 100%;
}

.contact-data-section .contact-box {
  padding: 60px 60px 50px 60px;
  border: 0;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
}

.contact-data-section .contact-box.small {
  padding-right: 55%;
  background-color: #fff;
  border: 0;
  box-shadow: 5px 5px 46px rgba(0, 0, 0, 0.1);
}

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

.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 h2, #START .contact-data-section h2,
.contact-data-section h3, #START .contact-data-section h3 {
  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;
}

.contact-data-form-section .contact-icon.open-hours {
  align-items: flex-start;
}

.contact-data-form-section .contact-icon .hours p {
  margin-bottom: 0;
  font-size: 1rem;
}

.contact-data-form-section .contact-icon .hours {
  width: 100%;
}

.log-info {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 5px 20px;
  background: #1c2532;
}

.log-info * {
  color: #fff;
}

.form-wrapper.login-form {
  max-width: 600px;
}

.login-form .submit-controls {
  align-items: center;
}

.login-form .submit-controls .button {
  margin: 0;
}

.QR-CODE {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 60px;
  padding-top: 0;
}

.show-on-login-print-cabinet {
  display: none !important;
}

.bg-color {
  background: linear-gradient(90deg, #1C2532, #1C2532);
}

.bg-color h1, .bg-color h2, .bg-color h3,
.bg-color .subtitle, #START .bg-color .subtitle,
.bg-color p, .bg-color a, .bg-color span {
  color: #fff;
}

.bg-color .green-alert, .bg-color .red-alert, .bg-color .yellow-alert {
  color: inherit;
}

.check-onscreen {
  position: relative;
}

.check-onscreen.offscreen-bottom {
  top: 100px;
  opacity: 0;
  transition: all 400ms;
}

.check-onscreen.onscreen {
  top: 0;
  opacity: 1;
  transition: all 400ms;
}

.blur-up {
  filter: blur(5px);
  transition: filter 400ms;
}

.blur-up.lazyloaded {
  filter: blur(0);
}

#advanced-cookie-info .container, #cookie-info .container {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(28, 37, 50, 0.8);
  backdrop-filter: blur(25px);
}

#advanced-cookie-info .text-wrapper {
  color: #fff;
}

#advanced-cookie-info .button-wrapper .button {
  margin-bottom: 10px;
}

#advanced-cookie-info .button-wrapper .button.cta {
  border: 2px solid rgba(255, 255, 255, 0.7);
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.swiper-wrapper {
  /*margin-left: -20px!important;
  margin-right: -20px!important;*/
}

.swiper-slide .card {
  background-color: #F1F1F1;
}

.swiper-container {
  position: relative;
}

.swiper-button-prev {
  left: -50px !important;
}

.swiper-button-next {
  right: -50px !important;
}

:root {
  --grid-v-margin: 40px;
}

#BANER-CONTENT {
  position: relative;
}

#BANER-CONTENT .properties-search-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(0, 50%);
  z-index: 11;
}

#page-properties_search .properties-search-section {
  margin-top: -45px;
}

#BANER-CONTENT .properties-search-wrapper,
#page-properties_search .properties-search-wrapper {
  box-shadow: 0px 15px 60px -8px rgba(28, 37, 50, 0.2);
  border: 0;
}

.properties-search-wrapper {
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  position: relative;
  z-index: 10;
}

.properties-search-items-wrapper {
  padding: 20px 20px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: -10px;
  position: relative;
  z-index: 3;
  width: 100%;
  box-sizing: border-box;
}

.properties-search-item {
  padding: 0 20px 10px 0;
  position: relative;
  flex: 1;
}

.properties-search-item.btn-inside {
  flex: 0;
  text-align: right;
}

.properties-search-item > .button {
  margin: 0;
}

.properties-search-item:last-child {
  padding-right: 0;
}

.properties-search-item:last-child:after {
  display: none;
}

.properties-search-item > .search-input {
  padding-left: 10px;
  padding-right: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #4D545F;
  text-decoration: none;
  height: 50px;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.properties-search-item > .search-input > .comboTreeWrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}

.properties-search-item > .search-input .comboTreeArrowBtn {
  display: none;
}

.properties-search-item > .search-input > .comboTreeWrapper input,
.properties-search-item > .search-input > .comboTreeWrapper .comboTreeInputWrapper {
  height: 100%;
  cursor: pointer;
}

.comboTreeDropDownContainer .comboTreeItemTitle input {
  position: absolute;
}

.comboTreeDropDownContainer li span.comboTreeItemTitle.comboTreeItemHover {
  background-color: #eee;
  color: #5C5E60;
}

.properties-search-item > .search-input > .comboTreeWrapper > .comboTreeInputWrapper > input {
  padding-left: 10px;
  padding-right: 40px;
  border: 0;
}

.comboTreeDropDownContainer li span.comboTreeItemTitle input[type=checkbox] + label::before {
  border: 1px solid #4D545F;
  width: 16px;
  max-width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 2px;
  font-size: 16px;
}

.properties-search-item > .search-input > .comboTreeWrapper > .comboTreeInputWrapper > input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #4D545F;
  opacity: 1;
}
.properties-search-item > .search-input > .comboTreeWrapper > .comboTreeInputWrapper > input::-moz-placeholder { /* Firefox 19+ */
  color: #4D545F;
  opacity: 1;
}
.properties-search-item > .search-input > .comboTreeWrapper > .comboTreeInputWrapper > input:-ms-input-placeholder { /* IE 10+ */
  color: #4D545F;
  opacity: 1;
}
.properties-search-item > .search-input > .comboTreeWrapper > .comboTreeInputWrapper > input:-moz-placeholder { /* Firefox 18- */
  color: #4D545F;
  opacity: 1;
}

.properties-search-item > .search-input > div:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("graphics/svg/select-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
  pointer-events: none;
}

.properties-search-item > .search-input:hover {
  text-decoration: none;
}

.properties-search-item > .filter-search-window {
  position: absolute;
  top: calc(100% - 11px);
  left: 0;
  right: 0;
  background: #fff;
  padding: 10px;
  display: none;
  border: 1px solid #ddd;
  width: calc(100% - 20px);
  box-sizing: border-box;
  z-index: 999;
  max-height: 250px;
  overflow-y: auto;
}

.properties-search-item > .filter-search-window .input-wrapper {
  padding-bottom: 10px;
}

.properties-search-item > .filter-search-window .input-wrapper input {
  height: 40px;
  font-size: 0.8rem;
}

.properties-search-item label {
  font-size: 0.8rem;
}

.properties-search-item > .filter-search-window.show-me {
  display: block;
}

.comboTreeInputBox {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comboTreeDropDownContainer {
  box-sizing: border-box;
  margin-right: -1px;
  margin-left: -1px;
  width: auto !important;
}

.comboTreeDropDownContainer li {
  margin-left: 0;
  padding-left: 0;
  font-size: 0.9rem;
}

.comboTreeDropDownContainer li.ComboTreeItemChlid {
  padding-left: 10px;
}

.comboTreeDropDownContainer li span.comboTreeItemTitle input[type=checkbox] + label::before {
  border: 1px solid #5C5E60;
  width: 16px;
  max-width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 2px;
  font-size: 16px;
}

.comboTreeDropDownContainer .comboTreeItemTitle input {
  position: absolute !important;
  top: 2px;
  margin: 0px 4px 0px 0px;
}

.comboTreeDropDownContainer li {
  padding-left: 0 !important;
}

.comboTreeDropDownContainer li.ComboTreeItemChlid {
  padding-left: 0 !important;
}

.comboTreeDropDownContainer li span.comboTreeItemTitle.comboTreeItemHover {
  background-color: #eee !important;
}

.comboTreeDropDownContainer li:hover {
  background-color: #eee !important;
}

.card.offer-card {
  position: relative;
}

a.card.offer-card {
  display: block;
  text-decoration: none;
  color: #5C5E60;
}

a.card.offer-card .image-wrapper .image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 70%;
}

.offer-card .image-wrapper {
  background: #ddd;
}

.offer-card .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 80px;
  padding-top: 35px;
  position: relative;
}

.offer-card .content .offer-category {
  position: absolute;
  top: 0;
  left: 0;
  text-transform: uppercase;
  font-weight: 500;
}

.offer-card .content .offer-name {
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: freight-big-pro, tahoma, arial, sans-serif;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  flex-wrap: wrap;
}

.offer-card .offer-price, #page-property .offer-price {
  line-height: 1;
  color: #1C2532;
  text-align: right;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  margin-top: 3px;
}

.offer-card .offer-spec-wrapper {
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.offer-card .ribbon-wrapper {
  position: absolute;
  top: 10px;
  left: -10px;
  right: 0;
  z-index: 1;
}

.offer-card .ribbon-wrapper .ribbon, #page-property .ribbon-wrapper .ribbon {
  display: inline-block;
  padding: 5px 12px;
  background: #4560a7;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.7rem;
}

.offer-card .spec-item-wrapper .spec-item-value, #page-property .spec-item-wrapper .spec-item-value {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
}

.offer-card .spec-item-wrapper:last-child, #page-property .spec-item-wrapper:last-child {
  border: 0;
}

.offer-card .spec-item-wrapper .spec-item-value .ico, #page-property .spec-item-wrapper .spec-item-value .ico {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.offer-card .spec-item-wrapper .spec-item-value .value, #page-property .spec-item-wrapper .spec-item-value .value {
  line-height: 1;
}

.offer-card .spec-item-wrapper .spec-item-key, #page-property .spec-item-wrapper .spec-item-key {
  font-size: 0.8rem;
}

a.tile.offer-card {
  text-decoration: none;
  color: #4D545F;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.tile.offer-card .image-wrapper {
  width: 300px;
  padding-bottom: 200px;
}

.tile.offer-card .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tile.offer-card .content {
  height: auto;
  box-sizing: border-box;
  width: auto;
  flex: 1;
}

.tile.offer-card .content .offer-category {
  left: 40px;
}

.tile.offer-card .offer-spec-wrapper {
  left: 40px;
}

.tile.offer-card .image-wrapper {
  position: relative;
}

.tile.offer-card .image-wrapper .status-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(255, 0, 0, 0.8);
  z-index: 1;
  border-radius: 5px;
}

.tile.offer-card .image-wrapper .status-label.active {
  background-color: #1c2532;
}

.offer-card .content .offer-name .status-label {
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(255, 0, 0, 0.8);
  font-family: Inter, tahoma, arial, sans-serif;
  border-radius: 5px;
}

.offer-card .content .offer-name .status-label.active {
  background-color: #1c2532;
}

.price-name {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.offer-mod-wrapper .slick-list {
  overflow: visible;
}

.offer-mod-wrapper .slick-slider {
  position: relative;
}

.offer-mod-wrapper .slick-slider:after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 2000px;
  background: #fff;
  transform: translate(-20px, 0);
}

.offer-mod-wrapper .slick-prev, .offer-mod-wrapper .slick-next {
  top: -126px !important;
  right: 0 !important;
  left: auto !important;
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 15px 60px -8px rgba(28, 37, 50, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(15px);
}

.offer-mod-wrapper .slick-prev {
  right: 60px !important;
}

.offer-mod-wrapper .header {
  padding-right: 200px;
  padding-bottom: 0;
}

.article-columns.side {
  padding-right: 370px;
  padding-bottom: 0;
}

.article-columns.side .side {
  width: 330px;
}

.article-columns.side .side .side-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 80px;
}

.licence-number-wrapper {
  position: relative;
  padding-left: 0;
  padding-top: 1em;
}

.licence-number-wrapper .licence-number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.licence-number-wrapper .ico {
  position: absolute;
  top: 6px;
  left: 0;
  width: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  display: none;
}

.licence-number-wrapper .licence-number > span {
  display: block;
}

.licence-number-wrapper .licence-number > strong {
  display: block;
  font-size: 1.2rem;
}

#page-property .property-gallery-wrapper, #page-property .property-gallery {
  position: relative;
}

#page-property .property-gallery-wrapper .status-label,
#page-property .property-gallery .status-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  padding: 10px 25px;
  background-color: rgba(255, 0, 0, 0.8);
  border-radius: 5px;
  z-index: 1;
}

#page-property .property-gallery-wrapper .status-label.active,
#page-property .property-gallery .status-label.active {
  background-color: #1c2532;
}

#page-property .property-gallery .image-wrapper {
  height: 450px;
  position: relative;
  background-color: #eee;
}

#page-property .property-gallery .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#page-property .property-gallery .image-wrapper .image a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#page-property .offer-spec-wrapper {
  padding: 20px;
  border: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  border-radius: 10px;
}

#page-property .offer-spec-wrapper .spec-item-wrapper:first-child {
  padding-left: 0;
}

#page-property .slick-prev, #page-property .slick-next {
  position: absolute;
  bottom: 10px;
  right: 10px;
  left: auto;
  transform: translate(0, 0);
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 15px 60px -8px rgba(28, 37, 50, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(15px);
}

#page-property .slick-prev {
  right: 70px;
}

.property-main-info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 0;
  padding-top: 30px;
  padding-right: 0;
  position: relative;
  min-height: 60px;
}

#page-property .offer-spec-wrapper {
  border: 0;
  border-left: 1px solid #ddd;
  border-radius: 0;
  margin-left: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 30px;
}

.property-side-box-wrapper {
  background: #fff;
  box-shadow: 0px 15px 60px -8px rgba(28, 37, 50, 0.2);
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  border: 3px solid #96c8d2;
}

.property-side-box {
  background-color: #fff;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.property-side-box:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.agent-avatar-wrapper {
  margin-bottom: 20px;
}

.agent-avatar-wrapper .agent-avatar {
  width: 170px;
  height: 170px;
  border-radius: 5px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.agent-avatar-wrapper .agent-avatar .avatar-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("graphics/avatar.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.property-side-box .property-contact-data .contact_data_icon .phones-wrapper,
.property-side-box .property-contact-data .contact_data_icon .emails-wrapper {
  margin-bottom: 0;
}

.property-side-box .property-contact-data .name {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}

.property-contact-data .controls {
  padding-top: 30px;
}

.property-contact-data .controls .button {
  width: 100%;
  box-sizing: border-box;
  margin-right: 0;
  height: 40px;
  font-size: 0.9rem;
}

.property-side-header {
  margin-bottom: 20px;
}

.property-side-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  font-family: Quicksand, tahoma, arial, sans-serif;
}

.property-side-box .property-price-wrapper {
  float: none;
  padding-top: 30px;
}

.property-price-wrapper .price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}

.property-price-wrapper .price.price-name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
}

.property-price-wrapper .price > span {
  display: inline-block;
  margin-right: 8px;
  line-height: 1;
  margin-bottom: 8px;
}

.property-price-wrapper .price.price-name > span {
  margin: 0;
  font-weight: bold;
  font-size: 15px;
}

.property-price-wrapper .price > span.price-name {
  font-size: 0.6rem;
  align-self: flex-end;
  margin-bottom: 9px;
}

.property-price-wrapper .price.price-1 > span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1C2532;
}

.table-wrapper.details-table {
  background: #fff;
  box-shadow: 0px 15px 60px -8px rgba(28, 37, 50, 0.2);
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.table-wrapper.details-table .controls {
  padding-top: 20px;
  text-align: center;
}

.table-wrapper.details-table .controls .button {
  margin: 0;
}

table.key-val-table {
  text-align: left;
  table-layout: fixed;
  border: 0;
  max-width: 100%;
}

table.key-val-table tr td {
  padding: 12px 20px;
  border: 0;
  border-bottom: 1px solid transparent;
  text-align: left;
  line-height: 1.2;
}

table.key-val-table tr td:first-child {
  text-align: left;
  font-size: 0.9rem;
  text-transform: none;
  opacity: 0.9;
}

table.key-val-table tr td:last-child {
  font-weight: bold;
  font-size: 0.9rem;
}

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

table.key-val-table tr:nth-child(odd) td {
  background: #f2f2f2 !important;
}

.show-on-print {
  display: none !important;
}/*# sourceMappingURL=theme.css.map */