@charset "UTF-8";
/*---------------------------------------------------
                    Basics
---------------------------------------------------*/
/*---------------------------------------------------
                  Global variables
---------------------------------------------------*/
/*---------------------------------------------------
                  Mixins
---------------------------------------------------*/
/* 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, 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: "Work Sans", sans-serif;
  font-weight: 400;
  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: #192360;
  color: #F5F5E6;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
  font-style: italic;
  font-size: 24px;
  line-height: 140%;
}

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

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

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

@media screen and (min-width: 768px) {
  .auto {
    width: auto;
  }
}

hr {
  border: 0;
  border-top: 1px solid #80A6D6;
}
hr.strong {
  border-top: 3px solid #192360;
  margin: 0;
}

a {
  display: inline-block;
}

.rounded {
  border-radius: 50%;
}
.rounded--158 {
  width: 158px;
  height: 158px;
}

/*---------------------------------------------------
                    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: "quincy-cf", sans-serif;
  font-weight: 400;
}

h1.hero {
  font-size: 46px;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  h1.hero {
    font-size: 100px;
    line-height: 96px;
  }
}

h1,
.as-h1 {
  font-size: 46px;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  h1,
  .as-h1 {
    font-size: 70px;
    line-height: 77px;
  }
}

h2,
.as-h2 {
  font-size: 34px;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  h2,
  .as-h2 {
    font-size: 46px;
    line-height: 50px;
  }
}

h3,
.as-h3 {
  font-size: 28px;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  h3,
  .as-h3 {
    font-size: 36px;
    line-height: 36px;
  }
}

.as-h4-not-body {
  font-family: "quincy-cf", sans-serif;
  font-size: 24px;
  line-height: 135%;
  font-weight: 400;
}

h4,
.as-h4 {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  line-height: 135%;
  font-weight: 600;
}

p {
  font-size: 18px;
  line-height: 130%;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 26px;
    line-height: 38px;
  }
}

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

a {
  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");
}

.body-text,
.body-text p,
.body-text a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  color: inherit;
}

.body-text a {
  color: #4B9B78;
}

ul {
  list-style-type: disc;
  list-style-position: inside;
}
ul li {
  padding: 2px 0;
}

.label-text {
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
}

.label-small {
  font-size: 14px;
  line-height: 150%;
}

.small,
.small p,
.small a {
  font-size: 14px;
  line-height: 135%;
  color: inherit;
}

.typo--black {
  color: #0C0C0C;
}

.typo--white {
  color: #F5F5E6;
}

.typo--beige {
  color: #F5F5E6;
}

.typo--blue {
  color: #192360;
}

.typo--light-blue {
  color: #80A6D6;
}

.typo--green {
  color: #4B9B78;
}

a.typo--green {
  text-decoration: underline;
}

a.typo--green:hover {
  text-decoration: none;
}

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

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

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

.typo--uppercase {
  text-transform: uppercase;
}

.typo--bold {
  font-weight: 600;
}

span {
  font-size: inherit;
}

.box-link,
.box-link * {
  transition: transform 0.3s ease;
  text-decoration: none !important;
}

.box-link:hover,
.box-link:hover * {
  text-decoration: none !important;
}

.box-link:focus,
.box-link:focus * {
  text-decoration: none !important;
}

.box-link--reverse-xs .row {
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .box-link--reverse-xs .row {
    flex-direction: row;
  }
}

blockquote {
  quotes: none;
  position: relative;
  margin-top: 80px;
  font-style: italic;
  font-size: 24px;
  line-height: 140%;
}

blockquote:before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 62px;
  height: 51px;
  background-image: url("../img/blockquote.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

.benefit-image {
  width: auto;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .benefit-image {
    width: auto;
    height: auto;
  }
}

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

.stripe {
  padding: 30px 0;
  background-color: #192360;
}
@media screen and (min-width: 768px) {
  .stripe {
    padding: 110px 0;
  }
}
.stripe--lighter {
  background-color: #253280;
}
.stripe--light {
  background-color: #F5F5E6;
}
.stripe--join-top {
  padding-top: 0;
}
.stripe--join-bottom {
  padding-bottom: 0;
}
.stripe__box {
  margin: 0 auto;
  padding: 70px 0;
  width: 100%;
  max-width: 1760px;
  background-color: #80A6D6;
}
.stripe--background {
  position: relative;
}
.stripe--background .stripe__pins {
  min-height: 800px;
}
.stripe--background .stripe__pin {
  position: absolute;
  text-align: center;
  font-size: 16px !important;
  line-height: 110%;
  max-width: 160px;
}
.stripe--background .stripe__pin span {
  font-size: 16px !important;
  line-height: 110%;
}
.stripe--background .stripe__pin div + div {
  margin-top: 10px;
}
.stripe--background .stripe__pin .stripe__pin-image {
  display: none;
  position: relative;
}
.stripe--background .stripe__pin .stripe__pin-image img {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: -50%;
  width: 340px;
  max-width: 340px;
}
.stripe--background .stripe__background {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 80%;
}
.stripe--background .stripe__content {
  position: relative;
  z-index: 2;
}

.stripe {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stripe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.indent + .indent {
  margin-top: 30px;
}
.indent + .indent--join-top {
  margin-top: 0;
}
.indent + .indent--small {
  margin-top: 15px;
}
.indent + .indent--large {
  margin-top: 45px;
}
.indent + .indent--60 {
  margin-top: 60px;
}
.indent + .indent--huge {
  margin-top: 70px;
}

.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 12px 60px 12px 30px;
  border-radius: 9999px;
  border: 1px solid #4B9B78;
  background-color: transparent;
  color: #F5F5E6;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s linear;
  cursor: pointer;
}
.btn * {
  font-weight: 600;
}
.btn:after {
  content: "";
  position: absolute;
  top: 9px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: url(../img/btn-arrow.svg) no-repeat center center;
  transition: 0.4s;
}
.btn:hover {
  text-decoration: none;
  box-shadow: 0 0 0 1px #4B9B78;
  color: #4B9B78;
}
.btn:hover:after {
  right: 16px;
}
.btn--back {
  padding: 12px 30px 12px 60px;
}
.btn--back:after {
  transform: rotate(180deg);
  transform-origin: center;
  left: 12px;
}
.btn--back:hover:after {
  left: 16px;
}
.btn--plain {
  padding: 4px;
  overflow: visible;
  border: 0;
}
.btn--plain:after {
  top: 0;
  right: -40px;
}
.btn--plain:hover {
  box-shadow: none;
  border: 0;
}
.btn--plain:hover:after {
  right: -35px;
}
.btn--toggle:after {
  transform: rotate(90deg);
  transform-origin: center;
}
.btn--toggle.toggle-active:after {
  transform: rotate(-90deg);
  transform-origin: center;
}

/*------------------------------------------
          Hlavička webu a navigace
--------------------------------------------*/
.header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  z-index: 1000;
  padding: 0;
  box-sizing: border-box;
  color: #F5F5E6;
  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;
  max-width: 220px;
  -webkit-animation: roll-in-top 0.3s ease-out;
  z-index: 999;
  transition: all ease 0.5s;
}
@media screen and (min-width: 992px) {
  .header__logo {
    max-width: 100%;
  }
}
.header__logo svg {
  display: flex;
  height: 150px;
  width: auto;
  fill: #E5E5E5;
  transition: all ease 0.5s;
}
.header__cta {
  display: none;
}
@media screen and (min-width: 992px) {
  .header__cta {
    display: inline-block;
  }
}
.header__container {
  display: flex;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1790px;
  height: inherit;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
.header__nav {
  display: none;
  margin-left: auto;
  margin-right: 30px;
  padding: 12px 0;
}
@media screen and (min-width: 992px) {
  .header__nav {
    display: inline-block;
  }
}
.header__nav-item {
  position: relative;
  padding: 15px 20px;
  vertical-align: 5px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  text-transform: uppercase;
  color: #F5F5E6;
  transition: all 0.1s linear;
}
.header__nav-item:hover, .header__nav-item--active {
  text-decoration: none;
}
.header__nav-item:hover:after, .header__nav-item--active:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 75%;
  height: 2px;
  background-color: #80A6D6;
}
.header--scrolled {
  height: 90px;
  background-color: #192360;
  border-bottom: 1px solid #80A6D6;
  box-shadow: 0 0 20px rgba(88, 82, 255, 0.3), 0 0 50px rgba(88, 82, 255, 0.15);
}
.header__hamburger {
  position: relative;
  width: 30px;
  height: 22px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #F5F5E6;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  bottom: 0;
}
.header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.header__mobile-menu {
  position: fixed;
  inset: 0;
  background: #F5F5E6;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 900;
  height: 100vh;
  width: 100vw;
  flex-direction: column;
}
.header__mobile-menu .header__nav-item {
  font-size: 24px;
  padding: 15px 0;
  color: #192360;
}
.header__mobile-menu.is-open {
  transform: translateY(0);
}
.header__mobile-menu .header__logo {
  margin-bottom: 30px;
  max-width: 320px;
}
.header__mobile-menu .btn {
  margin-top: 30px;
}

.page {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.page video, .page__background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.page__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 35, 96, 0.3);
  z-index: 2;
}
.page__gradient {
  position: absolute;
  top: 0;
  bottom: -110%;
  width: 100%;
  background: url("../img/hero-gradient.png") no-repeat center center/cover;
  z-index: 2;
}
.page__width {
  position: relative;
  display: flex;
  align-items: center;
  height: 600px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1345px;
  z-index: 3;
}
.page__width--sub-page {
  height: 700px;
}
.page__width--sub-page-lg {
  height: 800px;
}
@media screen and (min-width: 992px) {
  .page__width {
    height: 780px;
  }
}
.page__text {
  max-width: 1315px;
}
.page--sub-page .page__width {
  height: auto;
  margin-top: 180px;
  margin-bottom: 95px;
}
@media screen and (min-width: 992px) {
  .page--sub-page .page__width {
    margin-top: 220px;
    margin-bottom: 135px;
  }
}

.page-nav {
  margin: 15px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}
@media screen and (min-width: 768px) {
  .page-nav {
    margin: 30px 0;
  }
}
.page-nav__img {
  width: 104px;
  height: 104px;
  border-radius: 0;
  border: 2px solid #0C0C0C;
  transition: transform 0.3s ease;
}
.page-nav__text {
  padding: 0 19px;
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  color: #0C0C0C;
}
.page-nav:hover {
  transform: translateY(-4px);
  text-decoration: none;
}
.page-nav:hover .page-nav__img {
  transform: scale(1.05);
}

.table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table table {
  width: 100%;
  min-width: 600px;
}
.table tr {
  border-bottom: 1px solid #80A6D6;
}
.table tr:first-child {
  border-top: 1px solid #80A6D6;
}
.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: #F5F5E6;
  margin: 10vh auto;
  padding: 10px;
  width: 90%;
  max-width: 800px;
  position: relative;
  border-radius: 0;
}

/* 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: 0;
}

.hidden-images {
  display: none;
}

.control label {
  margin-top: 15px;
  color: #4B9B78;
  font-size: 16px;
  line-height: 20px;
}
.control input,
.control textarea {
  display: block;
  margin-top: 5px;
  padding: 10px 0;
  width: 100%;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #F5F5E6;
  background-color: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #80A6D6;
}
.control input::-moz-placeholder, .control textarea::-moz-placeholder {
  color: #F5F5E6;
}
.control input::placeholder,
.control textarea::placeholder {
  color: #F5F5E6;
}
.control textarea {
  min-height: 135px;
}
.control {
  /* ===== CUSTOM CHECKBOX ===== */
}
.control__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-top: 5px;
}
.control__checkbox input[type=checkbox] {
  display: none;
}
.control__checkbox-icon {
  width: 20px;
  height: 20px;
  border: 1px solid #4B9B78;
  background: transparent;
  display: inline-block;
  position: relative;
}
.control__checkbox-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  width: 6px;
  height: 11px;
  border: solid #F5F5E6;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.control__checkbox input:checked + .control__checkbox-icon::after {
  opacity: 1;
}
.control__checkbox a {
  color: #4B9B78;
  text-decoration: underline;
}
.control__checkbox a:hover {
  text-decoration: none;
}
.control button[type=submit] {
  cursor: pointer;
  border: 0;
}
.control button[type=submit]:hover {
  text-decoration: none;
}

@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: "Work Sans", 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: "Work Sans", sans-serif;
  }
  .snippet__box-text p {
    font-family: "Work Sans", 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: #0C0C0C;
  color: #F5F5E6;
  padding: 10px;
  border-radius: 0;
  font-size: 16px;
  line-height: 20px;
  z-index: 1000;
  display: none;
}

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

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

.tooltip-bubble a {
  color: #80A6D6;
  text-decoration: underline;
}

.text-content h2,
.text-content h2 * {
  font-size: 46px;
  line-height: 50px;
  margin-bottom: 15px;
}
.text-content h3,
.text-content h3 * {
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 10px;
}
.text-content p {
  margin-bottom: 15px;
}
.text-content ul {
  margin-bottom: 15px;
  padding-left: 15px;
  list-style: disc;
}
.text-content ol {
  margin-bottom: 15px;
  padding-left: 15px;
  list-style: disc;
}
.text-content li {
  padding: 5px 0;
}

.fund-table {
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  border-radius: 24px;
  border: 1px solid #4B9B78;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .fund-table {
    flex-direction: row;
    padding: 12px 45px;
    border-radius: 9999px;
  }
}
.fund-table + .fund-table {
  margin-top: 20px;
}
.fund-table__item {
  flex: 0 0 25%;
}
.fund-table__item:first-child {
  flex: 0 0 35%;
}

.gallery-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/* ===== MAIN SLIDER ===== */
.gallery-main {
  overflow: hidden;
}

.gallery-main .slick-list {
  overflow: hidden;
  padding-right: 0;
}

.gallery-main img.gallery-image {
  width: 100%;
  border-radius: 0;
}

.gallery-main .slick-slide {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.gallery-main .slick-current {
  opacity: 1;
}

.gallery-main .slick-prev,
.gallery-main .slick-next {
  bottom: 50% !important;
  margin-bottom: -31px !important;
  height: 30px;
}

.gallery-main .slick-prev {
  left: 0;
  animation: slider1 1.5s infinite;
}
.gallery-main .slick-prev img {
  height: 30px;
}

.gallery-main .slick-next {
  right: 0;
  left: auto;
  animation: slider2 1.5s infinite;
}
.gallery-main .slick-next img {
  height: 30px;
}

/* ===== THUMBNAILS ===== */
.gallery-thumbs {
  max-width: 100%;
}

.gallery-thumbs .slick-slide {
  margin-right: 10px;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-thumbs img {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 390/238;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.gallery-thumbs .slick-track {
  float: left;
}

.gallery-thumbs .slick-current {
  opacity: 1;
  transform: scale(1);
}

/* ===== DESKTOP STYLES ===== */
@media (min-width: 1500px) {
  .gallery-wrapper {
    width: 100%;
  }
  .gallery-main .slick-list {
    overflow: visible;
    padding-right: 200px;
  }
  .gallery-thumbs {
    max-width: 70%;
  }
  .gallery-main .slick-current {
    width: auto !important;
  }
  .gallery-main .slick-slide {
    opacity: 0.4;
    transition: opacity 0.3s ease;
  }
  .gallery-main .slick-current {
    opacity: 1;
  }
  .gallery-main img.gallery-image {
    width: auto;
  }
}
/* ===== ARROW ANIMATIONS ===== */
@keyframes slider1 {
  0% {
    transform: translateX(20%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(20%);
  }
}
@keyframes slider2 {
  0% {
    transform: translateX(-20%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-20%);
  }
}
.gallery-main .slick-list {
  cursor: none;
}

.gallery-main.is-next .slick-list {
  cursor: url("../img/cursor-next.svg") 95 95, auto;
}

.gallery-main.is-prev .slick-list {
  cursor: url("../img/cursor-prev.svg") 95 95, auto;
}

/* Pro sloupce Flexbox gridu */
@media screen and (min-width: 992px) {
  .sticky {
    position: sticky;
    top: 105px;
    align-self: flex-start;
  }
}

@media screen and (min-width: 992px) {
  .h-invest-column-right {
    border-left: 1px solid #B3B3B3;
  }
}

@media (min-width: 1415px) {
  .h-invest-column-left {
    padding: 90px 90px 90px 0;
  }
  .h-invest-column-right {
    padding: 90px;
  }
}
.h-project-list-row {
  background-color: #192360;
  margin-right: 0;
  margin-left: 0;
}

@media screen and (min-width: 992px) {
  .h-project-list-column-left {
    padding: 110px;
  }
}

.h-project-list-column-right {
  padding: 0;
}
.h-project-list-column-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 992px) {
  .h-project-list-column-right img {
    min-height: 500px;
  }
}