/* common border radius */
/* disable text selection */
/*	Defined widths
--------------------------------------- */
/*	Admin bar custom styling
======================================================================== */
@import url(../js/library/slick/slick.scss);
#wpadminbar {
  width: 52px !important;
  min-width: initial !important;
  border-radius: 0 0 50%;
  background-color: darkcyan;
}
@media (min-width: 783px) {
  #wpadminbar {
    width: 32px !important;
    height: 32px !important;
  }
}
@media (max-width: 600px) {
  #wpadminbar {
    display: none !important;
  }
}

#wp-toolbar li {
  display: none;
}
#wp-toolbar #wp-admin-bar-wp-logo,
#wp-toolbar #wp-admin-bar-wp-logo li {
  display: block;
}

/* PLUGINS */
/* UTILITIES */
/*
========================================================================
    Utility classes
========================================================================
*/
/*	Coloring - color & background
======================================================================== */
/* #region TEXT ======================================================================= */
/*	Text transform
======================================================================== */
.tt-u {
  text-transform: uppercase;
}

/*	Text align
======================================================================== */
.ta-l {
  text-align: left;
}
.ta-c {
  text-align: center;
}
.ta-r {
  text-align: right;
}

/* #endregion */
/* #region FLEX ======================================================================= */
.df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*	Align items
  --------------------------------------- */
  /*	Justify content
  --------------------------------------- */
  /*	Wrapping
  --------------------------------------- */
  /*	Columns
  ======================================================================== */
}
.df--ai-s {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.df--ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.df--jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.df--jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.df--fw-w {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.df--fw-nw {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.df.col-2 .col {
  width: 50%;
}

/* #endregion */
/* MAIN DESIGN */
/* common border radius */
/* disable text selection */
/*
FONT WEIGHTS:
    black:    900;
    heavy:    800;
    bold:     700;
    semiBold: 600;
    medium:   500;
    regular:  400;
    light:    300;
    thin:     100;
*/
/* #region GENERAL SETTINGS ============================================================= */
html, body {
  background: white;
  color: black;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 62.5%;
}
@media screen and (max-width: 1500px) {
  html, body {
    font-size: 58%;
  }
}
@media screen and (max-width: 1240px) {
  html, body {
    font-size: 55%;
  }
}

body {
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 1500px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1240px) {
  body {
    font-size: 1.6rem;
  }
}

html.withMenu,
body.withMenu {
  overflow: hidden;
}

* {
  --oranzova: #F18700;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */ /* Firefox 1 - 28 */
  box-sizing: border-box; /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
}
*:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

input, textarea, select {
  color: black;
  font-size: 14px;
  font-family: "Open Sans", Arial, sans-serif;
}

textarea {
  resize: vertical;
}

a {
  color: black;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a, label, input[type=button], input[type=submit] {
  cursor: pointer;
}

.clear,
.clearfix:after {
  content: " ";
  width: 100%;
  height: 0px;
  display: block;
  overflow: hidden;
  clear: both;
}

.hidden {
  display: none;
}

.container {
  margin: 0 auto;
  position: relative;
  padding: 0 2.5rem;
  width: 100%;
  max-width: 1140px;
}

img, svg {
  max-width: 100%;
  height: auto;
}

/* #endregion */
/* #region MOBILE MENU ICON ============================================================= */
.hamburger {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  /* active state, i.e. menu opened */
}
.hamburger:before {
  content: " ";
  width: 40px;
  height: 40px;
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: 0;
  display: block;
  background: red;
  position: absolute;
  border-radius: 4px;
}
.hamburger:focus {
  outline: none;
}
.hamburger span {
  height: 3px;
  position: absolute;
  top: 9px;
  left: 0px;
  right: 0px;
  display: block;
  background: white;
  border-radius: 1.5px;
}
.hamburger span:before, .hamburger span:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 1.5px;
}
.hamburger span:before {
  top: -6px;
}
.hamburger span:after {
  bottom: -6px;
}
.hamburger--htx {
  background: transparent;
}
.hamburger--htx span:before, .hamburger--htx span:after {
  -webkit-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
          transition-delay: 0.3s, 0s;
}
.hamburger--htx span:before {
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}
.hamburger--htx span:after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}
.hamburger--htx.is-active {
  background: transparent;
}
.hamburger--htx.is-active span {
  background: none;
}
.hamburger--htx.is-active span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger--htx.is-active span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger--htx.is-active span:before, .hamburger--htx.is-active span:after {
  -webkit-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s;
}

/* #endregion */
/* #region SITE HEADER ======================================================================= */
body {
  position: relative;
  padding-top: 8rem !important;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 120.2%;
  height: 109%;
  background: transparent radial-gradient(closest-side at 50% 50%, #D7420D 0%, white 100%) 0% 0%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  opacity: 0.12;
}

header.site-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  height: 8rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}
header.site-header .cls-2 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.site-header .sub-menu {
  position: absolute;
  max-width: 265px;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  padding: 3rem 2rem;
  text-align: left;
  background-color: white;
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.0901960784);
  border-radius: 0.8rem;
}
@media screen and (max-width: 1000px) {
  header.site-header .sub-menu {
    position: relative;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    max-width: initial;
    text-align: center;
    margin-bottom: 0;
  }
}
header.site-header .sub-menu > li {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 600px) {
  header.site-header .sub-menu > li {
    margin-bottom: 0.8rem;
  }
}
header.site-header .sub-menu > li a {
  padding: 0;
  color: var(--sekundarniBarva);
  line-height: 1.185;
}
header.site-header .sub-menu > li a:hover, header.site-header .sub-menu > li a:focus {
  color: var(--oranzova);
}
@media (min-width: 1001px) {
  header.site-header .sub-menu:hover {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 1001px) {
  header.site-header .menu-item-has-children:hover .sub-menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
header.site-header .menu-item-has-children > a {
  position: relative;
  padding-right: 2rem;
}
@media screen and (max-width: 1000px) {
  header.site-header .menu-item-has-children > a {
    padding-right: var(--zakladniSpacingREM);
  }
}
header.site-header .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 4px;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/arrow.svg") no-repeat center center;
  background-position: center center;
}
@media screen and (max-width: 1000px) {
  header.site-header .menu-item-has-children > a::after {
    position: relative;
    display: inline-block;
    right: initial;
    margin-left: 5px;
  }
}
header.site-header .menu-item-has-children > a:hover::after {
  background: url("../images/arrow-s.svg") no-repeat center center;
}
header.site-header.scrolled {
  background-color: var(--sekundarniBarva);
}
header.site-header.scrolled .header__logo .cls-2 {
  fill: white;
}
header.site-header.scrolled a {
  color: white;
}
header.site-header.scrolled a:hover, header.site-header.scrolled a:focus {
  color: white;
}
header.site-header.scrolled nav.menu-primary ul li.current-menu-item > a {
  color: white;
}
header.site-header.scrolled nav.menu-primary ul.sub-menu li.current-menu-item > a {
  color: black;
}
@media (min-width: 1001px) {
  header.site-header.scrolled .btn-wrap a {
    background-color: white;
    color: var(--sekundarniBarva);
  }
  header.site-header.scrolled .btn-wrap a:hover, header.site-header.scrolled .btn-wrap a:focus {
    color: var(--sekundarniBarva);
  }
}
header.site-header.scrolled .menu-item-has-children a::after {
  background: url("../images/arrow-w.svg") no-repeat center center;
}
header.site-header.scrolled .menu-item-has-children a:hover::after {
  background: url("../images/arrow-w.svg") no-repeat center center;
}
@media screen and (max-width: 1000px) {
  header.site-header.scrolled .menu-item-has-children a::after {
    background: url("../images/arrow.svg") no-repeat center center;
  }
  header.site-header.scrolled .menu-item-has-children a:hover::after {
    background: url("../images/arrow.svg") no-repeat center center;
  }
}
header.site-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
header.site-header .site-header__left-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20rem;
          flex: 0 0 20rem;
}
header.site-header .site-header__right-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}
header.site-header #mobileMenu {
  display: none;
}
header.site-header nav {
  display: inline-block;
  vertical-align: middle;
}
header.site-header ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  header.site-header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2rem;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  header.site-header ul {
    gap: 0;
  }
}
@media screen and (max-width: 1000px) {
  header.site-header .btn-wrap a {
    display: inline-block;
  }
}

.site-header__search {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2rem;
}
.site-header__search.active input {
  padding: 0 5rem 0 2rem;
  width: 30rem;
}
.site-header__search form {
  font-size: 0;
}
.site-header__search input {
  position: absolute;
  z-index: 1;
  right: 1px;
  top: 0;
  height: 100%;
  padding: 0;
  width: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: white;
}
.site-header__search button {
  position: relative;
  z-index: 2;
  font-size: 0;
  background: black;
  color: white;
  width: 40px;
  text-align: center;
  border: none;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header__search button:hover {
  cursor: pointer;
  color: red;
}

/* MOBILE VERSION */
@media screen and (max-width: 970px) {
  body {
    padding-top: 60px !important;
  }
  /*.site-header
  {
      #mobileMenu
      {
          margin-top: -10px;
          position: absolute;
          right: 0;
          top: 50%;
          right: 2.5rem;
          display: block;
      }

      .menu-primary
      {
          max-height: 0px;
          position: fixed;
          left: 0;
          right: 0;
          top: 123px;
          bottom: 0;
          display: block;
          overflow: hidden;
          background: black;
          @include transition();

              ul {
                  display: block;
                  text-align: center;

                      li {
                          margin: 1rem 0;

                              a {
                                  padding: 1.5rem 0;
                              }
                      }
              }
      }

      &.withMenu .menu-primary
      {
          max-height: 100vh;
          overflow: auto;
      }
  }*/
}
.header__menu-btn {
  margin-right: 0;
}

nav.menu-primary {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 1000px) {
  nav.menu-primary {
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: translateY(100%) scaleY(0);
    transform: translateY(100%) scaleY(0);
    background: var(--zahlaviBarvaPozadi);
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }
}
nav.menu-primary.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(100%) scaleY(1);
  transform: translateY(100%) scaleY(1);
}
nav.menu-primary ul {
  list-style-type: none;
  margin-left: 0;
}
nav.menu-primary ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 var(--zahlaviMezeraMeziPrvky);
}
nav.menu-primary ul li.current-menu-item a {
  color: var(--navigaceAktivniBarva);
}
@media screen and (max-width: 600px) {
  nav.menu-primary ul li {
    display: block;
    margin: var(--zahlaviMezeraMeziPrvky) 0;
  }
}
nav.menu-primary ul li a {
  display: block;
  white-space: nowrap;
  font-family: var(--navigaceFontFamily);
  font-size: var(--navigaceFontSize);
  line-height: var(--navigaceLineHeight);
  text-transform: var(--navigaceTextTransform);
  font-weight: var(--navigaceFontWeight);
  color: var(--navigaceZakladniBarva);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 var(--zakladniSpacingREM);
  text-decoration: none;
}
nav.menu-primary ul li a:hover {
  color: var(--navigaceHoverBarva);
}
@media screen and (max-width: 1000px) {
  nav.menu-primary ul li a {
    color: black !important;
  }
}

/* #endregion */
/* #region UNIBLOCKS STYLING ======================================================================= */
.section--gallery {
  position: relative;
  overflow: hidden;
  /*	Slider
  --------------------------------------- */
}
.section--gallery::before {
  content: "";
  width: 59.65%;
  aspect-ratio: 1/0.58;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(55%, -75%) rotate(4deg) scale(1.3);
          transform: translate(55%, -75%) rotate(4deg) scale(1.3);
  background: url("../images/shield.svg") no-repeat center center;
  background-size: contain;
  z-index: 0;
}
.section--gallery::after {
  content: "";
  width: 59.65%;
  aspect-ratio: 1/0.58;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-76%, 30%) rotate(12deg) scale(1.5);
          transform: translate(-76%, 30%) rotate(12deg) scale(1.5);
  background: url("../images/shield.svg") no-repeat center center;
  background-size: contain;
  z-index: 0;
}
.section--gallery .container {
  position: relative;
  z-index: 1;
}
.section--gallery .section__header {
  margin-top: 8rem;
  margin-bottom: 9rem;
  text-align: left;
}
.section--gallery .section__footer {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.section--gallery .gallery-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.57;
  pointer-events: none;
}
@media screen and (max-width: 449px) {
  .section--gallery .gallery-item {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
.section--gallery .gallery-item img {
  max-height: 140px;
  width: auto;
}
.section--gallery .slick-slider.gallery-items {
  max-width: initial;
  /*	Arrows
  --------------------------------------- */
}
.section--gallery .slick-slider.gallery-items .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section--gallery .slick-slider.gallery-items .slick-arrow {
  top: 50%;
  background: none;
}
.section--gallery .slick-slider.gallery-items .slick-arrow.prev {
  left: 0;
  right: initial;
  -webkit-transform: translate(-100%, -50%) rotate(90deg);
          transform: translate(-100%, -50%) rotate(90deg);
}
@media screen and (max-width: 1180px) {
  .section--gallery .slick-slider.gallery-items .slick-arrow.prev {
    left: calc(var(--zakladniSpacingREM) * 2);
  }
}
.section--gallery .slick-slider.gallery-items .slick-arrow.next {
  -webkit-transform: translate(100%, -50%) rotate(-90deg);
          transform: translate(100%, -50%) rotate(-90deg);
}
@media screen and (max-width: 1180px) {
  .section--gallery .slick-slider.gallery-items .slick-arrow.next {
    right: calc(var(--zakladniSpacingREM) * 2);
  }
}
.section--gallery .btn {
  margin: 0;
}

.section--two-cols-text-content .container {
  margin-top: var(--zakladniMargin);
  margin-bottom: var(--zakladniMargin);
}
.section--two-cols-text-content .section__text-content {
  margin-top: 0;
}

.section--two-cols.about-us {
  margin-bottom: var(--zakladniMargin);
}
.section--two-cols.about-us .container .left-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
}
.section--two-cols.about-us .container .right-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
}
@media screen and (max-width: 700px) {
  .section--two-cols.about-us .container .left-col,
.section--two-cols.about-us .container .right-col {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    text-align: left;
  }
  .section--two-cols.about-us .container .left-col .inner,
.section--two-cols.about-us .container .right-col .inner {
    margin: 0;
  }
  .section--two-cols.about-us .container .left-col .section__text-content,
.section--two-cols.about-us .container .right-col .section__text-content {
    max-width: 31.4rem;
    margin-left: 0;
    margin-right: auto;
  }
}

.section--hero {
  min-height: calc(100vh - 8rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.section--hero .container {
  position: relative;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.section--hero .container .left-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
}
@media screen and (max-width: 700px) {
  .section--hero .container .left-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.section--hero .container .left-col .inner {
  max-width: initial;
}
.section--hero .container .left-col .inner strong {
  color: var(--sekundarniBarva);
}
.section--hero .container .left-col .inner__text {
  max-width: 55rem;
}
@media screen and (max-width: 700px) {
  .section--hero .container .left-col .inner__text {
    margin-left: auto;
    margin-right: auto;
  }
}
.section--hero .container .left-col .inner__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: var(--zakladniMargin);
}
@media screen and (max-width: 700px) {
  .section--hero .container .left-col .inner__footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section--hero .container .left-col .btn {
  margin: 0 3rem 0 0;
}
@media screen and (max-width: 700px) {
  .section--hero .container .left-col .btn {
    margin: 1.2rem;
  }
}
@media screen and (max-width: 700px) {
  .section--hero .container .left-col .link {
    margin: 1.2rem;
  }
}
.section--hero .container .right-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  min-height: 270px;
  max-height: 320px;
}
@media screen and (max-width: 700px) {
  .section--hero .container .right-col {
    display: none;
  }
}
.section--hero .container .double-arrow {
  position: absolute;
  bottom: -8rem;
  left: 2.5rem;
}
@media screen and (max-width: 700px) {
  .section--hero .container .double-arrow {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/*	Icons shield
--------------------------------------- */
.icons-shield {
  position: relative;
  width: 120%;
  height: 120%;
  -webkit-transform: translate(5%, -15%);
          transform: translate(5%, -15%);
  background: url("../images/shield_opacity.png") no-repeat right bottom;
  background-size: 100%;
}
.icons-shield figure {
  position: absolute;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
}
.icons-shield figure:nth-child(1) {
  top: 25%;
  left: 70%;
}
.icons-shield figure:nth-child(1) svg {
  -webkit-animation: circle 2.1s linear infinite;
  animation: circle 2.1s linear infinite;
}
.icons-shield figure:nth-child(2) {
  top: 33%;
  left: 40%;
}
.icons-shield figure:nth-child(2) svg {
  -webkit-animation: circleL 2.5s linear infinite;
  animation: circleL 2.5s linear infinite;
}
.icons-shield figure:nth-child(3) {
  top: 50%;
  left: 30%;
}
.icons-shield figure:nth-child(3) svg {
  -webkit-animation: circle 2s linear infinite;
  animation: circle 2s linear infinite;
}
.icons-shield figure:nth-child(4) {
  top: 60%;
  left: 63%;
}
.icons-shield figure:nth-child(4) svg {
  -webkit-animation: circleL 2.55s linear infinite;
  animation: circleL 2.55s linear infinite;
}
.icons-shield figure:nth-child(5) {
  top: 75%;
  left: 35%;
}
.icons-shield figure:nth-child(5) svg {
  -webkit-animation: circleL 2.1s linear infinite;
  animation: circleL 2.1s linear infinite;
}
.icons-shield figure:nth-child(6) {
  top: 90%;
  left: 55%;
}
.icons-shield figure:nth-child(6) svg {
  -webkit-animation: circle 2.6s linear infinite;
  animation: circle 2.6s linear infinite;
}
@-webkit-keyframes circle {
  from {
    -webkit-transform: rotate(0deg) translateX(0.3rem) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(0.3rem) rotate(-360deg);
  }
}
@keyframes circle {
  from {
    -webkit-transform: rotate(0deg) translateX(0.3rem) rotate(0deg);
    transform: rotate(0deg) translateX(0.3rem) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(0.3rem) rotate(-360deg);
    transform: rotate(360deg) translateX(0.3rem) rotate(-360deg);
  }
}
@-webkit-keyframes circleL {
  from {
    -webkit-transform: rotate(360deg) translateX(0.3rem) rotate(-360deg);
  }
  to {
    -webkit-transform: rotate(0deg) translateX(0.3rem) rotate(0deg);
  }
}
@keyframes circleL {
  from {
    -webkit-transform: rotate(360deg) translateX(0.3rem) rotate(-360deg);
    transform: rotate(360deg) translateX(0.3rem) rotate(-360deg);
  }
  to {
    -webkit-transform: rotate(0deg) translateX(0.3rem) rotate(0deg);
    transform: rotate(0deg) translateX(0.3rem) rotate(0deg);
  }
}
/* #endregion */
/* #region SITE FOOTER ======================================================================= */
footer.footer {
  position: relative;
}
footer.footer .container ul.footer__nav li a {
  text-decoration: underline;
}
footer.footer .container ul.footer__nav li a:focus, footer.footer .container ul.footer__nav li a:hover {
  text-decoration: none;
}
footer.footer .footer-logo {
  width: 18rem;
}
@media screen and (max-width: 1000px) {
  footer.footer .footer__cols {
    gap: calc(var(--zakladniSpacingREM) * 3);
  }
}
@media screen and (max-width: 1000px) {
  footer.footer .footer__col-title {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  footer.footer .footer__col--4 .footer__col-title {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .footer__col--3 {
    display: none;
  }
}

.footer__col--4 .footer__col-title {
  line-height: 1;
}

/*	Copyright
--------------------------------------- */
@media screen and (max-width: 700px) {
  footer.footer .footer__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer.footer .footer__copyright > div {
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
footer.footer .footer__copyright-left-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 176px;
          flex: 0 0 176px;
  text-align: center;
  padding-right: var(--zakladniSpacingREM);
}
footer.footer .footer__seo-center-col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: 100%;
  text-align: center;
  padding-left: var(--zakladniSpacingREM);
  padding-right: var(--zakladniSpacingREM);
}
footer.footer .footer__copyright-right-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 176px;
          flex: 0 0 176px;
  text-align: center;
}

/*	Footer icons
--------------------------------------- */
.footer__contacts-icons .footer__contact-icon-icon svg path:not(.gradient),
.footer__contacts-icons .footer__contact-icon-icon svg circle,
.footer__contacts-icons .footer__contact-icon-icon svg rect {
  stroke: white;
}
.footer__contacts-icons .footer__contact-icon:hover .footer__contact-icon-icon svg path,
.footer__contacts-icons .footer__contact-icon:hover .footer__contact-icon-icon svg circle,
.footer__contacts-icons .footer__contact-icon:hover .footer__contact-icon-icon svg rect {
  stroke: white;
}
.footer__contacts-icons .footer__contact-icon:hover .footer__contact-icon-icon svg path.gradient {
  stroke: transparent;
}

/* #endregion */
/* #region 404 ======================================================================= */
.section-404 .wrapper {
  padding: 3rem 0;
}

/* #endregion */
/* #region GENERAL PAGE ======================================================================= */
.general-page {
  padding: 5rem 0;
}
@media (min-width: 640px) {
  .general-page {
    padding: 10rem 0;
  }
}
.general-page h1 {
  margin-bottom: 2rem;
}
.general-page h2 {
  margin-bottom: 1rem;
}
.general-page p {
  margin-bottom: 1.5rem;
}

/* #endregion */
/* COMPONENTS */
/* common border radius */
/* disable text selection */
a.btn,
.editor-styles-wrapper .gt-block a.btn,
.btn-wrap a {
  margin: 0 8px 12px 0;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  height: calc(var(--btnHeight) - var(--btnBorderSize) * 2);
  line-height: calc(var(--btnHeight) - var(--btnBorderSize) * 2);
  white-space: nowrap;
  padding: 0 var(--btnPadding);
  font-size: var(--btnFontSize);
  font-weight: var(--btnFontWeight);
  font-style: var(--btnFontStyle);
  text-transform: var(--btnTextTransform);
  border-radius: var(--btnBorderRadius);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  a.btn,
.editor-styles-wrapper .gt-block a.btn,
.btn-wrap a {
    height: calc(var(--btnHeight) * 2 - var(--btnBorderSize) * 2);
    line-height: calc(var(--btnHeight) * 2 - var(--btnBorderSize) * 2);
  }
}
a.btn.btn--primary,
.editor-styles-wrapper .gt-block a.btn.btn--primary,
.btn-wrap a.btn--primary {
  color: var(--primarniBtnColor);
  background: var(--sekundarniBarva) linear-gradient(106deg, var(--sekundarniBarva) 0%, #E66A06 100%) 0% 0% no-repeat padding-box;
  border: var(--btnBorderSize) solid var(--primarniBtnBorderColor);
}
a.btn.btn--primary:hover,
.editor-styles-wrapper .gt-block a.btn.btn--primary:hover,
.btn-wrap a.btn--primary:hover {
  color: var(--primarniBtnHoverColor);
  background: var(--primarniBtnBgHoverColor);
  border-color: var(--primarniBtnBorderHoverColor);
}

header.site-header .btn-wrap a {
  margin: 0;
  padding: 0 var(--btnPadding);
  color: white !important;
  background: var(--sekundarniBarva) linear-gradient(106deg, var(--sekundarniBarva) 0%, #E66A06 100%) 0% 0% no-repeat padding-box;
  border: var(--btnBorderSize) solid var(--primarniBtnBorderColor);
}
header.site-header .btn-wrap a:hover {
  color: white !important;
  background: var(--primarniBtnBgHoverColor);
  border-color: var(--primarniBtnBorderHoverColor);
}
@media (min-width: 1001px) {
  header.site-header.scrolled .btn-wrap a {
    background: white;
    color: var(--primarniBarva) !important;
  }
  header.site-header.scrolled .btn-wrap a:hover {
    color: var(--sekundarniBarva) !important;
  }
}

/*	Button reset
======================================================================== */
.double-arrow {
  background: transparent;
  cursor: pointer;
}
.double-arrow path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 700px) {
  .double-arrow:hover g:first-child path {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  .double-arrow:hover g:last-child path {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}

/*	Link
======================================================================== */
.link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  color: var(--sekundarniBarva);
  font-size: var(--btnFontSize);
  font-weight: var(--btnFontWeight);
  cursor: pointer;
  /*	Arrows
  --------------------------------------- */
}
.link:hover, .link:focus {
  color: var(--oranzova);
}
.link--arrow::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 0.2rem;
  background: url("../images/arrow-s.svg") no-repeat center center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.link--arrow:hover::after, .link--arrow:focus::after {
  background: url("../images/arrow-o.svg") no-repeat center center;
  -webkit-transform: rotate(-90deg) translateY(0.15rem);
          transform: rotate(-90deg) translateY(0.15rem);
}
.link--arrow-down {
  text-decoration: underline;
}
.link--arrow-down::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 0.2rem;
  background: url("../images/arrow-s.svg") no-repeat center center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.link--arrow-down:hover, .link--arrow-down:focus {
  text-decoration: none;
}
.link--arrow-down:hover::after, .link--arrow-down:focus::after {
  background: url("../images/arrow-o.svg") no-repeat center center;
}
.link--arrow-down.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* common border radius */
/* disable text selection */
.icheckbox {
  width: 60px;
  height: 60px;
  margin: 0 30px 0 0;
  display: inline-block;
  vertical-align: top;
  background: white;
  border: 1px solid #D3D0D0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.icheckbox:after {
  content: " ";
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.385' height='18.385' viewBox='0 0 18.385 18.385'%3E%3Cg id='Group_349' data-name='Group 349' transform='translate(9.087 -33.129) rotate(45)'%3E%3Cg id='Group_27' data-name='Group 27' transform='translate(17.955 17.955)'%3E%3Crect id='Rectangle_20' data-name='Rectangle 20' width='24' height='2' rx='1' transform='translate(11.045 23.896) rotate(-90)' fill='%23fff'/%3E%3Crect id='Rectangle_27' data-name='Rectangle 27' width='24' height='2' rx='1' transform='translate(0.045 10.896)' fill='%23fff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.icheckbox.hover {
  border-color: black;
}
.icheckbox.checked {
  background: red;
  border-color: red;
}
.icheckbox.checked:after {
  opacity: 1;
}

/* common border radius */
/* disable text selection */
.slick-arrow {
  width: 6.4rem;
  height: 6.4rem;
  position: absolute;
  top: 50%;
  display: block;
  border-radius: 50%;
  background-color: grey;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 2.6rem auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Cg id='Group_2' data-name='Group 2' transform='translate(-0.162)'%3E%3Crect id='Rectangle_28' data-name='Rectangle 28' width='26' height='26' transform='translate(0.162)' fill='%23fff' opacity='0'/%3E%3Cg id='Group_1' data-name='Group 1' transform='translate(10 5)'%3E%3Cpath id='Path_1' data-name='Path 1' d='M2646.564,4075.4h0a3.2,3.2,0,0,1,0-4.528l3.342-3.342-3.342-3.342a3.2,3.2,0,0,1,0-4.527h0l7.87,7.869Z' transform='translate(-2645.626 -4059.663)' fill='%23121524'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slick-arrow:hover {
  background-color: grey;
}
.slick-arrow.prev {
  left: 0;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.slick-arrow.next {
  right: 0;
}
.slick-arrow.slick-hidden, .slick-arrow.slick-disabled {
  display: none;
}

.slick-slider .slick-dots {
  width: 100%;
  list-style: none;
  text-align: center;
}
.slick-slider .slick-dots li {
  padding: 0 0.4rem;
  display: inline-block;
  vertical-align: top;
}
.slick-slider .slick-dots li button {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.slick-slider .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.5);
}
.slick-slider .slick-dots li.slick-active button {
  background: white;
}

/* common border radius */
/* disable text selection */
.gt-block form,
.editor-styles-wrapper .gt-block form {
  position: relative;
  /* clear */
  /* loading */
}
.gt-block form:after,
.editor-styles-wrapper .gt-block form:after {
  content: " ";
  width: 100%;
  height: 0px;
  display: block;
  overflow: hidden;
  clear: both;
}
.gt-block form:before,
.editor-styles-wrapper .gt-block form:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  height: 0px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7) url(images/loading.gif) no-repeat center center;
  background-size: 80px auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.gt-block form.loading:before,
.editor-styles-wrapper .gt-block form.loading:before {
  height: 100%;
  opacity: 1;
}
.gt-block form input[type=text],
.gt-block form textarea,
.editor-styles-wrapper .gt-block form input[type=text],
.editor-styles-wrapper .gt-block form textarea {
  width: 100%;
  height: 60px;
  padding: 0 24px;
  border: 1px solid #D3D0D0;
  color: black;
  font-size: 20px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gt-block form input[type=text]:hover, .gt-block form input[type=text]:focus,
.gt-block form textarea:hover,
.gt-block form textarea:focus,
.editor-styles-wrapper .gt-block form input[type=text]:hover,
.editor-styles-wrapper .gt-block form input[type=text]:focus,
.editor-styles-wrapper .gt-block form textarea:hover,
.editor-styles-wrapper .gt-block form textarea:focus {
  border-color: black;
}
.gt-block form input[type=text]::-webkit-input-placeholder,
.gt-block form textarea::-webkit-input-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]::-webkit-input-placeholder,
.editor-styles-wrapper .gt-block form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #D3D0D0;
  opacity: 1;
}
.gt-block form input[type=text]::-moz-placeholder,
.gt-block form textarea::-moz-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]::-moz-placeholder,
.editor-styles-wrapper .gt-block form textarea::-moz-placeholder { /* Firefox 19+ */
  color: #D3D0D0;
  opacity: 1;
}
.gt-block form input[type=text]:-ms-input-placeholder,
.gt-block form textarea:-ms-input-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]:-ms-input-placeholder,
.editor-styles-wrapper .gt-block form textarea:-ms-input-placeholder { /* IE 10+ */
  color: #D3D0D0;
  opacity: 1;
}
.gt-block form input[type=text]:-moz-placeholder,
.gt-block form textarea:-moz-placeholder,
.editor-styles-wrapper .gt-block form input[type=text]:-moz-placeholder,
.editor-styles-wrapper .gt-block form textarea:-moz-placeholder { /* Firefox 18- */
  color: #D3D0D0;
  opacity: 1;
}
.gt-block form textarea,
.editor-styles-wrapper .gt-block form textarea {
  height: 180px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 30px;
}
.gt-block form div.input,
.editor-styles-wrapper .gt-block form div.input {
  width: calc((100% - 12px) / 2);
  min-height: 110px;
  margin-right: 12px;
  float: left;
}
.gt-block form div.input.last,
.editor-styles-wrapper .gt-block form div.input.last {
  margin-right: 0;
}
.gt-block form div.input.full,
.editor-styles-wrapper .gt-block form div.input.full {
  width: 100%;
  margin-right: 0;
}
.gt-block form div.input.textarea,
.editor-styles-wrapper .gt-block form div.input.textarea {
  width: 100%;
  margin: 0;
  padding-bottom: 50px;
}
.gt-block form span.errorEmpty,
.gt-block form span.errorFormat,
.gt-block form span.errorData,
.editor-styles-wrapper .gt-block form span.errorEmpty,
.editor-styles-wrapper .gt-block form span.errorFormat,
.editor-styles-wrapper .gt-block form span.errorData {
  display: block;
  overflow: hidden;
  color: red;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-height: 0px;
  padding: 0;
  opacity: 0;
}
.gt-block form .hasErrorEmpty span.errorEmpty,
.gt-block form .hasErrorFormat span.errorFormat,
.gt-block form .hasErrorData span.errorData,
.editor-styles-wrapper .gt-block form .hasErrorEmpty span.errorEmpty,
.editor-styles-wrapper .gt-block form .hasErrorFormat span.errorFormat,
.editor-styles-wrapper .gt-block form .hasErrorData span.errorData {
  max-height: 40px;
  padding: 4px 0 6px 0;
  opacity: 1;
}
.gt-block form .sending,
.editor-styles-wrapper .gt-block form .sending {
  height: 300px;
  background: url(images/loading.gif) no-repeat center center;
  background-size: 90px auto;
}
.gt-block form div.inputs,
.editor-styles-wrapper .gt-block form div.inputs {
  /* clear */
}
.gt-block form div.inputs:after,
.editor-styles-wrapper .gt-block form div.inputs:after {
  content: " ";
  width: 100%;
  height: 0px;
  display: block;
  overflow: hidden;
  clear: both;
}
.gt-block form div.sent,
.editor-styles-wrapper .gt-block form div.sent {
  padding: 40px 0;
  color: black;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  text-align: center;
}
.gt-block form div.sent a,
.editor-styles-wrapper .gt-block form div.sent a {
  text-decoration: underline;
}
.gt-block form div.sent a:hover,
.editor-styles-wrapper .gt-block form div.sent a:hover {
  text-decoration: none;
}

/* PAGES (better to include direct CSS file on the page) */
/*@import url(pages/XXX.scss);*/
/* BLOCKS  (better to include direct CSS file with the block) */
/* common border radius */
/* disable text selection */
section.gt-block,
.editor-styles-wrapper section.gt-block {
  position: relative;
}
section.gt-block .center,
.editor-styles-wrapper section.gt-block .center {
  width: 1140px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  section.gt-block .center,
.editor-styles-wrapper section.gt-block .center {
    width: auto;
    margin: 0 30px;
  }
}

/*@import url(blocks/XXX.scss);*/