@font-face {
  font-family: Generalsans Variable;
  src: url('../fonts/GeneralSans-Variable.woff2') format("woff2");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-VariableItalic.woff2') format("woff2");
  font-weight: 200 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --one-line-text: 1em;
  --paragraph: #191919b3;
  --paragraph-height: 1.4em;
  --neutral: #191919;
  --section-spacing: 80px;
  --wrapper-max-width: 90%;
  --light-blue: #1573ff;
  --dark-blue: #0d4599;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Generalsans Variable, Arial, sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2em;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
}

h3 {
  font-size: 22px;
  line-height: var(--one-line-text);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}

p {
  color: var(--paragraph);
  line-height: var(--paragraph-height);
  margin-bottom: 0;
}

.body {
  color: var(--neutral);
  font-family: Generalsans Variable, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
}

.hero {
  margin-bottom: var(--section-spacing);
  background-image: url('../images/dots-bg.png'), url('../images/hero-triangles-bg.svg');
  background-position: 99% 99%, 110% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 6%, 65%;
  height: 85vh;
  position: relative;
}

.hero-wrapper {
  flex-flow: column;
  justify-content: space-between;
  max-width: none;
  height: 100%;
  display: flex;
}

.nav {
  z-index: 999;
  background-color: #fff;
  width: 100%;
  padding-top: 1.5vh;
  padding-bottom: 1.5vh;
  position: sticky;
  top: 0;
}

.nav-wrapper {
  max-width: var(--wrapper-max-width);
  justify-content: space-between;
  display: flex;
}

.hero-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 50% 50%;
  height: 100%;
  padding-left: 5%;
}

.hero-left {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 5%;
  padding-bottom: 5%;
  padding-right: 2%;
  display: flex;
}

.hero-right {
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.hero-left-top {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.hero-heading {
  max-width: 28rem;
  font-size: 56px;
}

.text-span {
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-paragraph {
  font-family: Generalsans Variable, Arial, sans-serif;
  font-size: 18px;
}

.hero-cta-btn-row {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-top: 24px;
  display: flex;
}

.hero-btn-black {
  background-color: var(--neutral);
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.btn-black-text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.hero-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.btn-text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.btn-arrow {
  height: 18px;
}

.hero-left-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
}

.hero-left-grid-column {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.hero-counter {
  color: var(--light-blue);
  font-size: 52px;
  line-height: var(--one-line-text);
  font-weight: 600;
}

.hero-counter-inner {
  color: var(--neutral);
  font-size: 52px;
  line-height: var(--one-line-text);
  font-weight: 600;
}

.hero-left-grid-text {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}

.hero-worker {
  object-fit: cover;
  transform-style: preserve-3d;
  max-width: 90%;
}

.top-panel {
  background-color: var(--neutral);
  height: 6vh;
  position: sticky;
  top: 0;
}

.top-panel-wrapper {
  max-width: var(--wrapper-max-width);
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.top-panel-left {
  align-items: center;
  height: 100%;
  display: flex;
}

.top-panel-right {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  align-items: center;
  height: 100%;
  display: flex;
}

.top-panel-content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50%;
  display: flex;
}

.top-panel-pobocka-row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.top-panel-pobocka-text {
  color: #fff;
  font-size: 14px;
}

.top-panel-info-text {
  color: #fff;
  font-size: 14px;
  display: none;
}

.circle-open {
  background-color: #07ff72;
  border-radius: 64px;
  width: 14px;
  height: 14px;
}

.open-row {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.open-text {
  color: #fff;
  font-size: 14px;
}

.top-panel-divider {
  background-color: #fff;
  width: 1px;
  height: 100%;
}

.nav-left {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  align-items: center;
  display: flex;
}

.nav-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav-logo {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.logo {
  height: 48px;
}

.nav-content {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.nav-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.logo-text {
  color: var(--neutral);
  font-size: 26px;
  line-height: var(--one-line-text);
  font-weight: 500;
  display: none;
}

.nav-links {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  align-items: center;
  display: flex;
}

.nav-link {
  color: var(--neutral);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.nav-link.spoluprace {
  color: var(--light-blue);
}

.circle-close {
  background-color: #ff1a1a;
  border-radius: 64px;
  width: 14px;
  height: 14px;
}

.close-text {
  color: #fff;
  font-size: 14px;
}

.benefits_card_content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  transition: opacity .2s;
  display: flex;
  position: relative;
}

.benefits_wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
  container-type: inline-size;
}

.benefits_card_mask_clip {
  overflow: hidden;
}

.benefits_card_wrap {
  color: #fff;
  background-color: #000;
  border-radius: 1rem;
  flex-flow: column;
  width: 100%;
  padding: 1rem;
  transition: width .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.benefits_card_mask_wrap {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
  display: grid;
}

.benefits_card_img {
  opacity: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.benefits_card_title {
  text-wrap: balance;
  font-family: Generalsans Variable, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.benefits_layout {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.u-container {
  flex-flow: column;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.card-features {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr;
  place-items: stretch start;
  margin-top: 20px;
}

.card-feature-row {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.card-feature-check {
  height: 32px;
}

.card-feature-text {
  font-size: 16px;
}

.image-around-worker {
  aspect-ratio: 3 / 2;
  filter: drop-shadow(3px 3px 7px #0003);
  object-fit: cover;
  border-radius: 12px;
  height: 8.5vw;
  position: absolute;
  inset: auto auto 28vw 0%;
}

.image-around-worker._1 {
  filter: drop-shadow(3px 3px 7px #0006);
  display: block;
  bottom: 15vw;
  left: -7vw;
}

.image-around-worker._2 {
  filter: drop-shadow(3px 3px 7px #0006);
  display: block;
}

.image-around-worker._3 {
  display: none;
  inset: auto 1vw 37vw auto;
}

.sortiment {
  margin-bottom: var(--section-spacing);
  position: relative;
  overflow: hidden;
}

.sortiment-wrapper {
  max-width: var(--wrapper-max-width);
  flex-flow: column;
  display: block;
}

.pribeh {
  margin-bottom: var(--section-spacing);
  height: 85vh;
  position: relative;
}

.pribeh-wrapper {
  max-width: var(--wrapper-max-width);
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.pribeh-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  height: 100%;
}

.pribeh-left {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.pribeh-right {
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.pribeh-title {
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  font-size: 18px;
  line-height: var(--one-line-text);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 600;
}

.pribeh-left-top {
  flex-flow: column;
  display: flex;
}

.pribeh-left-img {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.pribeh-paragraph {
  font-size: 18px;
}

.pribeh-right-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: stretch;
  height: 100%;
}

.pribeh-right-card {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.pribeh-right-card-icon-wrapper {
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.pribeh-right-card-icon-img {
  height: 50%;
}

.pribeh-right-card-heading {
  margin-top: 32px;
  margin-bottom: 12px;
}

.pribeh-right-card-paragraph {
  font-size: 18px;
}

.pribeh-top-grid {
  grid-template-rows: auto;
  margin-bottom: 32px;
}

.pribeh-content {
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.sortiment-top {
  text-align: center;
  flex-flow: column;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.sortiment-title {
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  font-size: 18px;
  line-height: var(--one-line-text);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 600;
}

.sortiment-heading {
  width: 32rem;
}

.sortiment-paragraph {
  width: 45rem;
  margin-top: 12px;
  font-size: 18px;
}

.pribeh-cta-btn-row {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-top: 24px;
  display: flex;
}

.pribeh-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.pribeh-btn-black, .sortiment-btn-black {
  background-color: var(--neutral);
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.sortiment-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.card {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: #0000;
  border-radius: 1em;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 30px;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  display: flex;
  overflow: hidden;
}

.ticker {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ticker.has-horizontal-fade {
  -webkit-mask-image: linear-gradient(to right, #0000, #000 10% 90%, #0000);
  mask-image: linear-gradient(to right, #0000, #000 10% 90%, #0000);
  -webkit-mask-source-type: alpha;
  mask-mode: alpha;
}

.ticker-content {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.ticker-logo {
  flex: none;
  width: auto;
  height: 2.5em;
  margin-left: 2.5em;
  margin-right: 2.5em;
}

.vernost {
  margin-bottom: var(--section-spacing);
  height: 85vh;
  position: relative;
}

.vernost-wrapper {
  max-width: var(--wrapper-max-width);
  height: 100%;
}

.vernost-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .9fr 1fr;
  height: 100%;
  padding-bottom: 2%;
}

.vernost-left {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.vernost-right {
  background-image: url('../images/vernost-bg-triangles.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.vernost-title {
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
}

.vernost-heading {
  max-width: 30rem;
  font-size: 44px;
}

.vernost-paragraph {
  margin-top: 16px;
  font-size: 18px;
}

.vernost-features-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  margin-top: 40px;
}

.vernost-feature-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  display: flex;
}

.vernost-feature-icon {
  height: 36px;
}

.vernost-feature-text {
  font-size: 20px;
  line-height: var(--one-line-text);
  font-weight: 500;
}

.giftcard {
  width: 80%;
}

.reference {
  margin-bottom: var(--section-spacing);
  position: relative;
}

.reference-wrapper {
  max-width: var(--wrapper-max-width);
  text-align: center;
  flex-flow: column;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.testimonial-wrap {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #0000, #000 10% 90%, #0000);
  mask-image: linear-gradient(to right, #0000, #000 10% 90%, #0000);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.testimonial-strip {
  grid-column-gap: 4%;
  grid-row-gap: 4%;
  will-change: transform;
  display: flex;
  position: relative;
}

.testimonial-card {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  filter: drop-shadow(0 2px 12px #0000004d);
  outline-offset: -.0625px;
  background-color: #fff;
  border-radius: .75rem;
  outline: .0625rem solid #bcd6f00a;
  flex-flow: column;
  justify-content: space-between;
  align-self: stretch;
  min-width: 32%;
  max-width: 32%;
  padding: 1.5rem 1.25rem;
  display: flex;
}

.testimonial-card-stars-row {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.star-1 {
  height: 22px;
}

.star-2 {
  opacity: .5;
  height: 22px;
}

.testimonial-card-paragraph {
  color: var(--neutral);
  font-weight: 500;
}

.testimonial-writer-row {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.testimonial-person-icon {
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  filter: drop-shadow(0 2px 4px #0000004d);
  border-radius: 64px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.text-block {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.testimonial-person-name {
  font-size: 20px;
  font-weight: 500;
}

.testimonial-card-top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.reference-title {
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  font-size: 18px;
  line-height: var(--one-line-text);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 600;
}

.reference-heading {
  width: 35rem;
}

.reference-paragraph {
  width: 45rem;
  margin-top: 12px;
  font-size: 18px;
}

.reference-cta-btn-row {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-top: 24px;
  display: flex;
}

.reference-btn-black {
  background-color: var(--neutral);
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.reference-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.pobocky {
  margin-bottom: var(--section-spacing);
  position: relative;
}

.pobocky-wrapper {
  max-width: var(--wrapper-max-width);
}

.pobocky-top-grid {
  grid-template-rows: auto;
  margin-bottom: 32px;
}

.pobocky-title {
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  font-size: 18px;
  line-height: var(--one-line-text);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 600;
}

.pobocky-paragraph {
  font-size: 18px;
}

.pobocky-cta-btn-row {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-top: 24px;
  display: flex;
}

.pobocky-btn-black {
  background-color: var(--neutral);
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.pobocky-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.pobocky-grid-bottom {
  grid-template-rows: auto;
}

.pobocky-ostravice {
  min-height: 65vh;
  position: relative;
}

.pobocka-image {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 80%;
}

.pobocka-info {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  filter: drop-shadow(0 2px 12px #0006);
  background-color: #fff;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  height: auto;
  padding: 4%;
  display: flex;
  position: absolute;
  inset: auto 5% 0%;
}

.pobocka-info-row-top {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pobocka-info-icon {
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.pobocka-info-img {
  height: 50%;
}

.pobocka-name {
  font-size: 24px;
  line-height: var(--one-line-text);
  font-weight: 600;
}

.pobocka-info-row-mid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.pobocka-info-mid-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  width: 100%;
}

.pobocka-info-grid-left {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.pobocka-info-grid-right {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.pobocka-info-grid-heading {
  font-size: 20px;
  line-height: var(--one-line-text);
  font-weight: 500;
}

.pobocka-info-time {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto auto;
  grid-template-columns: .75fr 1fr;
}

.pobocka-info-grid-text {
  color: var(--paragraph);
  line-height: var(--one-line-text);
}

.pobocka-info-grid-text-link {
  color: var(--paragraph);
  line-height: var(--one-line-text);
  text-decoration: none;
}

.pobocka-info-row-bottom {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.pobocka-info-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.pobocky-brusperk {
  min-height: 65vh;
  position: relative;
}

.kontakt {
  background-image: url('../images/kontakt-triangles.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto 90%;
  padding-bottom: 30px;
  position: relative;
}

.kontakt-wrapper {
  max-width: var(--wrapper-max-width);
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-bottom: 0;
  display: flex;
}

.kontakt-title {
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  font-size: 18px;
  line-height: var(--one-line-text);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 600;
}

.kontakt-heading {
  width: 35rem;
}

.kontakt-paragraph {
  width: 45rem;
  margin-top: 12px;
  font-size: 18px;
}

.footer {
  padding-top: var(--section-spacing);
  background-image: linear-gradient(180deg, var(--light-blue), var(--dark-blue));
  padding-bottom: 40px;
}

.footer-wrapper {
  max-width: var(--wrapper-max-width);
}

.kontakt-top {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 80px;
  display: flex;
}

.kontakt-content {
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
}

.form-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  filter: drop-shadow(0 2px 12px #0006);
  border-radius: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .6fr;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.form-left {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-color: #fff;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  flex-flow: column;
  padding: 7%;
  display: flex;
  position: relative;
}

.form-right {
  background-image: url('../images/AdobeStock_480938953.avif');
  background-position: 50%;
  background-size: cover;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.form-top-heading {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.form-icon {
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.form-icon-image {
  height: 50%;
}

.form-heading {
  font-size: 22px;
  line-height: var(--one-line-text);
  font-weight: 500;
}

.checkbox {
  aspect-ratio: 1;
  border: 1px solid var(--light-blue);
  border-radius: 4px;
  width: 25px;
  height: 25px;
  margin-top: 0;
}

.checkbox.w--redirected-checked {
  background-color: #0000;
  background-image: url('../images/check.svg'), linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  background-position: 50%, 0 0;
  background-size: 60%, auto;
}

.checkbox-field {
  cursor: pointer;
  align-items: center;
  display: flex;
}

.checkbox-label {
  text-align: left;
  margin-left: 16px;
}

.form {
  flex-flow: column;
  display: flex;
}

.form-bottom-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  display: flex;
}

.text-field {
  line-height: var(--one-line-text);
  border-radius: 6px;
  height: 2.5rem;
  margin-bottom: 0;
}

.form-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 20px;
  display: flex;
}

.form-column {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.textarea {
  border-radius: 6px;
  min-width: 100%;
  min-height: 8rem;
  max-height: 12rem;
  margin-bottom: 20px;
}

.form-submit {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  align-items: center;
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
}

.submit-button {
  display: block;
}

.footer-content {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.footer-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-white-logo {
  height: 90px;
}

.paragraph {
  color: #fff;
  text-align: right;
  width: 30rem;
}

.footer-divider {
  background-color: #ffffff80;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr 1fr;
  margin-bottom: 50px;
}

.footer-grid-column {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-grid-column-heading {
  color: #fff;
  font-size: 22px;
  line-height: var(--one-line-text);
  margin-bottom: 6px;
  font-weight: 400;
}

.footer-grid-column-info {
  color: #fffc;
}

.footer-grid-row {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-grid-row-icon {
  background-color: #fff;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}

.footer-grid-row-icon-img {
  width: 70%;
}

.footer-grid-column-info-link {
  color: #fffc;
  text-decoration: none;
}

.footer-copyright {
  color: #fff;
}

.footer-bottom-link {
  color: #fff;
  text-decoration: none;
}

.footer-bottom-right {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.footer-grid-column-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-grid-column-wrapper.left {
  align-items: stretch;
}

.footer-grid-column-wrapper.mid {
  justify-content: center;
  align-items: center;
}

.footer-grid-column-wrapper.right {
  justify-content: flex-end;
  align-items: center;
}

.benefits_card_gradient {
  opacity: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.benefits-card-gradient {
  background-image: linear-gradient(#0000 30%, #000);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.m-nav-toggle-description {
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1;
}

.m-nav-link-item {
  text-align: center;
}

.m-nav-link-item.last-item {
  padding-bottom: 135px;
}

.m-nav-link-item.first-item {
  padding-top: 65px;
}

.m-nav-list {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: block;
}

.nav-overlay-gradient-bottom {
  z-index: 4;
  background-image: linear-gradient(to top, #242423 15%, #24242300);
  height: 130px;
  position: absolute;
  bottom: 0;
  left: 0%;
  right: 0%;
}

.m-nav-toggle-bg {
  z-index: 1;
  background-image: linear-gradient(#eee0, #fff 98%);
  height: 125px;
  position: fixed;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.m-nav-toggle-inner {
  box-shadow: none;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  background-color: #000;
  border-radius: 99em;
  justify-content: center;
  align-items: center;
  padding: 17px 25px;
  transition: transform .25s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
}

.m-nav-toggle-inner:active {
  transform: scale(.88);
}

.m-nav-toggle-inner.close {
  padding: 18px;
}

.nav-overlay-gradient-top {
  z-index: 4;
  background-image: linear-gradient(#242423 15%, #24242300);
  height: 65px;
  position: absolute;
  inset: 0% 0% auto;
}

.mobile-nav {
  display: none;
  position: relative;
}

.m-nav-overlay {
  z-index: 95;
  background-color: #242423;
  align-items: flex-end;
  width: 100%;
  height: 90%;
  display: none;
  position: fixed;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.m-nav-content {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: auto;
}

.m-nav-close-icon {
  width: 23px;
  padding: 1px;
}

.m-nav-toggle-open {
  z-index: 1;
  text-decoration: none;
  display: block;
  position: absolute;
  bottom: 55px;
}

.m-nav-toggle {
  z-index: 99;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.m-nav-link {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 54px;
  text-decoration: none;
}

.m-nav-toggle-close {
  z-index: 1;
  text-decoration: none;
  display: none;
  position: absolute;
  bottom: 55px;
}

.m-nav-logo {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.m-logo {
  height: 48px;
}

.m-logo-text {
  color: var(--neutral);
  font-size: 26px;
  line-height: var(--one-line-text);
  font-weight: 500;
  display: none;
}

.m-nav-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.email-popup {
  z-index: 1001;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  filter: drop-shadow(0 2px 12px #0006);
  border-radius: 12px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 25rem;
  height: 31.5rem;
  display: none;
  position: fixed;
  inset: auto 2% 2% auto;
}

.email-popup-grid {
  grid-row-gap: 0px;
  border-radius: 12px;
  grid-template-rows: .8fr 1fr;
  grid-template-columns: 1fr;
  width: 100%;
  height: 100%;
}

.email-popup-top {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(45deg, #65a3ff, transparent 30%, transparent 45%, #65a3ff), linear-gradient(to bottom, var(--light-blue), var(--light-blue));
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 7% 5%;
  display: flex;
  position: relative;
}

.email-popup-bottom {
  background-color: #fff;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 7% 5%;
}

.gift-wrapper {
  filter: drop-shadow(0 2px 5px #0003);
  background-color: #fff;
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.image {
  height: 60%;
}

.email-popup-heading {
  color: #fff;
  font-size: 30px;
  line-height: var(--one-line-text);
  font-weight: 500;
}

.email-popup-paragraph {
  color: #fff;
  font-size: 20px;
}

.field-label {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
}

.text-field-2 {
  background-color: #f3f3f5;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  height: 3rem;
  font-size: 16px;
}

.form-2 {
  flex-flow: column;
  display: flex;
}

.checkbox-label-2 {
  color: var(--paragraph);
  margin-left: 12px;
  font-size: 12px;
  line-height: 1.2em;
}

.checkbox-field-2 {
  flex-flow: row;
  justify-content: space-between;
  margin-top: 8px;
  margin-bottom: 40px;
  display: flex;
}

.checkbox-2 {
  aspect-ratio: 1;
  border: 1px solid var(--light-blue);
  cursor: pointer;
  width: 25px;
  height: 25px;
}

.checkbox-2.w--redirected-checked {
  background-color: var(--light-blue);
  background-image: url('../images/check.svg');
  background-position: 50%;
  background-size: 60%;
}

.submit-button-2 {
  background-color: #0000;
  background-image: linear-gradient(0deg, #0d5dd9, var(--light-blue));
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 18px;
}

.auto-mailer {
  display: none;
}

.success-message {
  background-color: #0000;
  padding: 0;
}

.lottie-animation {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.text-block-2 {
  font-size: 20px;
  line-height: var(--one-line-text);
  margin-top: 16px;
}

.btn_wrap {
  filter: drop-shadow(0 2px 4px #0003);
  color: var(--neutral);
  text-decoration: none;
  position: relative;
}

.btn_panel {
  border: 1px solid #c6fb50;
  padding: 1rem 1.8rem;
}

.btn_panel.is-bg {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-width: 2px;
  border-color: var(--light-blue);
  opacity: 0;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 24px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.btn_panel.is-solid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-width: 2px;
  border-color: var(--light-blue);
  background-color: var(--light-blue);
  color: #000;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 24px;
  display: flex;
}

.text-block-3 {
  color: var(--neutral);
  text-decoration: none;
}

.text-block-4 {
  text-decoration: none;
}

.btn-text-hover {
  color: var(--light-blue);
  font-size: 18px;
  font-weight: 400;
}

.btn-arrow-hover {
  height: 18px;
}

.btn_wrap_black {
  filter: drop-shadow(0 2px 4px #0003);
  color: var(--neutral);
  text-decoration: none;
  position: relative;
}

.btn_panel_black {
  border: 1px solid #c6fb50;
  padding: 1rem 1.8rem;
}

.btn_panel_black.is-bg {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-width: 2px;
  border-color: var(--neutral);
  opacity: 0;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 16px 24px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.btn_panel_black.is-solid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-width: 2px;
  border-color: var(--neutral);
  background-color: var(--neutral);
  color: #000;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 16px 24px;
  display: flex;
}

.btn_panel-copy {
  border: 1px solid #c6fb50;
  padding: 1rem 1.8rem;
}

.btn_panel-copy.is-bg {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-width: 2px;
  border-color: var(--light-blue);
  opacity: 0;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 24px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.btn_panel-copy.is-solid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-width: 2px;
  border-color: var(--light-blue);
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  color: #000;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 24px;
  display: flex;
}

.btn-text-black {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.btn-arrow-black {
  height: 18px;
}

.btn-text-black-hover {
  color: var(--neutral);
  font-size: 18px;
  font-weight: 400;
}

.btn-arrow-black-hover {
  height: 18px;
}

.btn_panel_form {
  border: 1px solid #c6fb50;
  padding: 1rem 1.8rem;
}

.btn_panel_form.is-bg {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-width: 2px;
  border-color: var(--light-blue);
  opacity: 0;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 24px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.btn_panel_form.is-solid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-width: 2px;
  border-color: var(--light-blue);
  background-color: var(--light-blue);
  color: #000;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 24px;
  display: flex;
}

.review-hero-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fff;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
  display: none;
  position: absolute;
  inset: auto auto 42vw 0%;
}

.hero-review-text {
  font-size: 18px;
  font-weight: 500;
}

.hero-review-stars-row {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-star-1 {
  height: 22px;
}

.close-popup {
  background-color: #0000001a;
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: absolute;
  inset: 8% 5% auto auto;
}

.close-popup-icon {
  width: 50%;
}

.close-row {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: none;
}

.success-message-2 {
  background-color: #0000;
}

.anchor-point-hero {
  margin-top: 0;
  position: absolute;
  inset: -140px 0% auto;
}

.anchor-point {
  margin-top: 0;
  position: absolute;
  inset: -100px 0% auto;
}

.success-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  display: flex;
}

.form-success-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: 22.5rem;
  display: flex;
}

.text-block-5 {
  font-size: 24px;
  line-height: var(--one-line-text);
  font-weight: 500;
}

.lottie-animation-2 {
  height: 15rem;
}

.ochrana-osobnich-udaju {
  margin-top: 70px;
}

.container-10 {
  max-width: 85%;
}

.paragraph-10 {
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
}

.text-span-5 {
  font-size: 1.5rem;
  font-weight: 700;
}

.link-5 {
  color: var(--light-blue);
}

.link-4 {
  color: #333;
  text-decoration: none;
}

.cookie-btn {
  background-color: #0000;
  background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 25px;
  margin-bottom: 60px;
  padding: 12px 25px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 20px;
  transition: all .2s;
}

.cookie-btn:hover {
  color: #fff;
  background-color: #32343a;
}

.cookie-btn:active {
  background-color: #43464d;
}

.body-2 {
  font-family: Generalsans Variable, Arial, sans-serif;
}

.nav-ochrana {
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.nav-logo-ochrana {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.logo-ochrana {
  height: 70px;
}

.logo-text-ochrana {
  color: var(--neutral);
  font-size: 26px;
  line-height: var(--one-line-text);
  font-weight: 500;
  display: block;
}

.link-6 {
  color: var(--light-blue);
  text-decoration: none;
}

.btn_panel_nav {
  border: 1px solid #c6fb50;
  padding: 1rem 1.8rem;
}

.btn_panel_nav.is-bg {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-width: 2px;
  border-color: var(--light-blue);
  opacity: 0;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5vh 2.5vh;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.btn_panel_nav.is-solid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-width: 2px;
  border-color: var(--light-blue);
  background-color: var(--light-blue);
  color: #000;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5vh 2.5vh;
  display: flex;
}

.modralabut-logo, .show-more-embed {
  display: none;
}

.load-more-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-bottom: 2px solid var(--light-blue);
  text-align: center;
  padding: 6px;
  text-decoration: none;
  display: flex;
}

.text-block-6 {
  color: var(--light-blue);
  font-size: 20px;
  line-height: var(--one-line-text);
  font-weight: 500;
  text-decoration: none;
}

.load-more-btn-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  display: flex;
}

.image-2 {
  height: 20px;
  transform: rotate(90deg);
}

.text-block-7 {
  margin-top: 6px;
  font-size: 14px;
}

.bold-text {
  color: var(--light-blue);
  font-weight: 600;
}

@media screen and (min-width: 1280px) {
  .hero {
    background-size: 6%, auto 82%;
  }

  .hero-right {
    justify-content: center;
    align-items: flex-end;
    position: relative;
  }

  .hero-worker {
    height: 80vh;
  }

  .logo-text {
    display: block;
  }

  .image-around-worker._3 {
    display: none;
  }

  .vernost-heading {
    width: 31rem;
    max-width: none;
  }

  .pobocka-image {
    height: 80%;
  }

  .kontakt {
    background-size: cover;
  }

  .form-grid {
    grid-template-columns: 1fr .75fr;
  }

  .m-logo-text, .logo-text-ochrana {
    display: block;
  }
}

@media screen and (min-width: 1440px) {
  .hero {
    background-image: url('../images/dots-bg.png'), url('../images/hero-triangles-bg.svg');
    background-position: 99% 99%, 100% 100%;
    background-repeat: no-repeat, no-repeat;
    background-size: auto 35%, auto 95%;
  }

  .hero-grid {
    grid-template-columns: 40% 60%;
  }

  .hero-right {
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 15%;
  }

  .hero-heading {
    max-width: 30rem;
    font-size: 62px;
  }

  .hero-paragraph, .btn-black-text, .btn-text {
    font-size: 20px;
  }

  .btn-arrow {
    height: 20px;
  }

  .hero-counter, .hero-counter-inner {
    font-size: 64px;
  }

  .hero-left-grid-text {
    font-size: 24px;
  }

  .hero-left-grid-paragraph {
    font-size: 18px;
  }

  .benefits_card_title {
    font-size: 2.25rem;
  }

  .card-features {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .card-feature-check {
    height: 40px;
  }

  .card-feature-text {
    font-size: 18px;
  }

  .image-around-worker._1 {
    height: 120px;
    inset: auto 45rem 27% auto;
  }

  .image-around-worker._2 {
    height: 120px;
    inset: auto 40rem 60% auto;
  }

  .image-around-worker._3 {
    filter: drop-shadow(3px 3px 7px #0006);
    height: 120px;
    display: block;
    bottom: 77%;
    right: 5%;
  }

  .pribeh-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .pribeh-title {
    font-size: 20px;
  }

  .pribeh-paragraph {
    font-size: 18px;
  }

  .pribeh-right-card-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .pribeh-right-card-heading {
    font-size: 26px;
  }

  .sortiment-title {
    font-size: 20px;
  }

  .sortiment-heading {
    font-size: 54px;
  }

  .ticker-logo {
    margin-left: 4em;
    margin-right: 4em;
  }

  .pribeh-heading {
    width: 35rem;
    font-size: 54px;
  }

  .vernost-right {
    background-position: 100%;
    justify-content: center;
    align-items: flex-end;
    position: relative;
  }

  .vernost-title {
    font-size: 20px;
  }

  .vernost-heading {
    width: 37rem;
    font-size: 54px;
  }

  .vernost-paragraph {
    font-size: 18px;
  }

  .vernost-feature-text {
    font-size: 22px;
  }

  .giftcard {
    width: 32rem;
    margin-right: 20%;
  }

  .star-1, .star-2 {
    height: 24px;
  }

  .testimonial-card-paragraph {
    font-size: 18px;
  }

  .testimonial-person-icon {
    width: 55px;
    height: 55px;
  }

  .text-block {
    font-size: 20px;
  }

  .testimonial-person-name {
    font-size: 22px;
  }

  .reference-title {
    font-size: 20px;
  }

  .reference-heading {
    width: 38rem;
    font-size: 54px;
  }

  .pobocky-title {
    font-size: 20px;
  }

  .pobocky-heading {
    width: 35rem;
    font-size: 54px;
  }

  .pobocky-paragraph {
    font-size: 18px;
  }

  .pobocka-info {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .pobocka-info-row-top {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .pobocka-info-icon {
    width: 60px;
    height: 60px;
  }

  .pobocky-brusperk {
    min-height: 70vh;
  }

  .kontakt {
    background-position: 50% 0;
  }

  .kontakt-title {
    font-size: 20px;
  }

  .kontakt-heading {
    width: 38rem;
    font-size: 54px;
  }

  .kontakt-top {
    margin-bottom: 100px;
  }

  .form-left {
    position: relative;
  }

  .form-top-heading {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .form-icon {
    width: 60px;
    height: 60px;
  }

  .form-heading {
    font-size: 24px;
  }

  .text-field {
    height: 3rem;
    font-size: 17px;
  }

  .form-name {
    font-size: 19px;
  }

  .textarea {
    font-size: 17px;
  }

  .form-submit {
    padding: 16px 24px;
  }

  .footer-white-logo {
    height: 100px;
  }

  .footer-grid-column-wrapper.left {
    align-items: stretch;
  }

  .btn-text-hover {
    font-size: 20px;
  }

  .btn-arrow-hover {
    height: 20px;
  }

  .btn-text-black {
    font-size: 20px;
  }

  .btn-arrow-black {
    height: 20px;
  }

  .btn-text-black-hover {
    font-size: 20px;
  }

  .btn-arrow-black-hover {
    height: 20px;
  }

  .review-hero-wrapper {
    filter: drop-shadow(0 2px 7px #0006);
    color: var(--neutral);
    padding-top: 16px;
    padding-bottom: 16px;
    text-decoration: none;
    display: flex;
    inset: auto 37rem 88% auto;
  }

  .hero-review-text {
    font-size: 16px;
  }

  .hero-star-1 {
    height: 18px;
  }

  .form-success-wrapper {
    height: 24.5rem;
  }

  .logo-ochrana {
    height: 80px;
  }

  .text-block-6 {
    font-size: 22px;
  }

  .image-2 {
    height: 22px;
  }
}

@media screen and (min-width: 1920px) {
  .hero-heading {
    max-width: 35rem;
    font-size: 72px;
  }

  .hero-paragraph {
    font-size: 22px;
  }

  .hero-btn-black {
    padding-left: 32px;
    padding-right: 32px;
  }

  .btn-black-text {
    font-size: 22px;
  }

  .hero-btn {
    padding-left: 32px;
    padding-right: 32px;
  }

  .btn-text {
    font-size: 22px;
  }

  .btn-arrow {
    height: 22px;
  }

  .hero-left-grid-text {
    font-size: 28px;
  }

  .hero-left-grid-paragraph {
    font-size: 22px;
  }

  .nav-btn {
    padding-left: 32px;
    padding-right: 32px;
  }

  .benefits_card_title {
    font-size: 2.75rem;
  }

  .card-feature-check {
    height: 45px;
  }

  .card-feature-text {
    font-size: 22px;
  }

  .image-around-worker._1 {
    height: 150px;
    right: 72%;
  }

  .image-around-worker._2 {
    height: 150px;
    right: 64%;
  }

  .image-around-worker._3 {
    height: 150px;
  }

  .pribeh-grid {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .pribeh-title, .pribeh-paragraph {
    font-size: 22px;
  }

  .pribeh-right-card-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .pribeh-right-card-heading {
    font-size: 30px;
  }

  .pribeh-right-card-paragraph {
    font-size: 22px;
  }

  .pribeh-top-grid {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .sortiment-title {
    font-size: 22px;
  }

  .sortiment-heading {
    width: 40rem;
    font-size: 62px;
  }

  .sortiment-paragraph {
    font-size: 22px;
  }

  .pribeh-btn, .pribeh-btn-black, .sortiment-btn-black, .sortiment-btn {
    padding-left: 32px;
    padding-right: 32px;
  }

  .ticker-logo {
    margin-left: 5em;
    margin-right: 5em;
  }

  .pribeh-heading {
    width: 40rem;
    font-size: 62px;
  }

  .vernost-title {
    font-size: 22px;
  }

  .vernost-heading {
    width: 42rem;
    font-size: 62px;
  }

  .vernost-paragraph {
    font-size: 22px;
  }

  .vernost-feature-text {
    font-size: 26px;
  }

  .giftcard {
    width: 35rem;
    margin-right: 15%;
  }

  .testimonial-card {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .star-1, .star-2 {
    height: 28px;
  }

  .testimonial-card-paragraph {
    font-size: 20px;
  }

  .testimonial-person-icon {
    width: 65px;
    height: 65px;
  }

  .text-block {
    font-size: 24px;
  }

  .testimonial-person-name {
    font-size: 26px;
  }

  .testimonial-card-top {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .reference-title {
    font-size: 22px;
  }

  .reference-heading {
    width: 45rem;
    font-size: 62px;
  }

  .reference-paragraph {
    font-size: 22px;
  }

  .reference-btn-black, .reference-btn {
    padding-left: 32px;
    padding-right: 32px;
  }

  .pobocky-top-grid {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .pobocky-title {
    font-size: 22px;
  }

  .pobocky-heading {
    width: 40rem;
    font-size: 62px;
  }

  .pobocky-paragraph {
    font-size: 22px;
  }

  .pobocky-btn-black, .pobocky-btn {
    padding-left: 32px;
    padding-right: 32px;
  }

  .pobocka-info {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
  }

  .pobocka-info-row-top {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .pobocka-info-icon {
    width: 70px;
    height: 70px;
  }

  .pobocka-name {
    font-size: 30px;
  }

  .pobocka-info-grid-heading {
    font-size: 24px;
  }

  .pobocka-info-grid-text, .pobocka-info-grid-text-link {
    font-size: 20px;
  }

  .pobocka-info-btn {
    padding-left: 32px;
    padding-right: 32px;
  }

  .kontakt-title {
    font-size: 22px;
  }

  .kontakt-heading {
    width: 45rem;
    font-size: 62px;
  }

  .kontakt-paragraph {
    font-size: 22px;
  }

  .form-grid {
    width: 80%;
  }

  .form-top-heading {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .form-icon {
    width: 70px;
    height: 70px;
  }

  .form-heading {
    font-size: 30px;
  }

  .checkbox-label, .text-field {
    font-size: 18px;
  }

  .form-name {
    font-size: 20px;
  }

  .textarea {
    min-height: 10rem;
    max-height: 15rem;
  }

  .form-submit {
    padding-left: 32px;
    padding-right: 32px;
  }

  .footer-content {
    flex-flow: column;
    width: 90%;
    display: flex;
  }

  .footer-row {
    justify-content: space-between;
    display: flex;
  }

  .footer-white-logo {
    height: 110px;
  }

  .m-nav-btn, .btn_panel.is-bg, .btn_panel.is-solid {
    padding-left: 32px;
    padding-right: 32px;
  }

  .btn-text-hover {
    font-size: 22px;
  }

  .btn-arrow-hover {
    height: 22px;
  }

  .btn_panel_black.is-bg, .btn_panel_black.is-solid, .btn_panel-copy.is-bg, .btn_panel-copy.is-solid {
    padding-left: 32px;
    padding-right: 32px;
  }

  .btn-text-black {
    font-size: 22px;
  }

  .btn-arrow-black {
    height: 22px;
  }

  .btn-text-black-hover {
    font-size: 22px;
  }

  .btn-arrow-black-hover {
    height: 22px;
  }

  .btn_panel_form.is-bg, .btn_panel_form.is-solid {
    padding-left: 32px;
    padding-right: 32px;
  }

  .review-hero-wrapper {
    bottom: 91%;
    right: 62%;
  }

  .hero-star-1 {
    height: 18px;
  }

  .success-btn {
    padding-left: 32px;
    padding-right: 32px;
  }

  .form-success-wrapper {
    height: 26.5rem;
  }

  .logo-ochrana {
    height: 90px;
  }

  .btn_panel_nav.is-bg, .btn_panel_nav.is-solid {
    padding-left: 32px;
    padding-right: 32px;
  }

  .text-block-6 {
    font-size: 26px;
  }

  .image-2 {
    height: 26px;
  }
}

@media screen and (max-width: 991px) {
  .hero {
    background-image: url('../images/dots-bg.png'), url('../images/mobile-bg-hero-cropped-cropped-1.svg');
    background-position: 95% 95%, 100% 100%;
    background-size: 7rem, 100%;
    height: 94vh;
  }

  .hero-wrapper {
    max-width: var(--wrapper-max-width);
  }

  .nav {
    display: none;
  }

  .nav-wrapper {
    max-width: var(--wrapper-max-width);
  }

  .hero-grid {
    grid-row-gap: 32px;
    grid-auto-rows: 1fr;
    padding-left: 0%;
  }

  .hero-left {
    padding-top: 3%;
    padding-bottom: 0%;
    padding-right: 0%;
  }

  .hero-right {
    display: flex;
  }

  .hero-left-top {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    align-items: center;
  }

  .hero-left-bottom {
    display: none;
  }

  .hero-heading {
    text-align: center;
    width: 35rem;
    max-width: none;
    margin-bottom: 16px;
  }

  .hero-paragraph {
    text-align: center;
    width: 40rem;
    margin-bottom: 16px;
  }

  .hero-cta-btn-row {
    margin-top: 16px;
  }

  .hero-left-grid {
    place-items: stretch center;
  }

  .hero-left-grid-paragraph {
    width: 20rem;
  }

  .hero-worker {
    height: 100%;
    position: absolute;
    inset: auto auto 0%;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
  }

  .top-panel {
    z-index: 998;
  }

  .top-panel-wrapper {
    max-width: var(--wrapper-max-width);
  }

  .top-panel-left {
    display: none;
  }

  .top-panel-content {
    justify-content: center;
  }

  .nav-right, .nav-logo {
    display: flex;
  }

  .nav-content {
    justify-content: center;
    align-items: center;
  }

  .logo-text {
    display: block;
  }

  .nav-links {
    display: flex;
  }

  .benefits_card_wrap {
    height: 18rem;
  }

  .u-container {
    padding-left: 0;
    padding-right: 0;
  }

  .card-features {
    margin-top: 20px;
  }

  .image-around-worker._1, .image-around-worker._2, .image-around-worker._3 {
    display: none;
  }

  .sortiment-wrapper {
    max-width: var(--wrapper-max-width);
  }

  .pribeh {
    height: auto;
  }

  .pribeh-wrapper {
    max-width: var(--wrapper-max-width);
  }

  .pribeh-title {
    text-align: center;
  }

  .pribeh-left-top {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .pribeh-left-img {
    aspect-ratio: 16 / 9;
  }

  .pribeh-paragraph {
    width: 40rem;
  }

  .pribeh-right-top {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .sortiment-paragraph {
    width: 35rem;
  }

  .ticker-logo {
    height: 1.8em;
  }

  .pribeh-heading {
    width: 35rem;
  }

  .vernost {
    height: auto;
  }

  .vernost-wrapper {
    max-width: var(--wrapper-max-width);
  }

  .vernost-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .vernost-left {
    justify-content: flex-start;
    align-items: center;
  }

  .vernost-right {
    background-image: url('../images/tablet-triangles.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 25rem;
  }

  .vernost-heading {
    text-align: center;
    width: 35rem;
  }

  .vernost-paragraph {
    text-align: center;
    width: 40rem;
  }

  .giftcard {
    width: 30rem;
  }

  .reference-wrapper {
    max-width: var(--wrapper-max-width);
  }

  .testimonial-card {
    min-width: 48%;
    max-width: 48%;
  }

  .reference-paragraph {
    width: 40rem;
  }

  .pobocky-wrapper {
    max-width: var(--wrapper-max-width);
  }

  .pobocky-top-grid {
    margin-bottom: 48px;
  }

  .pobocky-heading {
    width: 35rem;
  }

  .pobocky-paragraph {
    width: 40rem;
  }

  .pobocky-grid-bottom {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .pobocka-info-btn {
    padding-left: 32px;
    padding-right: 32px;
  }

  .kontakt-wrapper {
    max-width: var(--wrapper-max-width);
  }

  .kontakt-paragraph {
    width: 40rem;
  }

  .footer {
    padding-bottom: 140px;
  }

  .footer-wrapper {
    max-width: var(--wrapper-max-width);
  }

  .form-left {
    border-radius: 12px;
  }

  .form-right {
    display: none;
  }

  .footer-content {
    width: 100%;
  }

  .paragraph {
    text-align: right;
  }

  .benefits-card-gradient {
    background-image: linear-gradient(#0000 10%, #000 80%);
  }

  .m-nav-toggle-description {
    font-weight: 400;
  }

  .m-nav-link-item.last-item {
    padding-top: 40px;
    padding-bottom: 180px;
  }

  .m-nav-list {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-overlay-gradient-bottom {
    background-image: linear-gradient(0deg, #fff, #24242300);
  }

  .m-nav-toggle-bg {
    background-image: linear-gradient(180deg, #eee0, var(--neutral));
  }

  .m-nav-toggle-inner {
    background-color: #0000;
    background-image: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
    padding: 14px 48px;
  }

  .m-nav-toggle-inner.close {
    padding: 16px;
  }

  .nav-overlay-gradient-top {
    background-image: linear-gradient(#fff, #0000);
    flex-flow: row;
    justify-content: center;
    align-items: center;
    height: auto;
    padding-top: 40px;
    display: flex;
  }

  .mobile-nav {
    z-index: 999;
    display: block;
  }

  .m-nav-overlay {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background-color: #ffffffd9;
    height: 100%;
    display: none;
  }

  .m-nav-close-icon {
    width: 20px;
  }

  .m-nav-toggle-open {
    filter: drop-shadow(0 2px 7px #0000004d);
    display: block;
    bottom: 30px;
  }

  .m-nav-link {
    color: var(--neutral);
    font-size: 20px;
  }

  .m-nav-toggle-close {
    display: none;
    bottom: 30px;
  }

  .m-nav-logo {
    display: flex;
  }

  .m-logo {
    height: 50px;
  }

  .m-logo-text {
    color: #fff;
    display: none;
  }

  .m-nav-btn {
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
  }

  .anchor-point {
    top: -80px;
  }

  .success-btn {
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
  }

  .cookie-btn {
    margin-top: 2rem;
    display: block;
  }

  .nav-logo-ochrana {
    display: flex;
  }

  .logo-text-ochrana {
    display: block;
  }

  .modralabut-logo {
    height: 90px;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    background-image: none;
    background-size: auto;
    height: auto;
  }

  .hero-wrapper {
    max-width: var(--wrapper-max-width);
  }

  .hero-grid {
    grid-column-gap: 0px;
    grid-row-gap: 32px;
    padding-left: 0%;
  }

  .hero-left {
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 0;
    padding-right: 0%;
  }

  .hero-right {
    display: none;
  }

  .hero-left-top {
    justify-content: flex-start;
    align-items: center;
  }

  .hero-heading {
    width: 28rem;
    font-size: 48px;
  }

  .hero-paragraph {
    width: 28rem;
    font-size: 16px;
  }

  .hero-cta-btn-row {
    margin-top: 12px;
  }

  .hero-btn-black, .hero-btn {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero-left-grid {
    place-items: stretch center;
  }

  .hero-counter {
    font-size: 46px;
  }

  .hero-counter-inner {
    text-align: left;
    font-size: 46px;
  }

  .hero-left-grid-paragraph {
    width: auto;
    max-width: 15rem;
  }

  .top-panel {
    height: 10vh;
  }

  .u-container {
    padding-left: 0;
    padding-right: 0;
  }

  .pribeh-title {
    font-size: 16px;
  }

  .pribeh-left-img {
    aspect-ratio: 1.3;
  }

  .pribeh-paragraph {
    width: 28rem;
    font-size: 16px;
  }

  .pribeh-right-card-icon-wrapper {
    width: 45px;
    height: 45px;
  }

  .pribeh-right-card-heading {
    font-size: 20px;
  }

  .pribeh-right-card-paragraph, .sortiment-title {
    font-size: 16px;
  }

  .sortiment-heading {
    width: 28rem;
    font-size: 40px;
  }

  .sortiment-paragraph {
    width: 28rem;
    font-size: 16px;
  }

  .pribeh-btn, .pribeh-btn-black, .sortiment-btn-black, .sortiment-btn {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .ticker-logo {
    height: 1.7em;
    margin-left: 1.2em;
    margin-right: 1.2em;
  }

  .pribeh-heading {
    width: 28rem;
    font-size: 40px;
  }

  .vernost-right {
    height: auto;
  }

  .vernost-title {
    font-size: 16px;
  }

  .vernost-heading {
    width: 28rem;
    font-size: 40px;
  }

  .vernost-paragraph {
    width: 28rem;
    font-size: 16px;
  }

  .vernost-feature-icon {
    height: 32px;
  }

  .vernost-feature-text {
    font-size: 20px;
  }

  .giftcard {
    width: 70%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .reference-title {
    font-size: 16px;
  }

  .reference-heading {
    width: 28rem;
    font-size: 40px;
  }

  .reference-paragraph {
    width: 28rem;
    font-size: 16px;
  }

  .reference-btn-black, .reference-btn {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .pobocky-title {
    font-size: 16px;
  }

  .pobocky-heading {
    width: 28rem;
    font-size: 40px;
  }

  .pobocky-paragraph {
    width: 28rem;
    font-size: 16px;
  }

  .pobocky-btn-black, .pobocky-btn {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .pobocky-ostravice {
    min-height: 85vh;
  }

  .pobocka-info {
    align-items: flex-start;
    padding: 6%;
  }

  .pobocka-info-icon {
    width: 45px;
    height: 45px;
  }

  .pobocka-name {
    font-size: 24px;
  }

  .pobocka-info-btn {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .pobocky-brusperk {
    min-height: 85vh;
  }

  .kontakt-heading {
    width: 28rem;
    font-size: 39px;
  }

  .kontakt-paragraph {
    width: 28rem;
    font-size: 16px;
  }

  .checkbox-label {
    font-size: 14px;
  }

  .form-bottom-row {
    flex-flow: column;
  }

  .form-submit {
    justify-content: center;
    align-items: center;
  }

  .footer-row {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-white-logo {
    height: 120px;
  }

  .paragraph {
    text-align: left;
    width: auto;
    display: none;
  }

  .footer-grid {
    grid-column-gap: 42px;
    grid-row-gap: 42px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .footer-grid-column {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    text-align: left;
  }

  .footer-bottom-right {
    flex-flow: column;
    justify-content: space-between;
  }

  .footer-grid-column-wrapper.left {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-grid-column-wrapper.mid, .footer-grid-column-wrapper.right {
    justify-content: flex-start;
    align-items: center;
  }

  .btn_panel.is-bg, .btn_panel.is-solid, .btn_panel_black.is-bg, .btn_panel_black.is-solid, .btn_panel-copy.is-bg, .btn_panel-copy.is-solid {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .btn_panel_form.is-bg {
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    inset: 0%;
  }

  .btn_panel_form.is-solid {
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .form-success-wrapper {
    height: 24.5rem;
  }

  .btn_panel_nav.is-bg, .btn_panel_nav.is-solid {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media screen and (max-width: 479px) {
  .hero {
    background-image: url('../images/dots-bg.png'), url('../images/mobile-bg-hero-cropped-cropped-2.svg');
    background-position: 95% 95%, 100% 100%;
    background-repeat: no-repeat, no-repeat;
    background-size: 15%, 105%;
    height: 94vh;
  }

  .hero-left {
    padding-top: 4%;
  }

  .hero-right {
    justify-content: center;
    align-items: flex-end;
    display: flex;
  }

  .hero-left-top {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .hero-heading {
    width: 90%;
    font-size: 9.5vw;
  }

  .hero-paragraph {
    width: 90%;
    font-size: 3.5vw;
  }

  .hero-btn-black {
    padding: 2.75vw 5vw;
  }

  .btn-black-text {
    font-size: 3.5vw;
  }

  .hero-btn {
    padding: 2.75vw 5vw;
  }

  .btn-text {
    font-size: 3.5vw;
  }

  .btn-arrow {
    height: 3.5vw;
  }

  .hero-counter, .hero-counter-inner {
    font-size: 9vw;
  }

  .hero-left-grid-text {
    font-size: 4.5vw;
  }

  .hero-left-grid-paragraph {
    max-width: none;
    font-size: 3.5vw;
  }

  .hero-worker {
    width: 300px;
    height: auto;
  }

  .top-panel {
    height: 6vh;
  }

  .top-panel-right {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
  }

  .top-panel-pobocka-row {
    grid-column-gap: 3.75vw;
    grid-row-gap: 3.75vw;
  }

  .top-panel-pobocka-text {
    font-size: 3.25vw;
  }

  .circle-open {
    width: 3.5vw;
    height: 3.5vw;
  }

  .open-text {
    font-size: 3.5vw;
  }

  .circle-close {
    width: 3.5vw;
    height: 3.5vw;
  }

  .close-text {
    font-size: 3.25vw;
  }

  .benefits_card_wrap {
    padding: 4vw;
  }

  .benefits_card_title {
    font-size: 6.5vw;
  }

  .card-features {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
  }

  .card-feature-row {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
  }

  .card-feature-check {
    height: 7vw;
  }

  .card-feature-text {
    font-size: 3.5vw;
  }

  .sortiment {
    overflow: hidden;
  }

  .pribeh-title {
    font-size: 3.75vw;
  }

  .pribeh-paragraph {
    width: 90%;
    font-size: 3.5vw;
  }

  .pribeh-right-card-icon-wrapper {
    width: 9vw;
    height: 9vw;
  }

  .pribeh-right-card-heading {
    font-size: 4.5vw;
  }

  .pribeh-right-card-paragraph {
    font-size: 3.25vw;
  }

  .sortiment-title {
    font-size: 3.75vw;
  }

  .sortiment-heading {
    width: 90%;
    font-size: 8vw;
  }

  .sortiment-paragraph {
    width: 90%;
    font-size: 3.5vw;
  }

  .pribeh-btn, .pribeh-btn-black, .sortiment-btn-black, .sortiment-btn {
    padding: 2.75vw 5vw;
  }

  .ticker-logo {
    height: 5vw;
    margin-left: 1em;
    margin-right: 1em;
  }

  .pribeh-heading {
    width: 90%;
    font-size: 8vw;
  }

  .vernost-title {
    font-size: 3.75vw;
  }

  .vernost-heading {
    width: 100%;
    font-size: 8vw;
  }

  .vernost-paragraph {
    width: 90%;
    font-size: 3.5vw;
  }

  .vernost-features-grid {
    grid-column-gap: 6vw;
    grid-row-gap: 6vw;
  }

  .vernost-feature-row {
    grid-column-gap: 3vw;
    grid-row-gap: 3vw;
  }

  .vernost-feature-icon {
    height: 6.5vw;
  }

  .vernost-feature-text {
    font-size: 4vw;
  }

  .testimonial-card {
    grid-column-gap: 4.5vw;
    grid-row-gap: 4.5vw;
    min-width: 80%;
    max-width: 80%;
    padding: 5vw 4vw;
  }

  .testimonial-card-stars-row {
    grid-column-gap: .7vw;
    grid-row-gap: .7vw;
  }

  .star-1, .star-2 {
    height: 4.25vw;
  }

  .testimonial-card-paragraph {
    font-size: 3.25vw;
  }

  .testimonial-person-icon {
    width: 10vw;
    height: 10vw;
  }

  .text-block {
    font-size: 3.75vw;
  }

  .testimonial-person-name {
    font-size: 4vw;
  }

  .testimonial-card-top {
    grid-column-gap: 3.5vw;
    grid-row-gap: 3.5vw;
  }

  .reference-title {
    font-size: 3.75vw;
  }

  .reference-heading {
    width: 100%;
    font-size: 8vw;
  }

  .reference-paragraph {
    width: 90%;
    font-size: 3.5vw;
  }

  .reference-btn-black, .reference-btn {
    padding: 2.75vw 5vw;
  }

  .pobocky-title {
    font-size: 3.75vw;
  }

  .pobocky-heading {
    width: 90%;
    font-size: 8vw;
  }

  .pobocky-paragraph {
    width: 90%;
    font-size: 3.5vw;
  }

  .pobocky-btn-black, .pobocky-btn {
    padding: 2.75vw 5vw;
  }

  .pobocky-ostravice {
    min-height: 150vw;
  }

  .pobocka-image {
    height: 85%;
  }

  .pobocka-info-icon {
    width: 9vw;
    height: 9vw;
  }

  .pobocka-name {
    font-size: 4.75vw;
  }

  .pobocka-info-grid-heading {
    font-size: 4vw;
  }

  .pobocka-info-grid-text, .pobocka-info-grid-text-link {
    font-size: 3.5vw;
  }

  .pobocka-info-btn {
    padding: 2.75vw 5vw;
  }

  .pobocky-brusperk {
    min-height: 150vw;
  }

  .kontakt-title {
    font-size: 3.75vw;
  }

  .kontakt-heading {
    width: 100%;
    font-size: 7.75vw;
  }

  .kontakt-paragraph {
    width: 90%;
    font-size: 3.5vw;
  }

  .form-grid {
    width: 100%;
  }

  .form-left {
    grid-column-gap: 8vw;
    grid-row-gap: 8vw;
  }

  .form-icon {
    width: 9vw;
    height: 9vw;
  }

  .form-heading {
    font-size: 4.5vw;
  }

  .checkbox {
    width: 5vw;
    height: 5vw;
  }

  .checkbox-label {
    margin-left: 3.5vw;
    font-size: 3vw;
  }

  .form-bottom-row {
    grid-column-gap: 3.5vw;
    grid-row-gap: 3.5vw;
  }

  .text-field {
    height: 8vw;
    font-size: 3.25vw;
  }

  .form-row {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    flex-flow: row;
  }

  .form-row._2 {
    flex-flow: column;
  }

  .form-column {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
  }

  .form-name {
    font-size: 3.5vw;
  }

  .textarea {
    min-height: 25vw;
    max-height: 40vw;
    font-size: 3.25vw;
  }

  .form-submit {
    padding: 2.75vw 5vw;
  }

  .footer-row {
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-white-logo {
    height: 30vw;
  }

  .benefits-card-gradient {
    background-image: linear-gradient(#0000 35%, #000 85%);
  }

  .m-nav-toggle-bg {
    font-size: 3.25vw;
  }

  .email-popup {
    filter: drop-shadow(0 2px 12px #0006);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 5%;
    inset: auto 0% 0%;
  }

  .email-popup-grid {
    filter: drop-shadow(0 2px 10px #0000004d);
    height: auto;
  }

  .gift-wrapper {
    width: 12vw;
    height: 12vw;
  }

  .email-popup-heading {
    font-size: 6vw;
  }

  .email-popup-paragraph, .field-label {
    font-size: 4vw;
  }

  .text-field-2 {
    height: 10vw;
    font-size: 3.5vw;
  }

  .checkbox-label-2 {
    font-size: 2.75vw;
  }

  .checkbox-2 {
    width: 6vw;
    height: 6vw;
  }

  .submit-button-2 {
    z-index: 1000;
    padding: 3vw 5vw;
    font-size: 4vw;
    position: relative;
  }

  .text-block-2 {
    margin-top: 3.5vw;
    font-size: 4.5vw;
  }

  .btn_panel.is-bg, .btn_panel.is-solid {
    padding: 2.75vw 5vw;
  }

  .btn-text-hover {
    font-size: 3.5vw;
  }

  .btn-arrow-hover {
    height: 3.5vw;
  }

  .btn_panel_black.is-bg, .btn_panel_black.is-solid, .btn_panel-copy.is-bg, .btn_panel-copy.is-solid {
    padding: 2.75vw 5vw;
  }

  .btn-text-black {
    font-size: 3.5vw;
  }

  .btn-arrow-black {
    height: 3.5vw;
  }

  .btn-text-black-hover {
    font-size: 3.5vw;
  }

  .btn-arrow-black-hover {
    height: 3.5vw;
  }

  .btn_panel_form.is-bg, .btn_panel_form.is-solid {
    padding: 2.75vw 5vw;
  }

  .close-popup {
    width: 8vw;
    height: 8vw;
  }

  .form-success-wrapper {
    grid-column-gap: 3.5vw;
    grid-row-gap: 3.5vw;
  }

  .text-block-5 {
    font-size: 4vw;
  }

  .lottie-animation-2 {
    height: auto;
  }

  .heading-13 {
    font-size: 36px;
  }

  .logo-ochrana {
    height: 70px;
  }

  .logo-text-ochrana {
    font-size: 22px;
  }

  .btn_panel_nav.is-bg, .btn_panel_nav.is-solid {
    padding: 2.75vw 5vw;
  }

  .modralabut-logo {
    height: 20vw;
  }

  .text-block-6 {
    font-size: 4.5vw;
  }

  .image-2 {
    height: 4.5vw;
  }

  .text-block-7 {
    font-size: 3vw;
  }
}

#w-node-_7269b8ab-8bbc-348b-10bf-1c99496b6dbb-17285f97, #w-node-_8f667d7a-29e1-4cfa-ffd3-e4a08674571c-17285f97, #w-node-_5851efd1-0d24-cc55-cf9b-8990cd2f1043-1a751aa1, #w-node-_5851efd1-0d24-cc55-cf9b-8990cd2f1056-1a751aa1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-d3f56f65-d2d3-8ee4-4b49-a5735577e5ac-17285f97, #w-node-_4df86fb2-c5ed-7aa1-29e2-47937d004f8f-17285f97, #w-node-_36bd369f-7c83-5f2d-ce3c-aaddc4180c26-17285f97, #w-node-_9db6e7e7-ba16-0905-4437-50838d87d2a5-17285f97, #w-node-d6dd968a-6bad-c3e2-49d5-fc760adaaa64-17285f97, #w-node-_4de1ac7d-d3f0-fcbe-49d9-f95987756197-17285f97, #w-node-fbaa9b09-54e9-8e58-412c-889bb4d5808c-17285f97, #w-node-_3fbad24e-31f5-0d79-c8e8-bd7975e5d8df-17285f97, #w-node-_624ef0c3-29b6-2f09-5609-38ac5bed9ef4-17285f97, #w-node-_624ef0c3-29b6-2f09-5609-38ac5bed9ef9-17285f97, #w-node-_9f53f8b6-48e7-f0b8-e793-e9d38a9388c5-17285f97, #w-node-_5584572c-3e90-0a22-6370-93ae934672b9-17285f97, #w-node-a04b7c0f-3337-1518-f985-dab3512fd3a7-17285f97 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_38950149-602e-9034-c21b-b3da251e2a87-17285f97, #w-node-_5851efd1-0d24-cc55-cf9b-8990cd2f1036-1a751aa1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_01325e46-b5de-5ffc-cc0e-8c105270bb42-17285f97, #w-node-a300ac1f-a4c3-f17f-f011-20ec48d46ed7-17285f97, #w-node-_5584572c-3e90-0a22-6370-93ae934672c3-17285f97, #w-node-_5584572c-3e90-0a22-6370-93ae934672d3-17285f97 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Generalsans Variable';
  src: url('../fonts/GeneralSans-Variable.woff2') format('woff2');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-VariableItalic.woff2') format('woff2');
  font-weight: 200 700;
  font-style: italic;
  font-display: swap;
}