@charset "UTF-8";
/*---------------------------------------------------
                    Basics
---------------------------------------------------*/
/*---------------------------------------------------
                  Global variables
---------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  background-color: #2C303C;
  color: #FFFFFF;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  width: 100%;
  height: auto;
}

.hide-md-up {
  display: block;
}
@media screen and (min-width: 768px) {
  .hide-md-up {
    display: none;
  }
}

video {
  width: 100%;
  height: auto;
}

hr {
  border: 0;
  border-top: 1px solid #5F6980;
}

/*---------------------------------------------------
                    Vendor
---------------------------------------------------*/
:root {
  --gutter-width: 3.5rem;
  --outer-margin: 2rem;
  --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
  --half-gutter-width: calc((var(--gutter-width) * 0.5));
  --xs-min: 30;
  --sm-min: 48;
  --md-min: 64;
  --lg-min: 75;
  --screen-xs-min: var(--xs-min)em;
  --screen-sm-min: var(--sm-min)em;
  --screen-md-min: var(--md-min)em;
  --screen-lg-min: var(--lg-min)em;
  --container-sm: calc(var(--sm-min) + var(--gutter-width));
  --container-md: calc(var(--md-min) + var(--gutter-width));
  --container-lg: calc(var(--lg-min) + var(--gutter-width));
}

@custom-media --sm-viewport only screen and (min-width: 48em);
@custom-media --md-viewport only screen and (min-width: 64em);
@custom-media --lg-viewport only screen and (min-width: 75em);
.container-fluid, .container {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: var(--outer-margin, 2rem);
  padding-left: var(--outer-margin, 2rem);
}

.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: var(--gutter-compensation, -0.5rem);
  margin-left: var(--gutter-compensation, -0.5rem);
}

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

.col.reverse {
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: var(--half-gutter-width, 0.5rem);
  padding-left: var(--half-gutter-width, 0.5rem);
  padding-top: 15px;
  padding-bottom: 15px;
}

.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media (min-width: 480px) {
  .container {
    width: var(--container-sm, 46rem);
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    align-items: flex-start;
  }
  .middle-sm {
    align-items: center;
  }
  .bottom-sm {
    align-items: flex-end;
  }
  .around-sm {
    justify-content: space-around;
  }
  .between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media (min-width: 768px) {
  .container {
    width: var(--container-md, 61rem);
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
    padding-top: 0;
    padding-bottom: 0;
  }
  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    justify-content: center;
    text-align: center;
  }
  .end-md {
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    align-items: flex-start;
  }
  .middle-md {
    align-items: center;
  }
  .bottom-md {
    align-items: flex-end;
  }
  .around-md {
    justify-content: space-around;
  }
  .between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media (min-width: 992px) {
  .container {
    width: var(--container-lg, 71rem);
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
  }
  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-lg {
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    align-items: flex-start;
  }
  .middle-lg {
    align-items: center;
  }
  .bottom-lg {
    align-items: flex-end;
  }
  .around-lg {
    justify-content: space-around;
  }
  .between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
.slider-container {
  position: relative;
}

.slick-slide {
  padding: 0 12px;
}

.slick-list {
  margin: 0 -12px !important;
}

.slick-prev, .slick-next {
  position: absolute;
  bottom: -85px; /* vzdálenost od spodního okraje slideru */
  background: transparent;
  border: none;
  z-index: 10;
  cursor: pointer;
}

.slick-prev {
  left: -7px; /* šipka vlevo */
}

.slick-next {
  left: 66px; /* šipka vpravo */
}

.reverse .slick-prev {
  right: 66px; /* šipka vlevo */
  left: auto;
}

.reverse .slick-next {
  right: -7px; /* šipka vpravo */
  left: auto;
}

/* volitelně: velikost SVG */
.slick-prev svg,
.slick-next svg {
  width: 30px;
  height: 30px;
}

/*---------------------------------------------------
                    Components
---------------------------------------------------*/
h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

h1 {
  font-size: 60px;
  line-height: 72px;
}

h2 {
  font-size: 36px;
  line-height: 47px;
}

h3 {
  font-size: 28px;
  line-height: 37px;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 21px;
  line-height: 130%;
  font-weight: 600;
}

p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 200;
}

p + p {
  margin-top: 15px;
}

a {
  color: #FFFFFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.space-left {
  margin-left: 15px;
}

.tip {
  position: relative;
  padding-left: 45px;
}
.tip:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 31px;
  height: 31px;
  background-image: url("../img/info-tip.svg");
}

.download {
  position: relative;
  display: inline-block;
  padding-left: 45px;
  color: #FFFFFF;
}
.download:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 39px;
  height: 39px;
  background-image: url("../img/icon-download.svg");
}

.small,
.small p {
  font-size: 16px;
  line-height: 20px;
}

.typo--black {
  color: #000000;
}

.typo--yellow {
  color: #F7C300;
}

.typo--blue {
  color: #5852FF;
}

.typo--left {
  text-align: left;
}

.typo--right {
  text-align: right;
}

span {
  font-size: inherit;
}

blockquote {
  padding-top: 74px;
  font-weight: 300;
  font-style: italic;
  line-height: 160%;
}

.sub-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 160%;
}

.width {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1230px;
}

.stripe {
  padding: 30px 0;
  background-color: #2C303C;
}
@media screen and (min-width: 768px) {
  .stripe {
    padding: 80px 0;
  }
}
.stripe--light {
  background-color: #454C5D;
}
.stripe--dark {
  background-color: #151A25;
}
.stripe + .stripe--join-top {
  padding-top: 0;
}
.stripe--huge-top {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .stripe--huge-top {
    padding-top: 120px;
  }
}
.stripe--with-image {
  overflow-x: clip;
}
.stripe--with-image .width {
  position: relative;
}
.stripe--with-image .width img {
  position: absolute;
  right: -296px;
  top: -142px;
}
.stripe--reference {
  position: relative;
  padding-top: 300px;
  overflow-y: visible;
  overflow-x: clip;
}
.stripe--reference img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  margin-left: -960px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .stripe--reference img {
    top: -104px;
  }
}
.stripe--reference .width {
  position: relative;
  z-index: 2;
}
.stripe__form-box {
  margin: 0 auto;
  padding: 80px 0;
  width: 100%;
  max-width: 1440px;
  background-color: #D9DDE9;
  background-image: url(../img/ex-mark.svg);
  background-repeat: no-repeat;
  background-position: 81% -21px;
  background-size: 200px;
}
.stripe--visual-wide {
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .stripe--visual-wide {
    padding-bottom: 160px;
  }
}
.stripe--visual-wide .row.end-xs {
  margin-right: 0;
}
.stripe--visual-wide .row.start-xs {
  margin-left: 0;
}
.stripe--visual-wide .col-md-5 {
  max-width: 450px;
}
.stripe--visual-wide .col-xs-12 {
  padding-left: 45px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .stripe--visual-wide .col-xs-12 {
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
  }
}

.indent + .indent {
  margin-top: 20px;
}
.indent + .indent--small {
  margin-top: 15px;
}
.indent + .indent--large {
  margin-top: 45px;
}
.indent + .indent--huge {
  margin-top: 90px;
}

.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 15px 30px;
  border-radius: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s linear;
}
.btn:hover {
  text-decoration: none;
}
.btn--primary {
  background-color: #F7C300;
  color: #2C303C;
  box-shadow: 0 0 20px rgba(247, 195, 0, 0.3), 0 0 50px rgba(247, 195, 0, 0.15);
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  transition: 0.4s;
}
.btn--primary:hover::after {
  left: 100%;
}
/*------------------------------------------
          Hlavička webu a navigace
--------------------------------------------*/
.header {
  width: 100%;
  height: 8rem;
  position: fixed;
  top: 0;
  z-index: 1000;
  padding: 0;
  box-sizing: border-box;
  color: #FFFFFF;
  background: transparent;
}
.header--hide {
  opacity: 0;
  visibility: hidden;
}
.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  animation: roll-in-top 0.3s ease-out;
  -webkit-animation: roll-in-top 0.3s ease-out;
  z-index: 999;
  transition: all ease 0.5s;
}
.header__logo svg {
  display: flex;
  height: 4.5rem;
  width: auto;
  fill: #E5E5E5;
  transition: all ease 0.5s;
}
.header__cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__cta {
    display: inline-block;
  }
}
.header__container {
  display: flex;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1230px;
  height: inherit;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
.header--scrolled {
  height: 5rem;
  background-color: #2C303C;
  border-bottom: border-default;
  box-shadow: 0 0 20px rgba(88, 82, 255, 0.3), 0 0 50px rgba(88, 82, 255, 0.15);
}

.page {
  position: relative;
}
.page video, .page__background, .page__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.page__overlay {
  z-index: 1;
  background-color: rgba(44, 48, 60, 0.6);
}
.page__width {
  position: relative;
  display: flex;
  align-items: center;
  height: 960px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1230px;
  z-index: 2;
}
.page__text {
  max-width: 683px;
}
.page-nav {
  margin: 15px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media screen and (min-width: 768px) {
  .page-nav {
    margin: 40px 0;
  }
}
.page-nav__img {
  width: 104px;
  height: 104px;
  border-radius: 9px;
  border: 3px solid #2C303C;
  box-shadow: 0 0 0 2px #F7C300;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.page-nav__text {
  padding: 0 19px;
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  color: #FFFFFF;
  transition: color 0.25s ease;
}
.page-nav:hover {
  transform: translateY(-4px);
  text-decoration: none;
}
.page-nav:hover .page-nav__img {
  transform: scale(1.05);
  box-shadow: 0 0 0 3px #F7C300, 0 0 9px #F7C300, 0 0 18px rgba(247, 195, 0, 0.5);
}

.annotated-image {
  position: relative;
  margin-top: 80px;
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .annotated-image {
    padding-top: 0;
    margin-top: 0;
  }
}
.annotated-image__width {
  position: relative;
}
.annotated-image__title {
  position: absolute;
  left: 15px;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .annotated-image__title {
    bottom: -215px;
  }
}
.annotated-image__background {
  width: 100%;
  height: auto;
  margin-bottom: -0.7rem;
}
.annotated-image__point {
  position: absolute;
}
.annotated-image__button {
  position: relative;
  cursor: pointer;
}
.annotated-image__icon {
  position: absolute;
  top: -80px;
  left: -90px;
  width: 54px;
  height: 54px;
  background-image: url(../img/annotation-point.svg);
  z-index: 2;
  animation: pulse 1.5s infinite ease-in-out;
  box-shadow: 0 0 20px rgba(88, 82, 255, 0.3), 0 0 50px rgba(88, 82, 255, 0.15);
}
.annotated-image__icon:hover {
  animation: none;
}
.toggle-active .annotated-image__icon {
  background-image: url(../img/annotation-point-close.svg);
  animation: none;
}
.annotated-image__inner {
  display: none;
  position: absolute;
  top: -55px;
  left: -65px;
  padding: 25px 35px;
  min-width: 360px;
  max-width: 400px;
  background-color: #444A57;
  box-shadow: 0 0 20px rgba(88, 82, 255, 0.3), 0 0 50px rgba(88, 82, 255, 0.15);
  border-radius: 15px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 160%;
}

@keyframes pulse {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.85);
    opacity: 1;
  }
}
.numbered-list__number {
  display: inline-block;
  padding: 7px 17px;
  background-color: #454C5D;
  border-radius: 15px;
}
.numbered-list__title {
  display: inline-block;
  padding-left: 20px;
  font-family: "Inter", sans-serif;
  font-size: 21px;
  line-height: 130%;
  font-weight: bold;
}
.numbered-list__items {
  padding-top: 18px;
  padding-left: 66px;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .numbered-list__items {
    padding-bottom: 90px;
  }
}
.numbered-list__items li {
  position: relative;
  padding: 5px 0 5px 35px;
  font-size: 18px;
  line-height: 120%;
}
.numbered-list__items li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

.table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table table {
  width: 100%;
  min-width: 600px;
}
.table tr {
  border-bottom: 1px solid #5F6980;
}
.table tr:last-child {
  border-bottom: none;
}
.table td {
  padding: 15px 0;
}

/* Modal pozadí */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

/* Box s obsahem */
.modal-content {
  background: #FFFFFF;
  margin: 10vh auto;
  padding: 10px;
  width: 90%;
  max-width: 800px;
  position: relative;
  border-radius: 4px;
}

/* Zavírací křížek */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  z-index: 3;
}

/* Obrázky uvnitř slideru */
.gallery-slider img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.hidden-images {
  display: none;
}

.control label {
  display: block;
  margin-top: 15px;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
}
.control input,
.control textarea {
  display: block;
  margin-top: 5px;
  padding: 10px;
  width: 90%;
  font-size: 16px;
  line-height: 20px;
  background-color: #F5F5F5;
  border-radius: 4px;
  border: 1px solid #F0F4F7;
}
.control textarea {
  min-height: 265px;
}
.control button[type=submit] {
  cursor: pointer;
  border: 0;
}
.control button[type=submit]:hover {
  text-decoration: none;
}

form label .msg {
  display: none;
}
form label.error input, form label.error textarea {
  border-color: orange;
  background-color: rgb(255, 246, 229.5);
}
form label.error .msg {
  color: orange;
  display: block;
}
form label.correct input, form label.correct textarea {
  border-color: green;
}

@media print, screen and (min-width: 769px) {
  .snippet {
    position: fixed;
    right: 0;
    top: 15vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    max-width: 90vw;
    z-index: 9;
    transition: all ease 0.3s;
  }
  .snippet__name {
    position: relative;
    background: #F1F1F1;
    width: 50px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 998;
    transform: translateX(100vw);
    transition: all ease 0.5s;
  }
  .snippet__name-text {
    transform: rotate(-90deg);
    white-space: nowrap;
    line-height: 1;
    position: absolute;
    width: auto;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    color: #2C303C;
  }
  .snippet__open {
    width: 20px;
    height: auto;
    position: absolute;
    top: 20px;
    right: 16px;
  }
  .snippet__close {
    width: 16px;
    height: auto;
    position: absolute;
    top: 20px;
    right: 16px;
    cursor: pointer;
    z-index: 999;
  }
  .snippet__box {
    position: relative;
    padding: 30px;
    max-width: 90vw;
    border-left: 5px solid #F1F1F1;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  }
  .snippet__box-text {
    color: #2C303C;
    font-family: "Inter", sans-serif;
  }
  .snippet__box-text p {
    font-family: "Inter", sans-serif;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.4;
  }
  .snippet__box-text .green-btn {
    font-size: 18px;
    line-height: 1;
    margin-top: 3px;
  }
  .snippet__box-img {
    width: 100%;
    height: auto;
  }
  .snippet--hide {
    transform: translateX(100%);
    right: 50px;
    transition: all ease 0.3s;
  }
  .snippet--hide .snippet__name {
    transform: translateX(0%);
    transition: all ease 0.5s;
  }
}
@media print, screen and (max-width: 768px) {
  .snippet {
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    max-width: 100vw;
    z-index: 999;
    transition: all ease 0.3s;
  }
}
@media print, screen and (max-width: 768px) and (min-width: 48em) {
  .snippet {
    right: 50px;
  }
}
@media print, screen and (max-width: 768px) {
  .snippet__name {
    position: relative;
    background: white;
    height: 50px;
    display: flex;
    width: 400px;
    max-width: 100vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 998;
    transition: all ease 0.5s;
  }
  .snippet__name-text {
    white-space: nowrap;
    line-height: 1;
    position: absolute;
    width: 300px;
    max-width: 100vw;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 0;
    padding-right: 20px !important;
  }
  .snippet__open {
    width: 15px;
    height: auto;
    position: absolute;
    top: 18px;
    right: 18px;
    transform: rotate(90deg);
    opacity: 0;
    transform: all ease 0.3s;
  }
  .snippet__close {
    width: 16px;
    height: auto;
    position: absolute;
    top: -35px;
    right: 16px;
    cursor: pointer;
    z-index: 999;
  }
  .snippet__box {
    position: relative;
    padding: 20px;
    max-width: 100vw;
    border-left: 5px solid white;
    background: white;
    color: black;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  }
  .snippet__box-text p {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.4;
  }
  .snippet__box-text h2, .snippet__box-text h3 {
    margin-bottom: 10px;
  }
  .snippet__box-text .green-btn {
    font-size: 18px;
    line-height: 1;
    margin-top: 3px;
  }
  .snippet__box-img {
    width: 100%;
    height: auto;
    margin: 10px 0;
  }
  .snippet--hide {
    transform: translateY(calc(100% - 50px));
    transition: all ease 0.3s;
  }
  .snippet--hide .snippet__open {
    opacity: 1;
    transform: all ease 0.3s;
  }
  .snippet--hide .snippet__close {
    opacity: 0;
    pointer-events: none;
    transform: all ease 0.3s;
  }
  .snippet--hide .snippet__name {
    transform: translateY(0px);
    transition: all ease 0.5s;
  }
}
.tooltip-bubble {
  position: absolute;
  width: 100%;
  max-width: 440px;
  margin-left: -280px;
  background: #333;
  color: #fff;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  z-index: 1000;
  display: none;
}

.tooltip-bubble p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 20px;
}

.tooltip-bubble p:last-child {
  margin-bottom: 0;
}

.tooltip-bubble a {
  color: #8fd3ff;
  text-decoration: underline;
}

.text-content h2,
.text-content h2 * {
  font-size: 36px;
  line-height: 47px;
  margin-bottom: 1rem;
}
.text-content h3,
.text-content h3 * {
  font-size: 28px;
  line-height: 37px;
  margin-bottom: 0.75rem;
}
.text-content p {
  margin-bottom: 1rem;
}
.text-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}
.text-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}
.text-content li {
  padding: 0.25rem 0;
}