:root {
  --white: white;
  --lime-green: #00b51a;
  --medium-aquamarine: #0ca;
  --black: black;
  --80: #ccc;
  --text-grey: #757575;
  --green-smoke: #f2f6f3;
  --green-smoke-50: rgba(242, 246, 243, .5);
}

.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;
}

body {
  background-color: var(--white);
  color: #000;
  font-family: Sora, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  max-width: 1000px;
  margin-top: 0;
  margin-bottom: 40px;
  font-family: Sora, sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  max-width: 1000px;
  margin-top: 0;
  margin-bottom: 32px;
  font-family: Sora, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  max-width: 1000px;
  margin-top: 0;
  margin-bottom: 32px;
  font-family: Sora, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 32px;
  font-family: Sora, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h5 {
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Sora, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

h6 {
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Sora, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  max-width: 800px;
  margin-bottom: 40px;
}

a {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  text-decoration: underline;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container {
  z-index: 2;
  text-align: left;
  flex-direction: column;
  align-items: stretch;
  width: 90vw;
  max-width: 1600px;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  position: static;
}

.paragraph-1 {
  font-family: Sora, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.paragraph-3 {
  text-align: left;
  margin-bottom: 24px;
  font-family: Sora, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.paragraph-3._16down {
  margin-bottom: 0;
  padding-bottom: 16px;
  font-weight: 700;
}

.paragraph-3.margin-0-bottom {
  margin-bottom: 0;
}

.paragraph-3.paragraph-center {
  text-align: center;
}

.paragraph-2 {
  font-family: Sora, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.paragraph-4-footer {
  font-family: Sora, sans-serif;
  font-size: .9rem;
  font-weight: 400;
}

.paragraph-5 {
  font-family: Sora, sans-serif;
  font-size: .8rem;
  font-weight: 400;
}

.paragraph-5.margin-0 {
  margin-bottom: 0;
}

.button {
  background-color: var(--lime-green);
  background-image: linear-gradient(20deg, var(--medium-aquamarine), var(--lime-green) 80%);
  color: var(--white);
  cursor: pointer;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 8px 24px;
  font-family: Sora, sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .4s;
  display: inline-block;
}

.button:hover {
  background-color: var(--black);
  background-image: none;
}

.button.btn-big {
  background-color: var(--lime-green);
  background-image: linear-gradient(20deg, var(--medium-aquamarine), var(--lime-green) 80%);
  text-align: center;
  padding: 16px 32px;
}

.button.btn-big:hover {
  background-color: var(--black);
  background-image: none;
}

.button-outline {
  border: 1px solid var(--80);
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 8px 24px;
  font-family: Sora, sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: border-color .4s;
  display: inline-block;
}

.button-outline:hover {
  border-color: var(--black);
}

.button-outline.btn-big {
  padding: 16px 32px;
}

.wrap {
  margin-top: 80px;
  margin-bottom: 80px;
}

.link {
  color: var(--black);
  text-decoration: underline;
}

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

.link.slash {
  font-family: Sora, sans-serif;
  font-weight: 700;
}

.section-header {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 600px;
  padding-top: 0;
  display: flex;
  position: relative;
}

.icon {
  align-items: center;
  font-family: Google icons;
  font-weight: 400;
  display: inline-block;
}

.txt-grey {
  color: var(--text-grey);
}

.txt-gradient {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #00cebc, #00cb1e);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

.navigation-left {
  align-items: center;
  width: 20%;
  display: flex;
}

.navigation-container-mob {
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation-mob {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: center;
  display: none;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navigation-container {
  align-items: center;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation-full {
  z-index: 9;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  align-items: center;
  width: 100%;
  padding: 8px 3%;
  display: flex;
  position: relative;
}

.navigation {
  z-index: 9;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: center;
  display: flex;
}

.navigation-link {
  justify-content: center;
  align-items: center;
  padding: 20px 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.navigation-link:hover {
  color: var(--lime-green);
  text-decoration: underline;
}

.navigation-link.w--current {
  color: var(--lime-green);
  font-family: Sora, sans-serif;
  text-decoration: underline;
}

.navigation-wrap {
  z-index: 50;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, .9);
  font-family: Sora, sans-serif;
  font-weight: 600;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  bottom: auto;
  left: auto;
  right: auto;
}

.brand {
  margin-right: 44px;
}

.dropdown {
  margin-left: 5px;
  margin-right: 5px;
  position: static;
}

.navigation-right {
  justify-content: flex-end;
  align-items: center;
  width: 80%;
  font-size: 16px;
  display: flex;
}

.nav-menu {
  align-items: center;
  font-family: Sora, sans-serif;
  font-size: 15px;
  display: flex;
  position: static;
}

.center-wrap {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section-gallery {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 160px;
  padding-top: 0;
  display: flex;
  overflow: visible;
}

.wrap-gallery {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: static;
  top: 40px;
}

.img-gallery {
  margin-bottom: 40px;
  position: -webkit-sticky;
  position: sticky;
  top: 12%;
}

.recenze-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 320px;
  display: flex;
  position: relative;
}

.accordion {
  text-align: center;
  flex-direction: column;
  width: 60vw;
  max-width: 800px;
  margin-top: 40px;
  display: flex;
}

.contact-wrap {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
  position: static;
}

.paragraph-3-contact {
  margin-bottom: 0;
  font-family: Sora, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  position: static;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.link-footer {
  padding-right: 40px;
  font-family: Sora, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}

.link-footer:hover {
  text-decoration: underline;
}

.contact-down {
  border-top: 1px solid var(--80);
  text-align: left;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 80px;
  padding-top: 24px;
  display: flex;
}

.div-block-7 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 24px;
  display: flex;
}

.section-contact {
  border: 1px solid var(--green-smoke);
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 80px;
  padding-bottom: 40px;
  display: flex;
}

.social-icon {
  width: 32px;
  max-width: none;
}

.link-social {
  margin-left: 8px;
  margin-right: 8px;
}

.div-block-8 {
  margin-left: -8px;
}

.link-contact {
  color: var(--black);
  padding-top: 0;
  padding-bottom: 16px;
  font-family: Sora, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: underline;
}

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

.icon-contact {
  align-items: center;
  padding-left: 8px;
  font-family: Google icons;
  display: inline-block;
}

.div-block-9 {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.tabs-2 {
  flex-direction: row;
  align-items: stretch;
  width: auto;
  max-width: none;
  margin-top: 40px;
  display: flex;
}

.div-block-40 {
  width: 80vw;
  max-width: 1600px;
  margin-bottom: 80px;
}

.grid-contact {
  grid-column-gap: 24px;
  grid-row-gap: 60px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  justify-items: center;
  width: 100%;
  margin-top: 80px;
  display: grid;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 600px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.button-404 {
  background-color: var(--black);
  color: var(--white);
  cursor: pointer;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 80px;
  padding: 8px 24px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .4s;
  display: inline-block;
}

.button-404:hover {
  background-color: #333;
}

.text-field {
  border-radius: 8px;
}

.error-message {
  background-color: #ffcdcd;
}

.wrap-cookie {
  width: 600px;
  margin-top: 160px;
  margin-bottom: 80px;
  display: block;
}

.list {
  margin-bottom: 40px;
}

.list-item {
  padding-bottom: 8px;
}

.mobile-contact {
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 320px;
  height: auto;
  display: flex;
  position: static;
}

.menu-link {
  color: var(--black);
  padding-top: 24px;
  font-size: 1.2rem;
  text-decoration: underline;
}

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

.mobile-link {
  justify-content: center;
  align-items: center;
  padding: 20px 12px;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.mobile-link:hover, .mobile-link.w--current {
  color: var(--black);
  text-decoration: underline;
}

.grid-product-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: rgba(0, 0, 0, 0);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 0;
  margin-bottom: 24px;
}

.product-text-wrap-left {
  width: auto;
  max-width: 30%;
}

.product-card-center {
  background-color: var(--green-smoke);
  border-radius: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 24px 24px;
  display: flex;
}

.image-50 {
  max-width: 50%;
}

.product-text-wrap-center {
  z-index: 1;
  text-align: center;
  object-fit: fill;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: auto;
  max-width: 500px;
  height: 100%;
  display: flex;
  position: static;
  top: auto;
  bottom: auto;
  left: auto;
  right: 224px;
}

.txt-category {
  margin-bottom: 24px;
}

.div-block-48 {
  width: auto;
  max-height: none;
  position: relative;
}

.image-move {
  max-width: none;
  max-height: 300px;
}

.section-product {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 40px;
  font-weight: 600;
  display: flex;
}

.grid-product-card-4-col {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 0;
  margin-bottom: 0;
}

.link-product-card {
  color: var(--lime-green);
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Sora, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.link-product-card:hover {
  color: var(--black);
  text-decoration: none;
}

.link-product-card-white {
  color: var(--white);
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.2rem;
  text-decoration: none;
  display: flex;
}

.link-product-card-white:hover {
  color: var(--80);
  text-decoration: none;
}

.text-reveal-scroll {
  text-align: center;
  object-fit: fill;
  transform-style: preserve-3d;
  flex-direction: row;
  justify-content: space-around;
  width: 800px;
  height: 40vh;
  display: flex;
  transform: translate3d(0, 0, 1px);
}

.image-52 {
  z-index: -1;
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.section-text-reveal {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  overflow: visible;
}

.space-20vh, .space-40vh {
  height: 20vh;
}

.container--100 {
  z-index: 2;
  flex-direction: column;
  align-items: stretch;
  width: 90vw;
  max-width: 1600px;
  margin-top: -60vh;
  display: flex;
  position: static;
}

.h3 {
  max-width: 900px;
  font-family: Podkova;
  font-weight: 700;
}

.h5 {
  font-family: Podkova;
  font-weight: 700;
}

.container-center {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 90vw;
  max-width: 1600px;
  display: flex;
  position: static;
}

.track {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400vh;
  display: block;
  overflow: visible;
}

.camera {
  width: auto;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
  overflow: hidden;
}

.frame {
  height: 100%;
  display: flex;
}

.item {
  flex: none;
  width: 100vw;
  height: 100vh;
  padding: 80px 40px;
  overflow: hidden;
}

.image-54 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.infinite-loop-wrap {
  width: 100%;
  overflow: hidden;
}

.infinite-loop {
  flex-direction: row;
  align-items: center;
  display: flex;
  overflow: visible;
}

.logo-grid {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  width: 100vw;
  height: auto;
  margin-bottom: 80px;
  padding: 0 20px 0 19px;
  display: grid;
}

.image-55, .image-56, .image-57, .image-58, .image-59, .image-60 {
  height: auto;
}

.logo-wrap-inlay {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100vw;
  display: block;
}

.body {
  overflow: visible;
}

.section-logo {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 160px;
  display: flex;
}

.video-play-pause-icon-wrapper {
  z-index: 20;
  border: 2px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 40px;
  left: auto;
  right: 40px;
  overflow: hidden;
}

.button-navbar {
  background-color: var(--black);
  background-image: linear-gradient(20deg, var(--medium-aquamarine), var(--lime-green) 80%);
  color: var(--white);
  cursor: pointer;
  border-radius: 400px;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-left: 16px;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .4s;
  display: inline-block;
}

.button-navbar:hover {
  background-color: var(--black);
  background-image: none;
}

.section-popup {
  z-index: 200;
  background-color: rgba(0, 0, 0, .8);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
}

.flowbase-card {
  z-index: 201;
  background-color: var(--white);
  border-radius: 25px;
  width: 40vw;
  min-width: 800px;
  max-width: 800px;
  height: auto;
  max-height: none;
  padding: 80px;
  display: block;
  position: fixed;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.flowbase-close-large {
  background-color: var(--black);
  border: 4px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: -15px;
  bottom: auto;
  left: auto;
  right: -15px;
}

.flowbase-close-large:hover {
  transform: rotate(90deg);
}

.image-4 {
  width: 14px;
}

.grid-rezervace {
  grid-column-gap: 33px;
  grid-row-gap: 60px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  justify-items: start;
  width: 100%;
  margin-top: 40px;
  display: grid;
}

.rezervace-wrap {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: static;
}

.paragraph-rezervace {
  margin-bottom: 8px;
  display: flex;
}

.member {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.image-64 {
  opacity: .2;
  max-width: none;
  height: 70%;
  position: absolute;
  top: 10%;
  right: 10%;
  overflow: hidden;
}

.grid-product-card-5-col {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: stretch;
  justify-items: stretch;
  margin-top: 0;
  margin-bottom: 24px;
}

.text-span-2, .text-span-3, .text-span-4 {
  font-size: 3rem;
  font-weight: 700;
}

.div-block-53 {
  opacity: .2;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.product-btn-wrap {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Sora, sans-serif;
}

.button-outline-header {
  border: 1px solid var(--lime-green);
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 8px 24px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .4s;
  display: inline-block;
}

.button-outline-header:hover {
  border-color: var(--lime-green);
  background-color: var(--lime-green);
  color: var(--black);
}

.headline {
  color: var(--black);
  font-family: Sora, sans-serif;
  font-size: 10rem;
  font-weight: 700;
}

.headline.txt-gradient {
  margin-bottom: 24px;
  font-size: 3rem;
}

.product-header {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  position: relative;
  top: auto;
}

.grid-3 {
  grid-column-gap: 80px;
  grid-template-rows: auto;
}

.advantage-wrap {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: static;
}

.img-100-rounded {
  object-fit: cover;
  border-radius: 32px;
  width: 100%;
  max-width: none;
  height: 100%;
}

.txt-advantage {
  margin-bottom: 24px;
  font-family: Sora, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.grid-4 {
  grid-column-gap: 80px;
  grid-template-rows: auto;
}

.advantage-card {
  background-color: var(--green-smoke);
  border-radius: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: block;
}

.grid-text {
  grid-column-gap: 80px;
  grid-template-rows: auto;
  justify-content: stretch;
  align-items: center;
  justify-items: center;
}

.section-reference {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 0;
  display: flex;
}

.image-reference {
  border-radius: 24px;
  margin-bottom: 24px;
  display: inline-block;
}

.paragraph-4 {
  text-align: left;
  font-family: Sora, sans-serif;
  font-weight: 400;
}

.paragraph-4.margin-0 {
  margin-bottom: 0;
}

.txt-advantage-big {
  margin-bottom: 24px;
  font-family: Sora, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-heding-list {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
}

.grid-product-card-1 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: rgba(0, 0, 0, 0);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 0;
  margin-bottom: 24px;
}

.sila-wrap {
  background-color: var(--green-smoke);
  border-radius: 24px;
  margin-bottom: 24px;
  padding: 40px;
}

.product-card-white {
  background-color: var(--white);
  perspective: 1000px;
  border-radius: 24px;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  display: flex;
}

.product-card-center-white {
  background-color: var(--white);
  text-align: left;
  border-radius: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 24px 24px;
  display: flex;
}

.reference-card {
  background-color: var(--green-smoke);
  border-radius: 24px;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 24px 24px 32px;
  display: flex;
}

.reference-card.next {
  justify-content: center;
}

.grid-5 {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.paragraph-3-center {
  text-align: center;
  margin-bottom: 24px;
  font-family: Sora, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.txt-gradient-popup {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #00cebc, #00cb1e);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

.grid-4-column {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 40px;
}

.parameter-wrap {
  background-image: linear-gradient(20deg, var(--medium-aquamarine), var(--lime-green) 80%);
  color: var(--white);
  border-radius: 32px;
  padding: 40px;
}

.txt-number {
  margin-bottom: 24px;
  font-family: Sora, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-photo-text {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  display: flex;
}

.section-parameter {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.container-margin {
  z-index: 2;
  text-align: left;
  flex-direction: column;
  align-items: stretch;
  width: 90vw;
  max-width: 1600px;
  margin-bottom: 40px;
  display: flex;
  position: static;
}

.content-wrap-galvanization {
  background-color: var(--green-smoke);
  border-radius: 32px;
  margin-bottom: 24px;
  padding: 80px;
}

.icon-img {
  opacity: 1;
  -webkit-text-fill-color: inherit;
  background-color: rgba(0, 0, 0, 0);
  background-clip: border-box;
  width: 300px;
}

.grid-6-copy {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 40px;
}

.about-header {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  position: relative;
  top: auto;
}

.section-contact-us {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 80px;
  display: flex;
}

.reference-card-long {
  background-color: var(--green-smoke);
  border-radius: 24px;
  flex-direction: row;
  justify-content: flex-start;
  min-width: 0;
  padding: 24px;
  display: flex;
}

.image-reference-long {
  border-radius: 24px;
  width: auto;
  max-width: none;
  height: 200px;
  margin-bottom: 0;
  margin-right: 24px;
  display: inline-block;
}

.container-reference {
  z-index: 2;
  text-align: left;
  flex-direction: column;
  align-items: stretch;
  width: 90vw;
  max-width: 1600px;
  margin-bottom: 80px;
  display: flex;
  position: static;
}

.flowbase-close-large-2 {
  background-color: #000;
  border: 4px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: -15px;
  bottom: auto;
  left: auto;
  right: -15px;
}

.flowbase-close-large-2:hover {
  transform: rotate(90deg);
}

.popup-actuality {
  z-index: 200;
  background-color: rgba(0, 0, 0, .8);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  font-family: Sora, sans-serif;
  font-weight: 600;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
}

.button-actuality {
  border-style: solid none solid solid;
  border-width: 1px 0 1px 1px;
  border-color: var(--lime-green);
  background-color: var(--white);
  color: var(--black);
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-clip: border-box;
  border-radius: 200px 0 0 200px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 40px;
  font-family: Sora, sans-serif;
  font-weight: 700;
  transition: background-color .4s;
  display: inline-block;
  position: static;
  top: auto;
  bottom: auto;
  left: 0;
}

.button-actuality:hover {
  background-color: var(--lime-green);
}

.card-actuality {
  z-index: 201;
  background-color: #fff;
  border-radius: 25px;
  width: 40vw;
  min-width: 800px;
  max-width: 800px;
  height: auto;
  max-height: none;
  padding: 80px 90px;
  display: block;
  position: fixed;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.contact-header {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 80px;
  display: flex;
  position: relative;
  top: auto;
}

.actuality-button {
  z-index: 49;
  justify-content: flex-end;
  display: none;
  position: -webkit-sticky;
  position: sticky;
  top: 96px;
  right: 0;
}

.link-contact-3 {
  color: #000;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 8px;
  font-family: Sora, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

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

.button-contact {
  background-color: var(--lime-green);
  background-image: linear-gradient(20deg, var(--medium-aquamarine), var(--lime-green) 80%);
  color: var(--white);
  cursor: pointer;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 8px 24px;
  font-family: Sora, sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .4s;
  display: inline-block;
}

.button-contact:hover {
  background-color: var(--black);
  background-image: none;
}

.button-contact.btn-big {
  background-color: var(--lime-green);
  background-image: linear-gradient(20deg, var(--medium-aquamarine), var(--lime-green) 80%);
  text-align: center;
  padding: 16px 32px;
}

.button-contact.btn-big:hover {
  background-color: var(--black);
  background-image: none;
}

.section-contact-footer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  display: flex;
}

.list-2 {
  margin-bottom: 40px;
  list-style-type: disc;
}

.list-item-2 {
  margin-top: 16px;
  margin-bottom: 8px;
  list-style-type: disc;
}

.columns {
  min-width: auto;
  max-width: 600px;
}

.h3-small {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.grid-all-reference {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.link-block {
  align-items: center;
  display: flex;
}

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

.image-65 {
  width: 24px;
  height: 24px;
}

.h3-product-small {
  font-size: 2rem;
}

.link-block-3 {
  color: var(--lime-green);
  align-items: center;
  padding: 16px;
  text-decoration: none;
  display: flex;
}

.link-block-3:hover {
  text-decoration: underline;
}

.text-block-6 {
  margin-right: 8px;
}

.image-67 {
  width: 12px;
  height: 12px;
}

.image-68 {
  width: auto;
  height: 12px;
  margin-left: 4px;
}

.link-block-4 {
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 200px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.link-block-4:hover {
  text-decoration: underline;
}

.h1small {
  font-size: 3rem;
}

.h2small {
  font-size: 2rem;
}

.h4small, .h5small {
  font-size: 1.3rem;
}

.grid-6 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.list-3 {
  max-width: 800px;
}

.section-table {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  display: flex;
}

.table-row {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  border-style: none none solid;
  border-width: 0 0 1px;
  border-color: black black var(--80);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: grid;
}

.table-row-group.header {
  border: 1px #000;
}

.container-2 {
  width: 90vw;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.header-cell {
  padding-left: 1rem;
  padding-right: 1rem;
}

.header-cell.right {
  background-color: rgba(0, 0, 0, 0);
  padding-left: 1rem;
  padding-right: 1rem;
}

.header-cell.right.green {
  background-color: var(--green-smoke);
  padding-left: 1rem;
  padding-right: 1rem;
}

.table-wrapper {
  border: 0 #d3d3d3;
}

.cell-text {
  text-align: right;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cell-text.strong {
  text-align: left;
  font-weight: 700;
}

.cell-text.strong.center {
  text-align: center;
  flex: 1;
}

.bold-text {
  color: var(--lime-green);
}

.nadpis-aktualne {
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 4.8rem;
  }

  h4 {
    margin-bottom: 24px;
  }

  h5 {
    max-width: 800px;
    margin-bottom: 24px;
  }

  h6 {
    font-size: 1.8rem;
  }

  .container {
    flex-direction: column;
  }

  .paragraph-1 {
    font-size: 1.5rem;
  }

  .paragraph-2 {
    font-size: 1.3rem;
  }

  .button {
    padding-left: 24px;
    padding-right: 24px;
    font-size: .9rem;
  }

  .navigation-left {
    display: none;
  }

  .navigation-container-mob {
    justify-content: space-between;
  }

  .navigation-mob {
    border-bottom: 1px solid rgba(68, 85, 103, .11);
    flex-direction: row;
    justify-content: center;
    padding: 25px 3%;
    display: flex;
  }

  .mobile-nav {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, .9);
    width: 100vw;
    height: 100vh;
    padding-left: 24px;
    padding-right: 24px;
    box-shadow: 42px 42px 55px rgba(32, 53, 90, .09);
  }

  .navigation-full {
    background-color: #fff;
  }

  .navigation {
    display: none;
  }

  .navigation-link {
    justify-content: flex-start;
    padding-left: 24px;
    font-size: 1.4rem;
  }

  .navigation-wrap {
    position: -webkit-sticky;
    position: sticky;
  }

  .menu-mob {
    background-color: var(--black);
    color: #fff;
    border-radius: 10px;
    font-size: 22px;
  }

  .menu-mob.w--open {
    background-color: var(--black);
  }

  .center-wrap {
    align-items: center;
  }

  .img-gallery, .accordion {
    width: 90vw;
  }

  .link-footer {
    align-items: center;
    padding-top: 0;
    display: flex;
  }

  .div-block-7 {
    flex-direction: row;
    align-items: center;
    display: flex;
  }

  .div-block-8 {
    padding-top: 32px;
  }

  .tabs-2 {
    flex-direction: column;
    align-items: center;
  }

  .grid-contact {
    grid-row-gap: 56px;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-contact {
    background-color: rgba(0, 0, 0, 0);
    width: auto;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 24px;
  }

  .div-block-46 {
    align-items: flex-end;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
  }

  .text-block-3 {
    color: var(--black);
    margin-right: 16px;
    font-size: 1rem;
    font-weight: 600;
  }

  .menu-link {
    padding-top: 0;
    padding-right: 8px;
    font-size: 1.4rem;
  }

  .mobile-link {
    opacity: 1;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    justify-content: flex-start;
    padding-left: 24px;
    font-size: 1.4rem;
  }

  .grid-product-card {
    justify-items: center;
  }

  .product-text-wrap-left {
    max-width: 80%;
  }

  .product-card-center {
    padding: 32px 16px;
  }

  .div-block-48 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .image-move {
    max-width: 50%;
    max-height: 500px;
    margin-bottom: 0;
  }

  .section-product {
    margin-top: 80px;
    padding-top: 0;
  }

  .grid-product-card-4-col {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .text-reveal-scroll {
    width: 90vw;
  }

  .track {
    height: auto;
  }

  .camera {
    width: auto;
    height: auto;
    overflow: visible;
  }

  .frame {
    flex-direction: column;
  }

  .item {
    height: 50vh;
    padding: 16px;
  }

  .logo-grid {
    grid-column-gap: 8px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .button-navbar {
    flex-direction: row;
    margin-left: 0;
    display: block;
  }

  .section-popup {
    display: none;
  }

  .flowbase-card {
    width: 90vw;
    min-width: 0;
    height: auto;
    padding: 40px;
    display: block;
  }

  .grid-rezervace {
    grid-row-gap: 56px;
    grid-template-columns: 1fr 1fr;
  }

  .image-64 {
    right: auto;
  }

  .grid-product-card-5-col {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .headline {
    font-size: 6rem;
  }

  .headline.txt-gradient {
    font-size: 3rem;
  }

  .grid-3 {
    grid-column-gap: 24px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-column-gap: 24px;
    grid-template-columns: 1fr;
  }

  .grid-text {
    grid-column-gap: 24px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-heding-list {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .brand-2, .brand-2.w--current {
    max-width: 200px;
  }

  .sila-wrap {
    padding: 24px;
  }

  .product-card-white {
    flex-direction: row;
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-card-center-white {
    padding-left: 16px;
    padding-right: 16px;
  }

  .reference-card {
    padding: 24px;
  }

  .grid-5 {
    grid-column-gap: 24px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: stretch;
    display: grid;
  }

  .paragraph-3-center {
    margin-bottom: 24px;
  }

  .grid-4-column {
    grid-template-columns: 1fr 1fr;
  }

  .parameter-wrap {
    padding: 24px;
  }

  .container-margin {
    flex-direction: column;
  }

  .grid-6-copy {
    grid-template-columns: 1fr 1fr;
  }

  .section-contact-us {
    margin-top: 40px;
    margin-bottom: 80px;
  }

  .reference-card-long {
    padding: 24px;
  }

  .container-reference {
    flex-direction: column;
  }

  .button-actuality {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .card-actuality {
    width: 90vw;
    min-width: 0;
    height: auto;
    padding: 40px;
    display: block;
  }

  .button-contact {
    padding-left: 24px;
    padding-right: 24px;
    font-size: .9rem;
  }

  .grid-all-reference {
    grid-column-gap: 24px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: stretch;
    display: grid;
  }

  .link-block-2 {
    align-items: center;
    display: flex;
  }

  .header-cell, .header-cell.right, .header-cell.right.green {
    padding-left: .4rem;
    padding-right: .4rem;
  }

  .cell-text, .bold-text {
    font-size: .8rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2.2rem;
  }

  h4 {
    font-size: 2rem;
  }

  h5 {
    font-size: 1.8rem;
  }

  h6 {
    font-size: 1.6rem;
  }

  .paragraph-1 {
    font-size: 1.2rem;
  }

  .paragraph-2 {
    font-size: 1.1rem;
  }

  .paragraph-4-footer, .button, .button-outline {
    font-size: .9rem;
  }

  .section-header {
    height: auto;
  }

  .navigation-mob {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .menu-mob {
    padding: 11px;
  }

  .section-gallery {
    padding-top: 40px;
  }

  .wrap-gallery {
    margin-bottom: 40px;
  }

  .recenze-wrap, .contact-wrap {
    width: auto;
  }

  .link-footer {
    padding-top: 0;
    font-size: .8rem;
  }

  .contact-down {
    text-align: left;
    margin-top: 40px;
  }

  .section-contact {
    padding-top: 80px;
  }

  .div-block-8 {
    padding-top: 8px;
  }

  .link-contact {
    padding-bottom: 8px;
  }

  .tabs-2 {
    flex-direction: column;
    align-items: center;
    width: 90vw;
  }

  .div-block-40 {
    width: 90vw;
  }

  .grid-contact {
    grid-column-gap: 32px;
    grid-template-columns: 1fr;
    justify-items: start;
    margin-top: 40px;
  }

  .utility-page-content {
    width: 90vw;
  }

  .button-404 {
    margin-top: 40px;
    font-size: .9rem;
  }

  .wrap-cookie {
    width: 90vw;
  }

  .mobile-contact {
    width: auto;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 0;
  }

  .div-block-46 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .text-block-3 {
    font-size: .8rem;
  }

  .menu-link {
    font-size: 1rem;
  }

  .mobile-link {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 1rem;
  }

  .heading {
    margin-bottom: 16px;
  }

  .grid-product-card {
    grid-template-columns: 1fr;
  }

  .image-move {
    max-height: 300px;
    margin-bottom: 24px;
  }

  .section-product {
    margin-top: 80px;
  }

  .link-product-card, .link-product-card-white {
    font-size: .8rem;
  }

  .logo-grid {
    grid-column-gap: 0px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-logo {
    padding-top: 80px;
  }

  .button-navbar {
    font-size: .9rem;
  }

  .section-popup {
    display: none;
  }

  .grid-rezervace {
    grid-column-gap: 32px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .rezervace-wrap {
    width: auto;
  }

  .paragraph-rezervace {
    margin-bottom: 8px;
  }

  .image-64 {
    top: auto;
    right: auto;
  }

  .button-outline-header {
    font-size: .9rem;
  }

  .headline {
    font-size: 5rem;
  }

  .headline.txt-gradient {
    font-size: 2rem;
  }

  .product-header {
    height: auto;
  }

  .section-reference {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .txt-advantage-big {
    font-size: 3.6rem;
  }

  .product-card-white {
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
  }

  .grid-5 {
    grid-template-columns: 1fr;
  }

  .paragraph-3-center {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .grid-4-column {
    grid-template-columns: 1fr;
  }

  .container-margin {
    margin-bottom: 0;
  }

  .content-wrap-galvanization {
    padding: 40px;
  }

  .grid-6-copy {
    grid-template-columns: 1fr;
  }

  .about-header {
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .section-contact-us {
    margin-bottom: 40px;
  }

  .reference-card-long {
    flex-direction: column;
  }

  .image-reference-long {
    object-fit: cover;
    margin-bottom: 24px;
    margin-right: 0;
  }

  .button-actuality {
    font-size: .9rem;
  }

  .contact-header {
    height: auto;
  }

  .actuality-button {
    top: 72px;
  }

  .link-contact-3 {
    padding-bottom: 0;
  }

  .button-contact {
    font-size: .9rem;
  }

  .grid-all-reference {
    grid-template-columns: 1fr;
  }

  .link-block {
    align-items: center;
  }

  .image-65 {
    width: 16px;
    height: 16px;
  }

  .h3-product-small {
    margin-bottom: 16px;
  }

  .container-2 {
    width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }

  .cell-text, .cell-text.strong {
    font-size: .7rem;
  }

  .bold-text {
    font-size: .6rem;
  }

  .nadpis-aktualne {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2.2rem;
  }

  h4 {
    font-size: 2rem;
  }

  h5 {
    font-size: 1.8rem;
  }

  h6 {
    font-size: 1.6rem;
  }

  .container {
    align-items: stretch;
  }

  .paragraph-1 {
    font-size: 1.2rem;
  }

  .paragraph-3 {
    margin-bottom: 32px;
  }

  .paragraph-3._16down {
    margin-bottom: 0;
  }

  .paragraph-2 {
    font-size: 1.1rem;
  }

  .paragraph-4-footer {
    font-size: .8rem;
  }

  .paragraph-5 {
    font-size: .7rem;
  }

  .section-header {
    align-items: center;
  }

  .txt-gradient {
    margin-bottom: 24px;
  }

  .navigation-wrap {
    position: -webkit-sticky;
    position: sticky;
  }

  .section-gallery {
    margin-top: 0;
    padding-top: 0;
  }

  .wrap-gallery {
    margin-bottom: 0;
  }

  .img-gallery {
    height: 30vh;
  }

  .recenze-wrap, .contact-wrap {
    width: auto;
  }

  .link-footer {
    margin-bottom: 8px;
    padding-top: 0;
  }

  .contact-down {
    align-items: flex-start;
  }

  .div-block-7 {
    flex-direction: column;
    margin-top: 16px;
  }

  .section-contact {
    padding-top: 40px;
  }

  .link-contact {
    font-size: 1.1rem;
  }

  .grid-contact {
    grid-template-columns: 1fr;
    justify-items: start;
    margin-top: 32px;
  }

  .mobile-contact {
    width: auto;
    padding-left: 0;
  }

  .menu-link {
    font-size: .8rem;
  }

  .heading {
    margin-bottom: 16px;
    font-size: 1.4rem;
  }

  .grid-product-card {
    grid-template-columns: 1fr;
  }

  .product-text-wrap-left {
    text-align: center;
  }

  .product-card-center {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .txt-category {
    font-size: .8rem;
  }

  .section-product {
    margin-top: 40px;
    padding-bottom: 0;
  }

  .grid-product-card-4-col {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .container-center {
    align-items: flex-start;
  }

  .logo-grid {
    grid-column-gap: 0px;
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .body {
    flex-direction: column;
    justify-content: flex-start;
    display: block;
  }

  .section-logo {
    padding-top: 80px;
  }

  .button-navbar {
    padding: 4px 8px;
    font-size: .7rem;
  }

  .section-popup {
    display: none;
  }

  .flowbase-card {
    padding: 24px 16px;
    display: block;
  }

  .grid-rezervace {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
    justify-items: start;
    margin-top: 24px;
  }

  .rezervace-wrap {
    width: auto;
  }

  .image-64 {
    height: 40%;
  }

  .grid-product-card-5-col {
    grid-template-columns: 1fr;
  }

  .text-span-2, .text-span-3, .text-span-4 {
    font-size: 2.5rem;
  }

  .button-outline-header {
    font-size: .7rem;
  }

  .headline {
    font-size: 3.6rem;
  }

  .headline.txt-gradient {
    font-size: 2rem;
  }

  .product-header {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .txt-advantage {
    font-size: 2rem;
  }

  .advantage-card {
    padding: 24px;
  }

  .section-reference {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .txt-advantage-big {
    font-size: 2rem;
  }

  .section-heding-list {
    margin-bottom: 40px;
  }

  .brand-2 {
    max-width: 100px;
  }

  .brand-2.w--current {
    max-width: 50%;
  }

  .grid-product-card-1 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    margin-bottom: 8px;
  }

  .sila-wrap {
    padding: 8px;
  }

  .product-card-white {
    padding: 24px 0;
  }

  .product-card-center-white {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .paragraph-3-center {
    margin-bottom: 16px;
    font-size: 1rem;
  }

  .txt-gradient-popup {
    margin-bottom: 0;
  }

  .txt-number {
    font-size: 1.8rem;
  }

  .section-photo-text {
    margin-bottom: 40px;
  }

  .container-margin {
    align-items: stretch;
  }

  .content-wrap-galvanization {
    padding-bottom: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .icon-img {
    width: 200px;
  }

  .about-header {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .section-contact-us {
    margin-top: 0;
  }

  .container-reference {
    align-items: stretch;
  }

  .card-actuality {
    padding-left: 16px;
    padding-right: 16px;
  }

  .link-contact-3 {
    font-size: 1.1rem;
  }

  .h3-product-small {
    font-size: 1.6rem;
  }

  .heading-2 {
    font-size: 2.4rem;
  }

  .section-table {
    margin-bottom: 40px;
  }

  .table-row {
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .table-row-group.header {
    display: block;
  }

  .container-2 {
    min-width: auto;
    height: auto;
    min-height: auto;
  }

  .header-cell {
    padding-left: .1rem;
    padding-right: .1rem;
  }

  .table-wrapper {
    min-height: auto;
    overflow: visible;
  }

  .cell-text {
    font-size: .45rem;
  }

  .cell-text.strong {
    margin-top: .4rem;
    margin-bottom: .4rem;
    font-size: .5rem;
  }

  .cell-text.strong.center {
    margin-top: .4rem;
    margin-bottom: .4rem;
  }

  .bold-text {
    font-size: .45rem;
  }
}

#w-node-_41241432-e20a-8ba0-baa1-6541609f7ebf-2c530ff7, #w-node-_41241432-e20a-8ba0-baa1-6541609f7ec0-2c530ff7, #w-node-_41241432-e20a-8ba0-baa1-6541609f7ec1-2c530ff7, #w-node-_41241432-e20a-8ba0-baa1-6541609f7ec2-2c530ff7, #w-node-_41241432-e20a-8ba0-baa1-6541609f7ec3-2c530ff7, #w-node-_41241432-e20a-8ba0-baa1-6541609f7ec4-2c530ff7, #w-node-_92f131c3-4bc0-b46c-d89f-e38dd104cf7a-2c530ff7, #w-node-_92f131c3-4bc0-b46c-d89f-e38dd104cf7b-2c530ff7, #w-node-_92f131c3-4bc0-b46c-d89f-e38dd104cf7c-2c530ff7, #w-node-_92f131c3-4bc0-b46c-d89f-e38dd104cf7d-2c530ff7, #w-node-_92f131c3-4bc0-b46c-d89f-e38dd104cf7e-2c530ff7, #w-node-_92f131c3-4bc0-b46c-d89f-e38dd104cf7f-2c530ff7, #w-node-_12143012-49b2-930c-b379-238e38a93659-38a93658 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_12143012-49b2-930c-b379-238e38a9365b-38a93658 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_12143012-49b2-930c-b379-238e38a9365d-38a93658, #w-node-_12143012-49b2-930c-b379-238e38a93666-38a93658, #w-node-_12143012-49b2-930c-b379-238e38a93670-38a93658, #w-node-_12143012-49b2-930c-b379-238e38a9367a-38a93658, #w-node-_12143012-49b2-930c-b379-238e38a93684-38a93658, #w-node-_12143012-49b2-930c-b379-238e38a9368f-38a93658, #w-node-_12143012-49b2-930c-b379-238e38a93697-38a93658, #w-node-_12143012-49b2-930c-b379-238e38a9369f-38a93658, #w-node-_12143012-49b2-930c-b379-238e38a936a8-38a93658, #w-node-_12143012-49b2-930c-b379-238e38a936b2-38a93658, #w-node-_12143012-49b2-930c-b379-238e38a936bc-38a93658, #w-node-_12143012-49b2-930c-b379-238e38a936d2-38a93658, #w-node-_7509bed7-9ae7-94a8-704c-90d69d2341c9-9d2341c4, #w-node-_7509bed7-9ae7-94a8-704c-90d69d2341d3-9d2341c4, #w-node-_7509bed7-9ae7-94a8-704c-90d69d2341db-9d2341c4, #w-node-_7509bed7-9ae7-94a8-704c-90d69d2341e3-9d2341c4, #w-node-_0a4a17df-ba9a-efae-6492-fa4c0730c7b1-aa531002, #w-node-_61610bab-259d-f371-d944-98e5be7cf623-aa531002, #w-node-_03e570fa-b6bb-caca-2546-5ed8ce38aa6f-aa531002, #w-node-dd14befc-67cf-3907-8aa2-843f1beebd1b-aa531002, #w-node-cf66ccda-2df4-5510-baf7-8ab2b0c0cabe-aa531002, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5d7-aa531002, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5da-aa531002, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5dd-aa531002, #w-node-_142d1607-cda7-fbdb-f61a-69534b4d14e0-aa531002, #w-node-_8c76392f-94de-5237-1bfc-a10782424b3d-aa531002, #w-node-bb9a2104-5690-ab41-0abe-4859457d0b2d-aa531002, #w-node-e60c0e80-a105-d329-7542-2d667c56e064-aa531002, #w-node-e60c0e80-a105-d329-7542-2d667c56e06e-aa531002, #w-node-e60c0e80-a105-d329-7542-2d667c56e078-aa531002, #w-node-e60c0e80-a105-d329-7542-2d667c56e082-aa531002, #w-node-_3429c8a7-6537-546d-316d-a38ab0479ed9-aa531002, #w-node-_5a3b840b-c6c3-ed94-d141-d026afc08806-afc08801, #w-node-bb9a2104-5690-ab41-0abe-4859457d0b2d-12531004, #w-node-_61610bab-259d-f371-d944-98e5be7cf623-12531004, #w-node-dd14befc-67cf-3907-8aa2-843f1beebd1b-12531004, #w-node-_03e570fa-b6bb-caca-2546-5ed8ce38aa6f-12531004, #w-node-b4bb5d6f-3a21-60fd-b7af-586bac928a94-12531004, #w-node-ddbe56e3-0154-33d6-31ee-8589a4badc0b-12531004, #w-node-e56232fa-f983-0db2-8a22-c1c81479c419-e553100a, #w-node-_1e181f26-ba30-e8d6-cb18-3545e92347fd-e553100a, #w-node-_8c30c633-de49-69e8-079c-7c6005e484b1-e553100a, #w-node-_0fcbae83-2293-96c5-5323-34b264fe4343-e553100a, #w-node-_2a01b715-e0a0-83fe-745f-ceda8ee8ef02-e553100a, #w-node-_91cbfc4b-6f17-cd06-8ced-b4ee2df9d0b1-e553100a, #w-node-c420d50f-83ae-b0e9-76d8-1fc9a042ec30-e553100a, #w-node-cf457fa0-8901-7ebf-924a-74fc58bf3d17-e553100a, #w-node-_7320697d-5218-6fe2-5e08-6fbf4759d80b-e553100a, #w-node-_7b0ab03d-2724-f0ed-769b-dfca5babfc1c-e553100a, #w-node-_3c2fa882-453c-9236-b3f9-867b38c3b96c-e553100a, #w-node-bb0b17c0-c24e-38ae-37a8-bcd90940ea7a-e553100a, #w-node-_1b115d95-2105-3896-dff7-a928f6b6835e-e553100a, #w-node-_32f92394-679d-501e-bf1b-a1978ce4a240-e553100a, #w-node-_7f09a21a-d2ea-6f5c-b39a-f8af65367782-e553100a, #w-node-_92416f9d-8c9e-69b0-347b-ae125ae92299-e553100a, #w-node-_1783a545-d97a-fb94-92dc-56b2c05eccbf-e553100a, #w-node-_31f08af7-84b6-13db-b1eb-1e99830b1e2b-e553100a, #w-node-d3684723-c381-9453-2891-8f50e7277167-e553100a, #w-node-_5a7db1cb-4e7d-39ae-0785-cf759f673568-e553100a, #w-node-_86be19af-5b53-de34-1cfb-f6dc44a27b71-e553100a, #w-node-_0edc8cc3-c2d9-3995-659e-9cc0cc473e45-e553100a, #w-node-_7ef79be1-3254-4b54-914d-535a71cd197e-e553100a, #w-node-_39f02306-6e89-4bcd-41d2-f3771641b071-e553100a, #w-node-_2df08ebb-33e1-8d98-0e68-6e6344165916-e553100a, #w-node-_3b4ca01a-9358-7e9c-e774-a812d0215551-e553100a, #w-node-_0df9b258-82ae-9cfe-19e8-54672c88f188-e553100a, #w-node-_98a5687c-a3fd-24b2-8517-45d927eaeef0-e553100a, #w-node-_4e2e3b8b-cb02-33ab-82eb-86b8da694a78-e553100a, #w-node-e785f84e-c54d-f029-4090-4102988e1bfc-e553100a, #w-node-e984c105-8d15-7014-4c23-2de84c05e379-e553100a, #w-node-a03547b1-4998-2ff4-1692-b9bb72ebddd4-e553100a, #w-node-_63f040d5-cf29-4627-a664-c2a6b1a2c765-e553100a, #w-node-_63f040d5-cf29-4627-a664-c2a6b1a2c779-e553100a, #w-node-a4ad2710-f11f-c641-8c4f-e472f752d004-e553100a, #w-node-a4ad2710-f11f-c641-8c4f-e472f752d00c-e553100a, #w-node-_8655216b-d66c-3652-4f97-3f137aa7c3a0-e553100a, #w-node-f511fec2-db1f-a434-ebe6-e890180fe266-e553100a, #w-node-_15a3b938-da5f-8bcf-ab46-10ef38c87511-e553100a, #w-node-a2059aa4-85c6-9e5f-9ed0-77ee91097b9e-e553100a, #w-node-_870d4161-a16b-3285-1955-134449ee3573-e553100a, #w-node-_870d4161-a16b-3285-1955-134449ee3585-e553100a, #w-node-_0a4a17df-ba9a-efae-6492-fa4c0730c7b1-e600b5ea, #w-node-_61610bab-259d-f371-d944-98e5be7cf623-e600b5ea, #w-node-_03e570fa-b6bb-caca-2546-5ed8ce38aa6f-e600b5ea, #w-node-cf66ccda-2df4-5510-baf7-8ab2b0c0cabe-e600b5ea, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5d7-e600b5ea, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5da-e600b5ea, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5dd-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7300fa6a-0651-a669-3068-15d201f70001-e600b5ea, #w-node-_7300fa6a-0651-a669-3068-15d201f70004-e600b5ea, #w-node-_95557baf-eb88-b9bc-567d-f227a6083bc5-e600b5ea, #w-node-b5b15849-4dd1-80ab-4051-5a4a7750f70b-e600b5ea, #w-node-c981fbc8-059e-e8c8-be51-1d74c637cc39-e600b5ea, #w-node-bc3ede39-2315-79fd-64c6-9392bceae756-e600b5ea, #w-node-_3c8a635f-3cb8-1b7e-5386-d0afff249a7f-e600b5ea, #w-node-_24bb91bb-5993-fe9c-5573-2e6a149a06f7-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b031-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b034-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b037-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b03a-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b03d-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b040-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b043-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b046-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_24d6c9a1-bef2-183c-9302-e32038c47c9a-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_24d6c9a1-bef2-183c-9302-e32038c47c9f-e600b5ea, #w-node-_24d6c9a1-bef2-183c-9302-e32038c47ca3-e600b5ea, #w-node-_24d6c9a1-bef2-183c-9302-e32038c47ca6-e600b5ea, #w-node-_24d6c9a1-bef2-183c-9302-e32038c47ca9-e600b5ea, #w-node-_24d6c9a1-bef2-183c-9302-e32038c47cac-e600b5ea, #w-node-_24d6c9a1-bef2-183c-9302-e32038c47caf-e600b5ea, #w-node-_24d6c9a1-bef2-183c-9302-e32038c47cb2-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_89db8798-848d-122d-e90c-a869fc9c92f9-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_89db8798-848d-122d-e90c-a869fc9c92fe-e600b5ea, #w-node-_89db8798-848d-122d-e90c-a869fc9c9302-e600b5ea, #w-node-_89db8798-848d-122d-e90c-a869fc9c9305-e600b5ea, #w-node-_89db8798-848d-122d-e90c-a869fc9c9308-e600b5ea, #w-node-_89db8798-848d-122d-e90c-a869fc9c930b-e600b5ea, #w-node-_89db8798-848d-122d-e90c-a869fc9c930e-e600b5ea, #w-node-_89db8798-848d-122d-e90c-a869fc9c9311-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_0456f4c1-21cf-a402-ac68-0373cd7eeae0-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0456f4c1-21cf-a402-ac68-0373cd7eeae5-e600b5ea, #w-node-_0456f4c1-21cf-a402-ac68-0373cd7eeae9-e600b5ea, #w-node-_0456f4c1-21cf-a402-ac68-0373cd7eeaec-e600b5ea, #w-node-_0456f4c1-21cf-a402-ac68-0373cd7eeaef-e600b5ea, #w-node-_0456f4c1-21cf-a402-ac68-0373cd7eeaf2-e600b5ea, #w-node-_0456f4c1-21cf-a402-ac68-0373cd7eeaf5-e600b5ea, #w-node-_0456f4c1-21cf-a402-ac68-0373cd7eeaf8-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_60da3597-bd2f-6710-4919-514011937a78-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_60da3597-bd2f-6710-4919-514011937a7d-e600b5ea, #w-node-_60da3597-bd2f-6710-4919-514011937a81-e600b5ea, #w-node-_60da3597-bd2f-6710-4919-514011937a84-e600b5ea, #w-node-_60da3597-bd2f-6710-4919-514011937a87-e600b5ea, #w-node-_60da3597-bd2f-6710-4919-514011937a8a-e600b5ea, #w-node-_60da3597-bd2f-6710-4919-514011937a8d-e600b5ea, #w-node-_60da3597-bd2f-6710-4919-514011937a90-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_70254cde-ed20-1e90-6c03-8df814fd90b7-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70254cde-ed20-1e90-6c03-8df814fd90bc-e600b5ea, #w-node-_70254cde-ed20-1e90-6c03-8df814fd90c0-e600b5ea, #w-node-_70254cde-ed20-1e90-6c03-8df814fd90c3-e600b5ea, #w-node-_70254cde-ed20-1e90-6c03-8df814fd90c6-e600b5ea, #w-node-_70254cde-ed20-1e90-6c03-8df814fd90c9-e600b5ea, #w-node-_70254cde-ed20-1e90-6c03-8df814fd90cc-e600b5ea, #w-node-_70254cde-ed20-1e90-6c03-8df814fd90cf-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-fd17c761-f962-723f-7f08-d3eb02617441-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fd17c761-f962-723f-7f08-d3eb02617446-e600b5ea, #w-node-fd17c761-f962-723f-7f08-d3eb0261744a-e600b5ea, #w-node-fd17c761-f962-723f-7f08-d3eb0261744d-e600b5ea, #w-node-fd17c761-f962-723f-7f08-d3eb02617450-e600b5ea, #w-node-fd17c761-f962-723f-7f08-d3eb02617453-e600b5ea, #w-node-fd17c761-f962-723f-7f08-d3eb02617456-e600b5ea, #w-node-fd17c761-f962-723f-7f08-d3eb02617459-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-fb533d37-2822-9574-9b70-c05c2413d8f1-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fb533d37-2822-9574-9b70-c05c2413d8f6-e600b5ea, #w-node-fb533d37-2822-9574-9b70-c05c2413d8fa-e600b5ea, #w-node-fb533d37-2822-9574-9b70-c05c2413d8fd-e600b5ea, #w-node-fb533d37-2822-9574-9b70-c05c2413d900-e600b5ea, #w-node-fb533d37-2822-9574-9b70-c05c2413d903-e600b5ea, #w-node-fb533d37-2822-9574-9b70-c05c2413d906-e600b5ea, #w-node-fb533d37-2822-9574-9b70-c05c2413d909-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_46e09b28-074d-d42e-d55e-10ac9ab853da-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46e09b28-074d-d42e-d55e-10ac9ab853df-e600b5ea, #w-node-_46e09b28-074d-d42e-d55e-10ac9ab853e3-e600b5ea, #w-node-_46e09b28-074d-d42e-d55e-10ac9ab853e6-e600b5ea, #w-node-_46e09b28-074d-d42e-d55e-10ac9ab853e9-e600b5ea, #w-node-_46e09b28-074d-d42e-d55e-10ac9ab853ec-e600b5ea, #w-node-_46e09b28-074d-d42e-d55e-10ac9ab853ef-e600b5ea, #w-node-_46e09b28-074d-d42e-d55e-10ac9ab853f2-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4efa4417-66eb-d726-c040-79daf17fa491-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4efa4417-66eb-d726-c040-79daf17fa496-e600b5ea, #w-node-_4efa4417-66eb-d726-c040-79daf17fa49a-e600b5ea, #w-node-_4efa4417-66eb-d726-c040-79daf17fa49d-e600b5ea, #w-node-_4efa4417-66eb-d726-c040-79daf17fa4a0-e600b5ea, #w-node-_4efa4417-66eb-d726-c040-79daf17fa4a3-e600b5ea, #w-node-_4efa4417-66eb-d726-c040-79daf17fa4a6-e600b5ea, #w-node-_4efa4417-66eb-d726-c040-79daf17fa4a9-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_22bf1f12-a372-f6f8-e1fa-9709b6fd04ec-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_22bf1f12-a372-f6f8-e1fa-9709b6fd04f1-e600b5ea, #w-node-_22bf1f12-a372-f6f8-e1fa-9709b6fd04f5-e600b5ea, #w-node-_22bf1f12-a372-f6f8-e1fa-9709b6fd04f8-e600b5ea, #w-node-_22bf1f12-a372-f6f8-e1fa-9709b6fd04fb-e600b5ea, #w-node-_22bf1f12-a372-f6f8-e1fa-9709b6fd04fe-e600b5ea, #w-node-_22bf1f12-a372-f6f8-e1fa-9709b6fd0501-e600b5ea, #w-node-_22bf1f12-a372-f6f8-e1fa-9709b6fd0504-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-c901010f-116d-a395-2ca1-4e1bc290fd48-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c901010f-116d-a395-2ca1-4e1bc290fd4d-e600b5ea, #w-node-c901010f-116d-a395-2ca1-4e1bc290fd51-e600b5ea, #w-node-c901010f-116d-a395-2ca1-4e1bc290fd54-e600b5ea, #w-node-c901010f-116d-a395-2ca1-4e1bc290fd57-e600b5ea, #w-node-c901010f-116d-a395-2ca1-4e1bc290fd5a-e600b5ea, #w-node-c901010f-116d-a395-2ca1-4e1bc290fd5d-e600b5ea, #w-node-c901010f-116d-a395-2ca1-4e1bc290fd60-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_226249f0-e3bb-e477-1a64-f037ec38b5e5-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_226249f0-e3bb-e477-1a64-f037ec38b5ea-e600b5ea, #w-node-_226249f0-e3bb-e477-1a64-f037ec38b5ee-e600b5ea, #w-node-_226249f0-e3bb-e477-1a64-f037ec38b5f1-e600b5ea, #w-node-_226249f0-e3bb-e477-1a64-f037ec38b5f4-e600b5ea, #w-node-_226249f0-e3bb-e477-1a64-f037ec38b5f7-e600b5ea, #w-node-_226249f0-e3bb-e477-1a64-f037ec38b5fa-e600b5ea, #w-node-_226249f0-e3bb-e477-1a64-f037ec38b5fd-e600b5ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_142d1607-cda7-fbdb-f61a-69534b4d14e0-e600b5ea, #w-node-_8c76392f-94de-5237-1bfc-a10782424b3d-e600b5ea, #w-node-bb9a2104-5690-ab41-0abe-4859457d0b2d-e600b5ea, #w-node-_82bf84a2-924e-9ed6-b747-9554c0c700ca-e600b5ea, #w-node-_82bf84a2-924e-9ed6-b747-9554c0c700d4-e600b5ea, #w-node-_82bf84a2-924e-9ed6-b747-9554c0c700de-e600b5ea, #w-node-_82bf84a2-924e-9ed6-b747-9554c0c700e8-e600b5ea, #w-node-_3429c8a7-6537-546d-316d-a38ab0479ed9-e600b5ea, #w-node-_0a4a17df-ba9a-efae-6492-fa4c0730c7b1-20ce4186, #w-node-_61610bab-259d-f371-d944-98e5be7cf623-20ce4186, #w-node-_03e570fa-b6bb-caca-2546-5ed8ce38aa6f-20ce4186, #w-node-dd14befc-67cf-3907-8aa2-843f1beebd1b-20ce4186, #w-node-cf66ccda-2df4-5510-baf7-8ab2b0c0cabe-20ce4186, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5d7-20ce4186, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5da-20ce4186, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5dd-20ce4186, #w-node-_142d1607-cda7-fbdb-f61a-69534b4d14e0-20ce4186, #w-node-_8c76392f-94de-5237-1bfc-a10782424b3d-20ce4186, #w-node-bb9a2104-5690-ab41-0abe-4859457d0b2d-20ce4186, #w-node-_5317ea21-fc15-2e9f-ed0b-f37ba8b78629-20ce4186, #w-node-_5317ea21-fc15-2e9f-ed0b-f37ba8b78633-20ce4186, #w-node-_5317ea21-fc15-2e9f-ed0b-f37ba8b7863d-20ce4186, #w-node-_5317ea21-fc15-2e9f-ed0b-f37ba8b78647-20ce4186, #w-node-_3429c8a7-6537-546d-316d-a38ab0479ed9-20ce4186, #w-node-_0a4a17df-ba9a-efae-6492-fa4c0730c7b1-b51f8687, #w-node-_61610bab-259d-f371-d944-98e5be7cf623-b51f8687, #w-node-_03e570fa-b6bb-caca-2546-5ed8ce38aa6f-b51f8687, #w-node-dd14befc-67cf-3907-8aa2-843f1beebd1b-b51f8687, #w-node-cf66ccda-2df4-5510-baf7-8ab2b0c0cabe-b51f8687, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5d7-b51f8687, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5da-b51f8687, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5dd-b51f8687, #w-node-_142d1607-cda7-fbdb-f61a-69534b4d14e0-b51f8687, #w-node-_8c76392f-94de-5237-1bfc-a10782424b3d-b51f8687, #w-node-bb9a2104-5690-ab41-0abe-4859457d0b2d-b51f8687, #w-node-e60c0e80-a105-d329-7542-2d667c56e064-b51f8687, #w-node-e60c0e80-a105-d329-7542-2d667c56e06e-b51f8687, #w-node-e60c0e80-a105-d329-7542-2d667c56e078-b51f8687, #w-node-e60c0e80-a105-d329-7542-2d667c56e082-b51f8687, #w-node-_3429c8a7-6537-546d-316d-a38ab0479ed9-b51f8687, #w-node-_0a4a17df-ba9a-efae-6492-fa4c0730c7b1-96eeb661, #w-node-_61610bab-259d-f371-d944-98e5be7cf623-96eeb661, #w-node-_03e570fa-b6bb-caca-2546-5ed8ce38aa6f-96eeb661, #w-node-_74dbaf0c-a331-b93d-efd9-d30b6f358f3c-52f57d91, #w-node-_04ad399c-798f-b10d-84b7-4719312196f7-52f57d91, #w-node-_0a4a17df-ba9a-efae-6492-fa4c0730c7b1-927fd65e, #w-node-_61610bab-259d-f371-d944-98e5be7cf623-927fd65e, #w-node-_03e570fa-b6bb-caca-2546-5ed8ce38aa6f-927fd65e, #w-node-dd14befc-67cf-3907-8aa2-843f1beebd1b-927fd65e, #w-node-cf66ccda-2df4-5510-baf7-8ab2b0c0cabe-927fd65e, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5d7-927fd65e, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5da-927fd65e, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5dd-927fd65e, #w-node-_142d1607-cda7-fbdb-f61a-69534b4d14e0-927fd65e, #w-node-_8c76392f-94de-5237-1bfc-a10782424b3d-927fd65e, #w-node-bb9a2104-5690-ab41-0abe-4859457d0b2d-927fd65e, #w-node-_787292e8-b594-d41b-5e11-a107b223d083-927fd65e, #w-node-_787292e8-b594-d41b-5e11-a107b223d08d-927fd65e, #w-node-_787292e8-b594-d41b-5e11-a107b223d097-927fd65e, #w-node-_787292e8-b594-d41b-5e11-a107b223d0a1-927fd65e, #w-node-_3429c8a7-6537-546d-316d-a38ab0479ed9-927fd65e, #w-node-_142d1607-cda7-fbdb-f61a-69534b4d14e0-41a20658, #w-node-_8c76392f-94de-5237-1bfc-a10782424b3d-41a20658, #w-node-bb9a2104-5690-ab41-0abe-4859457d0b2d-41a20658, #w-node-_0a4a17df-ba9a-efae-6492-fa4c0730c7b1-10a206b9, #w-node-_61610bab-259d-f371-d944-98e5be7cf623-10a206b9, #w-node-_03e570fa-b6bb-caca-2546-5ed8ce38aa6f-10a206b9, #w-node-dd14befc-67cf-3907-8aa2-843f1beebd1b-10a206b9, #w-node-cf66ccda-2df4-5510-baf7-8ab2b0c0cabe-10a206b9, #w-node-_1a99e974-b5fc-e8b7-147f-b0004e93fabf-10a206b9, #w-node-_142d1607-cda7-fbdb-f61a-69534b4d14e0-10a206b9, #w-node-_8c76392f-94de-5237-1bfc-a10782424b3d-10a206b9, #w-node-bb9a2104-5690-ab41-0abe-4859457d0b2d-10a206b9, #w-node-_0a4a17df-ba9a-efae-6492-fa4c0730c7b1-60095735, #w-node-_61610bab-259d-f371-d944-98e5be7cf623-60095735, #w-node-_03e570fa-b6bb-caca-2546-5ed8ce38aa6f-60095735, #w-node-dd14befc-67cf-3907-8aa2-843f1beebd1b-60095735, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5d7-60095735, #w-node-_8be9cdb4-3a87-aa47-ffe8-52ba3209e5da-60095735, #w-node-b3d7ec8f-d59e-0736-26d9-dbf4f370cd85-60095735, #w-node-c7008494-0d0b-d5af-8e47-07d257bd1dfb-60095735 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b034-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b037-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b03a-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b03d-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b040-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b043-e600b5ea, #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b046-e600b5ea, #w-node-_24d6c9a1-bef2-183c-9302-e32038c47cac-e600b5ea, #w-node-_24d6c9a1-bef2-183c-9302-e32038c47caf-e600b5ea, #w-node-_24d6c9a1-bef2-183c-9302-e32038c47cb2-e600b5ea, #w-node-_89db8798-848d-122d-e90c-a869fc9c92fe-e600b5ea, #w-node-_0456f4c1-21cf-a402-ac68-0373cd7eeae5-e600b5ea, #w-node-_60da3597-bd2f-6710-4919-514011937a7d-e600b5ea, #w-node-_70254cde-ed20-1e90-6c03-8df814fd90bc-e600b5ea, #w-node-fd17c761-f962-723f-7f08-d3eb02617446-e600b5ea {
    align-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_12143012-49b2-930c-b379-238e38a9365b-38a93658 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7300fa6a-0651-a669-3068-15d201f70001-e600b5ea, #w-node-_7300fa6a-0651-a669-3068-15d201f70004-e600b5ea {
    align-self: auto;
  }

  #w-node-_7688ce6d-d761-fc6c-c1bd-4fd52f17b031-e600b5ea, #w-node-_24d6c9a1-bef2-183c-9302-e32038c47c9a-e600b5ea, #w-node-_89db8798-848d-122d-e90c-a869fc9c92f9-e600b5ea, #w-node-_0456f4c1-21cf-a402-ac68-0373cd7eeae0-e600b5ea, #w-node-_60da3597-bd2f-6710-4919-514011937a78-e600b5ea, #w-node-_70254cde-ed20-1e90-6c03-8df814fd90b7-e600b5ea, #w-node-fd17c761-f962-723f-7f08-d3eb02617441-e600b5ea, #w-node-fb533d37-2822-9574-9b70-c05c2413d8f1-e600b5ea, #w-node-_46e09b28-074d-d42e-d55e-10ac9ab853da-e600b5ea, #w-node-_4efa4417-66eb-d726-c040-79daf17fa491-e600b5ea, #w-node-_22bf1f12-a372-f6f8-e1fa-9709b6fd04ec-e600b5ea, #w-node-c901010f-116d-a395-2ca1-4e1bc290fd48-e600b5ea, #w-node-_226249f0-e3bb-e477-1a64-f037ec38b5e5-e600b5ea {
    align-self: center;
  }
}


