/*
Theme Name: Webkodeks
Theme URI: https://webkodeks.com
Version: 1.0
Description: A customized version of Divi which adds a number of tiny features I need.
Author: Webkodeks.com
Author URI: https://webkodeks.com
Template: Divi

*/

/* YOUR CSS EDITS GO BELOW THIS LINE AND AND CSS RULES YOU MAKE HERE WILL OVERIDE THE MASTER DIVI THEME CSS RULES */


/* HEADER */
#wk-7341-header, #wk-7341-header * { box-sizing:border-box; }
#wk-7341-header img { max-width:100%; height:auto; display:block; }
#wk-7341-header a { text-decoration:none; color:inherit; }
#wk-7341-header button, #wk-7341-header input, #wk-7341-header textarea, #wk-7341-header select { font:inherit; }

#wk-7341-header {
  position:sticky;
  top:0;
  z-index:999;
  width:100%;
  background:#ffffff;
  border-bottom:1px solid rgba(54,52,53,.1);
  box-shadow:0 8px 24px rgba(54,52,53,.05);
  font-family:'Open Sans' !important;
}

#wk-7341-header .wk-row {
  width:80%;
  max-width:80%;
  min-height:92px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(150px,220px) minmax(0,1fr) auto;
  align-items:center;
  gap:30px;
  transition:min-height .25s ease, padding .25s ease;
}

#wk-7341-header .wk-col {
  min-width:0;
}

#wk-7341-header .wk-col-1 {
  display:flex;
  justify-content:flex-start;
  align-items:center;
}

#wk-7341-header .wk-col-2 {
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

#wk-7341-header .wk-col-3 {
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

#wk-7341-header .wk-7341-module-image {
  width:100%;
  max-width:190px;
}

#wk-7341-header .wk-7341-logo-link {
  display:inline-flex;
  align-items:center;
  max-width:100%;
}

#wk-7341-header .wk-7341-logo {
  width:auto;
  max-width:190px;
  max-height:72px;
  object-fit:contain;
}

#wk-7341-header .wk-7341-module-menu {
  display:flex;
  align-items:center;
}

#wk-7341-header .wk-7341-navigation {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:30px;
}

#wk-7341-header .wk-7341-nav-link {
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:4px 0;
  color:#363435;
  font-size:15px;
  font-weight:600;
  line-height:1.3;
  white-space:nowrap;
  transition:color .2s ease;
}

#wk-7341-header .wk-7341-nav-link::after {
  content:"";
  position:absolute;
  right:0;
  bottom:3px;
  left:0;
  height:2px;
  background:#FAAA31;
  border-radius:2px;
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .2s ease;
}

#wk-7341-header .wk-7341-nav-link:hover,
#wk-7341-header .wk-7341-nav-link:focus-visible,
#wk-7341-header .wk-7341-nav-link[aria-current="page"] {
  color:#363435;
}

#wk-7341-header .wk-7341-nav-link:hover::after,
#wk-7341-header .wk-7341-nav-link:focus-visible::after,
#wk-7341-header .wk-7341-nav-link[aria-current="page"]::after {
  transform:scaleX(1);
}

#wk-7341-header .wk-7341-module-button {
  display:flex;
  align-items:center;
}

#wk-7341-header .wk-7341-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 23px;
  background:#FAAA31;
  color:#363435;
  border:1px solid #FAAA31;
  border-radius:9px;
  box-shadow:0 8px 18px rgba(250,170,49,.2);
  font-size:15px;
  font-weight:700;
  line-height:1.3;
  white-space:nowrap;
  transition:background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

#wk-7341-header .wk-7341-cta:hover,
#wk-7341-header .wk-7341-cta:focus-visible {
  background:#f5a01d;
  border-color:#f5a01d;
  color:#363435;
  box-shadow:0 10px 22px rgba(250,170,49,.3);
  transform:translateY(-1px);
}

#wk-7341-header .wk-7341-menu-toggle-input,
#wk-7341-header .wk-7341-menu-toggle {
  display:none;
}

#wk-7341-header .wk-7341-menu-icon {
  font-family:'ETmodules' !important;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

@media (max-width:1100px) {
  #wk-7341-header .wk-row {
    grid-template-columns:minmax(135px,170px) minmax(0,1fr) auto;
    gap:22px;
  }

  #wk-7341-header .wk-7341-navigation {
    gap:20px;
  }

  #wk-7341-header .wk-7341-logo {
    max-width:165px;
    max-height:66px;
  }

  #wk-7341-header .wk-7341-cta {
    padding-right:18px;
    padding-left:18px;
  }
}

@media (max-width:900px) {
  #wk-7341-header .wk-row {
    position:relative;
    grid-template-columns:minmax(0,1fr) auto;
    min-height:78px;
    gap:18px;
  }

  #wk-7341-header .wk-col-1 {
    grid-column:1;
    grid-row:1;
  }

  #wk-7341-header .wk-col-2 {
    grid-column:2;
    grid-row:1;
  }

  #wk-7341-header .wk-col-3 {
    display:none;
    grid-column:1 / -1;
  }

  #wk-7341-header .wk-7341-module-image {
    max-width:155px;
  }

  #wk-7341-header .wk-7341-logo {
    max-width:155px;
    max-height:58px;
  }

  #wk-7341-header .wk-7341-module-menu {
    position:static;
  }

  #wk-7341-header .wk-7341-menu-toggle-input {
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    opacity:0;
    pointer-events:none;
  }

  #wk-7341-header .wk-7341-menu-toggle {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    background:#fffaf2;
    color:#363435;
    border:1px solid rgba(250,170,49,.48);
    border-radius:9px;
    cursor:pointer;
    transition:background .2s ease, border-color .2s ease;
  }

  #wk-7341-header .wk-7341-menu-toggle:hover {
    background:#FAAA31;
    border-color:#FAAA31;
  }

  #wk-7341-header .wk-7341-menu-icon {
    font-size:27px;
  }

  #wk-7341-header .wk-7341-navigation {
    position:absolute;
    top:78px;
    right:0;
    left:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px 0 88px;
    background:#ffffff;
    border-top:1px solid rgba(54,52,53,.08);
  }

  #wk-7341-header .wk-7341-nav-link {
    width:100%;
    min-height:48px;
    padding:12px 4px;
    border-bottom:1px solid rgba(54,52,53,.07);
    font-size:16px;
  }

  #wk-7341-header .wk-7341-nav-link::after {
    top:10px;
    right:auto;
    bottom:10px;
    left:-12px;
    width:3px;
    height:auto;
    transform:scaleY(0);
  }

  #wk-7341-header .wk-7341-nav-link:hover::after,
  #wk-7341-header .wk-7341-nav-link:focus-visible::after,
  #wk-7341-header .wk-7341-nav-link[aria-current="page"]::after {
    transform:scaleY(1);
  }

  #wk-7341-header .wk-7341-menu-toggle-input:checked ~ .wk-7341-navigation {
    display:flex;
  }

  #wk-7341-header .wk-row:has(.wk-7341-menu-toggle-input:checked) {
    padding-bottom:328px;
  }

  #wk-7341-header .wk-row:has(.wk-7341-menu-toggle-input:checked) .wk-col-3 {
    position:absolute;
    right:0;
    bottom:18px;
    left:0;
    display:flex;
  }

  #wk-7341-header .wk-7341-module-button,
  #wk-7341-header .wk-7341-cta {
    width:100%;
  }
}

@media (max-width:520px) {
  #wk-7341-header .wk-row {
    width:80%;
    max-width:80%;
  }

  #wk-7341-header .wk-7341-module-image,
  #wk-7341-header .wk-7341-logo {
    max-width:132px;
  }
}

/* BODY */
#wk-7314-hero, #wk-7314-hero * { box-sizing:border-box; }
  #wk-7314-hero img { max-width:100%; height:auto; display:block; }
  #wk-7314-hero a { text-decoration:none; color:inherit; }
  #wk-7314-hero button, #wk-7314-hero input, #wk-7314-hero textarea, #wk-7314-hero select { font:inherit; }

  #wk-7314-hero {
    position:relative;
    min-height:clamp(680px, 82vh, 900px);
    margin:0;
    padding:clamp(88px, 10vw, 150px) 0;
    overflow:hidden;
   background-color: #36343526;
    background-repeat:no-repeat;
    background-position:68% center;
    background-size:cover;
    font-family:'Open Sans' !important;
    isolation:isolate;
  }

  #wk-7314-hero::before {
    position:absolute;
    z-index:0;
    inset:0;
    background:linear-gradient(
      90deg,
      rgba(16,15,16,.96) 0%,
      rgba(16,15,16,.91) 25%,
      rgba(16,15,16,.78) 43%,
      rgba(16,15,16,.48) 61%,
      rgba(16,15,16,.14) 80%,
      rgba(16,15,16,.02) 100%
    );
    content:"";
    pointer-events:none;
  }

  #wk-7314-hero::after {
    position:absolute;
    z-index:0;
    inset:0;
    background:linear-gradient(
      180deg,
      rgba(20,19,20,.12) 0%,
      rgba(20,19,20,.02) 55%,
      rgba(20,19,20,.34) 100%
    );
    content:"";
    pointer-events:none;
  }

  #wk-7314-hero .wk-row {
    width:80%;
    max-width:80%;
    margin:0 auto;
  }

  #wk-7314-hero .wk-7314-hero-row {
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0, 58fr) minmax(0, 42fr);
    align-items:center;
    min-height:clamp(504px, 62vh, 650px);
  }

  #wk-7314-hero .wk-col {
    min-width:0;
  }

  #wk-7314-hero .wk-7314-content-col {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    max-width:790px;
  }

  #wk-7314-hero .wk-module {
    width:100%;
  }

  #wk-7314-hero .wk-7314-eyebrow-module {
    margin:0 0 20px;
  }

  #wk-7314-hero .wk-7314-eyebrow {
    display:inline-flex;
    align-items:center;
    margin:0;
    padding:8px 14px;
    border:1px solid rgba(255,255,255,.42);
    border-radius:999px;
    background:rgba(20,19,20,.28);
    color:#ffffff;
    font-size:13px;
    font-weight:700;
    line-height:1.2;
    letter-spacing:.08em;
    text-transform:uppercase;
    backdrop-filter:blur(8px);
  }

  #wk-7314-hero .wk-7314-title-module {
    margin:0 0 24px;
  }

  #wk-7314-hero .wk-7314-title {
    max-width:790px;
    margin:0;
    color:#ffffff;
    font-size:clamp(42px, 5vw, 74px);
    font-weight:700;
    line-height:1.06;
    letter-spacing:-.04em;
    overflow-wrap:normal;
    word-break:normal;
    text-shadow:0 3px 24px rgba(0,0,0,.34);
  }

  #wk-7314-hero .wk-7314-description-module {
    max-width:700px;
    margin:0 0 30px;
  }

  #wk-7314-hero .wk-7314-description {
    margin:0;
    color:#ffffff;
    font-size:clamp(16px, 1.3vw, 19px);
    font-weight:400;
    line-height:1.75;
    text-shadow:0 2px 16px rgba(0,0,0,.34);
  }

  #wk-7314-hero .wk-7314-care-module {
    margin:0 0 36px;
  }

  #wk-7314-hero .wk-7314-care-list {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
  }

  #wk-7314-hero .wk-7314-care-item {
    display:inline-flex;
    align-items:center;
    min-height:42px;
    padding:9px 15px;
    border:1px solid rgba(255,255,255,.4);
    border-left:3px solid #FAAA31;
    border-radius:8px;
    background:rgba(20,19,20,.3);
    color:#ffffff;
    font-size:14px;
    font-weight:700;
    line-height:1.35;
    box-shadow:0 10px 28px rgba(0,0,0,.12);
    backdrop-filter:blur(8px);
  }

  #wk-7314-hero .wk-7314-button-module {
    width:auto;
  }

  #wk-7314-hero .wk-7314-button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:15px 30px;
    border:2px solid #FAAA31;
    border-radius:9px;
    background:#FAAA31;
    color:#363435;
    font-size:16px;
    font-weight:700;
    line-height:1.2;
    box-shadow:0 14px 32px rgba(0,0,0,.22);
    transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  }

  #wk-7314-hero .wk-7314-button:hover,
  #wk-7314-hero .wk-7314-button:focus-visible {
    background:#ffffff;
    color:#363435;
    border-color:#ffffff;
    transform:translateY(-2px);
    box-shadow:0 18px 38px rgba(0,0,0,.28);
  }

  #wk-7314-hero .wk-7314-button:focus-visible {
    outline:3px solid rgba(255,255,255,.48);
    outline-offset:4px;
  }

  #wk-7314-hero .wk-7314-image-col {
    display:none;
  }

  @media (max-width:1100px) {
    #wk-7314-hero {
      background-position:64% center;
    }

    #wk-7314-hero .wk-row {
      width:88%;
      max-width:88%;
    }

    #wk-7314-hero .wk-7314-hero-row {
      grid-template-columns:minmax(0, 68fr) minmax(0, 32fr);
    }

    #wk-7314-hero .wk-7314-content-col {
      max-width:700px;
    }
  }

  @media (max-width:767px) {
    #wk-7314-hero {
      min-height:720px;
      padding:76px 0 82px;
      background-position:62% center;
    }

    #wk-7314-hero::before {
      background:linear-gradient(
        180deg,
        rgba(16,15,16,.9) 0%,
        rgba(16,15,16,.82) 48%,
        rgba(16,15,16,.64) 72%,
        rgba(16,15,16,.52) 100%
      );
    }

    #wk-7314-hero::after {
      background:linear-gradient(
        180deg,
        rgba(20,19,20,.12) 0%,
        rgba(20,19,20,.04) 55%,
        rgba(20,19,20,.34) 100%
      );
    }

    #wk-7314-hero .wk-row {
      width:90%;
      max-width:90%;
    }

    #wk-7314-hero .wk-7314-hero-row {
      grid-template-columns:minmax(0, 1fr);
      min-height:562px;
    }

    #wk-7314-hero .wk-7314-content-col {
      max-width:100%;
    }

    #wk-7314-hero .wk-7314-title {
      font-size:clamp(37px, 10.5vw, 51px);
      line-height:1.08;
      letter-spacing:-.03em;
    }

    #wk-7314-hero .wk-7314-description-module {
      margin-bottom:25px;
    }

    #wk-7314-hero .wk-7314-care-module {
      margin-bottom:30px;
    }

    #wk-7314-hero .wk-7314-care-list {
      flex-direction:column;
      align-items:stretch;
      gap:9px;
    }

    #wk-7314-hero .wk-7314-care-item {
      width:100%;
    }

    #wk-7314-hero .wk-7314-button-module,
    #wk-7314-hero .wk-7314-button {
      width:100%;
    }

    #wk-7314-hero .wk-7314-button {
      min-height:58px;
    }
  }

  @media (max-width:480px) {
    #wk-7314-hero {
      min-height:760px;
      padding:68px 0 74px;
      background-position:60% center;
    }

    #wk-7314-hero .wk-7314-eyebrow {
      font-size:12px;
    }

    #wk-7314-hero .wk-7314-description {
      font-size:16px;
      line-height:1.65;
    }
  }

#wk-8426-usluge, #wk-8426-usluge * { box-sizing:border-box; }
  #wk-8426-usluge img { max-width:100%; height:auto; display:block; }
  #wk-8426-usluge a { text-decoration:none; color:inherit; }
  #wk-8426-usluge button, #wk-8426-usluge input, #wk-8426-usluge textarea, #wk-8426-usluge select { font:inherit; }

  #wk-8426-usluge {
    margin:0;
    padding:clamp(72px, 8vw, 120px) 0;
    overflow:hidden;
    background:#ffffff;
    font-family:'Open Sans' !important;
  }

  #wk-8426-usluge .wk-row {
    width:80%;
    max-width:80%;
    margin:0 auto;
  }

  #wk-8426-usluge .wk-8426-main-row {
    display:grid;
    grid-template-columns:minmax(0, 1.42fr) minmax(320px, .88fr);
    align-items:start;
    gap:clamp(48px, 7vw, 104px);
  }

  #wk-8426-usluge .wk-col {
    min-width:0;
  }

  #wk-8426-usluge .wk-module {
    width:100%;
  }

  #wk-8426-usluge .wk-8426-label-module {
    margin:0 0 16px;
  }

  #wk-8426-usluge .wk-8426-label {
    display:inline-flex;
    align-items:center;
    margin:0;
    color:#b36b00;
    font-size:13px;
    font-weight:700;
    line-height:1.3;
    letter-spacing:.11em;
    text-transform:uppercase;
  }

  #wk-8426-usluge .wk-8426-label::before {
    width:30px;
    height:2px;
    margin-right:11px;
    background:#FAAA31;
    content:"";
  }

  #wk-8426-usluge .wk-8426-title-module {
    max-width:780px;
    margin:0 0 22px;
  }

  #wk-8426-usluge .wk-8426-title {
    margin:0;
    color:#363435;
    font-size:clamp(34px, 4vw, 58px);
    font-weight:700;
    line-height:1.12;
    letter-spacing:-.035em;
  }

  #wk-8426-usluge .wk-8426-intro-module {
    max-width:730px;
    margin:0 0 34px;
  }

  #wk-8426-usluge .wk-8426-intro {
    margin:0;
    color:#5c5859;
    font-size:clamp(16px, 1.3vw, 19px);
    font-weight:400;
    line-height:1.75;
  }

  #wk-8426-usluge .wk-8426-image-module {
    width:100%;
    aspect-ratio:4 / 3;
    overflow:hidden;
    border-radius:18px;
    background:#eee7dd;
    box-shadow:0 22px 52px rgba(54,52,53,.11);
  }

  #wk-8426-usluge .wk-8426-image {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
  }

  #wk-8426-usluge .wk-8426-palliative-title-module {
    position:relative;
    z-index:2;
    width:calc(100% - 42px);
    margin:-42px 0 0 42px;
    padding:27px 32px 8px;
    border-left:5px solid #FAAA31;
    background:#ffffff;
  }

  #wk-8426-usluge .wk-8426-palliative-title {
    margin:0;
    color:#363435;
    font-size:clamp(25px, 2.4vw, 34px);
    font-weight:700;
    line-height:1.22;
    letter-spacing:-.02em;
  }

  #wk-8426-usluge .wk-8426-palliative-copy-module {
    width:calc(100% - 42px);
    margin:0 0 0 42px;
    padding:10px 32px 30px;
    border-left:5px solid #FAAA31;
    background:#ffffff;
    box-shadow:0 18px 42px rgba(54,52,53,.08);
  }

  #wk-8426-usluge .wk-8426-palliative-copy {
    margin:0;
    color:#565253;
    font-size:16px;
    font-weight:400;
    line-height:1.75;
  }

  #wk-8426-usluge .wk-8426-right-col {
    padding-top:clamp(28px, 5vw, 76px);
  }

  #wk-8426-usluge .wk-8426-service-title-module {
    margin:0;
    padding:28px 0 12px;
    border-top:1px solid rgba(54,52,53,.24);
  }

  #wk-8426-usluge .wk-8426-service-title-module:first-child {
    padding-top:0;
    border-top:0;
  }

  #wk-8426-usluge .wk-8426-service-title {
    margin:0;
    color:#363435;
    font-size:clamp(21px, 2vw, 28px);
    font-weight:700;
    line-height:1.28;
    letter-spacing:-.015em;
  }

  #wk-8426-usluge .wk-8426-service-copy-module {
    margin:0 0 28px;
  }

  #wk-8426-usluge .wk-8426-service-copy {
    margin:0 0 13px;
    color:#5c5859;
    font-size:15px;
    font-weight:400;
    line-height:1.7;
  }

  #wk-8426-usluge .wk-8426-service-copy:last-child {
    margin-bottom:0;
  }

  #wk-8426-usluge .wk-8426-service-copy strong {
    color:#363435;
    font-weight:700;
  }

  #wk-8426-usluge .wk-8426-specialists-module {
    margin:0 0 28px;
  }

  #wk-8426-usluge .wk-8426-specialists {
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:9px 22px;
    margin:0;
    padding:0;
    list-style:none;
  }

  #wk-8426-usluge .wk-8426-specialist {
    position:relative;
    margin:0;
    padding-left:15px;
    color:#565253;
    font-size:15px;
    font-weight:600;
    line-height:1.5;
  }

  #wk-8426-usluge .wk-8426-specialist::before {
    position:absolute;
    top:.65em;
    left:0;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#FAAA31;
    content:"";
    transform:translateY(-50%);
  }

  #wk-8426-usluge .wk-8426-transport-title-module {
    padding-top:28px;
    border-top:1px solid rgba(54,52,53,.24);
  }

  #wk-8426-usluge .wk-8426-transport-title {
    margin:0;
    color:#363435;
    font-size:clamp(21px, 2vw, 28px);
    font-weight:700;
    line-height:1.28;
    letter-spacing:-.015em;
  }

  #wk-8426-usluge .wk-8426-transport-copy-module {
    margin-top:12px;
    padding:0 0 0 18px;
    border-left:3px solid #FAAA31;
  }

  #wk-8426-usluge .wk-8426-transport-copy {
    margin:0;
    color:#565253;
    font-size:15px;
    font-weight:400;
    line-height:1.7;
  }

  #wk-8426-usluge .wk-8426-transport-copy strong {
    color:#363435;
    font-weight:700;
  }

  @media (max-width:1100px) {
    #wk-8426-usluge .wk-row {
      width:88%;
      max-width:88%;
    }

    #wk-8426-usluge .wk-8426-main-row {
      grid-template-columns:minmax(0, 1.2fr) minmax(300px, .8fr);
      gap:48px;
    }

    #wk-8426-usluge .wk-8426-palliative-title-module,
    #wk-8426-usluge .wk-8426-palliative-copy-module {
      width:calc(100% - 24px);
      margin-left:24px;
    }
  }

  @media (max-width:767px) {
    #wk-8426-usluge {
      padding:64px 0 72px;
    }

    #wk-8426-usluge .wk-row {
      width:90%;
      max-width:90%;
    }

    #wk-8426-usluge .wk-8426-main-row {
      grid-template-columns:minmax(0, 1fr);
      gap:48px;
    }

    #wk-8426-usluge .wk-8426-title {
      font-size:clamp(34px, 10vw, 46px);
      line-height:1.13;
      letter-spacing:-.025em;
    }

    #wk-8426-usluge .wk-8426-intro-module {
      margin-bottom:28px;
    }

    #wk-8426-usluge .wk-8426-image-module {
      aspect-ratio:3 / 2;
      border-radius:14px;
    }

    #wk-8426-usluge .wk-8426-image {
      object-position:center;
    }

    #wk-8426-usluge .wk-8426-palliative-title-module {
      width:calc(100% - 16px);
      margin:-24px 0 0 16px;
      padding:24px 22px 7px;
    }

    #wk-8426-usluge .wk-8426-palliative-copy-module {
      width:calc(100% - 16px);
      margin-left:16px;
      padding:9px 22px 25px;
    }

    #wk-8426-usluge .wk-8426-right-col {
      padding-top:0;
    }

    #wk-8426-usluge .wk-8426-service-title-module,
    #wk-8426-usluge .wk-8426-service-title-module:first-child,
    #wk-8426-usluge .wk-8426-transport-title-module {
      padding-top:26px;
      border-top:1px solid rgba(54,52,53,.24);
    }

    #wk-8426-usluge .wk-8426-service-copy-module,
    #wk-8426-usluge .wk-8426-specialists-module {
      margin-bottom:26px;
    }
  }

  @media (max-width:480px) {
    #wk-8426-usluge .wk-8426-specialists {
      grid-template-columns:minmax(0, 1fr);
      gap:8px;
    }

    #wk-8426-usluge .wk-8426-palliative-title-module,
    #wk-8426-usluge .wk-8426-palliative-copy-module {
      width:100%;
      margin-left:0;
    }
  }

#wk-9365-smjestaj-briga, #wk-9365-smjestaj-briga * { box-sizing:border-box; }
  #wk-9365-smjestaj-briga img { max-width:100%; height:auto; display:block; }
  #wk-9365-smjestaj-briga a { text-decoration:none; color:inherit; }
  #wk-9365-smjestaj-briga button, #wk-9365-smjestaj-briga input, #wk-9365-smjestaj-briga textarea, #wk-9365-smjestaj-briga select { font:inherit; }

  #wk-9365-smjestaj-briga {
    margin:0;
    padding:clamp(76px, 9vw, 132px) 0;
    overflow:hidden;
    background:#fdf8f1;
    font-family:'Open Sans' !important;
  }

  #wk-9365-smjestaj-briga .wk-row {
    width:80%;
    max-width:80%;
    margin:0 auto;
  }

  #wk-9365-smjestaj-briga .wk-9365-main-row {
    display:grid;
    grid-template-columns:minmax(0, .94fr) minmax(0, 1.06fr);
    align-items:center;
    gap:clamp(52px, 7vw, 108px);
  }

  #wk-9365-smjestaj-briga .wk-col {
    min-width:0;
  }

  #wk-9365-smjestaj-briga .wk-module {
    width:100%;
  }

  #wk-9365-smjestaj-briga .wk-9365-image-module {
    width:100%;
    aspect-ratio:4 / 5;
    overflow:hidden;
    border-radius:20px;
    background:#eee6dc;
    box-shadow:0 24px 58px rgba(54,52,53,.12);
  }

  #wk-9365-smjestaj-briga .wk-9365-image {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
  }

  #wk-9365-smjestaj-briga .wk-9365-label-module {
    margin:0 0 17px;
  }

  #wk-9365-smjestaj-briga .wk-9365-label {
    display:inline-flex;
    align-items:center;
    margin:0;
    color:#a96300;
    font-size:13px;
    font-weight:700;
    line-height:1.3;
    letter-spacing:.12em;
    text-transform:uppercase;
  }

  #wk-9365-smjestaj-briga .wk-9365-label::before {
    width:30px;
    height:2px;
    margin-right:11px;
    background:#FAAA31;
    content:"";
  }

  #wk-9365-smjestaj-briga .wk-9365-title-module {
    margin:0 0 22px;
  }

  #wk-9365-smjestaj-briga .wk-9365-title {
    margin:0;
    color:#363435;
    font-size:clamp(34px, 3.7vw, 56px);
    font-weight:700;
    line-height:1.12;
    letter-spacing:-.035em;
  }

  #wk-9365-smjestaj-briga .wk-9365-intro-module {
    margin:0 0 34px;
  }

  #wk-9365-smjestaj-briga .wk-9365-intro {
    margin:0;
    color:#555152;
    font-size:clamp(16px, 1.25vw, 18px);
    font-weight:400;
    line-height:1.75;
  }

  #wk-9365-smjestaj-briga .wk-9365-stage-title-module {
    margin:0;
    padding:22px 0 9px;
    border-top:1px solid rgba(54,52,53,.18);
  }

  #wk-9365-smjestaj-briga .wk-9365-stage-title {
    display:flex;
    align-items:baseline;
    gap:15px;
    margin:0;
    color:#363435;
    font-size:clamp(19px, 1.7vw, 24px);
    font-weight:700;
    line-height:1.35;
    letter-spacing:-.015em;
  }

  #wk-9365-smjestaj-briga .wk-9365-stage-number {
    flex:0 0 auto;
    color:#c57500;
    font-size:14px;
    font-weight:700;
    line-height:1;
    letter-spacing:.08em;
  }

  #wk-9365-smjestaj-briga .wk-9365-stage-copy-module {
    margin:0;
    padding:0 0 22px 42px;
  }

  #wk-9365-smjestaj-briga .wk-9365-stage-copy {
    margin:0;
    color:#625e5f;
    font-size:15px;
    font-weight:400;
    line-height:1.7;
  }

  #wk-9365-smjestaj-briga .wk-9365-highlight-module {
    margin:9px 0 0;
    padding:5px 0 5px 24px;
    border-left:3px solid #FAAA31;
  }

  #wk-9365-smjestaj-briga .wk-9365-highlight {
    margin:0;
    color:#363435;
    font-size:clamp(16px, 1.25vw, 18px);
    font-weight:600;
    line-height:1.7;
  }

  @media (max-width:1100px) {
    #wk-9365-smjestaj-briga .wk-row {
      width:88%;
      max-width:88%;
    }

    #wk-9365-smjestaj-briga .wk-9365-main-row {
      grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
      gap:48px;
    }

    #wk-9365-smjestaj-briga .wk-9365-stage-copy-module {
      padding-left:40px;
    }
  }

  @media (max-width:767px) {
    #wk-9365-smjestaj-briga {
      padding:64px 0 76px;
    }

    #wk-9365-smjestaj-briga .wk-row {
      width:90%;
      max-width:90%;
    }

    #wk-9365-smjestaj-briga .wk-9365-main-row {
      display:flex;
      flex-direction:column;
      gap:0;
    }

    #wk-9365-smjestaj-briga .wk-9365-image-col,
    #wk-9365-smjestaj-briga .wk-9365-content-col {
      display:contents;
    }

    #wk-9365-smjestaj-briga .wk-9365-label-module {
      order:1;
      margin-bottom:15px;
    }

    #wk-9365-smjestaj-briga .wk-9365-title-module {
      order:2;
      margin-bottom:19px;
    }

    #wk-9365-smjestaj-briga .wk-9365-intro-module {
      order:3;
      margin-bottom:28px;
    }

    #wk-9365-smjestaj-briga .wk-9365-image-module {
      order:4;
      aspect-ratio:4 / 3;
      margin-bottom:34px;
      border-radius:15px;
    }

    #wk-9365-smjestaj-briga .wk-9365-image {
      object-position:center;
    }

    #wk-9365-smjestaj-briga .wk-9365-stage-1-title {
      order:5;
    }

    #wk-9365-smjestaj-briga .wk-9365-stage-1-copy {
      order:6;
    }

    #wk-9365-smjestaj-briga .wk-9365-stage-2-title {
      order:7;
    }

    #wk-9365-smjestaj-briga .wk-9365-stage-2-copy {
      order:8;
    }

    #wk-9365-smjestaj-briga .wk-9365-stage-3-title {
      order:9;
    }

    #wk-9365-smjestaj-briga .wk-9365-stage-3-copy {
      order:10;
    }

    #wk-9365-smjestaj-briga .wk-9365-highlight-module {
      order:11;
    }

    #wk-9365-smjestaj-briga .wk-9365-title {
      font-size:clamp(33px, 9.5vw, 46px);
      line-height:1.14;
      letter-spacing:-.025em;
    }

    #wk-9365-smjestaj-briga .wk-9365-stage-title-module {
      padding-top:21px;
    }

    #wk-9365-smjestaj-briga .wk-9365-stage-title {
      gap:12px;
      font-size:20px;
    }

    #wk-9365-smjestaj-briga .wk-9365-stage-copy-module {
      padding:0 0 22px;
    }

    #wk-9365-smjestaj-briga .wk-9365-highlight-module {
      margin-top:8px;
      padding-left:19px;
    }
  }

#wk-4178-sobe, #wk-4178-sobe * { box-sizing:border-box; }
  #wk-4178-sobe img { max-width:100%; height:auto; display:block; }
  #wk-4178-sobe a { text-decoration:none; color:inherit; }
  #wk-4178-sobe button, #wk-4178-sobe input, #wk-4178-sobe textarea, #wk-4178-sobe select { font:inherit; }

  #wk-4178-sobe {
    margin:0;
    padding:clamp(76px, 9vw, 128px) 0;
    overflow:hidden;
    background:#ffffff;
    font-family:'Open Sans' !important;
  }

  #wk-4178-sobe .wk-row {
    width:80%;
    max-width:80%;
    margin-right:auto;
    margin-left:auto;
  }

  #wk-4178-sobe .wk-col {
    min-width:0;
  }

  #wk-4178-sobe .wk-module {
    width:100%;
  }

  #wk-4178-sobe .wk-4178-intro-row {
    display:grid;
    grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
    align-items:center;
    gap:clamp(44px, 6vw, 88px);
  }

  #wk-4178-sobe .wk-4178-label-module {
    margin:0 0 17px;
  }

  #wk-4178-sobe .wk-4178-label {
    display:inline-flex;
    align-items:center;
    margin:0;
    color:#a96300;
    font-size:13px;
    font-weight:700;
    line-height:1.3;
    letter-spacing:.12em;
    text-transform:uppercase;
  }

  #wk-4178-sobe .wk-4178-label::before {
    width:30px;
    height:2px;
    margin-right:11px;
    background:#FAAA31;
    content:"";
  }

  #wk-4178-sobe .wk-4178-title-module {
    max-width:650px;
    margin:0 0 22px;
  }

  #wk-4178-sobe .wk-4178-title {
    margin:0;
    color:#363435;
    font-size:clamp(35px, 4vw, 58px);
    font-weight:700;
    line-height:1.12;
    letter-spacing:-.035em;
  }

  #wk-4178-sobe .wk-4178-intro-module {
    max-width:630px;
    margin:0;
  }

  #wk-4178-sobe .wk-4178-intro {
    margin:0;
    color:#595556;
    font-size:clamp(16px, 1.25vw, 19px);
    font-weight:400;
    line-height:1.75;
  }

  #wk-4178-sobe .wk-4178-image-module {
    width:100%;
    aspect-ratio:4 / 3;
    overflow:hidden;
    border-radius:20px;
    background:#eee6dc;
    box-shadow:0 24px 58px rgba(54,52,53,.12);
  }

  #wk-4178-sobe .wk-4178-image {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
  }

  #wk-4178-sobe .wk-4178-rooms-row {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
    margin-top:clamp(46px, 6vw, 76px);
  }

  #wk-4178-sobe .wk-4178-room-col {
    position:relative;
    min-height:210px;
    padding:30px 30px 28px;
    overflow:hidden;
    border:1px solid rgba(54,52,53,.12);
    border-top:3px solid #FAAA31;
    border-radius:14px;
    background:#ffffff;
    box-shadow:0 14px 36px rgba(54,52,53,.06);
  }

  #wk-4178-sobe .wk-4178-room-col::after {
    position:absolute;
    right:-24px;
    bottom:-30px;
    width:112px;
    height:112px;
    border:1px solid rgba(250,170,49,.2);
    border-radius:50%;
    content:"";
  }

  #wk-4178-sobe .wk-4178-room-title-module {
    position:relative;
    z-index:1;
    margin:0 0 28px;
  }

  #wk-4178-sobe .wk-4178-room-title {
    margin:0;
    color:#363435;
    font-size:clamp(20px, 1.7vw, 25px);
    font-weight:700;
    line-height:1.3;
    letter-spacing:-.015em;
  }

  #wk-4178-sobe .wk-4178-room-area-module {
    position:relative;
    z-index:1;
    margin:0;
  }

  #wk-4178-sobe .wk-4178-room-area {
    margin:0;
    color:#a96300;
    font-size:clamp(27px, 2.6vw, 38px);
    font-weight:700;
    line-height:1.15;
    letter-spacing:-.025em;
  }

  #wk-4178-sobe .wk-4178-room-area-prefix,
  #wk-4178-sobe .wk-4178-room-area-suffix {
    display:block;
    margin-bottom:6px;
    color:#716c6d;
    font-size:13px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.03em;
  }

  #wk-4178-sobe .wk-4178-room-area-suffix {
    display:inline;
    margin:0;
    color:#a96300;
    font-size:.54em;
    letter-spacing:0;
  }

  #wk-4178-sobe .wk-4178-equipment-heading-row {
    margin-top:clamp(42px, 5vw, 64px);
  }

  #wk-4178-sobe .wk-4178-equipment-heading-module {
    margin:0 0 20px;
  }

  #wk-4178-sobe .wk-4178-equipment-title {
    margin:0;
    color:#363435;
    font-size:clamp(25px, 2.5vw, 36px);
    font-weight:700;
    line-height:1.25;
    letter-spacing:-.025em;
  }

  #wk-4178-sobe .wk-4178-equipment-row {
    display:grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:1px;
    overflow:hidden;
    border:1px solid rgba(250,170,49,.25);
    border-radius:15px;
    background:rgba(250,170,49,.2);
  }

  #wk-4178-sobe .wk-4178-equipment-col {
    min-height:148px;
    background:#fff5e5;
  }

  #wk-4178-sobe .wk-4178-equipment-module {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    height:100%;
    padding:25px 22px;
  }

  #wk-4178-sobe .wk-4178-icon {
    width:36px;
    height:36px;
    margin:0 0 16px;
    border:1px solid rgba(250,170,49,.42);
    border-radius:50%;
    background:#ffffff;
    color:#c57500;
    font-family:'ETmodules' !important;
    font-size:18px;
    line-height:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  #wk-4178-sobe .wk-4178-equipment-text {
    margin:0;
    color:#363435;
    font-size:15px;
    font-weight:700;
    line-height:1.5;
  }

  #wk-4178-sobe .wk-4178-sos-col {
    background:#ffefd5;
  }

  #wk-4178-sobe .wk-4178-sos-col .wk-4178-equipment-text {
    color:#363435;
    font-weight:700;
  }

  @media (max-width:1100px) {
    #wk-4178-sobe .wk-row {
      width:88%;
      max-width:88%;
    }

    #wk-4178-sobe .wk-4178-intro-row {
      grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
      gap:44px;
    }

    #wk-4178-sobe .wk-4178-room-col {
      padding:27px 24px;
    }

    #wk-4178-sobe .wk-4178-equipment-row {
      grid-template-columns:repeat(3, minmax(0, 1fr));
    }

    #wk-4178-sobe .wk-4178-equipment-col {
      min-height:136px;
    }
  }

  @media (max-width:767px) {
    #wk-4178-sobe {
      padding:64px 0 76px;
    }

    #wk-4178-sobe .wk-row {
      width:90%;
      max-width:90%;
    }

    #wk-4178-sobe .wk-4178-intro-row {
      grid-template-columns:minmax(0, 1fr);
      gap:30px;
    }

    #wk-4178-sobe .wk-4178-title {
      font-size:clamp(34px, 10vw, 46px);
      line-height:1.14;
      letter-spacing:-.025em;
    }

    #wk-4178-sobe .wk-4178-image-module {
      aspect-ratio:16 / 10;
      border-radius:15px;
    }

    #wk-4178-sobe .wk-4178-image {
      object-position:center;
    }

    #wk-4178-sobe .wk-4178-rooms-row {
      grid-template-columns:minmax(0, 1fr);
      gap:12px;
      margin-top:40px;
    }

    #wk-4178-sobe .wk-4178-room-col {
      display:grid;
      grid-template-columns:minmax(0, 1fr) auto;
      align-items:center;
      gap:18px;
      min-height:0;
      padding:23px 22px;
    }

    #wk-4178-sobe .wk-4178-room-title-module {
      margin:0;
    }

    #wk-4178-sobe .wk-4178-room-title {
      font-size:20px;
    }

    #wk-4178-sobe .wk-4178-room-area {
      text-align:right;
      font-size:25px;
    }

    #wk-4178-sobe .wk-4178-room-area-prefix {
      margin-bottom:3px;
    }

    #wk-4178-sobe .wk-4178-equipment-heading-row {
      margin-top:42px;
    }

    #wk-4178-sobe .wk-4178-equipment-row {
      grid-template-columns:minmax(0, 1fr);
      gap:1px;
    }

    #wk-4178-sobe .wk-4178-equipment-col {
      min-height:0;
    }

    #wk-4178-sobe .wk-4178-equipment-module {
      display:grid;
      grid-template-columns:36px minmax(0, 1fr);
      align-items:center;
      gap:15px;
      padding:17px 19px;
    }

    #wk-4178-sobe .wk-4178-icon {
      margin:0;
    }
  }

  @media (max-width:480px) {
    #wk-4178-sobe .wk-4178-room-col {
      grid-template-columns:minmax(0, 1fr);
      gap:13px;
    }

    #wk-4178-sobe .wk-4178-room-area {
      text-align:left;
    }
  }

#wk-5682-adaptacija, #wk-5682-adaptacija * { box-sizing:border-box; }
  #wk-5682-adaptacija img { max-width:100%; height:auto; display:block; }
  #wk-5682-adaptacija a { text-decoration:none; color:inherit; }
  #wk-5682-adaptacija button, #wk-5682-adaptacija input, #wk-5682-adaptacija textarea, #wk-5682-adaptacija select { font:inherit; }

  #wk-5682-adaptacija {
    margin:0;
    padding:clamp(84px, 10vw, 148px) 0 clamp(104px, 12vw, 172px);
    overflow:hidden;
    background:#fdf8f1;
    font-family:'Open Sans' !important;
  }

  #wk-5682-adaptacija .wk-row {
    width:80%;
    max-width:80%;
    margin-right:auto;
    margin-left:auto;
  }

  #wk-5682-adaptacija .wk-5682-main-row {
    display:grid;
    grid-template-columns:minmax(0, 40fr) minmax(0, 60fr);
    align-items:center;
    gap:clamp(54px, 7vw, 112px);
  }

  #wk-5682-adaptacija .wk-col {
    min-width:0;
  }

  #wk-5682-adaptacija .wk-module {
    width:100%;
  }

  #wk-5682-adaptacija .wk-5682-label-module {
    margin:0 0 17px;
  }

  #wk-5682-adaptacija .wk-5682-label {
    display:inline-flex;
    align-items:center;
    margin:0;
    color:#a96300;
    font-size:13px;
    font-weight:700;
    line-height:1.3;
    letter-spacing:.12em;
    text-transform:uppercase;
  }

  #wk-5682-adaptacija .wk-5682-label::before {
    width:30px;
    height:2px;
    margin-right:11px;
    background:#FAAA31;
    content:"";
  }

  #wk-5682-adaptacija .wk-5682-title-module {
    max-width:570px;
    margin:0 0 24px;
  }

  #wk-5682-adaptacija .wk-5682-title {
    margin:0;
    color:#363435;
    font-size:clamp(35px, 3.8vw, 56px);
    font-weight:700;
    line-height:1.12;
    letter-spacing:-.035em;
  }

  #wk-5682-adaptacija .wk-5682-intro-module {
    max-width:590px;
    margin:0;
    padding-left:22px;
    border-left:3px solid #FAAA31;
  }

  #wk-5682-adaptacija .wk-5682-intro {
    margin:0;
    color:#595556;
    font-size:clamp(16px, 1.2vw, 18px);
    font-weight:400;
    line-height:1.8;
  }

  #wk-5682-adaptacija .wk-5682-process-col {
    position:relative;
    min-height:570px;
  }

  #wk-5682-adaptacija .wk-5682-process-col::before {
    position:absolute;
    top:50%;
    left:50%;
    width:350px;
    height:350px;
    border:1px solid rgba(250,170,49,.5);
    border-radius:50%;
    content:"";
    transform:translate(-50%, -50%);
  }

  #wk-5682-adaptacija .wk-5682-process-col::after {
    position:absolute;
    top:50%;
    left:50%;
    width:270px;
    height:270px;
    border:1px dashed rgba(250,170,49,.28);
    border-radius:50%;
    content:"";
    transform:translate(-50%, -50%);
  }

  #wk-5682-adaptacija .wk-5682-center-module {
    position:absolute;
    z-index:3;
    top:50%;
    left:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    width:220px;
    min-height:220px;
    margin:0;
    padding:34px;
    border:8px solid #fff8ed;
    border-radius:50%;
    background:#FAAA31;
    box-shadow:0 20px 46px rgba(250,170,49,.28);
    transform:translate(-50%, -50%);
  }

  #wk-5682-adaptacija .wk-5682-center-text {
    margin:0;
    color:#363435;
    font-size:21px;
    font-weight:700;
    line-height:1.35;
    text-align:center;
  }

  #wk-5682-adaptacija .wk-5682-participant-module {
    position:absolute;
    z-index:4;
    display:flex;
    align-items:center;
    gap:15px;
    width:220px;
    min-height:92px;
    padding:18px 20px;
    border:1px solid rgba(54,52,53,.13);
    border-radius:16px;
    background:#ffffff;
    box-shadow:0 14px 34px rgba(54,52,53,.07);
  }

  #wk-5682-adaptacija .wk-5682-participant-module::after {
    position:absolute;
    z-index:-1;
    height:1px;
    background:#FAAA31;
    content:"";
  }

  #wk-5682-adaptacija .wk-5682-team-module {
    top:0;
    left:50%;
    transform:translateX(-50%);
  }

  #wk-5682-adaptacija .wk-5682-team-module::after {
    top:100%;
    left:50%;
    width:104px;
    transform:rotate(90deg);
    transform-origin:left center;
  }

  #wk-5682-adaptacija .wk-5682-family-module {
    bottom:25px;
    left:0;
  }

  #wk-5682-adaptacija .wk-5682-family-module::after {
    top:6px;
    left:calc(100% - 6px);
    width:118px;
    transform:rotate(-38deg);
    transform-origin:left center;
  }

  #wk-5682-adaptacija .wk-5682-doctor-module {
    right:0;
    bottom:25px;
  }

  #wk-5682-adaptacija .wk-5682-doctor-module::after {
    top:6px;
    right:calc(100% - 6px);
    width:118px;
    transform:rotate(38deg);
    transform-origin:right center;
  }

  #wk-5682-adaptacija .wk-5682-icon {
    flex:0 0 44px;
    width:44px;
    height:44px;
    border:1px solid rgba(250,170,49,.48);
    border-radius:50%;
    background:#fff8ed;
    color:#b96d00;
    font-family:'ETmodules' !important;
    font-size:21px;
    line-height:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  #wk-5682-adaptacija .wk-5682-participant-name {
    margin:0;
    color:#363435;
    font-size:16px;
    font-weight:700;
    line-height:1.4;
  }

  @media (max-width:1100px) {
    #wk-5682-adaptacija .wk-5682-main-row {
      grid-template-columns:minmax(0, 42fr) minmax(0, 58fr);
      gap:48px;
    }

    #wk-5682-adaptacija .wk-5682-process-col {
      min-height:530px;
    }

    #wk-5682-adaptacija .wk-5682-process-col::before {
      width:310px;
      height:310px;
    }

    #wk-5682-adaptacija .wk-5682-process-col::after {
      width:235px;
      height:235px;
    }

    #wk-5682-adaptacija .wk-5682-center-module {
      width:190px;
      min-height:190px;
      padding:27px;
    }

    #wk-5682-adaptacija .wk-5682-center-text {
      font-size:19px;
    }

    #wk-5682-adaptacija .wk-5682-participant-module {
      width:195px;
      padding:16px;
    }
  }

  @media (max-width:767px) {
    #wk-5682-adaptacija {
      padding:68px 0 104px;
    }

    #wk-5682-adaptacija .wk-5682-main-row {
      grid-template-columns:minmax(0, 1fr);
      gap:52px;
    }

    #wk-5682-adaptacija .wk-5682-title {
      font-size:clamp(34px, 10vw, 46px);
      line-height:1.14;
      letter-spacing:-.025em;
    }

    #wk-5682-adaptacija .wk-5682-intro-module {
      padding-left:18px;
    }

    #wk-5682-adaptacija .wk-5682-process-col {
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:18px;
      min-height:0;
      padding:0;
    }

    #wk-5682-adaptacija .wk-5682-process-col::before {
      top:104px;
      bottom:46px;
      left:50%;
      width:1px;
      height:auto;
      border:0;
      border-radius:0;
      background:#FAAA31;
      transform:none;
    }

    #wk-5682-adaptacija .wk-5682-process-col::after {
      display:none;
    }

    #wk-5682-adaptacija .wk-5682-center-module,
    #wk-5682-adaptacija .wk-5682-participant-module {
      position:relative;
      top:auto;
      right:auto;
      bottom:auto;
      left:auto;
      transform:none;
    }

    #wk-5682-adaptacija .wk-5682-center-module {
      width:210px;
      min-height:210px;
      margin:0 0 14px;
      padding:30px;
    }

    #wk-5682-adaptacija .wk-5682-center-text {
      font-size:20px;
    }

    #wk-5682-adaptacija .wk-5682-participant-module {
      width:min(100%, 360px);
      min-height:86px;
      padding:18px 20px;
    }

    #wk-5682-adaptacija .wk-5682-participant-module::after {
      display:none;
    }
  }

#wk-6207-galerija, #wk-6207-galerija * { box-sizing:border-box; }
  #wk-6207-galerija img { max-width:100%; height:auto; display:block; }
  #wk-6207-galerija a { text-decoration:none; color:inherit; }
  #wk-6207-galerija button, #wk-6207-galerija input, #wk-6207-galerija textarea, #wk-6207-galerija select { font:inherit; }

  #wk-6207-galerija {
    position:relative;
    margin:0;
    padding:clamp(82px, 9vw, 132px) 0 clamp(112px, 12vw, 176px);
    overflow:hidden;
    background:#ffffff;
    font-family:'Open Sans' !important;
  }

  #wk-6207-galerija .wk-row {
    width:80%;
    max-width:80%;
    margin-right:auto;
    margin-left:auto;
  }

  #wk-6207-galerija .wk-col {
    min-width:0;
  }

  #wk-6207-galerija .wk-module {
    width:100%;
  }

  #wk-6207-galerija .wk-6207-heading-row {
    display:grid;
    grid-template-columns:minmax(0, 1fr);
  }

  #wk-6207-galerija .wk-6207-heading-col {
    max-width:940px;
  }

  #wk-6207-galerija .wk-6207-title-module {
    margin:0 0 20px;
  }

  #wk-6207-galerija .wk-6207-title {
    margin:0;
    color:#363435;
    font-size:clamp(36px, 4.4vw, 64px);
    font-weight:700;
    line-height:1.1;
    letter-spacing:-.035em;
  }

  #wk-6207-galerija .wk-6207-intro-module {
    max-width:780px;
    margin:0 0 30px;
  }

  #wk-6207-galerija .wk-6207-intro {
    margin:0;
    color:#575354;
    font-size:clamp(16px, 1.3vw, 19px);
    font-weight:400;
    line-height:1.75;
  }

  #wk-6207-galerija .wk-6207-categories-module {
    margin:0;
  }

  #wk-6207-galerija .wk-6207-categories {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
  }

  #wk-6207-galerija .wk-6207-category {
    display:inline-flex;
    align-items:center;
    min-height:40px;
    margin:0;
    padding:9px 14px;
    border:1px solid rgba(54,52,53,.14);
    border-radius:999px;
    background:#ffffff;
    color:#4f4b4c;
    font-size:13px;
    font-weight:600;
    line-height:1.4;
  }

  #wk-6207-galerija .wk-6207-category-active {
    border-color:#FAAA31;
    background:#FAAA31;
    color:#363435;
  }

  #wk-6207-galerija .wk-6207-gallery-row {
    display:grid;
    grid-template-columns:minmax(0, 7fr) minmax(280px, 3fr);
    align-items:stretch;
    gap:clamp(14px, 1.6vw, 24px);
    margin-top:clamp(42px, 5vw, 68px);
  }

  #wk-6207-galerija .wk-6207-gallery-link {
    position:relative;
    display:block;
    width:100%;
    height:100%;
    overflow:hidden;
    background:#e9e4dc;
  }

  #wk-6207-galerija .wk-6207-gallery-link::after {
    position:absolute;
    inset:0;
    border:0 solid #FAAA31;
    content:"";
    pointer-events:none;
    transition:border-width .2s ease, background-color .2s ease;
  }

  #wk-6207-galerija .wk-6207-gallery-link:hover::after {
    border-width:3px;
    background:rgba(54,52,53,.04);
  }

  #wk-6207-galerija .wk-6207-gallery-link:focus-visible {
    outline:4px solid #FAAA31;
    outline-offset:4px;
  }

  #wk-6207-galerija .wk-6207-main-image-module {
    height:100%;
    min-height:460px;
    aspect-ratio:16 / 10;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 22px 56px rgba(54,52,53,.12);
  }

  #wk-6207-galerija .wk-6207-side-col {
    display:flex;
    flex-direction:column;
    gap:clamp(14px, 1.6vw, 24px);
  }

  #wk-6207-galerija .wk-6207-side-image-module {
    flex:1 1 0;
    min-height:0;
    aspect-ratio:4 / 3;
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 16px 40px rgba(54,52,53,.1);
  }

  #wk-6207-galerija .wk-6207-gallery-image {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .45s ease;
  }

  #wk-6207-galerija .wk-6207-gallery-link:hover .wk-6207-gallery-image {
    transform:scale(1.025);
  }

  #wk-6207-galerija .wk-6207-lightbox-row {
    position:fixed;
    z-index:999999;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    width:100%;
    max-width:100%;
    min-height:100vh;
    margin:0;
    padding:clamp(20px, 4vw, 56px);
    background:rgba(25,24,24,.94);
  }

  #wk-6207-galerija .wk-6207-lightbox-row:target {
    display:flex !important;
  }

  #wk-6207-galerija .wk-6207-lightbox-col {
    display:flex;
    flex-direction:column;
    width:min(1180px, 100%);
    max-height:calc(100vh - 40px);
  }

  #wk-6207-galerija .wk-6207-lightbox-image-module {
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:0;
    overflow:hidden;
    border-radius:14px;
    background:#1d1c1c;
  }

  #wk-6207-galerija .wk-6207-lightbox-image {
    width:auto;
    max-width:100%;
    max-height:calc(100vh - 132px);
    object-fit:contain;
  }

  #wk-6207-galerija .wk-6207-lightbox-menu {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:16px;
  }

  #wk-6207-galerija .wk-6207-lightbox-control {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:11px 18px;
    border:1px solid rgba(250,170,49,.72);
    border-radius:8px;
    background:rgba(250,170,49,.1);
    color:#ffffff;
    font-size:14px;
    font-weight:700;
    line-height:1.2;
    transition:background-color .2s ease, color .2s ease;
  }

  #wk-6207-galerija .wk-6207-lightbox-control:hover,
  #wk-6207-galerija .wk-6207-lightbox-control:focus-visible {
    background:#FAAA31;
    color:#363435;
  }

  #wk-6207-galerija .wk-6207-lightbox-control:focus-visible {
    outline:3px solid rgba(250,170,49,.45);
    outline-offset:3px;
  }

  #wk-6207-galerija .wk-6207-lightbox-close {
    border-color:#FAAA31;
    background:#FAAA31;
    color:#363435;
  }

  @media (max-width:1100px) {
    #wk-6207-galerija .wk-row {
      width:88%;
      max-width:88%;
    }

    #wk-6207-galerija .wk-6207-gallery-row {
      grid-template-columns:minmax(0, 2fr) minmax(250px, 1fr);
    }

    #wk-6207-galerija .wk-6207-main-image-module {
      min-height:390px;
    }

    #wk-6207-galerija .wk-6207-lightbox-row {
      width:100%;
      max-width:100%;
    }
  }

  @media (max-width:767px) {
    #wk-6207-galerija {
      padding:68px 0 108px;
    }

    #wk-6207-galerija .wk-row {
      width:90%;
      max-width:90%;
    }

    #wk-6207-galerija .wk-6207-title {
      font-size:clamp(35px, 10vw, 48px);
      line-height:1.12;
      letter-spacing:-.025em;
    }

    #wk-6207-galerija .wk-6207-intro-module {
      margin-bottom:26px;
    }

    #wk-6207-galerija .wk-6207-categories {
      align-items:stretch;
      gap:8px;
    }

    #wk-6207-galerija .wk-6207-category {
      max-width:100%;
      min-height:42px;
      border-radius:10px;
      white-space:normal;
    }

    #wk-6207-galerija .wk-6207-gallery-row {
      grid-template-columns:minmax(0, 1fr);
      gap:14px;
      margin-top:38px;
    }

    #wk-6207-galerija .wk-6207-side-col {
      gap:14px;
    }

    #wk-6207-galerija .wk-6207-main-image-module,
    #wk-6207-galerija .wk-6207-side-image-module {
      min-height:0;
      aspect-ratio:4 / 3;
      border-radius:14px;
    }

    #wk-6207-galerija .wk-6207-gallery-link {
      min-height:240px;
    }

    #wk-6207-galerija .wk-6207-gallery-image {
      object-position:center;
    }

    #wk-6207-galerija .wk-6207-lightbox-row {
      width:100%;
      max-width:100%;
      padding:16px;
    }

    #wk-6207-galerija .wk-6207-lightbox-col {
      max-height:calc(100vh - 32px);
    }

    #wk-6207-galerija .wk-6207-lightbox-image {
      max-height:calc(100vh - 126px);
    }

    #wk-6207-galerija .wk-6207-lightbox-menu {
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      width:100%;
      gap:7px;
      margin-top:12px;
    }

    #wk-6207-galerija .wk-6207-lightbox-control {
      min-height:52px;
      padding:10px 8px;
      font-size:13px;
      text-align:center;
    }
  }

  @media (max-width:480px) {
    #wk-6207-galerija .wk-6207-category {
      width:100%;
    }

    #wk-6207-galerija .wk-6207-gallery-link {
      min-height:220px;
    }
  }

#wk-7843-o-nama, #wk-7843-o-nama * { box-sizing:border-box; }
  #wk-7843-o-nama img { max-width:100%; height:auto; display:block; }
  #wk-7843-o-nama a { text-decoration:none; color:inherit; }
  #wk-7843-o-nama button, #wk-7843-o-nama input, #wk-7843-o-nama textarea, #wk-7843-o-nama select { font:inherit; }

  #wk-7843-o-nama {
    position:relative;
    margin:0;
    padding:clamp(88px, 10vw, 152px) 0 clamp(108px, 12vw, 176px);
    overflow:hidden;
    background:#fff;
    font-family:'Open Sans' !important;
  }

  #wk-7843-o-nama .wk-row {
    width:80%;
    max-width:80%;
    margin-right:auto;
    margin-left:auto;
  }

  #wk-7843-o-nama .wk-7843-main-row {
    display:grid;
    grid-template-columns:minmax(0, 45fr) minmax(0, 45fr);
    align-items:center;
    gap:clamp(56px, 8vw, 124px);
  }

  #wk-7843-o-nama .wk-col {
    min-width:0;
  }

  #wk-7843-o-nama .wk-module {
    width:100%;
  }

  #wk-7843-o-nama .wk-7843-image-module {
    width:100%;
    aspect-ratio:4 / 5;
    overflow:hidden;
    border-radius:20px;
    background:#eee7de;
    box-shadow:0 24px 58px rgba(54,52,53,.1);
  }

  #wk-7843-o-nama .wk-7843-image {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
  }

  #wk-7843-o-nama .wk-7843-label-module {
    margin:0 0 17px;
  }

  #wk-7843-o-nama .wk-7843-label {
    display:inline-flex;
    align-items:center;
    margin:0;
    color:#a96300;
    font-size:13px;
    font-weight:700;
    line-height:1.3;
    letter-spacing:.12em;
    text-transform:uppercase;
  }

  #wk-7843-o-nama .wk-7843-label::before {
    width:30px;
    height:2px;
    margin-right:11px;
    background:#FAAA31;
    content:"";
  }

  #wk-7843-o-nama .wk-7843-title-module {
    max-width:680px;
    margin:0 0 28px;
  }

  #wk-7843-o-nama .wk-7843-title {
    margin:0;
    color:#363435;
    font-size:clamp(35px, 3.8vw, 56px);
    font-weight:700;
    line-height:1.13;
    letter-spacing:-.035em;
  }

  #wk-7843-o-nama .wk-7843-copy-module {
    max-width:680px;
    margin:0 0 20px;
  }

  #wk-7843-o-nama .wk-7843-copy {
    margin:0;
    color:#363435;
    font-size:clamp(16px, 1.2vw, 18px);
    font-weight:400;
    line-height:1.8;
  }

  #wk-7843-o-nama .wk-7843-care-module {
    max-width:700px;
    margin:0;
    padding:3px 0 3px 22px;
    border-left:3px solid #FAAA31;
  }

  #wk-7843-o-nama .wk-7843-care {
    margin:0;
    color:#363435;
    font-size:clamp(16px, 1.2vw, 18px);
    font-weight:400;
    line-height:1.8;
  }

  #wk-7843-o-nama .wk-7843-location-module {
    margin:clamp(30px, 4vw, 46px) 0 0;
    padding-top:20px;
    border-top:1px solid rgba(54,52,53,.16);
  }

  #wk-7843-o-nama .wk-7843-location {
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin:0;
    color:#363435;
    font-size:14px;
    font-weight:700;
    line-height:1.4;
    letter-spacing:.04em;
  }

  #wk-7843-o-nama .wk-7843-location::before {
    width:9px;
    height:9px;
    border-radius:50%;
    background:#FAAA31;
    content:"";
  }

  @media (max-width:1100px) {
    #wk-7843-o-nama .wk-row {
      width:88%;
      max-width:88%;
    }

    #wk-7843-o-nama .wk-7843-main-row {
      grid-template-columns:minmax(0, 46fr) minmax(0, 54fr);
      gap:52px;
    }
  }

  @media (max-width:767px) {
    #wk-7843-o-nama {
      padding:68px 0 96px;
    }

    #wk-7843-o-nama .wk-row {
      width:90%;
      max-width:90%;
    }

    #wk-7843-o-nama .wk-7843-main-row {
      display:flex;
      flex-direction:column;
      align-items:stretch;
      gap:0;
    }

    #wk-7843-o-nama .wk-7843-image-col,
    #wk-7843-o-nama .wk-7843-content-col {
      display:contents;
    }

    #wk-7843-o-nama .wk-7843-label-module {
      order:1;
      margin-bottom:14px;
    }

    #wk-7843-o-nama .wk-7843-title-module {
      order:2;
      margin-bottom:28px;
    }

    #wk-7843-o-nama .wk-7843-image-module {
      order:3;
      aspect-ratio:4 / 3;
      margin-bottom:30px;
      border-radius:15px;
    }

    #wk-7843-o-nama .wk-7843-primary-copy-module {
      order:4;
    }

    #wk-7843-o-nama .wk-7843-care-module {
      order:5;
      padding-left:18px;
    }

    #wk-7843-o-nama .wk-7843-location-module {
      order:6;
      margin-top:32px;
    }

    #wk-7843-o-nama .wk-7843-title {
      font-size:clamp(34px, 9.5vw, 46px);
      line-height:1.14;
      letter-spacing:-.025em;
    }

    #wk-7843-o-nama .wk-7843-image {
      object-position:center;
    }

    #wk-7843-o-nama .wk-7843-copy,
    #wk-7843-o-nama .wk-7843-care {
      font-size:16px;
      line-height:1.75;
    }
  }

#wk-8951-kontakt, #wk-8951-kontakt * { box-sizing:border-box; }
  #wk-8951-kontakt img { max-width:100%; height:auto; display:block; }
  #wk-8951-kontakt a { text-decoration:none; color:inherit; }
  #wk-8951-kontakt button, #wk-8951-kontakt input, #wk-8951-kontakt textarea, #wk-8951-kontakt select { font:inherit; }

  #wk-8951-kontakt {
    margin:0;
    padding:clamp(76px, 8vw, 118px) 0;
    overflow:hidden;
    background:#363435;
    font-family:'Open Sans' !important;
  }

  #wk-8951-kontakt .wk-row {
    width:80%;
    max-width:80%;
    margin-right:auto;
    margin-left:auto;
  }

  #wk-8951-kontakt .wk-8951-main-row {
    display:grid;
    grid-template-columns:minmax(0, .92fr) minmax(0, 1.08fr);
    align-items:center;
    gap:clamp(54px, 8vw, 124px);
  }

  #wk-8951-kontakt .wk-col {
    min-width:0;
  }

  #wk-8951-kontakt .wk-module {
    width:100%;
  }

  #wk-8951-kontakt .wk-8951-left-col {
    max-width:650px;
  }

  #wk-8951-kontakt .wk-8951-label-module {
    margin:0 0 17px;
  }

  #wk-8951-kontakt .wk-8951-label {
    display:inline-flex;
    align-items:center;
    gap:11px;
    margin:0;
    color:#FAAA31;
    font-size:13px;
    font-weight:700;
    line-height:1.3;
    letter-spacing:.12em;
    text-transform:uppercase;
  }

  #wk-8951-kontakt .wk-8951-label::before {
    width:30px;
    height:2px;
    background:#FAAA31;
    content:"";
  }

  #wk-8951-kontakt .wk-8951-title-module {
    margin:0 0 23px;
  }

  #wk-8951-kontakt .wk-8951-title {
    margin:0;
    color:#ffffff;
    font-size:clamp(38px, 4.2vw, 62px);
    font-weight:700;
    line-height:1.1;
    letter-spacing:-.035em;
  }

  #wk-8951-kontakt .wk-8951-copy-module {
    margin:0 0 32px;
  }

  #wk-8951-kontakt .wk-8951-copy {
    margin:0;
    color:rgba(255,255,255,.8);
    font-size:clamp(16px, 1.25vw, 19px);
    font-weight:400;
    line-height:1.75;
  }

  #wk-8951-kontakt .wk-8951-button-module {
    width:auto;
  }

  #wk-8951-kontakt .wk-8951-button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:16px 30px;
    border:1px solid #FAAA31;
    border-radius:9px;
    background:#FAAA31;
    color:#363435;
    font-size:16px;
    font-weight:700;
    line-height:1.2;
    box-shadow:0 14px 32px rgba(250,170,49,.18);
    transition:background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  }

  #wk-8951-kontakt .wk-8951-button:hover,
  #wk-8951-kontakt .wk-8951-button:focus-visible {
    border-color:#ffc363;
    background:#ffc363;
    color:#363435;
    transform:translateY(-2px);
    box-shadow:0 18px 38px rgba(250,170,49,.25);
  }

  #wk-8951-kontakt .wk-8951-button:focus-visible,
  #wk-8951-kontakt .wk-8951-contact-link:focus-visible {
    outline:3px solid rgba(250,170,49,.45);
    outline-offset:3px;
  }

  #wk-8951-kontakt .wk-8951-right-col {
    padding:clamp(28px, 3.5vw, 44px);
    border:1px solid rgba(250,170,49,.28);
    border-radius:18px;
    background:rgba(255,255,255,.045);
  }

  #wk-8951-kontakt .wk-8951-identity-module {
    margin:0 0 22px;
    padding:0 0 22px;
    border-bottom:1px solid rgba(250,170,49,.28);
  }

  #wk-8951-kontakt .wk-8951-identity {
    margin:0;
    color:#ffffff;
    font-size:17px;
    font-weight:700;
    line-height:1.55;
  }

  #wk-8951-kontakt .wk-8951-contact-module {
    display:grid;
    grid-template-columns:42px minmax(0, 1fr);
    align-items:center;
    gap:15px;
    min-height:62px;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
  }

  #wk-8951-kontakt .wk-8951-contact-module:last-child {
    border-bottom:0;
  }

  #wk-8951-kontakt .wk-8951-icon {
    width:42px;
    height:42px;
    border:1px solid rgba(250,170,49,.38);
    border-radius:50%;
    background:rgba(250,170,49,.08);
    color:#FAAA31;
    font-family:'ETmodules' !important;
    font-size:18px;
    line-height:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  #wk-8951-kontakt .wk-8951-contact-content {
    min-width:0;
  }

  #wk-8951-kontakt .wk-8951-contact-label {
    display:block;
    margin:0 0 3px;
    color:rgba(255,255,255,.58);
    font-size:12px;
    font-weight:700;
    line-height:1.35;
    letter-spacing:.07em;
    text-transform:uppercase;
  }

  #wk-8951-kontakt .wk-8951-contact-value,
  #wk-8951-kontakt .wk-8951-contact-link {
    display:inline-block;
    margin:0;
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    line-height:1.55;
    overflow-wrap:anywhere;
  }

  #wk-8951-kontakt .wk-8951-contact-link {
    transition:color .2s ease;
  }

  #wk-8951-kontakt .wk-8951-contact-link:hover,
  #wk-8951-kontakt .wk-8951-contact-link:focus-visible {
    color:#FAAA31;
  }

  #wk-8951-kontakt .wk-8951-duty-module {
    margin:14px 0;
    padding:17px;
    border:1px solid rgba(250,170,49,.7);
    border-radius:12px;
    background:rgba(250,170,49,.08);
  }

  #wk-8951-kontakt .wk-8951-duty-module .wk-8951-contact-label {
    color:rgba(255,255,255,.72);
  }

  #wk-8951-kontakt .wk-8951-duty-module .wk-8951-contact-link {
    color:#FAAA31;
    font-size:clamp(17px, 1.45vw, 21px);
    font-weight:700;
  }

  #wk-8951-kontakt .wk-8951-duty-module .wk-8951-contact-link:hover,
  #wk-8951-kontakt .wk-8951-duty-module .wk-8951-contact-link:focus-visible {
    color:#ffc363;
  }

  @media (max-width:1100px) {
    #wk-8951-kontakt .wk-row {
      width:88%;
      max-width:88%;
    }

    #wk-8951-kontakt .wk-8951-main-row {
      grid-template-columns:minmax(0, .85fr) minmax(0, 1.15fr);
      gap:48px;
    }
  }

  @media (max-width:767px) {
    #wk-8951-kontakt {
      padding:64px 0 72px;
    }

    #wk-8951-kontakt .wk-row {
      width:90%;
      max-width:90%;
    }

    #wk-8951-kontakt .wk-8951-main-row {
      grid-template-columns:minmax(0, 1fr);
      gap:42px;
    }

    #wk-8951-kontakt .wk-8951-left-col {
      max-width:none;
    }

    #wk-8951-kontakt .wk-8951-title {
      font-size:clamp(35px, 10vw, 48px);
      line-height:1.12;
      letter-spacing:-.025em;
    }

    #wk-8951-kontakt .wk-8951-copy-module {
      margin-bottom:27px;
    }

    #wk-8951-kontakt .wk-8951-button-module,
    #wk-8951-kontakt .wk-8951-button {
      width:100%;
    }

    #wk-8951-kontakt .wk-8951-button {
      min-height:58px;
    }

    #wk-8951-kontakt .wk-8951-right-col {
      padding:24px 20px;
      border-radius:15px;
    }

    #wk-8951-kontakt .wk-8951-contact-module {
      min-height:68px;
      padding:12px 0;
    }

    #wk-8951-kontakt .wk-8951-duty-module {
      min-height:80px;
      margin:12px 0;
      padding:16px;
    }
  }

  @media (max-width:480px) {
    #wk-8951-kontakt .wk-8951-right-col {
      padding:22px 17px;
    }

    #wk-8951-kontakt .wk-8951-contact-module {
      grid-template-columns:38px minmax(0, 1fr);
      gap:12px;
    }

    #wk-8951-kontakt .wk-8951-icon {
      width:38px;
      height:38px;
      font-size:17px;
    }

    #wk-8951-kontakt .wk-8951-contact-link,
    #wk-8951-kontakt .wk-8951-contact-value {
      font-size:14px;
    }

    #wk-8951-kontakt .wk-8951-duty-module .wk-8951-contact-link {
      font-size:17px;
    }
  }

/* FOOTER */
#wk-7462-footer, #wk-7462-footer * { box-sizing:border-box; }
    #wk-7462-footer img { max-width:100%; height:auto; display:block; }
    #wk-7462-footer a { text-decoration:none; color:inherit; }
    #wk-7462-footer button, #wk-7462-footer input, #wk-7462-footer textarea, #wk-7462-footer select { font:inherit; }

    #wk-7462-footer {
      padding:72px 0 28px;
      background:#363435;
      font-family:'Open Sans' !important;
      color:#f7f4ef;
    }

    #wk-7462-footer .wk-row {
      width:80%;
      max-width:80%;
      margin:0 auto;
    }

    #wk-7462-footer .wk-7462-main-row {
      display:grid;
      grid-template-columns:minmax(0, 1.45fr) minmax(300px, .75fr);
      gap:72px;
      align-items:start;
    }

    #wk-7462-footer .wk-col {
      min-width:0;
    }

    #wk-7462-footer .wk-7462-identity-col {
      max-width:620px;
    }

    #wk-7462-footer .wk-7462-title {
      margin:0;
      color:#ffffff;
      font-size:clamp(30px, 3vw, 44px);
      font-weight:700;
      line-height:1.14;
      letter-spacing:-.02em;
    }

    #wk-7462-footer .wk-7462-description {
      max-width:500px;
      margin:18px 0 0;
      color:#e4dfd8;
      font-size:17px;
      font-weight:400;
      line-height:1.7;
    }

    #wk-7462-footer .wk-7462-location-module {
      margin-top:22px;
    }

    #wk-7462-footer .wk-7462-location {
      display:inline-block;
      margin:0;
      padding-left:14px;
      border-left:3px solid #FAAA31;
      color:#ffffff;
      font-size:15px;
      font-weight:600;
      line-height:1.5;
      letter-spacing:.04em;
    }

    #wk-7462-footer .wk-7462-actions-col {
      display:flex;
      flex-direction:column;
      align-items:flex-start;
    }

    #wk-7462-footer .wk-7462-nav {
      display:flex;
      flex-wrap:wrap;
      gap:8px 22px;
      max-width:390px;
    }

    #wk-7462-footer .wk-7462-nav-link {
      position:relative;
      display:inline-flex;
      align-items:center;
      min-height:44px;
      color:#e4dfd8;
      font-size:15px;
      font-weight:600;
      line-height:1.4;
      transition:color .2s ease;
    }

    #wk-7462-footer .wk-7462-nav-link::after {
      position:absolute;
      right:0;
      bottom:7px;
      left:0;
      height:1px;
      background:#FAAA31;
      content:"";
      transform:scaleX(0);
      transform-origin:left;
      transition:transform .2s ease;
    }

    #wk-7462-footer .wk-7462-nav-link:hover,
    #wk-7462-footer .wk-7462-nav-link:focus-visible {
      color:#ffffff;
    }

    #wk-7462-footer .wk-7462-nav-link:hover::after,
    #wk-7462-footer .wk-7462-nav-link:focus-visible::after {
      transform:scaleX(1);
    }

    #wk-7462-footer .wk-7462-nav-link:focus-visible,
    #wk-7462-footer .wk-7462-cta:focus-visible {
      outline:2px solid #FAAA31;
      outline-offset:4px;
    }

    #wk-7462-footer .wk-7462-button-module {
      width:100%;
      margin-top:26px;
      padding-top:26px;
      border-top:1px solid rgba(250,170,49,.35);
    }

    #wk-7462-footer .wk-7462-cta {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:52px;
      padding:14px 28px;
      border:1px solid #FAAA31;
      border-radius:6px;
      background:#FAAA31;
      color:#363435;
      font-size:15px;
      font-weight:700;
      line-height:1.4;
      transition:background .2s ease, color .2s ease, border-color .2s ease;
    }

    #wk-7462-footer .wk-7462-cta:hover {
      border-color:#ffffff;
      background:#ffffff;
      color:#363435;
    }

    #wk-7462-footer .wk-7462-bottom-row {
      display:grid;
      grid-template-columns:minmax(0, 1fr);
      margin-top:58px;
      padding-top:22px;
      border-top:1px solid rgba(250,170,49,.5);
    }

    #wk-7462-footer .wk-7462-closing {
      margin:0;
      color:#bfbab4;
      font-size:13px;
      font-weight:400;
      line-height:1.6;
      letter-spacing:.03em;
    }

    @media (max-width:980px) {
      #wk-7462-footer {
        padding-top:60px;
      }

      #wk-7462-footer .wk-7462-main-row {
        grid-template-columns:minmax(0, 1.2fr) minmax(260px, .8fr);
        gap:44px;
      }
    }

    @media (max-width:767px) {
      #wk-7462-footer {
        padding:48px 0 24px;
      }

      #wk-7462-footer .wk-row {
        width:88%;
        max-width:88%;
      }

      #wk-7462-footer .wk-7462-main-row {
        grid-template-columns:minmax(0, 1fr);
        gap:38px;
      }

      #wk-7462-footer .wk-7462-actions-col {
        width:100%;
      }

      #wk-7462-footer .wk-7462-nav {
        display:grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        width:100%;
        max-width:none;
        gap:4px 16px;
      }

      #wk-7462-footer .wk-7462-nav-link {
        min-height:48px;
      }

      #wk-7462-footer .wk-7462-button-module {
        margin-top:22px;
        padding-top:24px;
      }

      #wk-7462-footer .wk-7462-cta {
        display:flex;
        width:100%;
        min-height:56px;
      }

      #wk-7462-footer .wk-7462-bottom-row {
        margin-top:42px;
      }
    }

    @media (max-width:420px) {
      #wk-7462-footer .wk-7462-nav {
        grid-template-columns:minmax(0, 1fr);
      }
    }