@charset "UTF-8";
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  src: url("fonts/Poppins-Italic.ttf");
}
@font-face {
  font-family: "Poppins";
  font-weight: bold;
  src: url("fonts/Poppins-Bold.ttf");
}
@font-face {
  font-family: "Poppins";
  font-weight: bold;
  font-style: italic;
  src: url("fonts/Poppins-BoldItalic.ttf");
}
@font-face {
  font-family: "Poppins";
  font-weight: 900;
  src: url("fonts/Poppins-Black.ttf");
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  src: url("fonts/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: "Poppins";
  font-weight: 300;
  src: url("fonts/Poppins-Light.ttf");
}
/*ver->2.0std-02-08-2019*/
/*ver->2.0std-02-08-2019*/
/* ================= FORMULARZE ================ */
label {
  color: lighten #505050, 10%;
  font-size: 16px;
  text-transform: none;
  margin-top: 10px;
}

span + label {
  margin-top: 0;
}

input, select, textarea, .input-placeholder {
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fff;
  height: 40px;
  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 ---- */
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;
}

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

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

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

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

.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: 40px;
  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 #ddd;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.styledSelect:after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: black transparent transparent transparent;
  position: absolute;
  top: 18px;
  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 #ddd;
  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: 40px;
}

.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 #ddd;
  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 #ddd;
  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 #505050;
  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: Poppins, 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: #505050;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  border: 1px solid #505050;
  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;
}

.st0 {
  fill: #128580 !important;
}

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

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 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: 2.5em;
}

#START h2 {
  font-size: 2.5em;
}

span.subtitle {
  font-weight: normal;
  color: #1D1D1B;
  font-size: 0.6em;
}

a {
  color: #1241ba;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.ps-image:after,
.opSlider-inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.button {
  font-size: 1em;
  letter-spacing: 1px;
  text-transform: none;
  font-weight: 500;
  border: none;
  border-radius: 2px;
  padding-left: 0;
  padding-right: 50px;
  border-bottom: 1px solid #128580;
  position: relative;
  text-align: left;
  justify-content: flex-start;
  overflow: visible;
}

.button:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  width: 7px;
  height: 13px;
  background-image: url("graphics/svg/arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(0, -50%);
}

.button.alt {
  color: #0B5B57;
  border-bottom: solid 1px #0B5B57;
  background: transparent;
}

.button.txt {
  height: auto;
  padding: 0;
  background: none;
  color: #0B5B57;
  min-width: 0;
  padding-right: 10px;
  border: 0;
  text-transform: inherit;
  white-space: normal;
  display: inline-block;
}

.button.txt:after {
  content: "";
  position: relative;
  top: 0;
  right: 0;
  margin-left: 10px;
  bottom: 0;
  width: 7px;
  height: 13px;
  background-image: url("graphics/svg/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: right 300ms;
  display: inline-block;
}

.button.txt:before {
  display: none;
}

.button.txt:hover {
  text-decoration: underline;
}

.button.txt:hover:after {
  right: -5px;
}

.button.cta {
  height: 40px;
  background: #128580;
  color: #fff;
  padding: 5px 25px;
  justify-content: center;
  border-radius: 8px;
}

.button.cta:before {
  display: none;
}

.button.alt.cta {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #fff;
  color: #fff;
}

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

.button.file-btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  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: 65px;
}

.button.ico-btn .ico {
  background: #128580;
  position: absolute;
  top: -1px;
  right: -1px;
  width: 40px;
  height: 41px;
  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;
  border: 0;
  color: #0B5B57;
  box-shadow: none;
  text-shadow: none;
  transition: all 300ms;
}

.button.ico-left {
  padding-left: 40px;
  padding-right: 0;
}

.button.ico-right {
  padding-right: 40px;
  padding-left: 0;
}

.button.ico-left:before,
.button.ico-right:before {
  display: none;
}

.button.ico-left .ico, .button.ico-right .ico {
  position: absolute;
  top: 0;
  padding: 12px;
  box-sizing: border-box;
  height: 40px;
  width: 40px;
  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:before, .button.alt.ico-right:before {
  display: none;
}

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

.PAGE {
  padding: 60px 0;
}

.breadcrumps {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}

.breadcrumps span, .breadcrumps a {
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  overflow: hidden;
  max-width: 220px;
  color: #505050;
  font-size: 0.8rem;
}

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

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

.img-placeholder {
  background-image: none;
}

.container.full {
  padding: 0;
  max-width: 1920px;
}

.item-main-area .show-more-controls {
  margin-top: -20px;
  padding-bottom: 20px;
}

.article-section.highlight .text-wrapper, .article-section.cb-text_content.highlight .text-wrapper {
  font-size: 1.3em;
  color: #373737;
}

.image-wrapper .img-signature,
.banner-signature-wrapper .img-signature {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
  display: block;
  padding-right: 0;
  margin-top: 1em;
}

.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: 20px;
}

.header .controls {
  padding-top: 20px;
}

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

a.tile, a.card, a.icon-card {
  color: #505050;
  text-decoration: none;
  display: block;
  transition: all 300ms;
}

a.tile:hover, a.card:hover, a.icon-card:hover {
  color: #505050;
  text-decoration: none;
}

.card .image-wrapper .img-placeholder, .card .image .img-placeholder {
  padding-bottom: 62%;
}

.tile {
  max-width: 900px;
}

.tile h2, .tile h3 {
  font-weight: 500;
  font-size: 1.1rem;
}

.tile .image-wrapper {
  border-radius: 20px;
  width: 150px;
  height: 150px;
  border: 1px solid #ddd;
}

.tile .image-wrapper .img-placeholder {
  padding-bottom: 100%;
}

.tile .button {
  margin-bottom: 1rem;
}

.tile.icon-tile .image-wrapper {
  padding: 25px;
  width: 150px;
  height: 150px;
  box-sizing: border-box;
  position: relative;
}

.tile.icon-tile .image-wrapper .img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#START .card.header-card .header h2,
.card.header-card .header h2,
#START .icon-card.header-card .header h2,
.icon-card.header-card .header h2 {
  margin-top: 0;
}

#START .card.header-card,
.card.header-card,
#START .icon-card.header-card,
.icon-card.header-card {
  text-align: left;
  background: none;
}

#START .card.header-card p,
.card.header-card p,
#START .icon-card.header-card p,
.icon-card.header-card p {
  margin-bottom: 1em;
}

.card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #C8C8C8;
}

.card.header-card {
  border: 0;
  min-height: 0;
}

.card .image-wrapper {
  border-radius: 20px 20px 0 0;
  margin-bottom: 0;
}

.card .content {
  padding: 30px;
}

.card .content h3, .icon-card .content h3 {
  font-size: 1.2em;
  font-weight: 500;
}

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

.card .controls {
  bottom: 30px;
  left: 30px;
  right: 30px;
}

.icon-card.border-style {
  border-radius: 20px;
  border-color: #C8C8C8;
  padding: 50px;
  box-sizing: border-box;
}

.icon-card.border-style .content,
.icon-card.border-style .content h3 {
  text-align: center;
}

.icon-card.border-style .icon-wrapper .icon {
  margin: 20px auto;
  width: 80px;
  height: 80px;
}

a.icon-card.border-style:hover {
  border-color: #128580;
}

.columns[data-grid=logo-box] {
  justify-content: center;
}

.logo-box {
  margin: 0;
}

.logo-box .thb-wrapper {
  border-radius: 20px;
  border: 1px solid #C8C8C8;
  padding-bottom: 60%;
}

.logo-box .thb {
  margin: 30px;
}

#logos-ue-wrapper {
  background: #fff;
  z-index: 999;
  opacity: 1;
  transition: all 5s;
}

#logos-ue-wrapper.sticked {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

#logos-ue-wrapper.scroll {
  position: fixed;
  bottom: -500px;
  left: 0;
  right: 0;
  opacity: 0;
}

.logo-ue-ul {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.logo-ue-ul .logo-ue-li {
  padding: 10px 30px;
}

#START .logo-ue-ul {
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

.logo-li {
  margin-bottom: 15px;
}

.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: #128580;
}

.icon-card-lux-section .icon-card .icon-wrapper {
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(90deg, #128580, #128580);
  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;
}

.slick-prev, .slick-next {
  border: 0 !important;
}

.slick-prev {
  left: -60px !important;
}

.slick-next {
  right: -60px !important;
}

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

.packages-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.packages-wrapper > div {
  flex: 1;
}

.packages-wrapper .packages-image-wrapper {
  position: relative;
  z-index: 2;
}

.packages-wrapper .packages-image-wrapper .image {
  position: absolute;
  top: 0;
  left: -200px;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 20px;
}

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

.packages-content-wrapper .button-card {
  padding: 15px 25px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #fff;
  text-decoration: none;
  color: #1D1D1B;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.packages-content-wrapper .packages-list {
  position: relative;
  padding: 60px 0 30px 0;
  margin-left: -60px;
  margin-top: 10px;
}

.packages-content-wrapper .packages-list .columns {
  margin-left: -10px;
  margin-right: -10px;
}

.packages-content-wrapper .packages-list .columns > div {
  padding: 0 10px 20px 10px;
}

.packages-content-wrapper .packages-list:before {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  bottom: 0;
  right: -200px;
  background: #eff3f5;
  z-index: 0;
}

.packages-content-wrapper .columns {
  z-index: 2;
  position: relative;
}

.packages-content-wrapper .header {
  padding-left: 40px;
}

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

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

nav.desktop .nav-button > a span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0;
  background: #128580;
  transition: all 300ms;
}

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

nav.desktop {
  padding-right: 30px;
}

nav.desktop .sub-nav-button > a {
  padding: 10px 15px;
}

#logo, .scroll-up #TOP.sticked #logo {
  position: absolute;
  left: 40px;
  bottom: 50%;
  transform: translate(0, 50%);
  width: 220px;
  height: 70px;
  display: block;
  box-sizing: border-box;
  transition: all 300ms;
  z-index: 2;
}

#TOP.sticked #logo {
  height: 50px;
  width: 160px;
}

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

.header-modules .logo-link {
  height: 80%;
  margin-right: 15px;
}

.header-modules .logo-link a {
  display: block;
  height: 100%;
}

.header-modules .logo-link a img {
  height: 100%;
}

#TOP {
  border-bottom: 0;
}

#TOP-MAIN .header-modules {
  padding-left: 40px;
  margin-left: 20px;
  position: relative;
}

#TOP-MAIN .header-modules:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  height: 14px;
  width: 1px;
  background: #ddd;
}

#TOP-MAIN .logo-link {
  display: none;
  float: right;
  height: 32px;
  position: absolute;
  bottom: 13px;
  right: 70px;
}

.scroll-up #TOP.sticked,
.scroll-up #START #TOP.sticked {
  height: 120px !important;
}

.scroll-up #TOP.sticked #TOP-MAIN {
  height: 60px !important;
}

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

.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 .text-wrapper,
.banner-content .controls {
  text-align: left;
}

.article-section.padding-top h2:first-child {
  margin-top: 0;
}

#BOTTOM {
  padding: 100px 0;
}

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

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

#BOTTOM h3 {
  color: #fff;
  font-size: 1.2em;
}

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

#BOTTOM strong {
  color: #fff;
  font-weight: normal;
}

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

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

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

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

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

#SYSTEM-FOOT {
  border-top: 1px solid #52524c;
}

#SYSTEM-FOOT .container {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

#START h2 {
  text-align: left;
}

#START #FIRST-SECTION {
  padding: 50px 0;
}

.column-textblock {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.column-textblock .header {
  max-width: 500px;
}

.column-textblock .header {
  padding-bottom: 0;
}

#START .column-textblock .header h1, .column-textblock .header h1 {
  margin: 0;
}

.column-textblock .text-wrapper {
  padding-right: 10%;
}

.column-textblock .text-wrapper strong {
  font-size: 1.2rem;
  color: #1D1D1B;
}

.column-textblock .text-wrapper h3:first-child {
  margin-top: 0;
}

.column-textblock .controls .button {
  display: flex;
  max-width: 280px;
  box-sizing: border-box;
  width: 100%;
}

.column-textblock .controls .button:last-child {
  margin-right: 1rem;
}

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

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

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

.colage-box-wrapper a.colage-box .image, .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: top center;
  filter: grayscale(100%);
  transition: all 500ms;
}

.colage-box-wrapper .colage-box .hover-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  background-color: #128580;
  mix-blend-mode: multiply;
  transition: all 500ms;
}

.colage-box-wrapper .colage-box .content {
  position: absolute;
  right: 0;
  bottom: 300px;
  padding: 10px 30px;
  transform: rotate(270deg);
  transform-origin: bottom right;
  z-index: 2;
  width: 300px;
  height: auto;
  box-sizing: border-box;
}

.colage-box-wrapper .colage-box .content h4 {
  color: #fff;
  font-size: 1.2em;
}

.colage-box-wrapper a.colage-box:hover .image,
.colage-box-wrapper a.colage-box.hover .image,
.colage-box-wrapper a.colage-box:focus-visible .image {
  filter: grayscale(0);
}

.colage-box-wrapper a.colage-box:hover .hover-mask,
.colage-box-wrapper a.colage-box.hover .hover-mask,
.colage-box-wrapper a.colage-box:focus-visible .hover-mask {
  opacity: 0;
}

.colage-box-wrapper a.colage-box:hover,
.colage-box-wrapper a.colage-box.hover,
.colage-box-wrapper a.colage-box:focus-visible {
  flex: 2;
}

.program-group-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-top: 15px;
}

.program-group-header h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1D1D1B;
  margin: 0;
  padding-right: 20px;
}

.program-group-header > img {
  margin: 0 20px 0 0;
  display: block;
  height: 16px;
}

.status-box {
  border-radius: 20px;
  padding: 15px 20px;
  display: inline-block;
  border: 1px solid #ddd;
}

.status-box.active strong {
  color: #45b17d;
  margin-left: 10px;
  display: inline-block;
}

.project-item,
.department-item,
.recipient-item {
  min-height: 100px;
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 90px 20px 90px;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-sizing: border-box;
  background: #fff;
}

.under-banner {
  margin-top: -50px;
}

.department-item {
  padding-left: 120px;
  min-height: 120px;
}

.recipient-item {
  padding-left: 270px;
  min-height: 145px;
}

.project-item .icon-wrapper,
.department-item .icon-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 90px;
  height: 90px;
  padding: 20px;
  box-sizing: border-box;
}

.department-item .icon-wrapper {
  width: 120px;
  height: 120px;
}

.recipient-item .image-wrapper {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 250px;
  height: 145px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
}

.project-item .icon-wrapper .icon,
.department-item .icon-wrapper .icon {
  width: 100%;
  height: 100%;
  background: none;
  border-radius: 5px;
}

.recipient-item .image-wrapper .image {
  width: 100%;
  height: 100%;
  background: none;
}

.recipient-item .image-wrapper .image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.project-item .icon-wrapper .icon .img-placeholder,
.department-item .icon-wrapper .icon .img-placeholder,
.recipient-item .image-wrapper .image .img-placeholder {
  width: 100%;
  height: 100%;
  background-size: 80%;
  border-radius: 50%;
}

.project-item .icon-wrapper .icon .img-placeholder,
.department-item .icon-wrapper .icon .img-placeholder {
  background-color: #fff;
}

.recipient-item .image-wrapper .image .img-placeholder {
  border-radius: 18px;
}

.project-item h3,
.department-item h3,
.recipient-item h3,
.project-item strong,
.department-item strong,
.recipient-item strong {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.1em;
  font-weight: 500;
}

.project-item p,
.department-item p,
.recipient-item p {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: #505050;
}

.project-item .arrow,
.department-item .arrow,
.recipient-item .arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  background-image: url("graphics/svg/arrow.svg");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  right: 30px;
}

a.project-item,
a.department-item,
a.recipient-item {
  text-decoration: none;
  transition: all 300ms;
}

a.project-item:hover,
a.department-item:hover,
a.recipient-item:hover {
  border-color: #128580;
}

.columns.x4.news > div.first-news,
.columns.x4.first-hightlight > div.first-card {
  width: 75%;
}

.columns.x4.news > div.first-news .card .image .img-placeholder,
.columns.x4.first-hightlight > div.first-card .card .image .img-placeholder {
  padding-bottom: 100%;
}

div.first-news .card.item-0,
div.first-card .card.item-0 {
  position: relative;
  padding-left: 50%;
}

div.first-news .card.item-0 .image-wrapper,
div.first-card .card.item-0 .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  border-radius: 20px 0 0 20px;
}

div.first-news .card.item-0 .image-wrapper .image,
div.first-card .card.item-0 .image-wrapper .image {
  width: 100%;
  height: 100%;
}

div.first-news .card.item-0 .image-wrapper .image img,
div.first-card .card.item-0 .image-wrapper .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

div.first-news .card.item-0 .content,
div.first-card .card.item-0 .content {
  height: 100%;
  border-radius: 0 20px 20px 0;
  box-sizing: border-box;
  position: relative;
}

.news-wrapper .tile .updated {
  margin-top: -5px;
}

.tile .controls {
  padding-left: 40px;
  left: 150px;
  text-align: left;
}

.tile .controls-placeholder.txt {
  height: 0;
}

.tile .controls .button {
  margin-bottom: 0;
}

.button.show-more {
  margin-top: 40px;
}

.social-sharing-wrapper {
  padding-top: 1em;
}

.PAGE h1 {
  margin-bottom: 80px;
}

.add-article-info-wrapper {
  padding-top: 40px;
}

.add-article-info-wrapper .add-article-info {
  padding: 15px 20px;
  border-radius: 20px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.add-article-info-wrapper .add-article-info > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.add-article-info-wrapper .add-article-info > span {
  margin: 0 10px 0 0;
}

.add-article-info-wrapper .add-article-info .updated {
  margin: 0;
  margin-right: 30px;
  font-size: 1rem;
}

blockquote {
  margin-bottom: 1em;
}

.cb-photo_banner .image-wrapper,
.cb-text_photo .image-wrapper .image,
.gallery .image-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.ui-accordion-header, h2.ui-accordion-header {
  border-radius: 20px;
  margin-top: 20px !important;
}

.ui-accordion-content-active {
  border: 0;
}

.article-section.cb-text_content.border-content .cb-container .text-wrapper {
  border-radius: 20px;
}

.article-section .text-wrapper p > a {
  color: #1241ba;
}

.ui-accordion-content {
  margin-top: -16px;
  background: none;
}

.article-footer-controls {
  margin-top: 0;
}

.link-file {
  border-radius: 20px;
  font-size: 1rem;
}

.link-file-icon {
  width: 36px;
  height: 36px;
}

.link-file .button {
  width: auto;
  min-width: 0;
}

.article-section .text-wrapper .controls .button {
  height: auto;
  white-space: inherit;
}

.PAGE-BANNER-WRAPPER {
  height: 0;
  padding-bottom: 30%;
  position: relative;
}

.PAGE-BANNER {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #128580;
}

.PAGE-BANNER .page-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top 60px right;
  background-attachment: fixed;
  filter: grayscale(100%);
}

.PAGE-BANNER .dark-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #128580;
  mix-blend-mode: multiply;
}

.PAGE-BANNER .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.PAGE-BANNER .video-wrapper > div {
  width: 100%;
  height: 100%;
  padding: 0 !important;
}

.PAGE-BANNER .video-wrapper .video iframe,
.PAGE-BANNER .video-wrapper .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  padding-top: 140px;
  padding-bottom: 140px;
  transform: translate(0, -50%);
}

.page-banner-content h1,
.page-banner-content h1 .subtitle {
  color: #fff;
  margin-top: 0;
}

.page-banner-content h1 {
  max-width: 700px;
}

.page-banner-content .text-wrapper {
  max-width: 700px;
}

.article-section h1 {
  margin-top: 0;
}

.page-banner-content .breadcrumps a,
.page-banner-content .breadcrumps span {
  color: #ddd;
}

.page-banner-content .text-wrapper {
  color: #fff;
}

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

.contact-card {
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 20px;
}

.contact-card h4 {
  margin-top: 0;
  font-size: 1.1em;
}

.contact-card strong, .contact-card span {
  display: block;
}

.contact-card span.subtitle {
  font-size: 1em;
}

.contact-card span.subtitle,
.contact-card .name,
.contact-card .phones-wrapper,
.contact-card .emails-wrapper {
  margin-bottom: 15px;
}

.contact-card span.subtitle {
  margin-top: -15px;
}

.contact-card .phones-wrapper a {
  display: block;
}

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

.hours {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 3px;
       column-gap: 3px;
}

.hours p {
  margin: 0;
}

.contact_data_icon .hours {
  flex-direction: column;
}

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

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

.hours {
  margin: 10px 0;
}

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

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

.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: #1D1D1B;
  font-family: Poppins, 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: 40px;
  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%;
}

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

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

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

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

.contact-form .form-fields-wrapper .input-wrapper.field-rodo {
  clear: both;
  margin-top: 20px;
}

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

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

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

.field-cv {
  position: relative;
  pointer-events: none;
}

.field-cv:after {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  z-index: 3;
  display: block;
  height: 40px;
  padding: 10px;
  line-height: 1;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 500;
  font-size: 0.8rem;
  color: #fff;
  content: url("graphics/svg/add.svg");
  background-color: #138480;
  transition: all 300ms;
  text-transform: uppercase;
  width: 40px;
}

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

.form-fields-wrapper {
  display: block;
}

.add_text {
  padding-top: 40px;
  display: block;
}

.input-wrapper {
  max-width: 900px;
}

.checklist.wrapper {
  display: flex;
  border: 0;
  border-radius: 2px;
  padding: 1em 0 0 0;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.input-wrapper > strong {
  margin-top: 1em;
  display: block;
}

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

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

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

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

#START .contact-data-form-section > div.contact-col,
#START .contact-data-form-section > div.contact-col h2,
#START .contact-data-form-section > div.contact-col h2 .subtitle,
.contact-data-form-section > div.contact-col,
.contact-data-form-section > div.contact-col h2,
.contact-data-form-section > div.contact-col h2 .subtitle {
  color: #fff;
}

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

.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;
  font-size: 2.4rem;
}

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

.contact-data-product-section {
  border: 1px solid #ddd;
  padding: 50px;
}

.contact-data-product-section > div {
  float: left;
  box-sizing: border-box;
  padding-right: 80px;
}

.contact-data-product-section > div.contact-col {
  position: relative;
  width: 35%;
}

.contact-data-product-section > div.add-module-col {
  width: 65%;
  padding-right: 0;
}

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

.contact-data-product-section .contact_data {
  padding-top: 40px;
}

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

.contact-data-section .contact-box {
  padding: 50px 50px 20px 50px;
  border: 1px solid #ddd;
  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 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-product-section .phone-wrapper .button,
.contact-data-product-section .email-wrapper .button,
.contact-data-form-section .phone-wrapper .button,
.contact-data-form-section .email-wrapper .button {
  min-width: 180px;
}

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

.alt-bg {
  background: #EFF3F5;
}

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

.hash-nav-list-wrapper ul {
  display: block;
  overflow: hidden;
}

.hash-nav-list-wrapper ul li {
  list-style: none;
  margin-left: 0;
  padding: 0;
  display: block;
}

.hash-nav-list-wrapper .hash-nav-item {
  padding: 10px 10px 10px 20px;
  transition: all 100ms;
  color: #505050;
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  line-height: 1.2;
  font-size: 1rem;
}

.hash-nav-list-wrapper li:hover a.hash-nav-item, .hash-nav-list-wrapper li.urhere a.hash-nav-item {
  color: #128580;
  text-decoration: none;
}

.hash-nav-list-wrapper ul li .hash-nav-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  bottom: 0;
  width: 1px;
  background-color: #ddd;
  transition: all 100ms;
}

.hash-nav-list-wrapper li:hover a.hash-nav-item:after, .hash-nav-list-wrapper li.urhere a.hash-nav-item:after {
  width: 4px;
  background: #128580;
  left: 0px;
}

.hash-navigator-return-btn {
  padding-top: 20px;
  padding-left: 20px;
}

/* ========================= ================== ======================= */
/* ========================= cookie preferences ======================= */
/* === 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 #505050;
  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: Poppins, 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: #505050;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  border: 1px solid #505050;
  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;
}

#advanced-cookie-info {
  position: fixed;
  z-index: 999;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#advanced-cookie-info .container {
  background: #fff;
  width: 85vw;
  max-width: 500px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 30px 30px 20px 30px;
}

#advanced-cookie-info .container img {
  max-height: 30px;
  margin-bottom: 20px;
}

#advanced-cookie-info .text-wrapper {
  max-width: 100%;
  text-align: left;
  padding-bottom: 30px;
}

#advanced-cookie-info .button-wrapper {
  float: none;
  display: block;
  padding: 0;
  text-align: right;
  margin-top: 0;
}

#advanced-cookie-info .button-wrapper .button {
  margin-right: 25px;
  font-size: 14px;
  height: 40px;
}

#advanced-cookie-info .button-wrapper .button.txt {
  height: 2em;
  padding: 0;
  background: none;
  color: #1D1D1B;
  min-width: 0;
  padding-right: 0;
}

#advanced-cookie-info .button-wrapper .button.txt:after {
  display: none;
}

#advanced-cookie-info .button-wrapper .button:last-child {
  margin-right: 0;
}

#advanced-cookie-info .button {
  height: 40px;
}

#page-cookiepreferences .controls {
  text-align: right;
}

.set-cookie {
  padding: 15px 120px 15px 15px;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.set-cookie h3:first-child {
  margin-bottom: 15px;
  margin-top: 0;
  font-size: 1.1rem;
}

.set-cookie .text-wrapper {
  font-size: 0.9rem;
}

.set-cookie .onoffswitch {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

#page-cookiepreferences #advanced-cookie-info {
  display: none;
}

@media screen and (max-width: 700px) {
  #advanced-cookie-info .container {
    padding: 15px;
    font-size: 14px;
  }
  #advanced-cookie-info .container img {
    margin-bottom: 10px;
    max-height: 20px;
  }
  #advanced-cookie-info .text-wrapper {
    padding-bottom: 15px;
    line-height: 1.3;
  }
  #advanced-cookie-info .button-wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  #advanced-cookie-info .button-wrapper .button {
    margin: 0;
  }
}
/* ========================= // cookie preferences ======================= */
/* ========================= ================== ======================= */
a:focus-visible {
  border: 2px solid red;
  box-sizing: border-box;
  display: inline-block;
}

a.card:focus-visible,
a.icon-card:focus-visible,
a.tile:focus-visible,
a.icon-tile:focus-visible,
a.button-card:focus-visible {
  border: 2px solid red;
  display: block;
  box-sizing: border-box;
}

#TOP .search-wrapper {
  margin: 0;
}

.search-btn-wrapper .search-btn,
.search-btn-wrapper .search-btn:hover {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #128580;
  padding: 5px;
  background: #d4f1ef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn-wrapper .search-btn img, .search-btn-wrapper .search-btn svg {
  height: 18px;
}

.search-btn-wrapper .search-btn:hover img, .search-btn-wrapper .search-btn:hover svg {
  filter: invert(0) grayscale(0);
}

.search-panel input {
  height: 30px;
  padding: 7px 10px 7px 10px;
  font-size: 0.8rem;
}

.size-changer, .color-changer-wrapper, .disability-link-wrapper, .sign-language-link-wrapper {
  margin-right: 20px;
  background: #f2f5f6;
  border: 1px solid #cdd4d9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  overflow: hidden;
}

.color-changer-wrapper {
  padding: 0 4px;
}

.size-changer > a, .disability-link, .sign-language-link {
  color: #505050;
  text-decoration: none;
  margin: 0;
  line-height: 1;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.size-changer > a:after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 4px;
  width: 1px;
  background-color: #cdd4d9;
}

.size-changer > a:last-child:after {
  display: none;
}

.size-changer .size-1 {
  font-size: 14px !important;
}

.size-changer .size-2 {
  font-size: 17px !important;
}

.size-changer .size-3 {
  font-size: 20px !important;
  margin-right: 0;
}

.size-changer .size-1.urhere, .size-changer .size-2.urhere, .size-changer .size-3.urhere {
  background: #d4f1ef;
}

.disability-link img, .disability-link svg {
  width: 24px;
  height: 24px;
}

.color-changer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-changer > a {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin: 0 5px;
}

.color-changer > a > span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 50%;
}

.color-changer > a.black-yellow {
  background: #ffff00;
}

.color-changer > a.gray-lightgray {
  background: #e8e8e8;
}

.color-changer > a.black-yellow > span {
  background: #000;
}

.color-changer > a.gray-lightgray > span {
  background: #918f8f;
}

.color-changer > a.blue-white > span {
  background: #031698;
}

.color-changer > a.black-white > span {
  background: #000;
}

.size-2 *, .size-3 * {
  transition: none !important;
  word-wrap: break-word;
}

body.size-2, .size-2 input, .size-2 textarea {
  font-size: 18px !important;
}

body.size-3, .size-3 input, .size-3 textarea {
  font-size: 22px !important;
}

.color-1 #TOP,
.color-1 nav.mobile .nav-button > a {
  border-bottom: 1px solid #ffff00;
}

.color-1 nav.desktop .nav-button > a,
.color-1 .choose-lang a,
.color-1 .h-card .image-wrapper .image {
  border: 1px solid #000;
}

.color-1 .bm-paralax {
  transform: translate(0) !important;
}

.color-1 nav.desktop .nav-button > a:hover > span,
.color-1 #START #TOP.unsticked nav.desktop .nav-button > a:hover > span,
.color-1 nav.desktop .nav-button.urhere > a > span {
  border-bottom: 0;
}

.color-1 *:focus,
.color-1 nav.desktop .nav-button > a:hover,
.color-1 #START #TOP.unsticked nav.desktop .nav-button > a:hover,
.color-1 nav.desktop .nav-button.urhere > a,
.color-1 .card,
.color-1 .icon-card.border-style,
.color-1 a.icon-card.border-style:hover,
.color-1 nav.desktop .submenu,
.color-1 .project-item,
.color-1 .department-item,
.color-1 .recipient-item,
.color-1 a.project-item:hover,
.color-1 a.department-item:hover,
.color-1 a.recipient-item:hover,
.color-1 .article-footer-controls,
.color-1 .ribbon-file {
  border-color: #ffff00;
}

.color-1 div,
.color-1 h1,
.color-1 h2 {
  background-color: transparent !important;
}

.color-1 #CANVAS,
.color-1 #TOP,
.color-1 nav.desktop .submenu,
.color-1 nav.desktop .sub-nav-button > a:hover,
.color-1 #SYSTEM-FOOT,
.color-1 .button,
.color-1 .info-btn,
.color-1 *:after,
.color-1 *:before,
.color-1 .choose-lang,
.color-1 #cookie-info,
.color-1 .disability-panel,
.color-1 #mobile-menu-button,
.color-1 .nav-mobile,
.color-1 .h-card .content,
.color-1 .card,
.color-1 .project-item,
.color-1 .department-item,
.color-1 .recipient-item,
.color-1 .project-item .icon-wrapper .icon .img-placeholder,
.color-1 .department-item .icon-wrapper .icon .img-placeholder,
.color-1 .size-changer .size-1.urhere,
.color-1 .size-changer .size-2.urhere,
.color-1 .size-changer .size-3.urhere,
.color-1 .colage-box-wrapper .colage-box,
.color-1 .colage-box-wrapper .colage-box:hover {
  background-color: #000 !important;
  border-color: #000 !important;
}

.color-1 img, .color-1 .image {
  opacity: 0.4;
}

.color-1 * {
  color: #ffff00 !important;
}

.color-1 .slide::after,
.color-1 .PAGE-BANNER .dark-mask {
  background: rgba(0, 0, 0, 0.8) !important;
}

.color-1 .search-btn-wrapper .search-btn,
.color-1 .contact-data-box,
.color-1 select,
.color-1 input,
.color-1 textarea,
.color-1 .input-placeholder,
.color-1 .input-combo,
.color-1 .button,
.color-1 .info-btn,
.color-1 .event,
.color-1 .ui-accordion-header,
.color-1 h2.ui-accordion-header,
.color-1 .ui-accordion-header-icon,
.color-1 .link-file,
.color-1 .addons-mobile-menu > div,
.color-1 .choose-lang a:hover,
.color-1 .slick-prev,
.color-1 .slick-next,
.color-1 .disability-panel.show-me,
.color-1 .button-card,
#page-event.color-1 .cb-photo_banner .image-wrapper {
  background-color: #000 !important;
  border: 1px solid #ffff00 !important;
}

.color-1 #mobile-menu-button > span,
.color-1 #mobile-menu-button > span::after,
.color-1 #mobile-menu-button > span::before,
.color-1 .current-lang a::after,
.color-1 .current-lang a::before {
  background-color: #ffff00 !important;
}

.color-1 .button,
.color-1 .info-btn {
  padding-left: 20px;
}

.color-1 #logo svg path, .color-1 #logo svg rect .color-1 .contact_data svg path,
.color-1 #MAIN-BANER .social_links .social-icon svg path,
.color-1 .social_links .social-icon svg path,
.color-1 .search-btn-wrapper .search-btn svg path,
.color-1 .addons-mobile-menu .disability-link-panel .disability-link svg path,
.color-1 .event .table svg path,
.color-1 .contact_data svg path,
.color-1 .disability-link svg path,
.color-1 .st0 {
  fill: #ffff00 !important;
}

.color-1 .button .ico, .color-1 .info-btn .ico,
.color-1 .card .image-wrapper .card-head::after,
.color-1 .link-file-icon,
.color-1 .button.txt::after,
.color-1 .button::before {
  display: none;
}

.color-1 .card.header-card,
.color-1 .logo-box .thb-wrapper,
.color-1 .size-changer > a,
.color-1 .disability-link,
.color-1 .sign-language-link,
.color-1 .size-changer,
.color-1 .color-changer-wrapper,
.color-1 .disability-link-wrapper,
.color-1 .sign-language-link-wrapper {
  border: 0;
}

.color-2 #TOP,
.color-2 nav.mobile .nav-button > a {
  border-bottom: 1px solid #e8e8e8;
}

.color-2 nav.desktop .nav-button > a,
.color-2 .choose-lang a,
.color-2 .h-card .image-wrapper .image {
  border: 1px solid #918f8f;
}

.color-2 .bm-paralax {
  transform: translate(0) !important;
}

.color-2 nav.desktop .nav-button > a:hover > span,
.color-2 #START #TOP.unsticked nav.desktop .nav-button > a:hover > span,
.color-2 nav.desktop .nav-button.urhere > a > span {
  border-bottom: 0;
}

.color-2 *:focus,
.color-2 nav.desktop .nav-button > a:hover,
.color-2 #START #TOP.unsticked nav.desktop .nav-button > a:hover,
.color-2 nav.desktop .nav-button.urhere > a,
.color-2 .card,
.color-2 .icon-card.border-style,
.color-2 a.icon-card.border-style:hover,
.color-2 nav.desktop .submenu,
.color-2 .project-item,
.color-2 .department-item,
.color-2 .recipient-item,
.color-2 a.project-item:hover,
.color-2 a.department-item:hover,
.color-2 a.recipient-item:hover,
.color-2 .article-footer-controls,
.color-2 .ribbon-file {
  border-color: #e8e8e8;
}

.color-2 div,
.color-2 h1,
.color-2 h2 {
  background-color: transparent !important;
}

.color-2 #CANVAS,
.color-2 #TOP,
.color-2 nav.desktop .submenu,
.color-2 nav.desktop .sub-nav-button > a:hover,
.color-2 #SYSTEM-FOOT,
.color-2 .button,
.color-2 .info-btn,
.color-2 *:after,
.color-2 *:before,
.color-2 .choose-lang,
.color-2 #cookie-info,
.color-2 .disability-panel,
.color-2 #mobile-menu-button,
.color-2 .nav-mobile,
.color-2 .h-card .content,
.color-2 .card,
.color-2 .project-item,
.color-2 .department-item,
.color-2 .recipient-item,
.color-2 .project-item .icon-wrapper .icon .img-placeholder,
.color-2 .department-item .icon-wrapper .icon .img-placeholder,
.color-2 .size-changer .size-1.urhere,
.color-2 .size-changer .size-2.urhere,
.color-2 .size-changer .size-3.urhere,
.color-2 .colage-box-wrapper .colage-box,
.color-2 .colage-box-wrapper .colage-box:hover {
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}

.color-2 img, .color-2 .image {
  opacity: 0.4;
}

.color-2 * {
  color: #e8e8e8 !important;
}

.color-2 .slide::after,
.color-2 .PAGE-BANNER .dark-mask {
  background: rgba(145, 143, 143, 0.8) !important;
}

.color-2 .search-btn-wrapper .search-btn,
.color-2 .contact-data-box,
.color-2 select,
.color-2 input,
.color-2 textarea,
.color-2 .input-placeholder,
.color-2 .input-combo,
.color-2 .button,
.color-2 .info-btn,
.color-2 .event,
.color-2 .ui-accordion-header,
.color-2 h2.ui-accordion-header,
.color-2 .ui-accordion-header-icon,
.color-2 .link-file,
.color-2 .addons-mobile-menu > div,
.color-2 .choose-lang a:hover,
.color-2 .slick-prev,
.color-2 .slick-next,
.color-2 .disability-panel.show-me,
.color-2 .button-card,
#page-event.color-2 .cb-photo_banner .image-wrapper {
  background-color: #918f8f !important;
  border: 1px solid #e8e8e8 !important;
}

.color-2 #mobile-menu-button > span,
.color-2 #mobile-menu-button > span::after,
.color-2 #mobile-menu-button > span::before,
.color-2 .current-lang a::after,
.color-2 .current-lang a::before {
  background-color: #e8e8e8 !important;
}

.color-2 .button,
.color-2 .info-btn {
  padding-left: 20px;
}

.color-2 #logo svg path, .color-2 #logo svg rect .color-2 .contact_data svg path,
.color-2 #MAIN-BANER .social_links .social-icon svg path,
.color-2 .social_links .social-icon svg path,
.color-2 .search-btn-wrapper .search-btn svg path,
.color-2 .addons-mobile-menu .disability-link-panel .disability-link svg path,
.color-2 .event .table svg path,
.color-2 .contact_data svg path,
.color-2 .disability-link svg path,
.color-2 .st0 {
  fill: #e8e8e8 !important;
}

.color-2 .button .ico, .color-2 .info-btn .ico,
.color-2 .card .image-wrapper .card-head::after,
.color-2 .link-file-icon,
.color-2 .button.txt::after,
.color-2 .button::before {
  display: none;
}

.color-2 .card.header-card,
.color-2 .logo-box .thb-wrapper,
.color-2 .size-changer > a,
.color-2 .disability-link,
.color-2 .sign-language-link,
.color-2 .size-changer,
.color-2 .color-changer-wrapper,
.color-2 .disability-link-wrapper,
.color-2 .sign-language-link-wrapper {
  border: 0;
}

.color-3 #TOP,
.color-3 nav.mobile .nav-button > a {
  border-bottom: 1px solid #fff;
}

.color-3 nav.desktop .nav-button > a,
.color-3 .choose-lang a,
.color-3 .h-card .image-wrapper .image {
  border: 1px solid #031698;
}

.color-3 .bm-paralax {
  transform: translate(0) !important;
}

.color-3 nav.desktop .nav-button > a:hover > span,
.color-3 #START #TOP.unsticked nav.desktop .nav-button > a:hover > span,
.color-3 nav.desktop .nav-button.urhere > a > span {
  border-bottom: 0;
}

.color-3 *:focus,
.color-3 nav.desktop .nav-button > a:hover,
.color-3 #START #TOP.unsticked nav.desktop .nav-button > a:hover,
.color-3 nav.desktop .nav-button.urhere > a,
.color-3 .card,
.color-3 .icon-card.border-style,
.color-3 a.icon-card.border-style:hover,
.color-3 nav.desktop .submenu,
.color-3 .project-item,
.color-3 .department-item,
.color-3 .recipient-item,
.color-3 a.project-item:hover,
.color-3 a.department-item:hover,
.color-3 a.recipient-item:hover,
.color-3 .article-footer-controls,
.color-3 .ribbon-file {
  border-color: #fff;
}

.color-3 div,
.color-3 h1,
.color-3 h2 {
  background-color: transparent !important;
}

.color-3 #CANVAS,
.color-3 #TOP,
.color-3 nav.desktop .submenu,
.color-3 nav.desktop .sub-nav-button > a:hover,
.color-3 #SYSTEM-FOOT,
.color-3 .button,
.color-3 .info-btn,
.color-3 *:after,
.color-3 *:before,
.color-3 .choose-lang,
.color-3 #cookie-info,
.color-3 .disability-panel,
.color-3 #mobile-menu-button,
.color-3 .nav-mobile,
.color-3 .h-card .content,
.color-3 .card,
.color-3 .project-item,
.color-3 .department-item,
.color-3 .recipient-item,
.color-3 .project-item .icon-wrapper .icon .img-placeholder,
.color-3 .department-item .icon-wrapper .icon .img-placeholder,
.color-3 .size-changer .size-1.urhere,
.color-3 .size-changer .size-2.urhere,
.color-3 .size-changer .size-3.urhere,
.color-3 .colage-box-wrapper .colage-box,
.color-3 .colage-box-wrapper .colage-box:hover {
  background-color: #031698 !important;
  border-color: #031698 !important;
}

.color-3 img, .color-3 .image {
  opacity: 0.4;
}

.color-3 * {
  color: #fff !important;
}

.color-3 .slide::after,
.color-3 .PAGE-BANNER .dark-mask {
  background: rgba(3, 22, 152, 0.8) !important;
}

.color-3 .search-btn-wrapper .search-btn,
.color-3 .contact-data-box,
.color-3 select,
.color-3 input,
.color-3 textarea,
.color-3 .input-placeholder,
.color-3 .input-combo,
.color-3 .button,
.color-3 .info-btn,
.color-3 .event,
.color-3 .ui-accordion-header,
.color-3 h2.ui-accordion-header,
.color-3 .ui-accordion-header-icon,
.color-3 .link-file,
.color-3 .addons-mobile-menu > div,
.color-3 .choose-lang a:hover,
.color-3 .slick-prev,
.color-3 .slick-next,
.color-3 .disability-panel.show-me,
.color-3 .button-card,
#page-event.color-3 .cb-photo_banner .image-wrapper {
  background-color: #031698 !important;
  border: 1px solid #fff !important;
}

.color-3 #mobile-menu-button > span,
.color-3 #mobile-menu-button > span::after,
.color-3 #mobile-menu-button > span::before,
.color-3 .current-lang a::after,
.color-3 .current-lang a::before {
  background-color: #fff !important;
}

.color-3 .button,
.color-3 .info-btn {
  padding-left: 20px;
}

.color-3 #logo svg path, .color-3 #logo svg rect .color-3 .contact_data svg path,
.color-3 #MAIN-BANER .social_links .social-icon svg path,
.color-3 .social_links .social-icon svg path,
.color-3 .search-btn-wrapper .search-btn svg path,
.color-3 .addons-mobile-menu .disability-link-panel .disability-link svg path,
.color-3 .event .table svg path,
.color-3 .contact_data svg path,
.color-3 .disability-link svg path,
.color-3 .st0 {
  fill: #fff !important;
}

.color-3 .button .ico, .color-3 .info-btn .ico,
.color-3 .card .image-wrapper .card-head::after,
.color-3 .link-file-icon,
.color-3 .button.txt::after,
.color-3 .button::before {
  display: none;
}

.color-3 .card.header-card,
.color-3 .logo-box .thb-wrapper,
.color-3 .size-changer > a,
.color-3 .disability-link,
.color-3 .sign-language-link,
.color-3 .size-changer,
.color-3 .color-changer-wrapper,
.color-3 .disability-link-wrapper,
.color-3 .sign-language-link-wrapper {
  border: 0;
}

.color-4 #TOP,
.color-4 nav.mobile .nav-button > a {
  border-bottom: 1px solid #fff;
}

.color-4 nav.desktop .nav-button > a,
.color-4 .choose-lang a,
.color-4 .h-card .image-wrapper .image {
  border: 1px solid #000;
}

.color-4 .bm-paralax {
  transform: translate(0) !important;
}

.color-4 nav.desktop .nav-button > a:hover > span,
.color-4 #START #TOP.unsticked nav.desktop .nav-button > a:hover > span,
.color-4 nav.desktop .nav-button.urhere > a > span {
  border-bottom: 0;
}

.color-4 *:focus,
.color-4 nav.desktop .nav-button > a:hover,
.color-4 #START #TOP.unsticked nav.desktop .nav-button > a:hover,
.color-4 nav.desktop .nav-button.urhere > a,
.color-4 .card,
.color-4 .icon-card.border-style,
.color-4 a.icon-card.border-style:hover,
.color-4 nav.desktop .submenu,
.color-4 .project-item,
.color-4 .department-item,
.color-4 .recipient-item,
.color-4 a.project-item:hover,
.color-4 a.department-item:hover,
.color-4 a.recipient-item:hover,
.color-4 .article-footer-controls,
.color-4 .ribbon-file {
  border-color: #fff;
}

.color-4 div,
.color-4 h1,
.color-4 h2 {
  background-color: transparent !important;
}

.color-4 #CANVAS,
.color-4 #TOP,
.color-4 nav.desktop .submenu,
.color-4 nav.desktop .sub-nav-button > a:hover,
.color-4 #SYSTEM-FOOT,
.color-4 .button,
.color-4 .info-btn,
.color-4 *:after,
.color-4 *:before,
.color-4 .choose-lang,
.color-4 #cookie-info,
.color-4 .disability-panel,
.color-4 #mobile-menu-button,
.color-4 .nav-mobile,
.color-4 .h-card .content,
.color-4 .card,
.color-4 .project-item,
.color-4 .department-item,
.color-4 .recipient-item,
.color-4 .project-item .icon-wrapper .icon .img-placeholder,
.color-4 .department-item .icon-wrapper .icon .img-placeholder,
.color-4 .size-changer .size-1.urhere,
.color-4 .size-changer .size-2.urhere,
.color-4 .size-changer .size-3.urhere,
.color-4 .colage-box-wrapper .colage-box,
.color-4 .colage-box-wrapper .colage-box:hover {
  background-color: #000 !important;
  border-color: #000 !important;
}

.color-4 img, .color-4 .image {
  opacity: 0.4;
}

.color-4 * {
  color: #fff !important;
}

.color-4 .slide::after,
.color-4 .PAGE-BANNER .dark-mask {
  background: rgba(0, 0, 0, 0.8) !important;
}

.color-4 .search-btn-wrapper .search-btn,
.color-4 .contact-data-box,
.color-4 select,
.color-4 input,
.color-4 textarea,
.color-4 .input-placeholder,
.color-4 .input-combo,
.color-4 .button,
.color-4 .info-btn,
.color-4 .event,
.color-4 .ui-accordion-header,
.color-4 h2.ui-accordion-header,
.color-4 .ui-accordion-header-icon,
.color-4 .link-file,
.color-4 .addons-mobile-menu > div,
.color-4 .choose-lang a:hover,
.color-4 .slick-prev,
.color-4 .slick-next,
.color-4 .disability-panel.show-me,
.color-4 .button-card,
#page-event.color-4 .cb-photo_banner .image-wrapper {
  background-color: #000 !important;
  border: 1px solid #fff !important;
}

.color-4 #mobile-menu-button > span,
.color-4 #mobile-menu-button > span::after,
.color-4 #mobile-menu-button > span::before,
.color-4 .current-lang a::after,
.color-4 .current-lang a::before {
  background-color: #fff !important;
}

.color-4 .button,
.color-4 .info-btn {
  padding-left: 20px;
}

.color-4 #logo svg path, .color-4 #logo svg rect .color-4 .contact_data svg path,
.color-4 #MAIN-BANER .social_links .social-icon svg path,
.color-4 .social_links .social-icon svg path,
.color-4 .search-btn-wrapper .search-btn svg path,
.color-4 .addons-mobile-menu .disability-link-panel .disability-link svg path,
.color-4 .event .table svg path,
.color-4 .contact_data svg path,
.color-4 .disability-link svg path,
.color-4 .st0 {
  fill: #fff !important;
}

.color-4 .button .ico, .color-4 .info-btn .ico,
.color-4 .card .image-wrapper .card-head::after,
.color-4 .link-file-icon,
.color-4 .button.txt::after,
.color-4 .button::before {
  display: none;
}

.color-4 .card.header-card,
.color-4 .logo-box .thb-wrapper,
.color-4 .size-changer > a,
.color-4 .disability-link,
.color-4 .sign-language-link,
.color-4 .size-changer,
.color-4 .color-changer-wrapper,
.color-4 .disability-link-wrapper,
.color-4 .sign-language-link-wrapper {
  border: 0;
}/*# sourceMappingURL=theme.css.map */