/****************************************
*	Name:		Template framework		*
*	Made by: 	Patrik Rycka			*
*	Assistants: WebTutorials.cz Group	*
*	License:	MIT						*
****************************************/
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

body {
  font-family: "Futura PT", Helvetica, Arial, Sans-Serif; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  outline: none; }

[hidden], .hidden {
  display: none !important; }

.btn, button, .button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  outline: none; }

input[type="text"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="email"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif; }

.far span, .fas span, .fab span, .fa span {
  font-family: "Futura PT", Helvetica, Arial, Sans-Serif; }

/************************
*	WebTutorials GRID	*
************************/
.wa-inline {
  display: flex;
  flex-wrap: wrap; }
  .wa-inline.wa-h-space-between {
    justify-content: space-between; }
  .wa-inline.wa-h-space-around {
    justify-content: space-around; }
  .wa-inline.wa-h-center {
    justify-content: center; }
  .wa-inline.wa-h-flex-start {
    justify-content: flex-start; }
  .wa-inline.wa-h-flex-end {
    justify-content: flex-end; }
  .wa-inline.wa-v-center {
    align-items: center; }
  .wa-inline.wa-v-flex-start {
    align-items: flex-start; }
  .wa-inline.wa-v-flex-end {
    align-items: flex-end; }

/************************
*	Bootstrap MD GRID	*
************************/
.bt-wrapp {
  width: 100%;
  display: inline-block; }

.col {
  float: left; }
  .col::after {
    content: "";
    display: table; }

.col-md-1 {
  width: calc((100% * 1) / 12); }

.col-md-2 {
  width: calc((100% * 2) / 12); }

.col-md-3 {
  width: calc((100% * 3) / 12); }

.col-md-4 {
  width: calc((100% * 4) / 12); }

.col-md-5 {
  width: calc((100% * 5) / 12); }

.col-md-6 {
  width: calc((100% * 6) / 12); }

.col-md-7 {
  width: calc((100% * 7) / 12); }

.col-md-8 {
  width: calc((100% * 8) / 12); }

.col-md-9 {
  width: calc((100% * 9) / 12); }

.col-md-10 {
  width: calc((100% * 10) / 12); }

.col-md-11 {
  width: calc((100% * 11) / 12); }

.col-md-12 {
  width: calc((100% * 12) / 12); }

.col-md-offset-1 {
  margin-left: calc((100% * 1) / 12); }

.col-md-offset-2 {
  margin-left: calc((100% * 2) / 12); }

.col-md-offset-3 {
  margin-left: calc((100% * 3) / 12); }

.col-md-offset-4 {
  margin-left: calc((100% * 4) / 12); }

.col-md-offset-5 {
  margin-left: calc((100% * 5) / 12); }

.col-md-offset-6 {
  margin-left: calc((100% * 6) / 12); }

.col-md-offset-7 {
  margin-left: calc((100% * 7) / 12); }

.col-md-offset-8 {
  margin-left: calc((100% * 8) / 12); }

.col-md-offset-9 {
  margin-left: calc((100% * 9) / 12); }

.col-md-offset-10 {
  margin-left: calc((100% * 10) / 12); }

.col-md-offset-11 {
  margin-left: calc((100% * 11) / 12); }

.col-md-offset-12 {
  margin-left: calc((100% * 12) / 12); }

.top-header {
  height: 39px;
  background: #009de2;
  color: #fff; }
  .top-header .btn_sq {
    width: 29px;
    height: 29px;
    transition: .3s;
    text-decoration: none; }
    .top-header .btn_sq.yt {
      margin-left: 8px; }
    .top-header .btn_sq.yt img {
      width: 20px;
      height: auto; }
    .top-header .btn_sq:hover {
      background: #006896; }
    .top-header .btn_sq img {
      height: 17px;
      display: block; }
  .top-header .top-header-text {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif; }
  .top-header a.top-header-text:hover {
    text-decoration: underline; }
  .top-header .JS-lang {
    width: 55px;
    height: 29px;
    padding: 0 6px;
    margin-left: 34px;
    background: #009de2;
    position: relative;
    transition: .3s; }
    .top-header .JS-lang::before {
      width: 0;
      height: 100%;
      position: absolute;
      left: -17px;
      content: "";
      border-left: 1px solid #75bee9; }
    .top-header .JS-lang:hover, .top-header .JS-lang.open {
      background: #006896; }
    .top-header .JS-lang.open::after {
      transform: rotate(-90deg); }
    .top-header .JS-lang::after {
      content: "";
      width: 15px;
      height: 10px;
	  position: absolute;
	  right: 10px;
	  top: 10px;
      transition: .3s;
      transform: rotate(90deg);
      background-image: url(../images/svg/arrow_short_white.svg);
      background-size: 15px 10px;
      background-repeat: no-repeat; }
  .top-header .lang_select {
    display: none; }

.lang_option {
  position: relative; }
  .lang_option .lang_select {
    position: absolute;
    top: 100%;
    left: 34px;
    z-index: 88;
    background: #006896;
    width: calc(100% - 34px); }
    .lang_option .lang_select a {
      display: block;
      padding: 7px;
      border-bottom: 1px solid #75bee9;
      font-size: 15px; }
      .lang_option .lang_select a:last-child {
        border: none; }

.bottom-header {
  padding: 14px 0;
  border-bottom: 1px solid #f4f5f5; }
  @media (max-width: 970px) {
    .bottom-header {
      padding: 0; }
      .bottom-header .frame {
        padding: 0; } }
  .bottom-header .logo {
    display: block;
    width: 325px;
    max-width: 325px; }
    @media (max-width: 970px) {
      .bottom-header .logo {
        padding: 14px 12px;
        order: -5;
        flex: 1; } }
    .bottom-header .logo img {
      width: 100%; }
  .bottom-header .bottom-header-search {
    max-width: 380px;
    width: 100%;
    height: 40px;
    background: #f6f7f7; }
  @media all and (min-width: 971px){
	.bottom-header .bottom-header-search{
	  width: 380px;
	  max-width: 100%;
	}
  }
    @media (max-width: 970px) {
      .bottom-header .bottom-header-search {
        max-width: 100%;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: .8s;
        border-bottom: 1px solid #fff; }
        .bottom-header .bottom-header-search.open {
          max-height: 90px; } }
    .bottom-header .bottom-header-search input {
      height: 40px;
      width: calc(100% - 40px);
      color: #ababac;
      background: #f6f7f7;
      padding: 0 17px;
      font-size: 16px; }
    .bottom-header .bottom-header-search button {
      width: 40px;
      height: 40px;
      background-color: #f6f7f7;
      background-image: url(../images/svg/search_grey.svg);
      background-position: center;
      background-size: 20px 20px;
      background-repeat: no-repeat; }

#main-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  min-height: 46px;
  height: auto; }
  @media (max-width: 970px) {
    #main-nav ul {
      position: relative;
      max-height: 0;
      overflow: hidden;
      min-height: 0;
      transition: .5s; }
      #main-nav ul.open {
        max-height: 100vh;
        overflow: auto; }
      #main-nav ul li {
        width: 100%;
        text-align: center; }
        #main-nav ul li a {
          display: block;
          margin: 0;
          padding: 17px 0;
          border-bottom: 1px solid #f4f5f5; } }
  #main-nav ul a {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #242422;
    margin: 0 25px;
    transition: .3s; }
    #main-nav ul a.active, #main-nav ul a:hover {
      color: #4cca8f; }

.JS-main-slider img {
  display: block;
  max-width: 100%;
  min-height: 330px;
  min-width: 1015px; }

.JS-main-slider .swiper-absolute-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

.JS-main-slider .swiper-title {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  max-width: 645px;
  margin-bottom: 20px;
  text-transform: uppercase; }
  @media (max-width: 620px) {
    .JS-main-slider .swiper-title {
      font-size: 32px;
      margin-bottom: 12px; } }

.JS-main-slider p {
  font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 65px; }
  @media (max-width: 620px) {
    .JS-main-slider p {
      font-size: 18px;
      margin-bottom: 32px; } }

.action_btn {
  display: none;
  padding-right: 12px; }
  @media (max-width: 970px) {
    .action_btn {
      display: flex;
      order: -1; } }
  .action_btn #vyhledat {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    margin-left: 18px;
    background: transparent;
    position: relative; }
    .action_btn #vyhledat img {
      max-width: 20px; }
      .action_btn #vyhledat img:last-child {
        background: #fff;
        position: absolute;
        left: 10px;
        top: 8px;
        opacity: 0;
        transition: .3s; }
    .action_btn #vyhledat.open img {
      opacity: 0; }
    .action_btn #vyhledat.open img:last-child {
      opacity: 1; }
  .action_btn #menu {
    width: 40px;
    height: 40px;
    background: transparent;
    position: relative; }
    .action_btn #menu span {
      width: 32px;
      height: 3px;
      background: #a3a9ad;
      display: block;
      position: absolute;
      transition: .3s;
      transform: rotate(0);
      left: 4px; }
      .action_btn #menu span:nth-child(1) {
        top: 8px; }
      .action_btn #menu span:nth-child(2) {
        top: 18px; }
      .action_btn #menu span:nth-child(3) {
        top: 28px; }
    .action_btn #menu.open span:nth-child(1) {
      top: 18px;
      transform: rotate(-45deg); }
    .action_btn #menu.open span:nth-child(2) {
      top: 18px;
      width: 0; }
    .action_btn #menu.open span:nth-child(3) {
      top: 18px;
      transform: rotate(45deg); }

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }
  .swiper-wrapper .swiper-slide {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: flex;
  justify-content: center;
  align-items: center; }

.swiper-invisible-blank-slide {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent); }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
  z-index: 1; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

.aktualita {
  width: calc(100% / 3 - 20px + (20px / 3));
  margin-right: 20px;
  margin-bottom: 20px; }
  .aktualita:nth-child(3n-3) {
    margin-right: 0; }

@media (max-width: 850px) {
  .aktualita {
    width: calc(100% / 2 - 20px + (20px / 2));
    margin-right: 20px;
    margin-bottom: 20px; }
    .aktualita:nth-child(3n-3) {
      margin-right: 20px; }
    .aktualita:nth-child(2n-2) {
      margin-right: 0; } }

@media (max-width: 540px) {
  .aktualita {
    width: calc(100% / 1 - 20px + (20px / 1));
    margin-right: 20px;
    margin-bottom: 20px; }
    .aktualita:nth-child(2n-2) {
      margin-right: 20px; }
    .aktualita:nth-child(1n-1) {
      margin-right: 0; }
  .aktuality_vypis {
    justify-content: center; } }

.aktualita {
  background: #fff;
  text-decoration: none;
  color: #242422;
  transition: .3s;
  max-width: 400px; }
  .aktualita.vypis_detail {
    background: #f6f7f7; }
  .aktualita:hover {
    background: #009de2; }
    .aktualita:hover * {
      color: #fff; }
  .aktualita .aktualita_content {
    padding: 26px 20px; }
    .aktualita .aktualita_content p {
      text-align: justify;
      font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
      font-size: 18px; }
    .aktualita .aktualita_content h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      text-transform: uppercase; }
  .aktualita .aktualita_image {
    position: relative;
	height: 300px;
	background: black; }
    .aktualita .aktualita_image img {
      max-width: 100%;
	  max-height: 100%;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%); }
    .aktualita .aktualita_image .aktualita_date {
      position: absolute;
      left: 10px;
      bottom: 10px;
      color: #fff;
      font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
      font-size: 15px;
      height: 35px;
      width: 114px;
      background: #eca209; }

.aktuality_page {
  margin-bottom: 55px !important; }

.frame {
  max-width: 1264px;
  padding: 0 12px;
  margin: 0 auto;
  width: 100%; }

body {
  position: relative;
  max-width: 1920px;
  margin: 0 auto; }
  body::before {
    width: 100%;
    height: 5000px;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/pp/hp.jpg);
    background-position: top center;
    display: block;
    z-index: 99;
    opacity: .5; }

.category {
  margin: 60px auto; }

.cat-box {
  width: calc(100% / 3 - 20px + (20px / 3));
  margin-right: 20px;
  margin-bottom: 20px; }
  .cat-box:nth-child(4n-4) {
    margin-right: 20px; }
  .cat-box:nth-child(3n-3) {
    margin-right: 0; }

.cat-box {
  width: calc(100% / 3 - 20px + (20px / 3));
  margin-right: 20px;
  margin-bottom: 20px; }
  .cat-box:nth-child(4n-4) {
    margin-right: 20px; }
  .cat-box:nth-child(3n-3) {
    margin-right: 0; }

.cat-box {
  width: calc(100% / 3 - 20px + (20px / 3));
  margin-right: 20px;
  margin-bottom: 20px; }
  .cat-box:nth-child(4n-4) {
    margin-right: 20px; }
  .cat-box:nth-child(3n-3) {
    margin-right: 0; }

@media (max-width: 1023px) {
  .cat-box {
    width: calc(100% / 2 - 20px + (20px / 2));
    margin-right: 20px;
    margin-bottom: 20px; }
    .cat-box:nth-child(3n-3) {
      margin-right: 20px; }
    .cat-box:nth-child(2n-2) {
      margin-right: 0; }
  .cat-box {
    width: calc(100% / 2 - 20px + (20px / 2));
    margin-right: 20px;
    margin-bottom: 20px; }
    .cat-box:nth-child(3n-3) {
      margin-right: 20px; }
    .cat-box:nth-child(2n-2) {
      margin-right: 0; } }

@media (max-width: 750px) {
  .cat-box {
    width: calc(100% / 1 - 20px + (20px / 1));
    margin-right: 20px;
    margin-bottom: 20px; }
    .cat-box:nth-child(2n-2) {
      margin-right: 20px; }
    .cat-box:nth-child(1n-1) {
      margin-right: 0; } }

.cat-box {
  background: #f6f7f7;
  padding: 35px; }
  .cat-box .cat-box-item {
    width: calc(100% - 60px); }
    .cat-box .cat-box-item:first-child {
      width: 40px;
      margin-right: 20px; }
    .cat-box .cat-box-item h2 {
	  width: 160px;
      font-size: 24px;
      font-weight: 700;
      color: #242422;
      text-transform: uppercase;
      margin-bottom: 15px; }
    .cat-box .cat-box-item p {
      font-size: 18px;
      color: #242422;
      font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
      margin-bottom: 26px; }
  .cat-box svg {
    width: 40px;
    height: 53px;
    display: block;
    stroke: #009de2; }
  .cat-box:last-child {
    background: #009de2; }
    .cat-box:last-child svg {
      stroke: #fff; }
    .cat-box:last-child .cat-box-item h2, .cat-box:last-child .cat-box-item p {
      color: #fff; }

.about {
  margin: 100px auto 95px auto; }
  .about img {
    max-width: 100%; }
  .about .about-item:nth-child(1) {
    width: 48.3%; }
  .about .about-item:nth-child(2) {
    width: 45.5%; }
  @media (max-width: 650px) {
    .about .about-item:nth-child(1) {
      width: 100%; }
    .about .about-item:nth-child(2) {
      width: 100%; }
    .about .about-item:first-child {
      margin-right: 0;
      margin-bottom: 40px; } }
  .about .about-item:first-child {
    margin-right: 6.2%; }
  .about h2 {
    font-size: 36px;
    font-weight: 700;
    color: #242422;
    text-transform: uppercase;
    margin-bottom: 15px; }
  .about p {
    font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
    font-size: 18px;
    color: #242422;
    margin-bottom: 18px; }
  .about .btn_wrapp {
    margin-top: 42px; }

.bg_grey {
  background: #f6f7f7;
  padding: 90px 0;
  border-bottom: 1px solid #ececec; }

.aktuality_hp {
  position: relative; }
  .aktuality_hp h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #242422;
    text-transform: uppercase;
    margin-bottom: 70px; }
  .aktuality_hp .btn_wrapp {
    display: none;
    margin-top: 40px; }
    @media (max-width: 850px) {
      .aktuality_hp .btn_wrapp {
        display: inline-block; } }

.order-top {
  position: relative; }
  .order-top .btn_wrapp {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    margin: 0; }
    @media (max-width: 850px) {
      .order-top .btn_wrapp {
        display: none; } }

.footer_top {
  background: #f6f7f7;
  padding-top: 84px; }
  .footer_top .frame {
    padding-bottom: 165px;
    position: relative;
    top: 30px;
    background: #f6f7f7; }
  .footer_top .footer_top_item {
    width: calc(100% / 2 - 0px + (0px / 2));
    margin-right: 0px;
    margin-bottom: 0px; }
    .footer_top .footer_top_item:nth-child(3n-3) {
      margin-right: 0px; }
    .footer_top .footer_top_item:nth-child(2n-2) {
      margin-right: 0; }
  .footer_top .footer_top_item {
    width: calc(100% / 2 - 0px + (0px / 2));
    margin-right: 0px;
    margin-bottom: 0px; }
    .footer_top .footer_top_item:nth-child(3n-3) {
      margin-right: 0px; }
    .footer_top .footer_top_item:nth-child(2n-2) {
      margin-right: 0; }
  .footer_top .footer_top_item:first-child {
    padding-right: 95px; }
  .footer_top .footer_top_item p {
    font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
    margin-bottom: 18px; }
    .footer_top .footer_top_item p b, .footer_top .footer_top_item p strong {
      font-family: "Futura PT", Helvetica, Arial, Sans-Serif;
      font-weight: 700; }
  @media (max-width: 650px) {
    .footer_top .footer_top_item {
      width: calc(100% / 1 - 20px + (20px / 1));
      margin-right: 20px;
      margin-bottom: 20px; }
      .footer_top .footer_top_item:nth-child(2n-2) {
        margin-right: 20px; }
      .footer_top .footer_top_item:nth-child(1n-1) {
        margin-right: 0; }
    .footer_top .footer_top_item {
      text-align: center; }
      .footer_top .footer_top_item:first-child {
        padding-right: 0px; } }
  .footer_top .slogan {
    margin-bottom: 32px; }
    .footer_top .slogan span {
      font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
      font-size: 56px;
      margin-right: 15px; }
      .footer_top .slogan span:last-child {
        margin-right: 0; }
      .footer_top .slogan span:nth-child(1) {
        color: #eca209; }
      .footer_top .slogan span:nth-child(2) {
        color: #009de2; }
      .footer_top .slogan span:nth-child(3) {
        color: #4cca8f; }
  .footer_top .footer_social {
    background: #fff;
    padding: 60px 45px; }
    @media (max-width: 650px) {
      .footer_top .footer_social .wa-inline {
        justify-content: center; } }
    .footer_top .footer_social .footer_social_title {
      font-size: 21px;
      font-weight: 700;
      margin-bottom: 20px; }

footer {
  padding: 60px 0 150px 0;
  background: #1b1b1a; }
  footer .tel {
    margin-bottom: 10px;
    display: inline-block; }
    footer .tel::before {
      margin-right: 17px;
      background-image: url(../images/svg/mobile.svg);
      background-position: center;
      background-repeat: no-repeat;
      content: "";
      display: inline-block;
      vertical-align: middle;
      background-size: 23px 21px;
      width: 30px;
      height: 23px; }
  footer .mail::before {
    margin-right: 17px;
    background-image: url(../images/svg/send.svg);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-size: 23px 21px;
    width: 30px;
    height: 23px; }
  footer .footer-item {
    width: calc(100% / 4 - 20px + (20px / 4));
    margin-right: 20px;
    margin-bottom: 20px; }
    footer .footer-item:nth-child(5n-5) {
      margin-right: 20px; }
    footer .footer-item:nth-child(4n-4) {
      margin-right: 0; }
  footer .footer-item {
    width: calc(100% / 4 - 20px + (20px / 4));
    margin-right: 20px;
    margin-bottom: 20px; }
    footer .footer-item:nth-child(5n-5) {
      margin-right: 20px; }
    footer .footer-item:nth-child(4n-4) {
      margin-right: 0; }
  footer .footer-item {
    width: calc(100% / 4 - 20px + (20px / 4));
    margin-right: 20px;
    margin-bottom: 20px; }
    footer .footer-item:nth-child(5n-5) {
      margin-right: 20px; }
    footer .footer-item:nth-child(4n-4) {
      margin-right: 0; }
  footer .footer-item {
    width: calc(100% / 4 - 20px + (20px / 4));
    margin-right: 20px;
    margin-bottom: 20px; }
    footer .footer-item:nth-child(5n-5) {
      margin-right: 20px; }
    footer .footer-item:nth-child(4n-4) {
      margin-right: 0; }
  @media (max-width: 980px) {
    footer .footer-item {
      width: calc(100% / 2 - 20px + (20px / 2));
      margin-right: 20px;
      margin-bottom: 20px; }
      footer .footer-item:nth-child(3n-3) {
        margin-right: 20px; }
      footer .footer-item:nth-child(2n-2) {
        margin-right: 0; }
    footer .footer-item {
      width: calc(100% / 2 - 20px + (20px / 2));
      margin-right: 20px;
      margin-bottom: 20px; }
      footer .footer-item:nth-child(3n-3) {
        margin-right: 20px; }
      footer .footer-item:nth-child(2n-2) {
        margin-right: 0; }
    footer .footer-item {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      text-align: center; }
      footer .footer-item ul {
        width: 100%; }
    footer .footer_logo {
      display: block;
      margin-left: auto;
      margin-right: auto;
      text-align: center; } }
  @media (max-width: 550px) {
    footer .footer-item {
      width: calc(100% / 1 - 20px + (20px / 1));
      margin-right: 20px;
      margin-bottom: 20px; }
      footer .footer-item:nth-child(2n-2) {
        margin-right: 20px; }
      footer .footer-item:nth-child(1n-1) {
        margin-right: 0; } }
  footer .footer-item-title {
    font-size: 20px;
    color: #009de2;
    font-weight: 700;
    line-height: 38px;
    text-transform: uppercase;
    width: 100%; }
  footer ul {
    list-style-type: none; }
    footer ul .btn_wrapp {
      margin: 15px 0 40px 0; }
      footer ul .btn_wrapp:hover {
        text-decoration: none !important; }
  footer ul li *, footer ul li {
    color: #fff;
    line-height: 32px; }
  footer ul li a {
    color: #fff;
    text-decoration: none; }
    footer ul li a:hover {
      text-decoration: underline; }

.footer_logo {
  margin-bottom: 48px;
  display: inline-block; }

#copy {
  min-height: 90px;
  height: auto;
  color: #8a8b8c;
  font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
  font-size: 19px; }
  #copy img {
    height: 19px; }
  #copy a {
    margin: 0 7px; }
  @media (max-width: 820px) {
    #copy p {
      width: 100%;
      text-align: center;
      justify-content: center;
      font-size: 16px; }
      #copy p img {
        height: 16px; } }
  @media (max-width: 540px) {
    #copy {
      min-height: 50px;
      padding: 19px 0; }
      #copy p {
        font-size: 14px; }
        #copy p:first-child {
          margin-bottom: 8px; }
        #copy p img {
          height: 14px; } }

.drobecky_nav {
  background: #f6f7f7; }

/* W3 schools */
ul.breadcrumb {
  height: 40px;
  background: #f6f7f7; }

/* Display list items side by side */
ul.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 17px;
  color: #ababac;
  font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif; }
  @media (max-width: 460px) {
    ul.breadcrumb li {
      font-size: 12px; } }

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
  margin: 0 8px;
  color: #ababac;
  content: "";
  width: 12px;
  height: 17px;
  background-image: url(../images/svg/arrow_breadcrumbs.svg);
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: 5px 12px;
  vertical-align: middle; }

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  display: inline-block;
  font-size: 17px;
  color: #ababac;
  font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
  text-decoration: none; }
  @media (max-width: 460px) {
    ul.breadcrumb li a {
      font-size: 12px; } }
  ul.breadcrumb li a:hover {
    text-decoration: underline; }

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  text-decoration: underline; }

ul.breadcrumb.responsive li {
  display: none;
  overflow: hidden;
  height: 25px;
  text-overflow: ellipsis; }
  ul.breadcrumb.responsive li a {
    text-overflow: ellipsis; }

ul.breadcrumb.responsive li:before {
  margin: 0 8px;
  color: #ababac;
  content: "";
  width: 12px;
  height: 17px;
  background-image: url(../images/svg/arrow_breadcrumbs.svg);
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: 5px 12px;
  vertical-align: middle;
  transform: rotate(180deg); }

ul.breadcrumb.responsive li:nth-last-child(2) {
  display: inline-block; }

h1 {
  margin: 0 0 45px 0;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 700; }

.layout-item {
  width: calc(100% - 320px); }

nav.layout-item {
  width: 320px; }
  @media (max-width: 970px) {
    nav.layout-item {
      width: 100%;
      padding-left: 0;
      margin-bottom: 30px; } }

div.layout-item {
  padding-left: 58px; }
  @media (max-width: 970px) {
    div.layout-item {
      width: 100%;
      padding-left: 0; } }

.frame_subpage {
  padding-top: 70px;
  padding-bottom: 95px; }

#left-nav .nav-title {
  margin-bottom: 14px;
  display: block;
  color: #4cca8f;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none; }
  #left-nav .nav-title:hover {
    text-decoration: underline; }

#left-nav ul {
  list-style-type: none; }

#left-nav li a {
  border-bottom: 1px solid #f4f5f5;
  width: 100%;
  display: block;
  padding: 17px 65px 17px 35px;
  font-size: 18px;
  font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
  color: #242422;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: .3s; }
  #left-nav li a::before {
    transition: .3s;
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 25px;
    height: 13px;
    background-image: url(../images/svg/arrow_long_green_light.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px 13px; }
  #left-nav li a.here, #left-nav li a:hover {
    padding-left: 65px;
	padding-right: 35px; }
    #left-nav li a.here::before, #left-nav li a:hover::before {
      left: 0; }

.kontakty-item {
  flex: 1;
  position: relative; }
  @media (max-width: 600px) {
    .kontakty-item {
      width: 100%;
      margin-bottom: 20px;
      flex: 0 100%; } }
  .kontakty-item img {
    max-width: 100%; }
  .kontakty-item .point_cluster {
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 100%;
    border: 3px solid #009de2;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 6.3%;
    left: 23%; }
    .kontakty-item .point_cluster::before {
      width: .7vw;
      height: .7vw;
      border-radius: 100%;
      background: #009de2;
      display: block;
      content: ""; }

.text iframe, .text img, .text object {
  display: block;
  max-width: 100%; }

.text h1 {
  margin-bottom: 30px; }

.text h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin: 45px 0 25px 0; }

.text h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin: 35px 0 20px 0; }

.text ul, .text ol {
  margin-bottom: 18px;
  padding-left: 32px; }
  .text ul li, .text ol li {
    font-size: 18px;
    font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
    line-height: 24px; }
    .text ul li strong, .text ul li b, .text ol li strong, .text ol li b {
      font-family: "Futura PT", Helvetica, Arial, Sans-Serif;
      font-weight: 800; }

.text p {
  font-size: 18px;
  font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
  line-height: 24px;
  margin-bottom: 18px; }
  .text p strong, .text p b {
    font-family: "Futura PT", Helvetica, Arial, Sans-Serif;
    font-weight: 800; }

.text table {
  width: 100%;
  text-align: left;
  border-collapse: collapse; }
  .text table tr:nth-child(odd) {
    background: #f6f7f7; }
  .text table tr th, .text table tr td {
    padding: 10px;
    font-size: 18px; }
  .text table tr th {
    font-weight: 700;
    text-transform: uppercase; }
  .text table tr td {
    font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif; }

.nabidka_prace-item {
  width: calc(100% / 2 - 20px + (20px / 2));
  margin-right: 20px;
  margin-bottom: 20px; }
  .nabidka_prace-item:nth-child(3n-3) {
    margin-right: 20px; }
  .nabidka_prace-item:nth-child(2n-2) {
    margin-right: 0; }

.nabidka_prace-item {
  width: calc(100% / 2 - 20px + (20px / 2));
  margin-right: 20px;
  margin-bottom: 20px; }
  .nabidka_prace-item:nth-child(3n-3) {
    margin-right: 20px; }
  .nabidka_prace-item:nth-child(2n-2) {
    margin-right: 0; }

@media (max-width: 600px) {
  .nabidka_prace-item {
    width: calc(100% / 1 - 20px + (20px / 1));
    margin-right: 20px;
    margin-bottom: 20px; }
    .nabidka_prace-item:nth-child(2n-2) {
      margin-right: 20px; }
    .nabidka_prace-item:nth-child(1n-1) {
      margin-right: 0; }
  .nabidka_prace-item .prace-img {
    max-width: 100px; } }

.nabidka_prace-item {
  background: #f6f7f7;
  text-decoration: none;
  color: #242422; }
  .nabidka_prace-item .prace-img {
    overflow: hidden;
    flex: 1; }
    .nabidka_prace-item .prace-img img {
      max-width: 100%;
      display: block;
      transform: scale(1);
      transition: .3s; }
  .nabidka_prace-item .prace-text {
    padding: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px; }
    @media (max-width: 1023px) {
      .nabidka_prace-item .prace-text {
        padding: 16px; } }
  .nabidka_prace-item:hover img {
    transform: scale(1.2); }

#map {
  min-height: 345px;
  width: 100%;
  margin-bottom: 25px; }

.fotogalerie .gallery-item {
  width: calc(100% / 3 - 20px + (20px / 3));
  margin-right: 20px;
  margin-bottom: 20px; }
  .fotogalerie .gallery-item:nth-child(4n-4) {
    margin-right: 20px; }
  .fotogalerie .gallery-item:nth-child(3n-3) {
    margin-right: 0; }

.fotogalerie .gallery-item {
  width: calc(100% / 3 - 20px + (20px / 3));
  margin-right: 20px;
  margin-bottom: 20px; }
  .fotogalerie .gallery-item:nth-child(4n-4) {
    margin-right: 20px; }
  .fotogalerie .gallery-item:nth-child(3n-3) {
    margin-right: 0; }

.fotogalerie .gallery-item {
  width: calc(100% / 3 - 20px + (20px / 3));
  margin-right: 20px;
  margin-bottom: 20px; }
  .fotogalerie .gallery-item:nth-child(4n-4) {
    margin-right: 20px; }
  .fotogalerie .gallery-item:nth-child(3n-3) {
    margin-right: 0; }

@media (max-width: 600px) {
  .fotogalerie .gallery-item {
    width: calc(100% / 3 - 10px + (10px / 3));
    margin-right: 10px;
    margin-bottom: 10px; }
    .fotogalerie .gallery-item:nth-child(4n-4) {
      margin-right: 10px; }
    .fotogalerie .gallery-item:nth-child(3n-3) {
      margin-right: 0; }
  .fotogalerie .gallery-item {
    width: calc(100% / 3 - 10px + (10px / 3));
    margin-right: 10px;
    margin-bottom: 10px; }
    .fotogalerie .gallery-item:nth-child(4n-4) {
      margin-right: 10px; }
    .fotogalerie .gallery-item:nth-child(3n-3) {
      margin-right: 0; }
  .fotogalerie .gallery-item {
    width: calc(100% / 3 - 10px + (10px / 3));
    margin-right: 10px;
    margin-bottom: 10px; }
    .fotogalerie .gallery-item:nth-child(4n-4) {
      margin-right: 10px; }
    .fotogalerie .gallery-item:nth-child(3n-3) {
      margin-right: 0; } }

.fotogalerie .gallery-item {
  display: block;
  position: relative; }
  .fotogalerie .gallery-item::before {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 157, 226, 0.75);
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    transition: .3s;
    opacity: 0;
    background-repeat: no-repeat;
    background-image: url(../images/svg/plus.svg);
    background-position: center;
    background-size: 30px 30px; }
  .fotogalerie .gallery-item:hover::before {
    opacity: 1; }

.fotogalerie img {
  display: block;
  max-width: 100%; }

.video {
  position: relative;
  margin-bottom: 18px;
  max-width: 650px; }
  .video .video-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    background-repeat: no-repeat;
    background-image: url(../images/svg/play.svg);
    background-position: center;
    background-size: 15px 25px; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

@media (max-width: 768px) {
  .footer_top .frame {
    padding-bottom: 35px; }
  .footer_top {
    padding-top: 24px; }
  .bg_grey {
    padding: 40px 0; }
  .aktuality_hp h2 {
    margin-bottom: 40px; }
  .about {
    margin: 50px auto 50px auto; }
  footer {
    padding: 60px 0 40px 0; }
  .frame_subpage {
    padding-top: 40px;
    padding-bottom: 40px; }
  .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
    display: none !important; } }

.btn_wrapp {
  display: inline-block;
  text-decoration: none; }

.btn {
  padding: 0 22px;
  height: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none; }
  .btn.green {
    background: #4cca8f; }
    .btn.green::after {
      position: relative;
      top: 2px;
      content: "";
      width: 25px;
      height: 11px;
      background-image: url(../images/svg/arrow_long_green.svg);
      background-position: left top;
      background-repeat: no-repeat;
      display: block;
      background-size: 25px 11px;
      margin-left: 26px; }
    .btn.green:hover {
      background: #39bf80; }
  .btn.absolute-video-desc {
    position: absolute;
    bottom: 30px;
    left: 30px;
    max-width: 100%;
    cursor: default; }
    .btn.absolute-video-desc::after {
      display: none; }
    .btn.absolute-video-desc:hover {
      background: #4cca8f; }
  .btn.blue {
    background: #009de2; }
    .btn.blue::after {
      position: relative;
      top: 2px;
      content: "";
      width: 25px;
      height: 11px;
      background-image: url(../images/svg/arrow_long_blue.svg);
      background-position: left top;
      background-repeat: no-repeat;
      display: block;
      background-size: 25px 11px;
      margin-left: 15px; }
    .btn.blue:hover {
      background: #0088c3; }
  .btn.orange {
    background: #eca209; }
    .btn.orange::after {
      position: relative;
      top: 2px;
      content: "";
      width: 25px;
      height: 11px;
      background-image: url(../images/svg/arrow_long_white.svg);
      background-position: left top;
      background-repeat: no-repeat;
      display: block;
      background-size: 25px 11px;
      margin-left: 15px; }
    .btn.orange:hover {
      background: #cf8e08; }
  .btn.orange_2 {
    background: #ff9f00; }
    .btn.orange_2::after {
      position: relative;
      top: 2px;
      content: "";
      width: 25px;
      height: 11px;
      background-image: url(../images/svg/arrow_long_orange.svg);
      background-position: left top;
      background-repeat: no-repeat;
      display: block;
      background-size: 25px 11px;
      margin-left: 15px; }
    .btn.orange_2:hover {
      background: #e08c00; }
  .btn.white {
    color: #242422;
    background: #fff; }
    .btn.white::after {
      position: relative;
      top: 2px;
      content: "";
      width: 25px;
      height: 11px;
      background-image: url(../images/svg/arrow_long_dark.svg);
      background-position: left top;
      background-repeat: no-repeat;
      display: block;
      background-size: 25px 11px;
      margin-left: 15px; }
    .btn.white:hover {
      background: #0088c3;
      color: #fff; }
      .btn.white:hover::after {
        background-image: url(../images/svg/arrow_long_white.svg); }

.btn_sq {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .btn_sq.green {
    background: #4cca8f;
    color: #fff;
    margin-right: 10px;
    transition: .3s; }
    .btn_sq.green:hover {
      background: #34af75; }
    .btn_sq.green.fb img {
	  display: block;
      max-width: 11px;
	  max-height: 21px; }
    .btn_sq.green.yt img {
	  display: block;
	  width: auto;
      max-width: 19px;
	  max-height: 14px; }

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  top: 50%;
  transform: translateY(-50%);
  left: auto;
  width: 40px;
  right: 20px;
  height: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-height: 150px; }
  .swiper-pagination-fraction .swiper-pagination-bullet, .swiper-pagination-custom .swiper-pagination-bullet, .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 30px;
    line-height: 30px;
    height: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    opacity: 1;
    background: transparent;
    border-radius: 0;
    flex: 0 100%;
    margin: 5px 0;
    max-height: 30px; }
    .swiper-pagination-fraction .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination-custom .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: #4cca8f; }

.JS-main-slider .swiper-title, .JS-main-slider p, .JS-main-slider .btn_wrapp {
  position: relative;
  left: -700px;
  transition: 1s; }

.JS-main-slider .swiper-slide-active .swiper-title, .JS-main-slider .swiper-slide-active p, .JS-main-slider .swiper-slide-active .btn_wrapp {
  left: 0; }

/*Otakarovy styly*/

/*--------REGISTRACE---------*/
.clearfix:after{
	content: "";
	display: block;
	clear: both;
}

#registrace{
	width: 100%;
	max-width: 1280px;
	margin:auto auto;
	padding: 0 10px 30px;
}

	#registrace .orange_box_text{
		margin-top: 80px;
		padding: 10px;
		text-align: left;
		color: #fff;
		background-color: #f47621;
	}

	#registrace h1{
		margin-top: 70px;
		margin-bottom: 30px;
		padding-bottom: 5px;
	}

	#registrace p{
		font-size: 18px;
		color: #242422;
		font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
		margin-bottom: 20px;
	}
	
#reg_pitr{
	width: 100%;
}

	#reg_pitr .box{
		float: left;
		width: 400px;
		height: 250px;
		padding: 35px;
		text-align: left;
		background: #f6f7f7;
	}
	#reg_pitr .box:first-of-type{
		margin-right: 20px;
	}
	@media all and (max-width: 800px){
		#reg_pitr .box{
			margin-bottom: 5px;
			margin-right: 0;
			width: 100%;	
		}
	}
		#reg_pitr .container{
			background: #f7f7f7;
		}
			#reg_pitr h5{
				font-size: 24px;
				font-weight: 700;
				color: #242422;
				text-transform: uppercase;
				margin-bottom: 15px;
			}
			#reg_pitr p{
				font-size: 18px;
				color: #242422;
				font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
				margin-bottom: 26px;
			}

#registrace form{
	float: left;
	width: 400px;
	padding: 25px 35px;
	text-align: left;
	background: #194b5e;
}
	#registrace form .nazev_left{
		margin: 15px 0 6px;
		font-size: 18px;
		color: white;
	}
	#registrace form input:not([type="submit"]){
		border: 1px solid rgb(128,128,128);
		height: 30px;
		padding: 0 10px;
		font-size: 1em;
		width: 100%;
	}
	#registrace form .btn{
		margin-top: 20px;
	}
	#registrace form a{
		display: block;
		margin-top: 5px;
		font-size: 1.2em;
		color: #4cca8f;
	}
	#registrace form input[type="submit"]:hover{
		color: #f47621;
		cursor: pointer;
	}
	
#forgotten-pass{
	max-width: 1280px;
	margin: auto auto;
	padding: 70px 10px 30px;
}
	#forgotten-pass p{
		font-size: 18px;
		color: #242422;
		font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
		margin-bottom: 20px;
	}
	#forgotten-pass input{
		width: 300px;
		height: 30px;
		margin: 10px 0 10px 5px;
		padding: 0 10px;
		border: 1px solid rgb(200,200,200);
		line-hieght: 30px;
		font-size: 1em;
		background: white;
	}
	#forgotten-pass .btn{
		margin-top: 20px;	
	}
	
	
#dotaznik{
	max-width: 1280px;
	width: 100%;
	margin: auto auto;
	padding: 0 10px;
}
#dotaznik h1{
	margin-top: 70px;
	margin-bottom: 10px;
}
#dotaznik p{
	font-size: 17px;
	font-family: "Futura PT Book", Helvetica, Arial, Sans-Serif;
}
/*formulář dodavatele*/
#registrace-dodavatele *{
	box-sizing: border-box;
}
#registrace-dodavatele .clear{
	clear: both;
}
#registrace-dodavatele{
	max-width: 900px;
	width: calc(100% - 40px);
	margin: 20px auto;
	padding: 30px;
	background: #f6f7f7;
}
	#registrace-dodavatele .btn{
		margin-top: 20px;
	}
	#registrace-dodavatele input[type="text"], #registrace-dodavatele input[type="email"], #registrace-dodavatele textarea{
		border: 1px solid rgb(200,200,200);
	}
		
		#registrace-dodavatele section header{
			height: 50px;
			position: relative;
			line-height: 50px;
			background: #194b5e;
			color: white;
		}
			#registrace-dodavatele section header span{
				height: 100%;
				position: absolute;
				left: 0;
				padding: 0 20px;
				font-size: 22px;
				font-weight: 600;
			}
			#registrace-dodavatele section header h2{
				margin: 0;
				line-height: inherit;
				text-align: center;
				font-size: 22px;
				font-weight: 600;
				color: inherit;
			}
		#registrace-dodavatele section table{
			border-collapse: collapse;
		}
		#registrace-dodavatele section table tr{
			border: 0;	
		}
			#registrace-dodavatele section table td, #registrace-dodavatele section table th{
				padding: 5px;	
			}
	#registrace-dodavatele #heading{
		margin-bottom: 30px;
		text-align: center;
	}
		#registrace-dodavatele table{
			width: 100%;
		}
			#registrace-dodavatele #heading h1{
				margin: 15px 0;
				text-align: center;
				font-size: 36px;
			}
			#registrace-dodavatele #heading td{
				border: 1px solid rgb(200,200,200);
			}
			#registrace-dodavatele #heading td:first-of-type{
				width: 200px;	
			}
			
	#registrace-dodavatele #oddil-1 td{
		width: 50%;
		vertical-align: top;	
		text-align: left;
		border: 1px solid rgb(200,200,200);
		padding: 10px;
		font-weight: 600;
	}
	#registrace-dodavatele #oddil-1 label:not([for*="ne"]):not([for*="ano"]){
		display: block;
	}
	#registrace-dodavatele #oddil-1 input:not([type="radio"]){
		width: 100%;
		height: 50px;	
		font-size: 16px;
		padding: 0 10px;
	}
	
	#registrace-dodavatele #oddil-1 .radio{
		display: inline-block;
		height: 20px;
		white-space: nowrap;
		position: relative;	
		padding-right: 30px;
	}
	#registrace-dodavatele #oddil-1 .radio:last-of-type{
		margin-left: 20px;
	}
		#registrace-dodavatele #oddil-1 .radio label{
			font-weight: 400;
			line-height: 20px;
			cursor: pointer;
		}
		#registrace-dodavatele #oddil-1 .radio input{
			height: 20px;
			width: 20px;
			position: absolute;
			top: 0;
			right: 0;
			cursor: pointer;
		}
		#registrace-dodavatele #oddil-1 .radio .cross{
			content: "";
			display: block;
			height: 100%;
			width: 20px;
			position: absolute;
			top: 0;
			right: 0;
			border: 1px solid rgb(200,200,200);
			background: white;
			pointer-events: none;
		}
		#registrace-dodavatele #oddil-1 .radio input:checked + .cross{
			background-image: url(../image/close.png);
			background-size: 100% 100%;
			backgorund-position: center center;
		}
		
	#registrace-dodavatele #oddil-2{
		margin-bottom: 20px;
		font-weight: 600;
	}
		#registrace-dodavatele #oddil-2 td{
			height: 70px;
			border: 1px solid rgb(200,200,200);
			padding: 5px;
		}
		#registrace-dodavatele #oddil-2 td:first-of-type{
			width: 75px;	
		}
		#registrace-dodavatele #oddil-2 td:nth-of-type(2){
			width: 220px;
			text-align: left;	
		}
		#registrace-dodavatele #oddil-2 td:last-of-type textarea{
			width: 100%;
			height: 60px;
			resize: none;
			border-radius: 0;
			font-size: 15px;
			font-family: 'Open Sans';
		}
	#registrace-dodavatele #oddil-3 tbody{
		border: 1px solid rgb(200,200,200);
	}
	#registrace-dodavatele #oddil-3 tbody tr:first-of-type td:first-of-type{
		min-width: 40px;
		width: 6%;
		vertical-align: top;
	}
	#registrace-dodavatele #oddil-3 td.popis{
		width: 66%;
		text-align: left;
		vertical-align: top;
	}
	#registrace-dodavatele #oddil-3 td.popis > *:not(:first-of-type){
		margin-top: 15px;	
	}
	#registrace-dodavatele #oddil-3 .text-inputs{
		width: 500px;
	}
	/*#registrace-dodavatele #oddil-3 .text-inputs > div{
		width: calc(100% - 280px);
		padding: 5px;
	}*/
		#registrace-dodavatele #oddil-3 .text-inputs tbody{
			border: 0;
		}
		#registrace-dodavatele #oddil-3 .text-inputs td{
			width: 50%;
			border: 0;
		}
		#registrace-dodavatele #oddil-3 .text-inputs span{
			white-space: nowrap;	
		}
		#registrace-dodavatele #oddil-3 .text-inputs input{
			height: 50px;
			width: 100%;
			font-size: 16px;
			padding: 0 10px;
		}
		#registrace-dodavatele #oddil-3 .soubory{
			width: 28%;
			vertical-align: top;
		}
		#registrace-dodavatele #oddil-3 .soubory p{
			margin-bottom: 10px;	
		}
	#registrace-dodavatele #oddil-3 td.soubory, #registrace-dodavatele #oddil-3 th:nth-of-type(3){
		/*width: 220px;*/
	}
	#registrace-dodavatele #oddil-3 td, #registrace-dodavatele #oddil-3 th{
		border-style: solid;
		border-color: rgb(200,200,200);
		border-width: 0 1px;
	}
	#registrace-dodavatele #suboddil-9{
		margin-top: 20px;
		border: 2px solid #4cca8f;	
	}
	#registrace-dodavatele #suboddil-9 label{
		cursor: pointer;	
	}
	
/*HSETEST*/
#hsetest{
	width: 100%;
	max-width: 1280px;
	margin: auto auto;
	padding: 0 10px;
}
	#hsetest h1{
		padding-top: 70px;
		margin-bottom: 10px;
	}
	#hsetest .pozn{
		font-size: 17px;
		color: #4cca8f;
	}
	#hsetest form{
		width: 100%;
		margin: 20px 0;
		padding: 40px;
		background: #f6f7f7;
	}
	@media all and (max-width: 600px){
		#hsetest form{
			padding: 10px;	
		}
	}
	#hsetest form tbody td:first-of-type{
		padding-right: 10px;	
	}
	#hsetest form tbody td:first-of-type input{
		cursor: pointer;
	}
	#hsetest table h3{
		padding: 10px 0;
		font-size: 	22px;
	}
	#hsetest .left_grant1{
		vertical-align: top;	
	}
	#hsetest .input_grant{
		font-size: 17px;
	}
	#hsetest .input_grant::first-letter{
		text-transform: uppercase;
	}
	#hsetest .submit_grant{
		text-align: left;	
	}
	#hsetest .btn{
		margin-top: 20px;
	}
	/*#hsetest input[name="send"]{
		height: 36px;
		padding: 0 8px;
		border: 1px solid black;
		font-size: 1em;
		transition: color .5s ease;
		cursor: pointer;
	}
	#hsetest input[name="send"]:hover{
		color: 	#eca209
	}*/
	
/*Lightbox*/
.glr .img{
    float: left;
    height: 90px;
    width: 160px;
    margin: 10px;
    padding: 4px;
    background-color: rgb(100,100,100);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.lightbox{
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
	left: 0;
    background: rgba(0,0,0,.8);
    z-index: 1;
}
.lightbox.active{
    display: block;
}
    .lightbox button{
        display: block;
        background: none;
        text-align: center;
        border: 0;
        color: white;
        cursor: pointer;
    }
    .lightbox .exit{
        height: 30px;
        width: 30px;
        position: absolute;
        top: 10px;
        right: 10px;
        line-height: 30px;
        font-size: 25px;
    }
        .lightbox .exit span{
            display: block;
            height: 4px;
            width: 100%;
            position: absolute;
            border-radius: 1px;
            background: white;
        }
        .lightbox .exit span:first-of-type{
            top: calc(50% - 2px);
            transform: rotate(45deg);
        }
        .lightbox .exit span:last-of-type{
            bottom: calc(50% - 2px);
            transform: rotate(-45deg);
        }
    .lightbox .previous{
        height: 50px;
        width: 50px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        line-height: 50px;
        font-size: 40px;
    }
        .lightbox .previous .sipka{
            display: block;
            height: 20px;
            width: 20px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            border-left: 3px solid white;
            border-bottom: 3px solid white;
        }
    .lightbox .next{
        height: 50px;
        width: 50px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        line-height: 50px;
        font-size: 40px;
    }
        .lightbox .next .sipka{
            display: block;
            height: 20px;
            width: 20px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-45deg);
            border-right: 3px solid white;
            border-bottom: 3px solid white;
        }
    .lightbox .full{
        max-height: calc(100% - 140px);
        max-width: calc(100% - 100px);
        position: absolute;
        left: 50%;
        top: calc(50% - 55px);
        transform: translate(-50%, -50%);
    }
    .lightbox .lightbox-gallery{
        height: 110px;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 0 20px;
        background: rgb(50,50,50);
        word-spacing: -0.30em;
    }
        .lightbox .lightbox-gallery .lightbox-gallery-slider{
            white-space: nowrap;
            overflow: hidden;
            transition: left .5s ease;
            position: absolute;
            bottom: 0;
            left: 0;
        }
            .lightbox .lightbox-gallery .img{
                display: inline-block;
                height: 90px;
                width: 160px;
                margin: 10px;
                padding: 4px;
                border: 4px solid rgb(100,100,100);
                background-color: rgb(100,100,100);
                background-position: center center;
                background-repeat: no-repeat;
                background-size: contain;
                cursor: pointer;
            }
            .lightbox .lightbox-gallery .img.active{
                padding: 0;
                border: 4px solid red;
            }

.thumbnail-gallery{
    display: contents;
}

/* ostatní */
#main-nav{
	border-bottom: 1px solid #f4f5f5;
}

#left-nav li.active{
	font-weight: 600;
}
#left-nav .submenu-item{
	padding-left: 20px;
	background: #f5f5f5;
}

.swiper-slide{
	position: relative;
	height: auto;
}

.JS-main-slider video{
	display: block;
	width: 100%;
	min-height: 330px;
	min-width: 700px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.frame_subpage.wa-inline{
	display: block;
}
.frame_subpage.wa-inline:after{
	content: "";
	display: block;
	clear: both;
}
.wa-inline h2.def{
	width: 100%;
	text-align: center;
	margin: 30px 0;
}
.layout-item{
	float: right;
}
nav.layout-item{
	float: left;
}


#files{
	margin-left: auto;
}
.soubory{
	margin: 10px 0 30px;
	border-collapse: collapse;
}
	.soubory td{
		padding: 10px;
		border: 1px solid #eee;
	}
	.soubory td:last-of-type{
		white-space: nowrap;
	}
	
#gallery{
	margin-left: auto;
}
	#gallery .fotogalerie{
		justify-content: space-between;	
	}
	#gallery img{
		width: calc(100% / 3 - 10px);
		margin-top: 16px;
	}
	
.wrp{
	width: 100%;
	max-width: 900px;
	margin: auto auto;
	padding: 30px 0;
}
.wrp form, .layout-item form{
	padding: 20px;
	border-radius: 0;
	background: #f6f7f7;
}
/* "default" form styles */
.grant-wrp{
	width: 100%;
	max-width: 900px;
	margin: auto auto;
}
	.grant-wrp h1{
		margin: 30px 0;
	}

form.grant{
	width: 100%;
	padding: 37px;
	border-radius: 15px;
	border: 1px solid #CACACA;
	text-align: center;
	background-color: #f5f5f5;
}

table.tabulka_grant{
	width: 100%;
}
table.tabulka_grant tr td{
	display: inline-block;
	max-width: 300px;
	width: 100%;
	padding: 2px;
	text-align: left;
}
table.tabulka_grant tr td input[type="text"], table.tabulka_grant tr td input[type="email"]{
	box-sizing: border-box;
	width: 233px;
	height: 30px;
	padding: 10px;
	border: 1px solid rgb(218, 218, 218);
	border-radius: 4px;
	text-align: left;
	font-size: 1em;
}
table.tabulka_grant tr td [class*="prace"]{
	display: flex;
	padding: 10px 0;
}
table.tabulka_grant tr td input[type="checkbox"]{
	margin-right: 20px;
}
table.tabulka_grant tr td textarea{
	width: 233px;
	min-height: 70px;
	padding: 10px;
	border: 1px solid rgb(218, 218, 218);
	border-radius: 4px;
	text-align: left;
	font-size: 1em;
}
table.tabulka_grant .submit_grant{
	padding: 20px 0;
}

#turnaj{
	padding-bottom: 30px;
}

#turnaj .form-end .left_grant{
	display: inline-block;
	position: relative;
	top: -35px;
}
#turnaj .form-end .g-recaptcha{
	display: inline-block;
	margin-left: 20px;
}
@media all and (max-width: 600px){
	#turnaj .form-end .left_grant{
		display: block;
		position: static;	
	}
	#turnaj .form-end .g-recaptcha{
		margin-left: 0;	
		margin-bottom: 20px;
	}
}


table.tabulka_grant.turnaj-01 tr td input{
	width: 460px;
	max-width: 100%;
}
table.tabulka_grant.turnaj-02 tr td{
	display: table-cell;
	width: auto;
}
@media all and (min-width: 761px) and (max-width: 969px), all and (min-width: 1161px){
	table.tabulka_grant.turnaj-02 tr td{
		max-width: unset;	
	}
	table.tabulka_grant.turnaj-02 tr td:nth-of-type(2) input{
		max-width: 200px;
	}
	table.tabulka_grant.turnaj-02 tr td:nth-of-type(3) input{
		max-width: 80px;
	}
	table.tabulka_grant.turnaj-02 tr td:nth-of-type(4) input{
		width: 400px;
	}
	table.tabulka_grant.turnaj-02 input::placeholder{
		opacity: 0;
	}
}
@media all and (max-width: 760px), all and (min-width: 970px) and (max-width: 1160px){
	table.tabulka_grant.turnaj-02{
		display: block;	
	}
	table.tabulka_grant.turnaj-02 tr{
		clear: both;
		display: block;
		position: relative;
		padding: 10px 0;	
	}
	table.tabulka_grant.turnaj-01{
		max-width: 100%;	
	}
	table.tabulka_grant.turnaj-01 tr{
		max-width: 100%;	
	}
	table.tabulka_grant.turnaj-01 tr td{
		max-width: 100%;	
	}
	table.tabulka_grant.turnaj-02 tr td{
		display: block;
		float: left;
		height: 34px;
		max-width: unset;
		line-height: 34px;
	}
	table.tabulka_grant.turnaj-02 tr td input{
		width: 100%;
	}
	table.tabulka_grant.turnaj-02 tr td:nth-of-type(2){
		width: calc(100% - 140px);
	}
	table.tabulka_grant.turnaj-02 tr td:nth-of-type(3){
		width: 120px;
	}
	table.tabulka_grant.turnaj-02 thead{
		display: none;
	}
	table.tabulka_grant.turnaj-02 tr td:nth-of-type(4){
		width: calc(100% - 20px);
		margin-left: 20px;
	}
}

#detail-aktuality{
	padding: 50px 0;
}


/*ul.breadcrumb li a:first-letter{
	text-transform: uppercase;
}
ul.breadcrumb li a{
	text-transform: lowercase;
}*/
a{
	color: #4cca8f;
}

#\/turnaj{
	padding-bottom: 0;
}


#\/registrace\/zbozi .btn{
	display: inline-block;
	margin: 10px;
}


#\/informace\/projekty\/15 .layout-item.text table:nth-of-type(n-5) td:nth-of-type(3){
	white-space: nowrap;
}
#\/informace\/projekty\/15 .layout-item.text table td:nth-of-type(4){
	white-space: nowrap;
}


[id*=bezpecnost-prace] .layout-item.text table{
	display: block;
}
	[id*=bezpecnost-prace] .layout-item.text table tr{
		display: block;
	}
	@media all and (min-width: 701px){
		[id*=bezpecnost-prace] .layout-item.text table tr:after{
			content: "";
			display: block;
			clear: both;
		}
	}
		[id*=bezpecnost-prace] .layout-item.text table tr td{
			float: left;
			width: calc(100% / 3 - 12px);
			margin: 6px;
		}
		@media all and (max-width: 700px){
			[id*=bezpecnost-prace] .layout-item.text table tr{
				display: contents;
			}
			[id*=bezpecnost-prace] .layout-item.text table tr td{
				width: calc(50% - 10px);
				margin: 0 5px;
				padding: 0;
			}
		}
			[id*=bezpecnost-prace] .layout-item.text table tr td img{
				cursor: pointer;
			}
			
[id*=politika-bozp] .layout-item.text table{
	display: block;
}
	[id*=politika-bozp] .layout-item.text table tr{
		display: block;
	}
	@media all and (min-width: 701px){
		[id*=politika-bozp] .layout-item.text table tr:after{
			content: "";
			display: block;
			clear: both;
		}
	}
		[id*=politika-bozp] .layout-item.text table tr td{
			float: left;
			width: calc(100% / 3 - 12px);
			margin: 6px;
		}
		@media all and (max-width: 700px){
			[id*=politika-bozp] .layout-item.text table tr{
				display: contents;
			}
			[id*=politika-bozp] .layout-item.text table tr td{
				width: calc(50% - 10px);
				margin: 0 5px;
				padding: 0;
			}
		}
			[id*=politika-bozp] .layout-item.text table tr td img{
				cursor: pointer;
			}
			
.img-reader{
	display: none;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	overflow: scroll;
	background: rgba(0,0,0,.5);
}
.img-reader.active{
	display: block;
}
	.img-reader .container{
		width: auto;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -10px);
		margin-top: 20px;
		background: white;
		box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
	}
		.img-reader .container img{
			width: 600px !important;
			max-width: calc(100vw - 10px);
		}


#hledat{
	max-width: 1280px;
	padding: 70px 10px 30px;
}
#hledat li{
	margin: 10px 0;
}
#hledat .cols .col-2{
	padding: 0 20px;
}
#hledat .cols .col-2:last-of-type{
	margin-top: 20px;
}
@media all and (min-width: 900px){
	.cols:after{
		content: "";
		display: block;
		clear: both;
	}
	.cols .col-2{
		width: 50%;
		float: left;
	}
}

#sune{
	padding: 30px 0;
	text-align: center;
}

#sune a{
	display: inline-block;
	line-height: 40px;
}
#sune a:after{
	display: none;
}

.cat-box-item img{
	width: 50px;
	height: 53px;
}

.aktualita .aktualita_image{
	height: calc((100vw / 3 - 80px / 3) / 4 * 3);
	max-height: 300px;
}
@media all and (max-width: 850px){
	.aktualita .aktualita_image{
		height: calc((50vw - 60px) / 4 * 3);
		max-height: unset;
	}
}
@media all and (max-width: 540px){
	.aktualita .aktualita_image{
		height: calc((100vw - 40px) / 4 * 3);
		max-height: 300px;
	}
}
.aktualita .aktualita_image .img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#detail-aktuality{
	padding: 70px 10px 30px;
}

.fotogalerie_detail{
}
.fotogalerie_detail .reflect{
	width: calc(20%);
	margin-top: 16px;
	padding: 0 8px;
}
@media all and (max-width: 1000px){
	.fotogalerie_detail .reflect{
		width: calc(25%);
	}
}
@media all and (max-width: 800px){
	.fotogalerie_detail .reflect{
		width: calc(100% / 3);
	}
}
@media all and (max-width: 600px){
	.fotogalerie_detail .reflect{
		width: calc(50%);
	}
}
@media all and (max-width: 400px){
	.fotogalerie_detail .reflect{
		width: calc(100%);
	}
}