﻿/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PolySans";
  src: url("../fonts/PolySans-Median.woff2") format("woff2"), url("../fonts/PolySans-Median.ttf") format("truetype");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Global variables
   ========================================================================== */

:root {
  --bg: #0d3d4b;
  --panel: #073440;
  --panel-soft: rgba(8, 62, 73, .92);
  --line: #a4842b;
  --gold: #edbd31;
  --blue: #1597d4;
  --blue-dark: #0c2732;
  --text: #d7e4e7;
  --muted: #a9c3c8;
}

/* ==========================================================================
   Reset and base document styles
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 268.8px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "PolySans", -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.reference-layer {
  display:none;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 9999;
  width: 100%;
  max-width: 1680px;
  pointer-events: none;
  opacity: .45;
  transform: translateX(-50%);
}

.reference-layer img {
  display: block;
  width: 100%;
  height: auto;
}

/* Page backgrounds */
body.page-bg-home {
  --hero-bg-size: clamp(1180px, 100vw, 1680px);
  --hero-bg-x: 50%;
  --hero-bg-y: 0;
  background-color: var(--bg);
  background-image: url("../img/bg-header.webp");
  background-position: var(--hero-bg-x) var(--hero-bg-y);
  background-size: var(--hero-bg-size) auto;
  background-repeat: no-repeat;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.custom-link{
  display:inline-block!important;
  margin:0!important;
  padding:0!important;
  line-height:normal!important;
  text-decoration:underline;color:inherit;display:inline;
}

.custom-link:hover{
  text-decoration:none;
}

.footer-inner a.footer-ext-link{
  display:inline-block;
  text-decoration:none;
  border:0;
}

/* ==========================================================================
   Shared layout helpers
   ========================================================================== */

.container {
  position: relative;
  width: 98%;
  max-width: 1280px;
  padding: 0 1%;
  margin: 0 auto;
}

.container--full-width {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0 auto;
}

/* ==========================================================================
   Top contact bar
   ========================================================================== */

.topline {
  display: flex;
  justify-content: center;
  min-height: 41.16px;
  padding: 8.4px 16.8px;
  background: #e8eef1;
  color: #24434a;
  font-size: 14px;
}

.topline p {
  font-weight: 300;
}


.topline span {
  display:inline-block;
  padding:0 4.2px;
}

.topline strong {
  color: #102b33;
  font-style: normal;
}

.topline a {
  text-decoration:none;
}

.topline a:hover {
  text-decoration:underline;
}

/* ==========================================================================
   Header and navigation
   ========================================================================== */

.site-header {
  position: absolute;
  top: 41.16px;
  left: 0;
  right: 0;
  z-index: 30;
}

header .container{
  max-width: 1380px;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 105.84px;
  justify-content: space-between;
}

.brand{
  display:block;
  width:246px;
  
}

.brand img {
  display:block;
  width: 100%;
  height:auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  padding:0;
  color: #eef7f8;
  font-size: 16px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  margin: 0 22px;
  padding: 9px 0;
  transition: color .22s ease, transform .22s ease;
}

.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.68px;
  background: currentColor;
  border-radius: 839.16px;
  opacity: 0;
  transform: scaleX(.18);
  transform-origin: left center;
  transition: opacity .22s ease, transform .22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.main-nav a:hover:after,
.main-nav a:focus-visible:after,
.main-nav a.active:after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav a.active:after {
  color: #fff;
}

.nav-toggle {
  display: none;
}

.clone {
  display: none;
}

.nav-mobile-easy {
  display: none;
}

/* ==========================================================================
   Shared buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7.56px;
  min-height: 40.32px;
  padding: 13px 20px 13px 20px;
  border: 0;
  border-radius: 840px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 13px 20px 13px 20px;
  border: 0;
  border-radius: 840px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover, .custom-btn:hover {
  transform: translateY(-1.68px);
}

.btn-primary {
  background: var(--blue);
  box-shadow: 0 13.44px 28.56px rgba(21, 151, 212, .24);
}

.custom-btn-blue {
  background: var(--blue);
  box-shadow: 0 13px 28px rgba(21, 151, 212, .24);
}

.btn-dark {
  background: #103541;
  color: #75a3b3;
}

.btn-muted {
  background: #628a91;
  color: #fff;
}

.btn-arrow:before,
.btn-icon:before {
  content: "\2192";
  display: grid;
  place-items: center;
  width: 19.32px;
  height: 19.32px;
  border: 1.68px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

.btn-icon:before {
  content: "";
  display: none;
}

.btn-icon-svg {
  display: inline-flex;
  flex: 0 0 auto;
  width: 22.68px;
  height: 21px;
}

.btn-icon-svg svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-icon-svg img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.btn-dark .btn-icon-svg img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(17%) saturate(704%) hue-rotate(151deg) brightness(94%) contrast(86%);
}

/* ==========================================================================
   Homepage: hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 727.44px;
  padding-top: 94.08px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 604.8px;
}

.hero-copy {
  min-width: 0;
  padding: 52px 0 0 0;
}

.hero h1 {
  color: #d9e4e7;
  font-size: 71px;
  font-weight: 800;
  line-height: 1.0;
}

.hero h1 span,
.course-panel strong,
.about-panel h2,
.trusted h2 span {
  color: var(--gold);
}

.lead {
  max-width: 588px;
  margin-top: 26.88px;
  color: #edf6f6;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: 0.17px;
  font-family: "PolySans", -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial, sans-serif;
}

.lead span {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.lead span:after {
  content: "";
  position: absolute;
  left: 2.52px;
  right: -6.72px;
  bottom: -5.88px;
  z-index: -1;
  height: 11.76px;
  background: url("../img/podtrzeni.png") center / 100% 100% no-repeat;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20.16px;
  margin-top: 42px;
}

.hero-ctas .btn-dark {
  border: 1px solid #236170;
}

.date {
  margin-top: 21.84px;
  color: #c2d6da;
  font-size: 17px;
  letter-spacing: 0.29px;
}

.hero-collage {
  position: relative;
  width: min(100%, 638.4px);
  aspect-ratio: 638.4 / 558.6;
  justify-self: end;
  margin-right: 6px;
  margin-top: 6px;
  transform: scale(.9) translateX(140px);
  transform-origin: center center;
}

.collage-base {
  position: absolute;
  left: 0;
  bottom: -7.82%;
  width: 83.16%;
  max-width: none;
  opacity: 0;
  animation: collageBaseIn .72s cubic-bezier(.2, .8, .2, 1) .08s both;
}

.collage-item {
  position: absolute;
  z-index: 3;
  display: block;
  pointer-events: none;
  opacity: 0;
  animation: collageItemIn .58s cubic-bezier(.2, .8, .2, 1) both;
}

.collage-item:hover {
  transform: none;
  filter: none;
}

.item-phone { left: 3.29%; top: 12.63%; width: 6.84%; animation-delay: .18s; }
.item-hash { left: 11.97%; top: 12.48%; width: 6.84%; animation-delay: .23s; }
.item-whistle { left: -9.74%; top: 32.78%; width: 28.95%; animation-delay: .28s; }
.item-esg { right: 13.42%; top: 7.07%; width: 26.98%; animation-delay: .33s; }
.item-rocket { right: 9.47%; top: 43.61%; width: 26.05%; animation-delay: .38s; }
.item-home { left: -4.16%; top: 59.4%; width: 9.74%; animation-delay: .43s; }

@keyframes collageBaseIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes collageItemIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .collage-base,
  .collage-item {
    animation: none;
    opacity: 1;
  }
}

/* ==========================================================================
   Homepage: course intro panel
   ========================================================================== */

.course-section {
  margin-top: 0px;
}

.course-panel {
  position: relative;
  min-width: 0;
  width: min(1162px, 100%);
  margin: 0 auto;
  padding: 31.92px 65.52px 92.4px;
  border: 0.84px solid var(--line);
  border-radius: 14.28px;
  background: rgba(5, 42, 52, .79);
  box-shadow: inset 0 67.2px 92.4px rgba(255, 255, 255, .02);
  text-align: center;
}

.eyebrow {
  color: #b9cdd1;
  font-size: 14px;
  text-transform: uppercase;
}

.course-panel h2 {
  position: relative;
  max-width: 940.8px;
  margin: 9.24px auto 82px;
  color: #dce9ec;
  font-size: 47px;
  font-weight: 800;
  line-height: 1.1;
}

.course-panel h2 span {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.course-panel h2 span em{
  position: relative;
  z-index:1;
  font-style:normal;
}

.course-panel h2 span:after {
  content: "";
  position: absolute;
  left: -21px;
  right: -27.72px;
  bottom: -14.28px;
  height: 64.68px;
  background: url(../img/zakrouzkovani.png) center / 100% 100% no-repeat;
  pointer-events: none;
  z-index:0;
}

.course-panel h3 {
  margin-bottom: 26.88px;
  color: #e4eef0;
  font-size: 24px;
  font-weight: 800;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36.96px;
  max-width: 1026px;
  margin: 0 auto 74px;
  text-align: left;
}

.benefit-grid ul {
  list-style: none;
}

.benefit-grid li {
  position: relative;
  margin-bottom: 13.44px;
  padding-left: 21.84px;
  color: #c9dce0;
  font-size: 17px;
  line-height: 1.38;
}

.benefit-grid li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
}

.areas-title {
  margin-bottom: 20.16px;
}

.chips {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10.08px 10.08px;
  max-width: 1056px;
  margin: 0 auto 0;
}

.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #143e4c;
  color: #8bbccc;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  border: solid 1px #236170;
  cursor: pointer;
}

.chip:hover,
.chip:focus,
.chip.is-active {
  color: #8bbccc;
  border-color: #236170;
  background: #143e4c;
  outline: none;
}

.chip-info-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  opacity: .72;
  background: #8bbccc;
  mask: url("../img/icon-home/info-circle.svg") center / contain no-repeat;
  -webkit-mask: url("../img/icon-home/info-circle.svg") center / contain no-repeat;
}

.chip-popover {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  z-index: 30;
  display: none;
  width: 552px;
  max-width: calc(100vw - 48px);
  padding: 29px 48px 28px 31px;
  border-radius: 8px;
  background: #d1d1d1;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .28);
  color: #273640;
  text-align: left;
  white-space: normal;
  transform: translateX(-50%);
}

.chip-popover:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #d1d1d1;
  transform: translateX(-50%);
}

.chip.is-active .chip-popover {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .chip-label:hover .chip-popover,
  .chip-label:focus-within .chip-popover {
    display: block;
  }
}

.chip-popover-close {
  position: absolute;
  top: 13px;
  right: 14px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #24333d;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.chip-popover p {
  font-family: "SF Pro Display";
  color: #273640;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}

.chip-popover strong {
  font-family: "SF Pro Display";
  color: #273640;
  display: block;
  margin: 0 0 22px;
  font-style: normal;
  font-weight: 800;
}

.course-bottom {
  position: absolute;
  left: 50%;
  bottom: -89.04px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 16.8px;
  width: 436.8px;
  transform: translateX(-50%);
}

.course-bottom:before {
  content: "";
  position: absolute;
  left: -11.76px;
  top: 29.4px;
  width: 105.84px;
  height: 64.68px;
  background: url("../img/arrow-1.png") center / contain no-repeat;
}

.text-link {
  display: inline;
  color: #cbdde0;
  font-size: 17px;
  text-decoration:underline;
}

.text-link:hover {
  text-decoration:none;
}


/* ==========================================================================
   Homepage: audience cards
   ========================================================================== */

.audience {
  padding: 152px 0 68px;
}

.audience h2,
.faq h2 {
  margin-bottom: 21.84px;
  text-align: center;
  color: #d9e5e8;
  font-size: 46px;
  font-weight: 800;
}

.card-grid {
  max-width:1260px;
  margin:0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31.92px;
}

.info-card {
  min-height: 344.4px;
  padding: 26.88px 26.04px 28.56px;
  border: 0.84px solid rgba(237, 189, 49, .74);
  border-radius: 11.76px;
  background: linear-gradient(150deg, rgba(20, 82, 91, .72), #0e333f);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 57.12px;
  height: 57.12px;
  margin-bottom: 16.8px;
  border-radius: 15.12px;
  background: linear-gradient(140deg, #f4c437, #b98616);
  color: #fff;
}

.card-icon:before {
  font-size: 26px;
  line-height: 1;
}

.card-icon svg,
.card-icon img {
  display: block;
  width: 25.2px;
  height: 25.2px;
  flex: 0 0 25.2px;
  filter: brightness(0) invert(1);
}

.icon-chart:before { content: "\25A1"; }
.icon-user:before { content: "\25CF"; }
.icon-calc:before { content: "\25A4"; }

.info-card h3 {
  margin-bottom: 20.16px;
  color: #b8cdd1;
  font-size: 25px;
  font-weight: 800;
}

.info-card p {
  color: #d5e3e6;
  font-size: 17px;
  line-height: 1.45;
}

.info-card a {
  display: inline-block;
  margin-top: 8.4px;
  color: #c6d9dc;
  font-size: 18px;
  text-decoration:underline;
}

.info-card a:hover {
  text-decoration:none;
}

/* ==========================================================================
   Homepage: about institute
   ========================================================================== */

.about {
  margin-top: 0;
  padding-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.quote-column {
  min-width: 0;
}

.quote-copy {
  position: relative;
  min-height: 273.84px;
  padding-left: 80.64px;
}

.quote-copy h2 {
  max-width: 420px;
  padding: 60px 0 30px 85px;
  color: #d9e5e8;
  font-size: 47px;
  font-weight: 800;
  line-height: 1.08;
}

.quote-mark {
  position: absolute;
  width: 58.8px;
}

.quote-left {
  left: 31.92px;
  bottom: 31.08px;
  transform: rotate(180deg);
}

.quote-left--v2 {
  left: 20px;
  bottom: 30px;
  transform: rotate(180deg);
}

.quote-right {
  left: 524.16px;
  top: 33.6px;
}

.quote-right--v2 {
  right: 20px;
  left: auto;
  top: 30px;
}

.about-photo {
  width: 100%;
  height: 514.08px;
  object-fit: cover;
}

.about-panel {
  position: relative;
  min-height: 626.64px;
  margin-bottom: -63.84px;
  padding: 92.4px 58.8px 58.8px 84px;
  border: 0.84px solid rgba(237, 189, 49, .66);
  border-radius: 15.12px;
  background: rgba(5, 50, 61, .94);
}

.about-panel h2 {
  max-width: 520.8px;
  margin-bottom: 23.52px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
}

.about-panel p,
.accordion-body {
  max-width: 588px;
  color: #d4e3e6;
  font-size: 18px;
  line-height: 1.47;
}

.accordion {
  display: grid;
  gap: 13.44px;
  margin: 31.92px 0 26.88px;
}

.accordion-trigger {
  display:flex;
  align-items: center;
  position: relative;
  border: 0;
  background: transparent;
  color: #bfd4d8;
  font-size: 19px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger:before {
  content: "";
  display:flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 23.52px;
  height: 23.52px;
  color: var(--gold);
  vertical-align: -1.68px;
  background: url("../img/icon-home/chevron-right.svg") center / 11px 11px no-repeat;
  filter: brightness(0) saturate(100%) invert(74%) sepia(58%) saturate(816%) hue-rotate(354deg) brightness(99%) contrast(91%);
}

.accordion-trigger.open:before {
  transform: rotate(90deg);
}

.accordion-body {
  display: none;
  padding: 0 0 3.36px 24.36px;
}

.accordion-trigger.open + .accordion-body {
  display: block;
}

.side-services {
  gap: 18px;
  margin-top: 0;
}

.side-services .accordion-trigger {
  color: #94bdc7;
  font-size: 20px;
}

.side-services .accordion-trigger.open {
  color: #d7e7eb;
}

.side-services .accordion-body {
  max-width: 560px;
  padding: 0 0 18px 35px;
}

.service-body p {
  margin-bottom: 17px;
  color: #f1f6f7;
  font-size: 18px;
  line-height: 1.38;
}

.service-body ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-body li {
  position: relative;
  padding-left: 38px;
  color: #f1f6f7;
  font-size: 18px;
  line-height: 1.22;
}

.service-body li:before {
  content: "";
  position: absolute;
  left: 4px;
  top: .66em;
  width: 10px;
  height: 2px;
  background: var(--gold);
}

/* ==========================================================================
   Homepage: trusted logos carousel
   ========================================================================== */

.trusted {
  padding: 40px 0 66px;
  text-align: center;
}

.trusted h2 {
  margin-bottom: 42px;
  color: #cbdde1;
  font-size: 20px;
}

.logo-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 1041.6px;
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: logo-scroll 24s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 252px;
  width: 252px;
  height: 168px;
  padding: 0 29.4px;
}

.logo-track img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 58.8px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(92%) opacity(.78);
}

.logo-track img.logo-gcp {
  max-width: 132px;
  max-height: 71px;
}

.logo-track img.logo-kb {
  max-width: 126px;
  max-height: 50px;
}

.logo-track img.logo-hbo {
  max-width: 128px;
  max-height: 53px;
}

.logo-track img.logo-saint {
  max-width: 146px;
  max-height: 61px;
}

.logo-track img.logo-lidl {
  max-width: 64px;
  max-height: 64px;
}

.logo-track img.logo-unicredit {
  max-width: 152px;
  max-height: 40px;
}

.logo-track img.logo-tipsport {
  max-width: 150px;
  max-height: 43px;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Shared FAQ component
   ========================================================================== */

.faq {
  padding: 23.52px 0 80.64px;
}

.faq-inner {
  display: grid;
  justify-items: center;
}

.faq-list {
  width: min(712.32px, 100%);
  margin-bottom: 58.8px;
}

.faq-item {
  border: 0.84px solid transparent;
  border-bottom: solid 0.84px #194d5b;
  border-radius: 0px;
  overflow: hidden;
  background: transparent;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.faq-item + .faq-item {
  margin-top: 8.4px;
}

.faq-item.open {
  background:
    linear-gradient(#0e333f, #0e333f) padding-box,
    linear-gradient(180deg, rgba(229, 183, 41, .92) 0%, rgba(196, 161, 45, .76) 28%, rgba(58, 121, 129, .68) 68%, rgba(20, 88, 104, .72) 100%) border-box;
  border-color: transparent;
  border-radius: 15.12px;
}

.faq-question {
  position: relative;
  width: 100%;
  min-height: 50.4px;
  padding: 16.8px 58.8px 16.8px 29.4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8bbccc;
  font-size: 19px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: color .28s ease;
}

.faq-question.open {
  background: transparent;
  color: #a7c9d2;
}

.faq-question:after {
  content: "+";
  position: absolute;
  right: 11.76px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 33.6px;
  height: 33.6px;
  border-radius: 50%;
  background: transparent;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%) scale(1);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1), background .28s ease, color .28s ease;
}

.faq-question.open:after {
  content: "\2212";
  background: #78949b;
  color: #0b3d48;
  transform: translateY(-50%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 29.4px;
  border: 0;
  background: transparent;
  color: #d6e4e7;
  font-size: 17px;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(-6.72px);
  transition: max-height .42s cubic-bezier(.2, .8, .2, 1), padding .42s cubic-bezier(.2, .8, .2, 1), opacity .24s ease, transform .42s cubic-bezier(.2, .8, .2, 1);
}

.faq-question.open + .faq-answer {
  max-height: 201.6px;
  padding: 16.8px 29.4px 20.16px;
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: 0 0 53.76px;
}

.footer-inner {
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 37.8px 53.76px 0 53.76px;
  border-top: 0.84px solid rgba(206, 224, 227, .18);
  color: #91adb3;
  font-size: 15px;
}

.footer-inner a {
  border-bottom: 0.84px solid currentColor;
}

.footer-inner p:last-child {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 18px;
}

.footer-inner span{
  display:flex;
  gap:10px;
  align-items: center;
}

.footer-inner img {
  width: 64px;
  filter: grayscale(1) brightness(0) invert(90%);
}

/* ==========================================================================
   Font family overrides for longer readable text
   ========================================================================== */

.topline,
.date,
.benefit-grid li,
.text-link,
.info-card p,
.info-card a,
.about-panel p,
.accordion-body,
.trusted h2,
.faq-question,
.faq-answer,
.footer-inner {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-weight: 300;
}

/* ==========================================================================
   Subpage background and header adjustments
   ========================================================================== */

body.page-bg-subpage {
  --hero-bg-size: clamp(1180px, 100vw, 1680px);
  --hero-bg-x: 50%;
  --hero-bg-y: 0;
  background-color: var(--bg);
  background-image: url("../img/subpage.webp");
  background-position: var(--hero-bg-x) var(--hero-bg-y);
  background-size: var(--hero-bg-size) auto;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

.hide-non-kurz-sections > section:not([class^="kurz-"]) {
  display: none;
}

.page-bg-subpage .site-header {
  position: relative;
  top: auto;
}

.page-bg-subpage .header-inner {

}

/* ==========================================================================
   Kurz page: hero
   ========================================================================== */

.kurz-hero {
  padding: 0 0 48px;
}

.kurz-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-width: 0;
}

.kurz-hero-copy {
  padding-right: 42px;
}

.kurz-hero-copy,
.kurz-profile-copy {
  min-width: 0;
}

.kurz-hero-copy h1 {
    color: #d9e5e8;
    font-size: 47px;
    font-weight: 800;
    line-height: 1.08;
    overflow-wrap: anywhere;
    margin:0 0 56px;
}

.kurz-hero-copy h1 span {
  display: block;
  font-size:42px;
  color: var(--gold);
}

.kurz-hero-copy p {
  max-width: 520px;
  color: #d6e5e8;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  margin:0 0 30px;
}

.kurz-underline-link {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: inherit;
}

.kurz-underline-link:after {
  content: "";
  position: absolute;
  left: -6px;
  right: -7px;
  bottom: -7px;
  z-index: -1;
  height: 11px;
  background: url("../img/podtrzeni.png") center / 100% 100% no-repeat;
  pointer-events: none;
}

.kurz-underline-link:hover {
  color: #fff;
}

.kurz-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}

.kurz-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 2px 12px 2px 2px;
  border: 1px solid rgba(21, 151, 212, .86);
  border-radius: 999px;
  background: rgba(8, 50, 62, .78);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.kurz-meta span:before {
  content: attr(data-label);
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #126890;
  color: #fff;
  font-size: 13px;
}

.kurz-meta span > span {
  display: none;
}

.kurz-meta strong {
  color: #fff;
}

.kurz-hero-media {
  height: 421px;
  overflow: hidden;
  min-width: 0;
  max-width: 1100px;
  margin-right: calc((1280px - 100vw) / 2);
}

.kurz-hero-media img,
.kurz-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Terms page
   ========================================================================== */

.terms-page .kurz-hero {
  padding: 0 0 45px;
}

.terms-page .kurz-hero-copy h1 {
  padding-top: 39px;
  color: #d9e5e8;
}

.terms-page .kurz-hero-media {
  height: 209px;
}

.kurz-terms {
  padding: 0 0 86px;
}

.terms-content {
  position: relative;
  left: 28px;
  width: min(100%, 830px);
  margin-left: auto;
  padding-right: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.36;
  color: #e5f0f2;
}

.terms-block + .terms-block {
  margin-top: 34px;
}

.terms-content h2 {
  margin: 0 0 31px;
  color: #91bbc5;
  font-family: "PolySans", -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial, sans-serif;
  font-size: 29px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.18;
}

.terms-content p {
  margin: 0 0 22px;
}

.terms-list {
  display: grid;
  gap: 13px;
  margin: -3px 0 22px;
  padding: 0;
  list-style: none;
}

.terms-list li {
  position: relative;
  min-height: 22px;
  padding-left: 32px;
}

.terms-list li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: .45em;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}

/* ==========================================================================
   Privacy page
   ========================================================================== */

.privacy-page .kurz-hero {
  padding: 0 0 45px;
}

.privacy-page .kurz-hero-copy h1 {
  padding-top: 39px;
  color: #d9e5e8;
}

.privacy-page .kurz-hero-media {
  height: 209px;
}

.privacy-section {
  padding: 0 0 98px;
}

.privacy-content {
  left: 28px;
  width: min(100%, 830px);
  margin-left: auto;
  font-size: 17px;
}

.privacy-lead {
  margin: 0 0 28px;
}

.privacy-block {
  margin-top: 32px;
}

.privacy-block h2 {
  display: flex;
  gap: 18px;
  margin: 0 0 17px;
  color: #91bbc5;
  font-family: "PolySans", -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.18;
}

.privacy-block h2 span {
  flex: 0 0 25px;
}

.privacy-copy {
  padding-left: 45px;
}

.privacy-copy p {
  margin: 0 0 22px;
}

.privacy-copy p:last-child,
.privacy-copy .terms-list:last-child {
  margin-bottom: 0;
}

.privacy-copy a {
  border-bottom: 1px solid currentColor;
}

.privacy-copy strong {
  font-style: normal;
  font-weight: 800;
}

.privacy-copy .terms-list {
  gap: 16px;
  margin: 0 0 22px;
}

.privacy-copy .terms-list li {
  padding-left: 37px;
}

.privacy-copy .terms-list li:before {
  top: .43em;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.kontakt-hero {
  padding: 0 0 48px;
}

.kontakt-hero .kurz-hero-copy h1 {
  padding-top: 39px;
  color: #d9e5e8;
}

.kontakt-hero .kurz-hero-media {

}

.kontakt-hero-details {
  margin-top: 48px;
  color: #e5f0f2;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.kontakt-hero-details h2 {
  margin: 0 0 42px;
  color: var(--gold);
  font-family: "PolySans", -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.kontakt-hero-details p {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: none;
  margin: 12px 0 0;
  color: #e5f0f2;
  font-size: 27px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
}

.kontakt-hero-details a,
.profile-link,
.contact-form a {
  border-bottom: 1px solid currentColor;
}

.kontakt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(237, 189, 49, .55);
  border-radius: 9px;
  color: var(--gold);
  font-size: 17px;
  font-style: normal;
}

.kontakt-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(76%) sepia(73%) saturate(588%) hue-rotate(348deg) brightness(99%) contrast(94%);
}

.kurz-contact-form {
  padding: 4px 0 82px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 800px);
  gap: 82px;
  align-items: start;
}

.contact-form-copy {
  padding-top: 32px;
}

.contact-form-copy h2,
.kurz-contact-team h2,
.kurz-contact-info h2 {
  color: #91bbc5;
  font-family: "PolySans", -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.contact-form-copy p,
.contact-form,
.team-card p,
.more-lecturers-grid,
.contact-info-grid p,
.contact-info-grid h3 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
}

.contact-form-copy p {
  margin-top: 26px;
  color: #e5f0f2;
  font-size: 18px;
  line-height: 1.38;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 90px;
  color: #e5f0f2;
  font-size: 16px;
  line-height: 1.2;
  padding: 50px 0 0 0;
}

.field {
  min-width: 0;
}

.field-name,
.field-phone {
  grid-column: 1 / 2;
}

.field-name {
  grid-row: 1;
}

.field-phone,
.field-email {
  grid-row: 2;
}

.field-email {
  grid-column: 2 / 3;
}

.field-message,
.consent,
.consent-error,
.contact-submit,
.contact-success {
  grid-column: 1 / -1;
}

.field-message {
  grid-row: 3;
}

.consent {
  grid-row: 4;
}

.consent-error {
  grid-row: 5;
  transform: translate(0px, -25px);
}

.contact-submit {
  grid-row: 6;
}

.contact-success {
  grid-row: 1 / 7;
}

.field label {
  display: block;
  margin: 0 0 9px;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #e2e3e5;
  color: #0d3d4b;
  font-size: 18px;
  font-style: normal;
  line-height: 1.3;
  outline: none;
}

.field input {
  height: 43px;
  padding: 7px 12px;
}

.field textarea {
  min-height: 128px;
  padding: 11px 12px;
  resize: vertical;
  height: 100px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(21, 151, 212, .88);
}

.field-error {
  display: none;
  margin: 8px 0 0;
  color: #ff3434;
  font-size: 14px;
  font-weight: 800;
}

.field.has-error input,
.field.has-error textarea,
.consent.has-error input {
  border-color: #ff3434;
}

.field.has-error .field-error,
.consent.has-error + .consent-error {
  display: block;
}

.consent {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin-top: 0;
}

.consent input {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.contact-submit {
  width: 102px;
  min-height: 45px;
  padding: 0 20px;
  border: 0;
  font-size: 14px;
  font-weight: 800;
}

.contact-success {
  display: none;
  justify-items: center;
  margin-top: 28px;
  color: #e5f0f2;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.contact-success img {
  width: 80px;
  margin: 0 auto 24px;
}

.contact-form.is-success .field,
.contact-form.is-success .consent,
.contact-form.is-success .consent-error,
.contact-form.is-success .contact-submit {
  display: none;
}

.contact-form.is-success .contact-success {
  display: grid;
}

.kurz-contact-team {
  padding: 0 0 98px;
}

.kurz-contact-team > .container > h2,
.more-lecturers-title {
  text-align: center;
}

.contact-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 140px;
  margin-top: 56px;
}

.team-card {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 44px;
}

.team-card img {
  width: 190px;
  height: 190px;
  border-radius: 36px;
  object-fit: cover;
}

.team-card h3,
.more-lecturers-grid h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.team-card p {
  margin: 0 0 17px;
  color: #e5f0f2;
  font-size: 17px;
  line-height: 1.45;
}

.team-card p a {
  font-weight: 800;
}

.profile-link {
  color: #e5f0f2;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-size: 17px;
  touch-action: manipulation;
}

.profile-popover {
  position: absolute;
  left: 70px;
  top: 132px;
  z-index: 90;
  width: 516px;
  padding: 41px 35px 28px;
  border-radius: 8px;
  background: #d6d7d9;
  color: #33434a;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .28);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.42;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease;
}

.profile-popover:before {
  content: "";
  position: absolute;
  left: 80px;
  top: -11px;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #d6d7d9;
  border-left: 12px solid transparent;
}

.profile-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #33434a;
  font-size: 21px;
  font-style: normal;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}

.profile-popover p {
  margin: 0 0 17px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.profile-popover p:last-child {
  margin-bottom: 0;
}

.profile-link.is-active + .profile-popover,
.profile-popover.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.team-card:nth-child(2) .profile-popover {
  left: -310px;
}

.team-card:nth-child(2) .profile-popover:before {
  left: 332px;
}

.profile-popover-small {
  left: 0;
  top: 62px;
  width: 285px;
  padding: 35px 28px 26px;
}

.profile-popover-small:before {
  left: 43px;
}

.more-lecturers-title {
  margin-top: 80px;
}

.more-lecturers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 78px;
  margin-top: 64px;
}

.more-lecturers-grid article {
  position: relative;
}

.kurz-contact-info {
  padding: 20px 0 91px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 328px 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.contact-info-grid h3 {
  margin: 0 0 30px;
  color: #e5f0f2;
  font-size: 18px;
  font-weight: 800;
}

.contact-info-grid p {
  color: #e5f0f2;
  font-size: 18px;
  line-height: 1.45;
}

.contact-info-grid strong {
  font-weight: 800;
}

/* ==========================================================================
   Kurz page: repeated section spacing
   ========================================================================== */

.kurz-benefits,
.kurz-outcomes,
.kurz-lecturers,
.kurz-modules,
.kurz-steps,
.kurz-faq {
  padding: 66px 0;
}

.kurz-benefits{
  padding: 18px 0;
}

.kurz-outcomes{
  padding: 34px 0;
}

.kurz-lecturers{
  padding: 20px 0;
}

.kurz-steps{
  padding: 15px 0;
}

/* ==========================================================================
   Kurz page: three key benefit columns
   ========================================================================== */

.kurz-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
}

.kurz-feature-icon {
  display: inline-flex;
  width: 31px;
  height: 31px;
  margin-bottom: 0;
  color: var(--gold);
}

.kurz-feature-icon svg {
  width: 100%;
  height: 100%;
}

.kurz-feature h2 {
  display: inline-block;
  margin-left: 16px;
  color: #a9c3c8;
  font-size: 28px;
  font-weight: 800;
  vertical-align: top;
}

.kurz-feature p,
.section-intro,
.kurz-profile-copy p,
.kurz-tooltip-card p,
.kurz-dash-list,
.kurz-module-list li,
.kurz-list,
.kurz-card-grid .info-card p {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
}

.kurz-feature p {
  margin-top: 18px;
  color: #d8e7e9;
  font-size: 17px;
  line-height: 1.45;
}

.kurz-feature p:first-of-type {
  font-family: "PolySans", -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial, sans-serif;
}

.kurz-feature p + p {
  color: #d1e0e3;
}

.kurz-inline-link,
.kurz-external-link {
  color: inherit;
  border-bottom: 1px solid currentColor;
  transition: color .18s ease, border-color .18s ease;
}

.kurz-inline-link:hover,
.kurz-external-link:hover {
  color: #fff;
}

.kurz-highlight {
  color: var(--gold);
}

.kurz-external-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-weight: 800;
}

.kurz-external-link:after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 1px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ==========================================================================
   Kurz page: profile of graduate
   ========================================================================== */

.kurz-profile {
  padding: 56px 0 70px;
}

.kurz-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.kurz-profile-media {
  position: relative;
  align-self: stretch;
  min-height: 0;
  overflow: hidden;
  width: calc(100% + max(0px, ((100vw - 1280px) / 2)));
  max-width: 1100px;
  margin-left: calc(max(0px, ((100vw - 1280px) / 2)) * -1);
}

.kurz-profile-media img {
  position: absolute;
  inset: 0;
}

.kurz-profile-copy {
  position: relative;
  padding-left: 68px;
}

.kurz-profile-copy h2,
.kurz-outcomes h2,
.kurz-lecturers h2,
.kurz-steps h2,
.kurz-faq h2 {
  color: #d9e5e8;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.kurz-profile-copy h2 {
  color: var(--gold);
  text-align: left;
  font-size: 48px;
  margin:0 0 20px;
}

.kurz-profile-copy h3 {
  text-align: left;
  font-size: 20px;
  color:#d7e4e7;
  padding:0;
  margin:0 0 20px;
}

.kurz-profile-copy p {
  max-width: 610px;
  margin:0 0 20px;
  color: #d7e5e8;
  font-size: 18px;
  line-height: 1.45;
}

.kurz-profile-content {
  position: static;
  display: block;
}

.kurz-profile-content h3,
.kurz-tooltip-card h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 800;
}

.kurz-list,
.kurz-module-list ul {
  list-style: none;
}

.kurz-list li,
.kurz-module-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 19px;
  color: #8bbccc;
  font-size: 18px;
}

.kurz-list li {
  margin-bottom: 9px;
}

.kurz-list li:before,
.kurz-module-list li:before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.kurz-list a {
  color: #a9c3c8;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}

.kurz-list a:hover,
.kurz-list a:focus-visible,
.kurz-list a.is-active {
  color: #fff;
  border-color: rgba(237, 189, 49, .7);
}

.kurz-term-link {
  color: inherit;
  border-bottom: 1px dashed rgba(255, 255, 255, .92);
  touch-action: manipulation;
  transition: color .18s ease, border-color .18s ease;
}

.kurz-term-link:hover,
.kurz-term-link:focus-visible,
.kurz-term-link.is-active {
  color: #fff;
  border-color: #fff;
}

.kurz-tooltip-card {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 90;
  width: min(552px, 100%);
  padding: 29px 48px 28px 31px;
  border-radius: 8px;
  background: #d1d1d1;
  color: #273640;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}

.kurz-tooltip-card:before {
  content: "";
  position: absolute;
  left: var(--tooltip-arrow-left, 50%);
  bottom: 100%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #d1d1d1;
  transform: translateX(-50%);
}

.kurz-tooltip-card.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.kurz-tooltip-card button {
  position: absolute;
  right: 11px;
  top: 9px;
  border: 0;
  background: transparent;
  color: #24333d;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.kurz-tooltip-card h3,
.kurz-tooltip-card p {
  color: #273640;
}

.kurz-tooltip-card h3 {
  margin: 0 0 22px;
  font-family: "SF Pro Display";
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.kurz-tooltip-card p {
  font-family: "SF Pro Display";
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}

/* ==========================================================================
   Kurz page: outcome cards
   Reuses .card-grid and .info-card from homepage card system.
   ========================================================================== */

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

.section-intro {
  max-width: 880px;
  margin: 38px auto 32px;
  color: #d7e5e8;
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
}

.kurz-card-grid {
  text-align: left;
}

.kurz-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  margin-top: 54px;
  text-align: left;
}

.kurz-outcome-card {
  min-height: 510px;
  padding: 29px 30px 36px;
  border: 1px solid rgba(239, 188, 39, .72);
  border-radius: 15px;
  background: #0e333f;
}

.kurz-outcome-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.kurz-outcome-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: linear-gradient(140deg, #f4c437, #b98616);
}

.kurz-outcome-icon img {
  width: 31px;
  height: 31px;
  filter: brightness(0) invert(1);
}

.kurz-outcome-card h3 {
  color: #a7c6ce;
  font-size: 26px;
  font-weight: 800;
}

.kurz-outcome-lead {
  max-width: 560px;
  margin-bottom: 29px;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.45;
}

.kurz-arrow-list {
  list-style: none;
}

.kurz-arrow-list li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 31px;
  color: #a9c9d0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.38;
}

.kurz-arrow-list li:before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

/* ==========================================================================
   Kurz page: lecturers
   ========================================================================== */

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

.kurz-lecturers .btn{
  background:#236170;
}

.kurz-lecturer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 66px;
  margin: 52px auto 58px;
  text-align: left;
}

.kurz-lecturer-grid h3 {
  margin-bottom: 19px;
  color: var(--gold);
  font-size: 34px;
  font-weight: 800;
}

.kurz-dash-list {
  list-style: none;
}

.kurz-dash-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 26px;
  color: #d9e6e8;
  font-size: 17px;
  line-height: 1.45;
}

.kurz-dash-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
}

/* ==========================================================================
   Kurz page: course modules
   ========================================================================== */

.kurz-modules-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 146px;
}

.kurz-modules h2 {
  color: #d9e5e8;
  font-size: 44px;
  font-weight: 800;
}

.kurz-module-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 92px;
}

.kurz-module-list article {
  padding-top: 30px;
  //border-top: 1px solid rgba(216, 231, 233, .75);
}

.kurz-module-list span {
  display: block;
  margin-bottom: 10px;
  color: #dce9ec;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.kurz-module-list h3 {
  margin: 14px 0 16px 0px;
  padding:6px 0 0 0;
  border-top:solid 2px #fff;
  color: #a9c3c8;
  font-size: 24px;
  font-weight: 800;
}

.kurz-schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 88px;
}

.kurz-schedule article {
  max-width: 420px;
}

.kurz-schedule h3 {
  margin-bottom: 16px;
  padding-bottom: 9px;
  border-bottom: 2px solid rgba(216, 231, 233, .86);
  color: #a9c9d0;
  font-size: 27px;
  font-weight: 800;
}

.kurz-schedule p {
  margin-bottom: 20px;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.kurz-schedule .kurz-arrow-list li {
  margin-bottom: 15px;
  color: #fff;
  font-size: 19px;
}

.kurz-signup {
  padding: 92px 0 88px;
  text-align: center;
}

.kurz-signup-quote {
  position: relative;
  width: min(100%, 1046px);
  margin: 0 auto 80px;
  padding: 12px 120px 0;
}

.kurz-signup-quote h2 {
  color: #edbd31;
  font-size: 49px;
  font-weight: 800;
  line-height: 1.1;
  text-align: left;
}

.kurz-signup-quote .quote-mark {
  position: absolute;
  display: block;
  width: 66px;
}

.kurz-signup-quote .quote-left {
  left: 20px;
  bottom: -30px;
  transform: rotate(180deg);
}

.kurz-signup-quote .quote-right {
  left: auto;
  right: 20px;
  top: -30px;
}

.kurz-signup-cta h2 {
  margin-bottom: 48px;
  color: #d9e5e8;
  font-size: 49px;
  font-weight: 800;
  line-height: 1.1;
}

.kurz-signup-cta p {
  margin-bottom: 34px;
  color: #d9e5e8;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-size: 18px;
}

/* ==========================================================================
   Institute page
   ========================================================================== */

.institute-hero {
  padding-bottom: 54px;
}

.institute-hero .kurz-hero-copy h1 span {
  color: var(--gold);
}

.institute-hero-quote {
  position: relative;
  width: min(100%, 590px);
  min-height: 128px;
  margin: 24px 0 28px;
  padding: 30px 94px 18px 94px;
}

.institute-hero-quote p {
  color: #dbe8eb;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.institute-hero-quote .quote-mark {
  position: absolute;
  display: block;
  width: 40px;
}

.institute-hero-quote .quote-left {
    left: 5px;
    bottom: 2px;
    transform: rotate(180deg);
}

.institute-hero-quote .quote-right {
  left: auto;
  right: 5px;
  top: 2px;
}

.institute-origin,
.institute-founder,
.institute-pillars,
.institute-trusted {
  padding: 70px 0;
}

.institute-origin{
  padding:0;
}

.institute-origin-panel {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, .94fr);
  gap: 76px;
  padding: 42px 39px 43px;
  border: 1px solid rgba(239, 188, 39, .72);
  border-radius: 22px;
  background: rgba(4, 42, 51, .94);
}

.institute-founder h2,
.institute-pillars h2 {
  color: var(--gold);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
}

.institute-origin-copy h2 {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
}

.institute-origin-copy h2 span,
.institute-founder h2 span,
.institute-pillars h2 span {
  color: var(--gold);
}

.institute-founder--v2 .grid-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: start;
}

.institute-origin-copy p,
.institute-values p,
.founder-card p,
.institute-pillars p,
.institute-trusted p {
  color: #d6e5e8;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.42;
}

.institute-origin-copy .eyebrow {
  margin-bottom: 12px;
  color: #dce9ec;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.institute-origin-copy p + p {
  margin-top: 19px;
}

.origin-signature {
  margin-top: 44px !important;
  text-align: center;
  color: #dbe8eb !important;
  font-weight: 800 !important;
}

.institute-values {
  display: grid;
  gap: 39px;
  align-content: center;
  padding-top: 22px;
}

.institute-values article {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: start;
  gap: 31px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.institute-icon {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  margin: 0;
  border: 1px solid rgba(239, 188, 39, .92);
  border-radius: 22px;
}

.institute-icon:before {
  content: "";
  width: 38px;
  height: 38px;
  background: var(--gold);
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.institute-icon-rocket:before {
  -webkit-mask-image: url("../img/icon-o-institutu/rocket-takeoff-fill.svg");
  mask-image: url("../img/icon-o-institutu/rocket-takeoff-fill.svg");
}

.institute-icon-eye:before {
  -webkit-mask-image: url("../img/icon-o-institutu/eye-fill.svg");
  mask-image: url("../img/icon-o-institutu/eye-fill.svg");
}

.institute-values h3 {
  margin: 6px 0 18px;
  color: var(--gold);
  font-size: 26px;
  font-weight: 800;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding: 0;
  gap: 0;
}

.founder-media {
  display: grid;
  grid-template-rows: 323px 600px;
  min-width: 0;
}

.founder-media--v2 {
  grid-template-rows: max-content 1fr;
  justify-self: end;
  max-width: 960px;
  width: 100%;
  overflow: hidden;
}

.founder-quote {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 323px;
  padding: 72px 120px 34px 120px;
  color: #d9e5e8;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
}

.founder-quote--v2 {
  position: relative;
  display: flex;
  align-items: unset;
  justify-content: flex-end;
  align-self: start;
  width: 100%;
  max-width: none;
  min-height: 250px;
  padding: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
}

.founder-quote--v2 .wrapper {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 620px;
  padding: 80px;
}

.founder-quote h2 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.founder-quote:before,
.founder-quote:after {
  position: absolute;
  color: var(--gold);
  font-size: 160px;
  line-height: 1;
}

.founder-quote:before {
  content: "„";
  left: max(5.3vw, 54px);
  bottom: 56px;
}

.founder-quote:after {
  content: "“";
  right: 70px;
  top: 30px;
}

.founder-quote--v2:before,
.founder-quote--v2:after {
  display:none;
}

.founder-quote--v2 .wrapper:before,
.founder-quote--v2 .wrapper:after {
  position: absolute;
  color: var(--gold);
  font-size: 100px;
  line-height: 1;
}

.founder-quote--v2 .wrapper:before {
  content: "„";
  left: 20px;
  bottom: 70px;
}

.founder-quote--v2 .wrapper:after {
  content: "“";
  right: 20px;
  top: 60px;
}

.founder-photo-wrap {
  position: relative;
  min-height: 0;
  padding: 0 0 110px;
  overflow: hidden;
}

.founder-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 960px;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.founder-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: right center;
}

.founder-photo--v2 {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.founder-card {
  align-self: start;
  min-height: 858px;
  margin-top: 56px;
  padding: 90px 106px 74px;
  border: 1px solid rgba(239, 188, 39, .65);
  border-right: 0;
  border-radius: 18px 0 0 18px;
}

.founder-card--v2 {
  align-self: start;
  width: 100%;
  margin-top: 100px;
  padding: 0;
  border: 1px solid rgba(239, 188, 39, .65);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background-color:#0e333f;
}

.founder-card-dark-bg {
  background-color:#052a34c9;
}

.founder-card--v2 .wrapper {
  align-self: start;
  width: calc(100% - 60px);
  max-width: 620px;
  height: 100%;
  padding: 90px 0 90px 60px;
}

.founder-card .eyebrow {
  max-width: 610px;
  margin-bottom: 11px;
  color: #dce9ec;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-card h2 {
  max-width: 610px;
  margin-bottom: 27px;
  color: var(--gold);
  font-size: 49px;
  line-height: 1.05;
}

.founder-card h3 {
  max-width: 610px;
  margin: 60px 0 15px;
  color: #a9c9d0;
  font-size: 22px;
  font-weight: 800;
}

.founder-card p + p {
}

.founder-card p {
  max-width: 610px;
  font-size: 18px;
  line-height: 1.44;
  margin:0 0 40px;
}

.founder-card .text-link {
  margin-top: 28px;
  color: #a9c9d0;
}

.institute-pillars .kurz-modules-grid {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 110px;
  align-items: start;
}

.institute-pillars .section-intro {
  margin-top: 24px;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  text-align: left;
}

.institute-pillars .kurz-module-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 92px;
}

.institute-pillars .kurz-module-list article {
  position: relative;
  padding-top: 0;
}

.institute-pillars .kurz-module-list span {
  margin-bottom: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.institute-pillars .kurz-module-list h3 {
  margin: 0 0 20px;
  padding: 13px 0 0;
  border-top: 2px solid rgba(216, 231, 233, .82);
  color: #a9c9d0;
  font-size: 27px;
  line-height: 1.08;
}

.institute-pillars .kurz-module-list p {
  color: #fff;
  font-size: 18px;
  line-height: 1.42;
}

.institute-pillars .kurz-module-list article:nth-child(5) {
  grid-column: 1 / 2;
}

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

.institute-trusted h2 {
  max-width: 860px;
  margin: 0 auto 22px;
}

.institute-trusted p {
  max-width: 730px;
  margin: 0 auto 34px;
}

/* ==========================================================================
   Kurz page: registration / labour office steps
   ========================================================================== */

.kurz-steps h2 {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.kurz-steps h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 511px;
  max-width: 76vw;
  height: 64px;
  background: url("../img/zakrouzkovani.png") center / 100% 100% no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: linear-gradient(140deg, #f4c437, #b98616);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

/* ==========================================================================
   Kurz page: FAQ spacing
   FAQ visual styles are defined in the shared FAQ component above.
   ========================================================================== */

.kurz-faq {
  padding:100px 0 80px 0;
}

.kurz-faq h2{
  font-size:48px;
  margin:0 0 40px;
}

/* ==========================================================================
   Kurz page: Hodnotový leadership isolated refinements
   ========================================================================== */

.kurz-leadership-reasons .info-card {
  min-height: 292px;
  padding: 31px 30px 30px;
}

.kurz-leadership-reasons .card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  border-radius: 16px;
}

.kurz-leadership-reasons .card-icon img {
  width: 30px;
  height: 30px;
}

.kurz-leadership-reasons .info-card h3 {
  margin-bottom: 27px;
  color: #9fc2cb;
  font-size: 25px;
  line-height: 1.16;
}

.kurz-leadership-reasons .info-card p {
  max-width: 470px;
  color: #fff;
  font-size: 17px;
  line-height: 1.42;
}

.kurz-leadership-difference .kurz-profile-copy h2 {
  max-width: 520px;
  color: var(--gold);
  font-size: 43px;
  line-height: 1.05;
}

.kurz-leadership-difference .kurz-profile-content {
  margin-top: 34px;
}

.kurz-leadership-difference .kurz-profile-content h3 {
  margin: 26px 0 14px;
  color: var(--gold);
  font-size: 17px;
}

.kurz-leadership-difference .kurz-profile-content h3:first-child {
  margin-top: 0;
}

.kurz-leadership-difference .kurz-list li {
  margin-bottom: 16px;
  padding-left: 28px;
  color: #79b8cc;
  font-size: 18px;
  line-height: 1.35;
}

.kurz-leadership-difference .kurz-list li:before {
  content: "";
  top: .42em;
  width: 12px;
  height: 12px;
  background-color: var(--gold);
  -webkit-mask: url("../img/icon-kurz/chevron-right.svg") center / contain no-repeat;
  mask: url("../img/icon-kurz/chevron-right.svg") center / contain no-repeat;
}

.kurz-leadership-outcomes .kurz-outcome-card {
  min-height: 274px;
}

.kurz-leadership-outcomes .kurz-arrow-list li {
  color: #a9c9d0;
}


/* reset */
.hero-media{
  max-width: 960px;
  margin-right: -340px;  
}

/**/
.big-block-media {
  align-self: unset; 
  width: unset; 
  max-width: 960px;
  margin-left: -342px;
}

/* ==========================================================================
   Pro firmy: help overview
   Scoped to avoid affecting shared .audience and .benefit-grid blocks.
   ========================================================================== */

#pro-firmy-help {
  padding: 0;
}

#pro-firmy-help h2 {
  margin: 0 0 36px;
}

#pro-firmy-help .benefit-grid {
  max-width: none;
}

/* ==========================================================================
   Pro firmy: compliance course promo
   Scoped to avoid affecting homepage .course-section.
   ========================================================================== */

#pro-firmy-compliance-course {
  margin-top: 74px;
  padding-bottom: 118px;
}

#pro-firmy-compliance-course .course-panel {
  width: 100%;
  padding: 60px 60px 100px;
  border: 1px solid var(--gold);
  border-radius: 18px;
  background:
    radial-gradient(circle at 74% 4%, rgba(143, 196, 199, .48) 0, rgba(69, 126, 133, .28) 25%, rgba(5, 42, 52, .66) 58%, rgba(5, 42, 52, .86) 100%),
    rgba(5, 42, 52, .88);
  box-shadow: none;
}

#pro-firmy-compliance-course .pro-firmy-course-title {
  max-width: none;
  margin: 0 0 24px;
  color: #dce9ec;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}

#pro-firmy-compliance-course .pro-firmy-course-title span {
  color: var(--gold);
}

#pro-firmy-compliance-course .pro-firmy-course-title span:after {
  display: none;
}

#pro-firmy-compliance-course .pro-firmy-course-lead {
  margin: 0 auto 58px;
  color: #dce9ec;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.22;
}

#pro-firmy-compliance-course .pro-firmy-course-lead a {
  color: var(--gold);
  text-decoration: none;
}

#pro-firmy-compliance-course .kurz-underline-link:after {
  bottom: -8px;
  height: 12px;
}

#pro-firmy-compliance-course .pro-firmy-course-program {
  margin: 0 auto;
  text-align: center;
}

#pro-firmy-compliance-course .eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px 3px;
  background: #03080a;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
}

#pro-firmy-compliance-course .pro-firmy-course-program h3 {
  margin: 0 0 26px;
  color: #dce9ec;
  font-size: 32px;
  line-height: 1.16;
}

#pro-firmy-compliance-course .pro-firmy-course-program p:last-child {
  max-width: 810px;
  margin: 0 auto;
  color: #eef5f6;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.32;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
}

#pro-firmy-compliance-course .kurz-meta {
  justify-content: center;
  gap: 10px;
  margin: 32px 0 0;
}

#pro-firmy-compliance-course .kurz-meta span {
  min-height: 31px;
  padding-right: 12px;
  border-color: rgba(21, 151, 212, .72);
  background: rgba(8, 50, 62, .5);
}

#pro-firmy-compliance-course .kurz-meta span:before {
  min-height: 25px;
  background: #126890;
  font-weight: 300;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
}

#pro-firmy-compliance-course .course-bottom {
  bottom: -87px;
  gap: 16px;
  width: 460px;
}

#pro-firmy-compliance-course .course-bottom:before {
  top: 50px;
}

#pro-firmy-compliance-course .btn-muted {
  min-width: 270px;
  min-height: 54px;
  justify-content: center;
  border-radius: 999px;
  background: #236b78;
  color: #fff;
  font-size: 16px;
}

#pro-firmy-compliance-course .text-link {
  color: #e4eef0;
  font-size: 18px;
  line-height: 1.35;
}

/* ==========================================================================
   Pro firmy: risks cards
   Scoped to avoid affecting homepage cards.
   ========================================================================== */

#pro-firmy-risks {
  padding: 58px 0 74px;
}

#pro-firmy-risks h2 {
  margin: 0 0 42px;
  color: #dce9ec;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}

#pro-firmy-risks .pro-firmy-risks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 1284px;
  margin: 0 auto;
}

#pro-firmy-risks .pro-firmy-risk-card {
  min-height: 352px;
  padding: 28px 27px 34px;
  border: 1px solid rgba(237, 189, 49, .72);
  border-radius: 16px;
  background:
    radial-gradient(circle at 26% 0, rgba(53, 116, 126, .42) 0, rgba(11, 58, 70, .28) 36%, rgba(5, 42, 52, .46) 100%),
    rgba(5, 42, 52, .74);
}

#pro-firmy-risks .pro-firmy-risk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: linear-gradient(140deg, #f4c437 0%, #b98616 100%);
  color: #fff;
}

#pro-firmy-risks .pro-firmy-risk-icon img {
  width: 30px;
  height: 30px;
  display: block;
}

#pro-firmy-risks h3 {
  margin: 0 0 28px;
  color: #9fc2cb;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.16;
}

#pro-firmy-risks p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.38;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
}

/* ==========================================================================
   Pro firmy: investment CTA
   ========================================================================== */

#pro-firmy-invest-return {
  padding: 64px 0 78px;
  text-align: center;
}

#pro-firmy-invest-return h2 {
  margin: 0 0 88px;
  color: var(--gold);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

#pro-firmy-invest-return .pro-firmy-invest-cta {
  display: flex;
  justify-content: center;
}

#pro-firmy-invest-return .btn {
  margin: 0 auto;
}

/* ==========================================================================
   Shared scroll to top button
   ========================================================================== */

.scroll-top-button {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.scroll-top-button[hidden] {
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.scroll-top-button.is-visible {
  visibility: visible;
  opacity: .7;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  opacity: 1;
}

.scroll-top-button img {
  display: block;
  width: 50px;
  height: 50px;
}

/* ==========================================================================
   404 page
   ========================================================================== */

.error-404-section {
  padding: 86px 0 0;
  text-align: center;
}

.error-404-inner {
  max-width: 1180px;
}

.error-404-section h1 {
  margin: 0 0 31px;
  color: #8fb8c4;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
}

.error-404-copy {
  max-width: 850px;
  margin: 0 auto 50px;
  color: #e9f4f5;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 300;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
}

.error-404-home {
  min-height: 52px;
  padding: 13px 24px;
  background: #2b7885;
  box-shadow: none;
  color: #fff;
  font-size: 16px;
  gap: 14px;
}

.error-404-home img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.error-404-note {
  margin: 22px 0 0;
  color: #e9f4f5;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 300;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PolySans", Arial, sans-serif;
}

.error-404-contact {
  padding: 120px 0 84px;
  text-align: center;
}

.error-404-contact .btn {
  min-height: 54px;
  padding: 15px 28px;
  font-size: 17px;
}
