:root {
  --indian-red: #cf404d;
  --dark-slate-gray: #2d3e4f;
  --white: white;
  --goldenrod: #e2a62b;
  --white-smoke-2: #f0f0f0;
  --steel-blue: #3b99d9;
  --steel-blue-2: #2e80b6;
  --dark-khaki: #a8d069;
  --medium-sea-green: #30ad64;
  --light-sea-green: #25ccbf;
  --light-sea-green-2: #20ac99;
  --sandy-brown: #f8c740;
  --khaki: #face6a;
  --sandy-brown-2: #e4b962;
  --salmon: #fd7072;
  --tan: #d39f9a;
  --dim-gray: #735260;
  --indian-red-2: #af4173;
  --brown: #822e50;
  --tomato: #e64c40;
  --firebrick: #bf3a30;
  --salmon-2: #fc7d64;
  --white-smoke: #ecf0f1;
  --silver: #bec3c7;
  --dim-gray-2: #49647b;
  --dark-slate-gray-2: #404047;
  --white-smoke-3: #edeff2;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.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 {
  color: #000000bd;
  background-color: #edeff2;
  height: 100%;
  padding-left: 329px;
  font-family: Oswald, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: #313131;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Droid Sans, sans-serif;
  font-size: 15px;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #cf404d;
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s;
  display: inline-block;
}

.button:hover {
  background-color: #000;
}

.button.w--current {
  background-color: #2e80b6;
}

.button.full-width {
  width: 100%;
  display: block;
}

.brand-text {
  color: #cf404d;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 25px;
}

.section {
  color: #fff;
  -webkit-text-stroke-color: #000;
  background-color: #fff;
  padding: 63px 40px;
  position: relative;
}

.section.section-gray {
  background-color: #fafafa;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}

.call-to-action-section {
  color: #fff;
  background-color: #cf404d;
  padding: 44px 40px;
}

.call-to-action-heading {
  margin-top: 3px;
  margin-bottom: 0;
  font-weight: 400;
}

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

.hero-heading {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 19px;
  font-size: 50px;
  font-weight: 400;
}

.hero-subheading {
  color: #fff;
  margin-bottom: 25px;
  margin-left: 30px;
  margin-right: 30px;
}

.hollow-button {
  color: #1db0fc;
  border: 2px solid #1db0fc;
  border-radius: 4px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 11px 20px;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button:hover {
  color: #000;
  border-color: #000;
}

.hollow-button.white {
  background-color: var(--indian-red);
  color: #fff;
  border-style: solid;
  border-color: #fff;
}

.hollow-button.white:hover {
  color: #fff;
  background-color: #2d3e4f;
  border-color: #2d3e4f;
}

.hollow-button.white.w--current {
  background-color: var(--dark-slate-gray);
}

.hollow-button.red {
  color: #fff;
  background-color: #cf404d;
  border-color: #cf404d;
}

.hollow-button.red:hover {
  background-color: #0000;
}

.hollow-button.yellow {
  border-style: solid;
  border-color: var(--white);
  background-color: var(--goldenrod);
  -webkit-text-stroke-color: var(--white-smoke-2);
}

.hollow-button.yellow:hover {
  border-color: var(--dark-slate-gray);
  background-color: var(--dark-slate-gray);
}

.hollow-button.yellow.w--current {
  border-color: var(--white);
  background-color: var(--dark-slate-gray);
}

.section-heading {
  margin-top: 0;
  margin-bottom: 16px;
}

.section-heading.centered {
  color: #313131;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
}

.section-subheading.center {
  color: #737373bd;
  text-align: left;
  margin-top: 30px;
  font-family: Droid Sans, sans-serif;
  font-size: 14px;
  line-height: 30px;
}

.section-title-group {
  margin-bottom: 0;
}

.form-field {
  border: 0 solid #000;
  border-radius: 3px;
  min-height: 45px;
  margin-bottom: 17px;
  margin-right: 1px;
  box-shadow: 0 0 0 1px #4040474d;
}

.form-field:focus {
  box-shadow: 0 0 0 1px #2e80b6;
}

.form-field.text-area {
  min-height: 110px;
}

.form-wrapper.squeezed {
  margin-top: 10px;
  padding-left: 19%;
  padding-right: 19%;
}

.social-icon-link {
  opacity: .66;
  padding: 3px;
  transition: opacity .3s;
}

.social-icon-link:hover {
  opacity: 1;
}

.footer {
  padding-top: 35px;
  padding-bottom: 35px;
}

.footer.center {
  text-align: center;
  padding-top: 21px;
  padding-bottom: 21px;
}

.footer-text {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

.link {
  color: #cf404d;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.link:hover {
  color: #30ad64;
}

.grid-image {
  margin-bottom: 19px;
}

.hero-title-wrapper {
  text-align: center;
  margin-bottom: 155px;
  position: relative;
  top: 40%;
}

.left-navigation {
  background-color: #2d3e4f;
  width: 329px;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

.nav-link {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 20px 0;
  font-size: 15px;
  display: block;
}

.nav-link:hover, .nav-link.w--current {
  color: #cf404d;
}

.nav-menu {
  float: none;
}

.logo-link {
  float: none;
  text-align: center;
  margin-top: 216px;
  margin-bottom: 50px;
  display: block;
}

.social-footer {
  text-align: center;
  margin-bottom: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.grid-fours {
  float: left;
  width: 25%;
  padding: 10px;
}

.banner {
  background-image: linear-gradient(#0006, #0006), url('../images/1-14.JPG');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 100%;
}

.content {
  height: 100%;
}

.success-message {
  text-align: center;
}

.paragraph-form {
  color: #000;
  margin-bottom: 0;
}

.templates-badge-wrapper {
  z-index: 9999;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #000;
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  padding: 11px 20px 11px 18px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: auto 20px 20px auto;
  box-shadow: 0 12px 28px #00000024;
}

.loader-badge {
  background-image: url('../images/loader.svg');
  background-position: 0 0;
  background-size: contain;
  width: 34px;
  height: 34px;
  position: absolute;
  inset: -19px -15px auto auto;
}

.badge-paragraph {
  opacity: 1;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.blue-color {
  color: #4353ff;
}

.image {
  margin-top: -130px;
}

.tab-text {
  color: #fff;
  text-align: left;
}

.tab-text:hover {
  color: #000;
}

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

.image-2 {
  box-shadow: 6px 5px 8px #0003;
}

.gallery-image {
  pointer-events: auto;
  perspective: 716px;
  transform-origin: 50%;
  cursor: pointer;
  mix-blend-mode: normal;
  transform: none;
  box-shadow: 6px 6px 6px #0003;
}

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

.gallery-grid-2-elements {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

.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: 260px;
  display: flex;
}

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

.section-gallery {
  max-width: none;
}

.hero-photos {
  text-align: center;
  vertical-align: middle;
  object-fit: fill;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  width: 600px;
  height: 500px;
  margin-top: 300px;
  display: inline-flex;
  position: static;
  inset: 0% 0% auto auto;
}

.hero-photos.gallery-image {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 500px;
  margin-top: 200px;
  display: block;
}

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

.text-block {
  color: var(--white);
}

.text-block-2 {
  float: none;
  text-align: center;
  position: static;
}

.text-block-3 {
  float: left;
  clear: none;
  text-align: right;
  align-self: center;
}

.column {
  text-align: center;
  border-left: 1px solid #000;
  border-radius: 2px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.link-2, .link-3 {
  align-self: center;
}

@media screen and (max-width: 991px) {
  body {
    margin-left: 0;
    padding-left: 0;
  }

  .hamburger-button {
    color: #fff;
  }

  .hamburger-button.w--open {
    background-color: #cf404d;
  }

  .hero-subheading {
    margin-left: 30px;
    margin-right: 30px;
  }

  .section-subheading.center {
    text-shadow: none;
  }

  .form-wrapper.squeezed {
    padding-left: 8%;
    padding-right: 8%;
  }

  .hero-title-wrapper {
    top: 40%;
  }

  .left-navigation {
    float: none;
    width: 100%;
    height: auto;
    margin-top: -90px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    inset: 0 0 auto;
  }

  .nav-link {
    text-align: left;
    padding-left: 13px;
  }

  .nav-menu {
    background-color: #49647b;
  }

  .logo-link {
    float: left;
    margin-top: 14px;
    margin-bottom: 0;
    margin-left: 10px;
  }

  .social-footer {
    display: inline-block;
    position: absolute;
  }

  .banner {
    height: 500px;
  }

  .image {
    width: auto;
    max-width: 200px;
    height: auto;
    margin-top: 20px;
    margin-bottom: -35px;
  }

  .icon {
    height: auto;
    margin-top: 110px;
  }

  .hero-photos.gallery-image {
    order: 0;
    align-self: center;
    height: 600px;
    margin-top: 0;
    display: block;
  }

  .quick-stack {
    margin-top: -40px;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    margin-top: 10px;
  }

  .section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .call-to-action-heading {
    text-align: center;
    margin-bottom: 13px;
  }

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

  .hero-heading {
    font-size: 37px;
  }

  .hero-subheading {
    margin-left: 20px;
    margin-right: 20px;
  }

  .section-subheading.center {
    text-shadow: none;
  }

  .hero-title-wrapper {
    top: 35%;
  }

  .grid-fours {
    width: 33.333%;
  }

  .column-0-padding {
    text-align: center;
    margin-bottom: 15px;
  }

  .column-remove-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-photos.gallery-image {
    width: auto;
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .section {
    margin-top: 0;
    padding-top: 63px;
  }

  .section.section-gray {
    margin-top: 0;
  }

  .hero-heading {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: -70px;
    margin-left: 10px;
    margin-right: 10px;
    display: block;
    position: absolute;
    inset: 0% 0% auto;
  }

  .hero-subheading {
    margin-top: 0;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 25px;
    font-size: 13px;
  }

  .section-subheading.center {
    text-align: center;
    text-shadow: none;
    word-break: normal;
    font-size: 12px;
    text-decoration: none;
  }

  .form-wrapper.squeezed {
    padding-left: 2%;
    padding-right: 2%;
  }

  .hero-title-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    top: 28%;
  }

  .banner {
    height: 450px;
    position: relative;
  }

  .gallery-tabs {
    height: auto;
    max-height: none;
  }

  .gallery-grid {
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    height: 300px;
    max-height: none;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    overflow: auto;
  }

  .gallery-grid-2-elements {
    flex-flow: column;
    margin-top: 20px;
    margin-bottom: -100px;
    display: flex;
  }

  .hero-photos.gallery-image {
    width: auto;
    height: auto;
  }

  .tabs-content {
    height: 300px;
    margin-bottom: 0;
  }

  .grid-3 {
    flex-flow: column;
    grid-auto-flow: column;
    display: flex;
    overflow: visible;
  }

  .tab-pane-logotypy {
    height: 500px;
  }

  .grid-4 {
    display: flex;
  }
}

#w-node-b4ce5363-7292-5d0f-ecc9-d79a8f0ceab9-6369081b {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_6d42d41e-3058-9da2-8f18-f1841093a9f9-6369081b {
  justify-self: end;
}

#w-node-_33130e5a-c6d4-1b78-e5e5-88ee2a99b70e-6369081b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-b4ce5363-7292-5d0f-ecc9-d79a8f0ceab9-6369081b {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


