@charset "UTF-8";
html,
body {
  background-color: var(--white);
  color: var(--black);
  font-variant-ligatures: none;
  font-size: min(1em, 14.4px);
  font-size: 1vw;
  position: relative;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-display: swap;
  font-weight: normal;
  overflow-x: hidden;
}
@media (min-width: 1600px) {
  html,
  body {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  html,
  body {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  html,
  body {
    font-size: 1.2vw;
  }
}
@media (max-width: 500px) {
  html,
  body {
    font-size: 3.5vw;
  }
}

body::before {
  content: "";
  display: block;
  height: 7.5rem;
}

body * {
  box-sizing: border-box;
}

section,
main,
header,
footer {
  position: relative;
}

section.red {
  background-color: var(--red);
  color: var(--white);
}
section.red h1 {
  color: var(--white);
}
section.red-light {
  background-color: var(--red-light);
}
section.red-dark {
  background-color: var(--red-dark);
  color: var(--white);
}

.middle {
  margin: 0px auto;
  width: 70rem;
  position: relative;
}
@media (max-width: 500px) {
  .middle {
    width: 25rem !important;
  }
}
.middle .fly-blok {
  background-color: var(--white);
  padding: 3.25rem 3.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 500px) {
  .middle .fly-blok {
    padding: 1rem 0.75rem;
  }
}

.fullpage {
  min-height: calc(100vh - 7.5rem);
}

.is-half {
  width: 50%;
}
@media (max-width: 500px) {
  .is-half {
    width: 100% !important;
  }
}

#isMobile {
  position: absolute;
  width: 0;
  height: 1px;
  display: none;
}
@media (max-width: 500px) {
  #isMobile {
    display: block;
  }
}

.signature .name {
  font-size: 1.5rem;
}
.signature .position {
  font-size: 0.8rem;
}

.expert {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.expert picture {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.expert picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert picture + div {
  width: calc(100% - 4.6rem);
}
.expert .name {
  font-weight: 700;
}
.expert + .expert {
  margin-top: 0.45rem;
}

.hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.4rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--grey-d3);
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: bold;
  cursor: help;
  position: relative;
}
.hint:hover::after {
  content: attr(data-hint);
  position: absolute;
  bottom: 125%;
  /* nad otazníčkem */
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 0.4rem 0.6rem;
  border-radius: 0.3rem;
  white-space: nowrap;
  font-size: 0.75rem;
  z-index: 10;
  opacity: 1;
  pointer-events: none;
  max-width: 90vw;
}
@media (max-width: 500px) {
  .hint:hover::after {
    white-space: normal;
    word-break: inherit;
    text-align: center;
  }
}
.hint:hover::before {
  content: "";
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0.4rem;
  border-style: solid;
  border-color: var(--black) transparent transparent transparent;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}
ul li, ol li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 1em;
}
ul li::before, ol li::before {
  position: absolute;
  display: block;
  font-size: 1rem;
  line-height: 1rem;
  left: 0;
}

ul li::before {
  content: "●";
  color: var(--red);
}

ol {
  counter-reset: list-counter;
}
ol li {
  counter-increment: list-counter;
}
ol li::before {
  content: counter(list-counter) ".";
}

.text-container p {
  margin-bottom: 1.5rem;
}
.text-container mark {
  color: var(--red-dark);
}