@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Defaultní nastavení všech hodnot */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;            
	vertical-align: baseline
}


/* Změna způsobu počítání šířky a výšky elementu */
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
          box-sizing: border-box;		
}

html, body {
  height: 100%;  
	width: 100%;
}

html {
  font-size: 75%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #fff;
  color: var(--main-text-color);
  font-family: var(--main-font-family);
  font-size: var(--main-text-size);
  font-weight: var(--main-text-weight);
  line-height: var(--main-text-line-height);
}


@media (min-width: 768px) { html { font-size: 85%; }}
@media (min-width: 992px) { html { font-size: 92%; }}
@media (min-width: 1200px){ html { font-size: 100%;}}



/* selection */

::selection {
    background-color: #c5a47e;
    color: #fff;
}

-webkit-::selection {
    background-color: #c5a47e;
    color: #fff;
}

::-moz-selection {
    background-color: #c5a47e;
    color: #fff;
}


/* definice barev */

:root {
  --main-text-color: #111;
  --main-text-line-height: 1.6rem;
  --main-text-size: 1rem;
  --main-text-weight: 400;
  --main-link-color: #b36846;
  --main-font-family: "Roboto", sans-serif;
  --main-bg-color: #f9f9f9;
  --main-border-color: #ddd;

  --alternative-link-color: #3b7e4e;
  --alternative-bg-color: #e7f3fb;
  --alternative-font-family: 'Quicksand', sans-serif;

  --swiper-theme-color:#3b7e4e !important;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-inactive-color: #aaa;
}



/************************************
               layout             
*************************************/

.content {
  background: #fff;
  padding-left: 0;
  padding-right: 0;
  padding-top: clamp(30px, 3%, 40px);
  padding-bottom: clamp(30px, 3%, 40px);
  width: 100%;
}

.container-content {
  height: auto;
  margin: 0 auto;
  padding: 0 2vmin;
  max-width: 1300px;
  width: 100%;
}

.container-swiper {
  height: auto;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.container-content-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  margin: 0 auto;
  padding: 0 2vmin;
  max-width: 1300px;
  width: 100%;
}

.center-block {
  height: auto;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}



/**/

p.clear {
    clear: both;
    font-size: 0px;
    height: 0px;
    line-height: 0px;
    text-indent: -500px;
}

hr {
    border-top: solid 1px #ccc;
    border-bottom: none;
    display: block;
    margin: 0 auto 3vmin auto;
    width: 100%;
}

hr.clear {
  border: none;
  display: block;
  margin: 0 auto 3vmin auto;
  width: 100%;
}

hr.title {
    border-top: solid 1px #ccc;
    border-bottom: none;
    display: block;
    margin: 0 auto 1vmin auto;
    width: 100%;
}

@media screen and (max-width: 640px) {
    hr.title {
        margin: 0 0 15px 0;
    }
}


/* pozadí */

.bg-grey {
    background: #f4f4f8;
}

.bg-dark {
    background: #111c35;
}

.bg-pattern {
  background: url("/img/bg-pattern.webp") no-repeat center center;
  background-size: cover;
}

.bg-map {
  background: url("/img/bg-map.webp") no-repeat center center;
  background-size: contain;
}

.bg-footer {
  background: #232724 url("/img/bg-footer.webp") no-repeat bottom right;
  background-size: cover;
}




/* rozdělení­ pravá/levá část v kat. */

.content .content-left {
  float: left;
  min-width: 300px;
  height: auto;
  width: 70%;
}

.content .content-right {
  float: right;
  margin: 0 0 0 2%;
  height: auto;
  width: 23%;
}

.content .content-right-menu {
  background: #f9f9f9;
  height: auto;
  padding: 2vmin;
}


@media screen and (max-width: 800px) {
  .content .content-left {
    width: 100%;
  }

  .content .content-right {
    margin: 20px 0 0 0;
    width: 100%;
  }

  .content .content-right-menu {
    display: none;
  }
}




/************************************
              header             
*************************************/

header {
  display: flex;
  align-items: center;
  height: 120px;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}


.header {
  opacity: 1;
  transition: all 0.2s ease 0s;
}
.header-active {
  background: #07111a;
  height: 80px;
}
.header-active a:link img {
  max-height: 55px !important;
}

.header-active .burger-wrap {
  top: 5px !important;
}



/* logo */

.header-title {
  display: flex;
  width: 100%;
  max-width: 200px;
}
.header-title a {
  align-items: center;
  display: flex;
  width: 100%;
}
.header-title a img,
.header-title-category a img {
  max-height: 80px;
  transition: all 0.2s ease 0s;
}


/* nadpis */

.header-title h1,
.header-title a:link,
.header-title a:visited,
.header-title a:hover {
    color: var(--main-link-color);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}
  
.header-title h1 strong,
.header-title a strong {
    color: #111;
    font-family: var(--main-font-family);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
}


/* menu */

.header-menu {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  flex: 2;
  height: auto;
  position: relative;
}


/* hack pro zarovnání flex bloků vlevo/vpravo */

header>.container-content-flex>span {
    display: none;
}


/* ikony soc. sítí */

.header-social-icons {
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 40px;
  display: flex;
  padding: 0 2vmin;
  min-width: 90px;
}

.header-social-icons .fa-facebook-f,
.header-social-icons .fa-youtube,
.header-social-icons .fa-x-twitter,
.header-social-icons .fa-instagram,
.header-social-icons .fa-linkedin-in {
    color: #fff;
    font-size: 1.6rem;
    margin: 0 10px;
    transition: all 0.2s ease 0s;
}
.header-social-icons .fa-facebook-f:hover {
  color: #3b5998;
}
.header-social-icons .fa-youtube:hover {
  color: #f70000;
}
.header-social-icons .fa-instagram:hover {
  color: #c3317f;
}
.header-social-icons .fa-linkedin-in:hover {
  color: #0077b5;
}
.header-social-icons .fa-x-twitter:hover {
  color: #ddd;
}

.mobil-social-icons {
  display: none;
}


@media screen and (max-width: 1300px) {
  header {
    height: 80px;
  }
  .header-title {
    min-width: 200px;
  }
  .header-menu {
    position: initial;
  }
  .header-social-icons {
    margin: 0 75px 0 0;
  }
}


@media screen and (max-width: 1000px) {
  .header-title a:link img {
    max-height: 50px;
    padding: 0 10px 0 0;
  }  
  .header-active a:link img {
    max-height: 50px !important;
  }
  .header-social-icons {
    display: none;
  }

  .mobil-social-icons {
    border: none;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
    padding: 0;
  }
  .mobil-social-icons a {
    text-decoration: none;
  }
  .mobil-social-icons .fa-brands {
    border-radius: 500px;
    background: #eee;
    color: #666;
    font-size: 1.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    margin: 0 10px 10px 0;
    transition: all 0.2s ease 0s;
  }
  .mobil-social-icons .fa-facebook-f:hover {
    background: #3b5998;
    color: #fff;
  }
  .mobil-social-icons .fa-instagram:hover {
    background: #c3317f;
    color: #fff;
  }
  .mobil-social-icons .fa-youtube:hover {
    background: #f70000;
    color: #fff;
  }
  .mobil-social-icons .fa-tiktok:hover {
    background: #000;
    color: #fff;
  }
  .mobil-social-icons .fa-linkedin-in:hover {
    background: #0077b5;
    color: #fff;
  }
}



/************************************
              menu
*************************************/

.container-menu { 
  top: 50%;
  right: 0;
  height: 50px;
  position: absolute;
  width: 100%;
  z-index: 2;
  transform: translateY(-50%);
}

.menu {
  height: 100%; 
  float: right;
  width: 100%;
}


.menu ul#switch-source { 
  height: 100%;
  width: 100%;
  padding: 0 2vmin 0 0;
  text-align: left;
}
.menu ul#switch-source li { 
  display: inline-block;
  position: relative;
  z-index: 3;
}
.menu ul#switch-source li a:link,
.menu ul#switch-source li a:visited {
    color: #fff;
    display: block;
    font-size: 1em;
    font-weight: 700;
    height: 60px;
    line-height: 1em;  
    list-style-type: none;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    width: auto;
}
.menu ul#switch-source li a:hover { 
    color: #ddd;
    transition: all 0.2s ease 0s;
}


/* submenu */

ul#switch-source li .submenu-container { 
    display: none; 
    height: auto;
    width: 100%;
}
ul#switch-source li:hover .submenu-container { 
    display: block;
}

ul#switch-source li .submenu-container ul.submenu-kategorie { 
    position: absolute;
    display: block;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    height: auto; 
    min-width: 300px;
    width: 100%; 
    padding: 25px 15px;
    transition: all 0.2s ease 0s;
    animation: drop-menu 0.3s ease;
}
@keyframes drop-menu {
    0% {
        opacity: 0;
        top: 40px;
    }

    100% {
        opacity: 100%;
        top: 60px;
    }
}

ul#switch-source li .submenu-container ul.submenu-kategorie li {
    border-right: none;
    display: inline-block;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 5px 0 0 10px;
    height: auto;
    width: 100%;
}
ul#switch-source li .submenu-container ul.submenu-kategorie li:before {
    display: block;
    content: "\25E6";
    color: #999;
    float: left;
    font-size: 1.6rem;
    font-weight: 100;
    line-height: 0.6em;
    margin: 0 0 10px 0;
    padding: 0 10px 0 0;
}
ul#switch-source li .submenu-container ul.submenu-kategorie li a:link, 
ul#switch-source li .submenu-container ul.submenu-kategorie li a:visited { 
    display: block;
    font-size: 0.9rem; 
    color: #111; 
    font-weight: 500; 
    line-height: 1.2em; 
    height: auto;
    padding: 0;
    margin: 0;
    text-align: left;
    text-decoration: none; 
    text-transform: none; 
}
ul#switch-source li .submenu-container ul.submenu-kategorie li a:hover {
  color: var(--main-link-color);
}



/* ikony v menu */

ul#switch-source li .fa-angle-down {
  color: var(--main-link-alternative-color);
  margin: 0 0 0 5px;
  font-size: 0.8em;
}


/* burger */

.burger-wrap {
  display: none;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  background-color: #fff;
  margin: 5px;
  height: 3px;
  width: 25px;
  transition: all 0.2s ease;
}

/* animace burger-cross */

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
  background-color: #000;
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  background-color: #000;
  transform: rotate(45deg) translate(-5px, -6px);
}



@media screen and (max-width: 1300px) { 
  .container-menu { 
    top: 20px;
    right: 10px;
    align-items: center;
    height: auto;	
    display: flex;
    padding: 0 0 0 3vmin;
    width: 70px;
    z-index: 999;
    transform: none;
  }

  /*menu*/
  .menu {
    background: #fff;
    -webkit-box-shadow: -16px 0px 81px 18px rgba(0, 0, 0, 0.9);
    -moz-box-shadow: -16px 0px 81px 18px rgba(0, 0, 0, 0.9);
    box-shadow: -16px 0px 81px 18px rgba(0, 0, 0, 0.9);
    display: block;
    height: 100%;
    padding: 10px 15px;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: -400px;
    width: 300px;
    transform: translateX(100%);
    transition: transform 0.2s ease-in;
  }
  .menu ul#switch-source { 
    border-right: none;
    display: block;  
    height: auto;
    margin: 100px 0 50px 0;
  }
  .menu ul#switch-source li { 
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    border-right: none;
    display: block;
  }
  .menu ul#switch-source li:last-child { 
    border-bottom: none;
  }
  .menu ul#switch-source li a:link,
  .menu ul#switch-source li a:visited {
    color: #111;
    font-size: 1.4em;
    height: auto;
    padding: 15px 0 10px 10px;
    text-align: left;
  }
  .menu ul#switch-source li a:hover { 
    background: rgba(0, 0, 0, 0.05);
    text-decoration: underline; 
  }
  .menu ul#switch-source li:hover { 
    background: none;
  }

  /* submenu */
  ul#switch-source li .submenu-container { 
    box-shadow: none;
    display: block; 
    position: relative;
    top: 0;
  }
  ul#switch-source li:hover .submenu-container { 
    display: block; 
  }
  
  ul#switch-source li .submenu-container ul.submenu-kategorie { 
    background: #fff;
    box-shadow: none;
    display: table;
    margin: 0 0 10px 10px;
    padding: 0 0 10px 0;
    position: relative;
    min-width: auto;
    animation: none;
  }
  ul#switch-source li .submenu-container ul.submenu-kategorie li {
    border-bottom: none;
    display: table-row;
    height: auto;
    width: 100%;
  }
  ul#switch-source li .submenu-container ul.submenu-kategorie li:before {
    display: table-cell;
    color: #111;
    float: none;
    padding: 0 7px 0 0;
    width: 10px;
  }
  ul#switch-source li .submenu-container ul.submenu-kategorie li a:link, 
  ul#switch-source li .submenu-container ul.submenu-kategorie li a:visited { 
    color: #111; 
    line-height: 1.4em;
    font-size: 1.1em;
    padding: 3px 0;
  }
  ul#switch-source li .submenu-container ul.submenu-kategorie li a:hover {
    background: rgba(0, 0, 0, 0.05);
  }


  /* burger */

  .burger-wrap {
    display: block;
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 3;
    width: 100px;
    transition: all 0.2s ease 0s;
  }
  .burger-wrap p {
    color: var(--main-link-color);
    display: none;
    font-size: 1.2em;
    float: right;
    margin: 5px 0 0 0;
    animation: show-title 1s ease;
    transition: all 0.2s ease 0s;
  }

  @keyframes show-title {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 100%;
    }
  }

  .burger {
    display: block;
    float: right;
  }
}


/* třídy pro události klik */

.nav-active {
  transform: translateX(0%);
  right: 0;
}

.body-overflow {
  overflow: hidden;
}

.burger-wrap p.show-title-menu {
  display: block;
}



/************************************
             swiper
*************************************/

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-banner-wrap {
  overflow: hidden;
  height: 100vmin;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 1400px) {
  .swiper-banner-wrap {
    height: 600px;
  }
}

.swiper-slide {
  text-align: center;
  
  /* Center slide text vertically */
  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;
}

.swiper-banner .swiper-slide:after {
  /* background: rgba(0, 0, 0, 0.5) url('/img/bg-category-over.webp') no-repeat center center; */
  /* background-size: cover; */
  background: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 100px 100px rgba(0, 0, 0, 0.4);
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.swiper-banner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* swiper - navigace */

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  background: transparent !important;
  background-image: none !important;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 55px;
  opacity:0;
  visibility:hidden;
  transition:all .3s ease;
}
.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
  transform:translateX(0);
  opacity:0.8;
  visibility:visible;
}
.swiper:hover .swiper-button-prev:hover,
.swiper:hover .swiper-button-next:hover {
  transform:translateX(0);
  opacity:1;
  visibility:visible;
}

.swiper .swiper-button-prev {
  left: 35px;
  transform:translateX(50px);
}
.swiper .swiper-button-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 15px;
  color: #fff;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}
.swiper .swiper-button-prev::after {
  content: "";
}

.swiper .swiper-button-next {
  right: 35px;
  transform:translateX(-50px);
}
.swiper .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 15px;
  color: #fff;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}
.swiper .swiper-button-next::after {
  content: "";
}


/* swiper - video */

.swiper-slide .swiper-video {
  background: #000 url('../img/bg-video.webp') no-repeat center center;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
  position: absolute;
}


/* pruh pro swiper a kategorie */

.strip {
  background: url("/img/bg-bottom-strip.webp") center top no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
  height: 15%;
  width: 100%;
  position: absolute;
  z-index: 1;
}

.strip-category {
  background: url("/img/bg-bottom-strip.webp") center top no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
  height: 25%;
  width: 100%;
  position: absolute;
}


/* ikona myši pro swiper */

.mouse-middle {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translate(-10%, -50%);
  z-index: 2;
}

a.mouse {
  display: block;
  width: 40px;
  height: 70px;
  border: 2px solid #fff;
  border-radius: 60px;
}

a.mouse::before {
  background: #fff;   
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  opacity: 1;
  animation: mouse 2s infinite;
}

@keyframes mouse {
  from {
      opacity: 1;
      top: 15%;
  }
  to {
      opacity: 0;
      top: 50%;
  }
}


@media screen and (max-width: 1600px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    display: none;
  }
}


@media screen and (max-width: 1000px) { 
  .swiper-wrap {
    height: 500px;
  }
  .swiper-slide:after {
    box-shadow: inset 0 50px 50px rgba(0, 5, 34, 1);
  }
}



/************************************
            swiper obsah
*************************************/

/* swiper - nadpis */

.swiper-banner-title-wrap {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 50%;
  height: 100%;
  max-width: 1300px;
  padding: 0 2vmin;
  width: 100%;
  transform: translate(-50%, 50%);
  z-index: 1;
}

.swiper-banner-title {
  /* background: #051314; */
  display: block;
  height: auto;
  position: relative;
  top: 50%;
  text-align: left;
  transform: translateY(-50%);
  width: 100%;
  max-width: 500px;
  animation: drop-title 1s ease;
}

/* .swiper-banner-title:after {
  background: url("/img/bg-pattern.png") no-repeat center center;
  background-size: cover;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.2;
  position: absolute;
} */


/* swiper - text */

.swiper-banner-title h2 {
  color: #fff;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.1em;
  margin: 0 0 20px 0;
  z-index: 3;
}
.swiper-banner-title h2 a:link,
.swiper-banner-title h2 a:visited {
  color: #fff;
  font-size: 3.8rem;
  text-decoration: none;
  transition: all 0.2s ease 0s;
}
.swiper-banner-title h2 a:hover {
  color: #ddd;
}

.swiper-banner-title p {
  color: #fff;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.4em;
  z-index: 1;
  position: relative;
}


@media screen and (max-width: 640px) {
  .swiper-banner-title {
    width: 70%;
  }
  .swiper-banner-title h2 {
    font-size: 2.8em;
  }
  .swiper-banner-title h2 a:link,
  .swiper-banner-title h2 a:visited {
    font-size: 2.8rem;
  }
}



/************************************
         nadpis kategorie             
*************************************/

.category {
  background: url('../img/bg-category.webp') no-repeat center center;
  background-size: cover;
  /* box-shadow: inset 0px 100px 100px 0px rgba(0, 0, 0, 0.75); */
  height: 50vh;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.category-contact {
  background: url('../img/bg-category-contact.png') no-repeat center center;
  background-size: cover;
}
.category::after {
  background: rgba(0, 0, 0, 1);
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  position: absolute;
}


/* kategorie - video */

.category .category-video {
  background: #000 url('../img/bg-video.webp') no-repeat center center;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
  position: absolute;
}


/* kategorie - nadpis */

.category-title-wrap {
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-55%); 
  height: 300px;
  width: 100%;
  z-index: 2;
}

.category-title {
  height: auto;
  padding: 0 2vmin;
  position: absolute;
  left: 50%;
  top: 50%;
	transform: translateX(-50%) translateY(-50%); 
  width: 100%;
  max-width: 1400px; 
  animation: drop 1s ease;
  text-align: center;
}

@keyframes drop {
  0% {
    opacity: 0;
    top: 40%;
  }
  100% {
    opacity: 100%;
    top: 50%;
  }
}


/* kategorie - text */

.category-title h1 {
	color: #fff;
  font-family: var(--main-font-family);  
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1em;
  margin: 10px 0 0 0;
}


@media screen and (max-width: 1200px) {
  .category {
    height: 300px;
  }
  /* .category-title-wrap {
    top: 100px;
    height: 160px;
  } */
  .category-title h1 {
    font-size: 3.3em;                     
  }
}


/************************************
         drobečková navigace             
*************************************/

ul.breadcrumb   { 
  display: flex;
  justify-content: center;
  list-style: none; 
}
ul.breadcrumb li {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0 5px;
}

ul.breadcrumb li a:link,
ul.breadcrumb li a:visited { 
  color: #fff;
  font-size: 0.9rem; 
  text-decoration: underline; 
  transition: all 0.2s ease 0s;
}
ul.breadcrumb li a:hover { 
  color: #ddd;  
} 

ul.breadcrumb li+li:before {
  padding: 0 10px 0 0;
  color: #fff;
  content: "/\00a0";
}

ul.breadcrumb li p {
  color: #fff;
  font-size: 0.9rem; 
}



/************************************
              Obsah webu             
*************************************/

/* texty */

.content h1 {
  color: var(--main-text-color);
  font-size: 3.6em;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2em;
  margin: 0 0 20px 0;
}

.content h2 {
  color: var(--main-text-color);
  font-size: 2.4em;
  font-weight: 500;
  line-height: 1.2em;
  margin: 0 0 10px 0;
}

.content h3 {
  color: var(--main-text-color);
  font-size: 2em;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2em;
  margin: 0 0 10px 0;
}

.content h4 {
  color: var(--main-text-color);
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.2em;
  margin: 0 0 10px 0;
}

.content p {
	color: var(--main-text-color);
	font-size: var(--main-text-size);  
	font-weight: var(--main-text-weight);  
  line-height: var(--main-text-line-height);
}
.content p strong { font-weight: 600; }
.content .center { text-align: center; }
.content p.small { 
    font-size: 0.8rem;                      
    line-height: 1.3em; 
}
.content p em { text-align: oblique; }

.content p.title { 
	color: var(--main-link-color);
  font-size: 0.95em !important;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.content a:link,
.content a:visited {
	color: var(--main-link-color);
	font-size: var(--main-text-size);                      
	font-weight: var(--main-text-weight);  
	text-decoration: underline;
  transition: all 0.2s ease 0s; 
}
.content a:hover {
	color: #000;
}



/************************************
              seznamy             
*************************************/ 

/* seznam defaultní */

.content ul {
    display: table;
    margin: 0;
    padding: 0;
}

.content ul li {
    display: table-row;
    color: var(--main-text-color);
    font-size: var(--main-text-size); 
    font-weight: var(--main-text-weight);  
    list-style: none;
    line-height: 1.65em;
}

.content ul li:before {
    display: table-cell;
    content: "\25E6";
    color: #666;
    font-size: 2.2em;
    font-weight: 100;
    line-height: 0.2em;
    padding: 8px 10px 0 0;
    text-align: right;
    vertical-align: top;
}

.content ul li a:link, 
.content ul li a:visited {
    color: var(--main-link-color);    
    font-size: var(--main-text-size);
    text-decoration: underline;
    transition: all 0.2s ease 0s;
}
.content ul li a:hover {
    color: #000;
}

.content ul li p {
    color: var(--main-text-color);
    font-size: var(--main-text-size);
    margin: 0 0 8px 0;
}



/* seznam defaultní číslovaný */

.content ol {
  counter-reset: item;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0.8em;
}

.content ol li {
  display: block;
  margin-bottom: 0.2em;
  margin-left: 1.4em;
  color: var(--main-text-color);
  font-size: var(--main-text-size); 
  font-weight: var(--main-text-weight);  
  line-height: 1.5em;
  width: 100%;
}

.content ol li::before {
  display: inline-block;
  color: #666;
  content: counter(item) ". ";
  counter-increment: item;
  width: 1.4em;
  margin-left: -1.4em;
}

.content ol li a:link, 
.content ol li a:visited {
  color: var(--main-link-color);    
  font-size: var(--main-text-size);
  text-decoration: underline;
  transition: all 0.2s ease 0s;
}
.content ol li a:hover {
  color: #000;
}

.content ol li p {
  color: var(--main-text-color);
  font-size: var(--main-text-size);
  margin: 0 0 8px 0;
}



/************************************
        seznam výpis podkategorií         
*************************************/

.content ul.list-category {
  display: flex;
  justify-content: left;  
  flex-wrap: wrap;
  margin: 2vmin 0;
  width: 100%;
  gap: 20px;
}

.content ul.list-category li {
  background: var(--main-bg-color);
  display: flex;
  list-style: none;
  flex-direction: column;
  width: calc((100%/4) - 15px);
  transition: all 0.2s ease 0s;
}
.content ul.list-category li::before {
  content: "";
  padding: 0;
}

.content ul.list-category li a:link,
.content ul.list-category li a:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-text-color);
  font-size: var(--main-text-size);
  font-weight: var(--main-text-weight);
  padding: 25px 20px;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease 0s;
}
.content ul.list-category li a:hover {
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 800px) {
  .content ul.list-category li {
    width: calc((100%/2) - 15px);
  }
}



/************************************
              tabulky             
*************************************/ 

/* tabulka - defaultní */

.content table {
  background: #fff;
  display: table;
  border: solid 1px var(--main-border-color);
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  width: 100%;
}

.content table tr {
  border-top: solid 1px var(--main-border-color);
  transition: all 0.2s ease 0s;
}
.content table tr:hover {
  background: var(--main-bg-color);
}

.content table th {
  background: var(--main-bg-color);
	color: var(--main-text-color);
	font-size: 0.85em;                      
	font-weight: 500;
	line-height: 1.6em;
	display: table-cell;
  padding: 1vmin 20px;
  vertical-align: middle;
}

.content table td {
	color: var(--main-text-color);
  font-size: var(--main-text-size); 
  font-weight: var(--main-text-weight);  
	line-height: 1.6em;
	display: table-cell;
  padding: 1.3vmin 20px;
  vertical-align: middle;
}
.content table td a:link,
.content table td a:visited {
	color: var(--main-link-color); 
  font-size: var(--main-text-size); 
  font-weight: var(--main-text-weight);  
	line-height: 1.5em;
	text-decoration: underline;
  transition: all 0.2s ease 0s; 
}
.content table td a:hover {
	color: #000;
}


/* tabulka - kontakty */

.content table.contact_table {
  display: table;
  border: solid 1px var(--main-border-color);
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  width: 100%;
}

.content table.contact_table tr {
  border-top: solid 1px var(--main-border-color);
}
.content table.contact_table tr:hover {
  background: var(--main-bg-color);
}


.content table.contact_table th {
  background: var(--main-bg-color);
	color: var(--main-text-color);
  display: block;
  float: left;
	font-size: 0.85em;                      
	font-weight: 500;
	line-height: 1.6em;
	display: table-cell;
  padding: 1vmin 20px;
}

.content table.contact_table td {
  display: block;
  float: left;
	color: var(--main-text-color);
  font-size: var(--main-text-size); 
  font-weight: var(--main-text-weight);  
	line-height: 1.6em;
  padding: 1.3vmin 20px;
}

.content table.contact_table th.position { width: 25% }
.content table.contact_table th.name { width: 25% }
.content table.contact_table th.mobil { width: 25% }
.content table.contact_table th.email { width: 25% }

.content table.contact_table td.position { width: 25% }
.content table.contact_table td.name { width: 25% }
.content table.contact_table td.mobil { width: 25% }
.content table.contact_table td.email { width: 25% }


@media screen and (max-width: 800px) {
  .content table.contact_table th {
    display: none;
  }
  .content table.contact_table td.position {
    display: table-cell;
    padding: 8px 0 2px 5px;
    width: 50%
  }
  .content table.contact_table td.name {
    display: table-cell;
    padding: 8px 0 2px 0;
    width: 50%
  }
  .content table.contact_table td.mobil {
    display: table-cell;
    padding: 0 0 6px 5px;
    width: 50%
  }
  .content table.contact_table td.email {
    display: table-cell;
    float: right;
    padding: 0 0 6px 0;
    width: 50%
  }
}



/************************************
              buttony             
*************************************/ 

.content .button-center {
  background: none;
  border-bottom: solid 2px rgba(0, 0, 0, 0);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  height: 10vmin;
  min-height: 40px;
  max-height: 50px;
  margin: 10px auto; 
  position: relative; 
  width: fit-content;
  transition: all 0.2s ease 0s;
}
.content .button-center:link,
.content .button-center:visited { 
  border-bottom: solid 2px var(--alternative-link-color);
  color: var(--main-text-color);
  font-size: 1em;  
  font-weight: 400;
  text-decoration: none;
}
.content .button-center:hover { 
  border-bottom: solid 2px var(--main-link-color);
  color: var(--main-link-color);
  outline: none!important;
}
.content .button-center .fa-arrow-right {
  margin: 0 0 0 15px;
}
.content .button-center .fa-arrow-left {
  margin: 0 15px 0 0;
}


/*  button vlevo */

.content .button-left {
  background: none;
  border-bottom: solid 2px rgba(0, 0, 0, 0);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-size: 0.9rem;
  height: 10vmin;
  min-height: 40px;
  max-height: 50px;
  margin: 30px 0 0 0;
  width: fit-content;
  transition: all 0.2s ease 0s;
}
.content .button-left:link,
.content .button-left:visited { 
  border-bottom: solid 2px var(--alternative-link-color);
  color: var(--main-text-color);
  font-size: 1em;  
  font-weight: 400;
  text-decoration: none;
}
.content .button-left:hover { 
  border-bottom: solid 2px var(--main-link-color);
  color: var(--main-link-color);
  outline: none!important;
}
.content .button-left .fa-arrow-right {
  margin: 0 0 0 20px;
}


/* button - swiper vlevo */

.swiper-banner-title .button-left {
  background: none;
  border: solid 1px rgba(255, 255, 255, 1);
  border-radius: 500px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-size: 0.9rem;
  height: 10vmin;
  min-height: 50px;
  max-height: 60px;
  margin: 30px 0 0 0;
  padding: 0 45px;
  width: fit-content;
  transition: all 0.2s ease 0s;
}
.swiper-banner-title .button-left:link,
.swiper-banner-title .button-left:visited {
  color: #fff;
  font-size: 1.1em;
  font-weight: 400;
  text-decoration: none;
}
.swiper-banner-title .button-left:hover {
  background: #fff;
  color: var(--main-text-color);
  outline: none !important;
}

.swiper-banner-title .button-left .fa-arrow-right {
  margin: 0 0 0 20px;
}


/*  button odeat */

.content .button-send {
  background: var(--main-link-color);
  border: none;
  cursor: pointer;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: right;
  flex-direction: row;
  font-size: 0.9rem;
  font-weight: 600;
  height: 10vmin;
  min-height: 40px;
  max-height: 50px;
  margin: 30px 0 0 0;
  padding: 0 25px;
  width: fit-content;
  transition: all 0.2s ease 0s;
}
.content .button-send:hover {
  background: var(--main-link-color);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.18);
  border: none;
  color: #fff;
}



/**********************************
          kalendář + aktuálně
***********************************/

.content .news-wrap {
  display: flex;
  flex-direction: row;
  padding: 2vmin 0 0 0;
}


/* kalendář */

.content .news-wrap-left {
  display: flex;
  flex-direction: column;
  flex: 0 1 40%;
  justify-content: center;
  height: auto;
}

.content .news-left {
  background: #4c5847 url("/img/bg-pattern.webp") center center no-repeat;
  background-size: cover;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4vmin;
  height: auto;
}
.content .news-left p.title {
  color: #e6a57e;
}


/* aktuálně */

.content .news-wrap-right {
  display: flex;
  flex-direction: column;
  flex: 0 1 60%;
  justify-content: center;
  height: auto;
}

.content .news-right {
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4vmin 4vmin 4vmin 5vmin;
  height: auto;
}

.content .news-wrap-left .button-left {
  margin: 2vmin 0 0 4vmin;
}
.content .news-wrap-right .button-left {
  margin: 2vmin 0 0 5vmin;
}



@media screen and (max-width: 600px) {
  .content .news-wrap {
    flex-direction: column;
  }
  .content .news-wrap-left {
    flex: 0 1 100%;
  }
  .content .news-wrap-right {
    flex: 0 1 100%;
    margin: 30px 0 0 0;
  }
}



/************************************
              aktuálně
*************************************/

.content ul.news { 
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  height: auto;
  width: 100%;
}

.content ul.news li {
  display: flex;
  flex-direction: column;
  flex: 0 1 50%;
  list-style: none;
  padding: 15px 4vmin 15px 0;
  overflow: hidden;
  transition: all .2s ease-in-out; 
}
.content ul.news li::before {
  content: "";
  padding: 0;
}

.content ul.news li a {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.content ul.news li a:hover .news-title p {
  text-decoration: underline;
}

.content ul.news li::before a {
  content: '';
  margin: 0;
  padding: 0;
  clear: both;
}


/* aktuálně - text - datum */

.content .news .news-date {
  display: block;
  overflow: hidden;
  float: left;
  min-height: auto;
  width: 100%;
}
.content .news .news-date p {
  color: #999;
  font-size: 0.85rem;
  line-height: 1.2rem;
}


/* aktuálně - text - nadpis */

.content .news .news-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: auto;
  max-height: 3rem;
  overflow: hidden;
  position: relative;
  float: left;
  width: 100%;
}
.content .news .news-title p {
  color: var(--main-text-color);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4rem;
}
.content .news .news-title .fa-solid {
  color: var(--alternative-link-color);
  font-size: 0.8rem;
  margin: 0 0 0 10px;
}


/* aktuálně - text - popis */

.content .news .news-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: auto;
  max-height: 3rem;
  overflow: hidden;
  position: relative;
  float: left;
  width: 100%;
}
.content .news .news-text p {
  color: var(--main-text-color);
  font-size: var(--main-text-size);
  font-weight: var(--main-text-weight);
  line-height: 1.4rem;
}



/************************************
      kalendář - úvod - výpis akcí
*************************************/

.content ul.calendar { 
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  height: auto;
  max-width: 1000px;
  width: 100%;
}

.content ul.calendar li {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 15px 0;
  width: 100%;
  overflow: hidden;
  transition: all .2s ease-in-out; 
}
.content ul.calendar li::before {
  content: "";
  padding: 0;
}

.content ul.calendar li a {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  padding: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.content ul.calendar li a:hover .calendar-title p {
  text-decoration: underline;
}
.content ul.calendar li a:hover .calendar-date { 
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease-in-out; 
}
.content ul.calendar li::before a {
  content: '';
  margin: 0;
  padding: 0;
  clear: both;
}


/* kalendář - datum */

.content .calendar .calendar-date {
  border: solid 1px #ddd; 
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex: 0 1 10%;
  flex-direction: column;
  text-align: center;
  max-width: 120px;
  height: auto;
  min-width: 80px;
  padding: 5px 0;
  width: 100%;
  overflow: hidden;
}
.content .calendar .calendar-date p { 
  color: #fff;
  font-weight: 500; 
  line-height: 1.1em;
  margin: 0;
}
.content .calendar .calendar-date p strong { 
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1em;
  height: auto;
  width: 100%;
  text-transform: none;
}
.content .calendar .calendar-date p span { 
  font-size: 0.8em;
  text-transform: none;
}


/* kalendář - text */

.content .calendar-content {
  display: flex;
  flex: 0 1 90%;
  flex-direction: column;
  justify-content: center;    
  padding: 1vmin 2vmin;
  text-align: left;
}


/* kalendář - text - nadpis */

.content .calendar .calendar-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: auto;
  max-height: 3rem;
  overflow: hidden;
  position: relative;
  float: left;
  width: 100%;
}
.content .calendar .calendar-title p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4rem;
  letter-spacing: 1px;
}
.content .calendar .calendar-title .fa-solid {
  color: #e6a57e;
  font-size: 0.8rem;
  margin: 0 0 0 10px;
}


@media screen and (max-width: 600px) {
  .content .calendar .calendar-date {
      min-width: 80px;
  }
  .content .calendar-content {
      flex: 0 1 75%;
  }
}

@media screen and (max-width: 360px) {
  .content .calendar-content {
      padding: 15px 2vmin;
  }
}



/************************************
  kalendář - kategorie - název měsíce
*************************************/

.content p.calendar-title {
  color: var(--main-text-color);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2em;
  margin: 0 0 10px 0;
  text-align: center;
}

.content p.calendar-title i {
  color: var(--alternative-link-color);
  font-size: 1.5rem;
  margin: 0 10px;
  transition: all 0.2s ease 0s;
}
.content p.calendar-title i:hover {
  color: var(--main-text-color);
}



/************************************
  kalendář - kategorie - výpis akcí
*************************************/

.content ul.calendar-category { 
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  height: auto;
  max-width: 1000px;
  width: 100%;
}

.content ul.calendar-category li {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 15px 0;
  width: 100%;
  overflow: hidden;
  transition: all .2s ease-in-out; 
}
.content ul.calendar-category li::before {
  content: "";
  padding: 0;
}

.content ul.calendar-category li a {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  padding: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  
}
.content ul.calendar-category li a:hover .calendar-title p {
  text-decoration: underline;
}
.content ul.calendar-category li a:hover .calendar-date { 
  background: var(--main-bg-color);
  transition: all 0.2s ease-in-out; 
}
.content ul.calendar-category li::before a {
  content: '';
  margin: 0;
  padding: 0;
  clear: both;
}

/* kalendář - kategorie - datum */

.content .calendar-category .calendar-date {
  border: solid 1px #ddd; 
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex: 0 1 10%;
  flex-direction: column;
  text-align: center;
  max-width: 120px;
  height: auto;
  min-height: 80px;
  min-width: 80px;
  padding: 5px 0;
  width: 100%;
  overflow: hidden;
}

.content .calendar-category .calendar-date p { 
  color: var(--main-text-color);
  font-weight: 500; 
  line-height: 1.1em;
  margin: 0;
}
.content .calendar-category .calendar-date p strong { 
  display: block;
  color: var(--alternative-link-color);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1em;
  height: auto;
  width: 100%;
  text-transform: none;
}
.content .calendar-category .calendar-date p span { 
  font-size: 0.8em;
  text-transform: none;
}


/* kalendář - text */

.content .calendar-content {
  display: flex;
  flex: 0 1 90%;
  flex-direction: column;
  justify-content: center;    
  padding: 1vmin 3vmin;
  text-align: left;
}


/* kalendář - text - nadpis */

.content .calendar-category .calendar-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: auto;
  max-height: 3rem;
  overflow: hidden;
  position: relative;
  float: left;
  width: 100%;
}
.content .calendar-category .calendar-title p {
  color: var(--main-text-color);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4rem;
  letter-spacing: 1px;
}
.content .calendar-category .calendar-title .fa-solid {
  color: var(--alternative-link-color);
  font-size: 0.8rem;
  margin: 0 0 0 10px;
}


/* kalendář - text - popis */

.content .calendar-category .calendar-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: auto;
  max-height: 2.3rem;
  overflow: hidden;
  position: relative;
  float: left;
  width: 100%;
}
.content .calendar-category .calendar-text p {
  color: #666;
  font-size: 0.9rem;
  font-weight: var(--main-text-weight);  
  line-height: 1.2rem;
}


@media screen and (max-width: 600px) {
  .content .calendar-category .calendar-date {
      min-width: 80px;
  }
  .content .calendar-content {
      flex: 0 1 75%;
  }
}

@media screen and (max-width: 360px) {
  .content .calendar-content {
      padding: 15px 2vmin;
  }
}



/************************************
        kalendář - detail akce    
*************************************/

.content .calendar-category-detail {
  background: #f9f9f9;
  display: block;
  margin: 0 auto;
  padding: 3vmin;
  height: auto;
  max-width: 900px;
  width: 100%;
}
.content .calendar-category-detail p {
  color: var(--main-text-color);
  font-size: 0.95em;
  font-weight: 400;
  line-height: 1.6em;
}

.calendar-category-detail-date {
  height: auto;
  margin: 10px auto 0 auto;
  max-width: 900px;
  width: 100%;
  text-align: center;
}
.calendar-category-detail-date p {
  color: var(--alternative-link-color);
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.6em;
}
.calendar-category-detail-date .far {
  color: var(--alternative-link-color);
  margin: 0 10px 0 0;
}



/**********************************
            studijní obory
***********************************/

.content .study-wrap {
  display: flex;
  flex-direction: row;
  padding: 1vmin 0;
}


/* obory - nadpis */

.content .study-title {
  display: flex;
  flex-direction: column;
  flex: 0 1 40%;
  justify-content: center;
  height: auto;
}
.content .study-title h2 {
  font-size: 3em;
}


/* obory - text */

.content .study-text {
  border-left: solid 1px var(--main-border-color);
  display: flex;
  flex-direction: column;
  flex: 0 1 60%;
  justify-content: center;
  padding: 0 0 0 5vmin;
  height: auto;
}
.content .study-text p {
  font-size: 1.2em;
  line-height: 1.6em;
}


/* obory - ikony */

.content .study-img {
  display: flex;
  flex: 0 1 100%;
  justify-content: flex-end;
}

.content ul.study {
  display: flex;
  align-content: flex-start; 
  flex-wrap: wrap;
  width: 100%;
  gap: 5px;
}

.content ul.study li {
  height: auto;
  display: flex;
  flex-direction: column;
  width: calc((100%/3) - 5px);
  transition: all 0.2s ease 0s;
  position: relative;
}
.content ul.study li:hover {
  background: #f9f9f9;
}
.content ul.study li:hover p {
  text-decoration: underline;
}
.content ul.study li::before {
  content: "";
  margin: 0;
  padding: 0;
}


/* obory - ikony - odkaz */

.content ul.study li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 5vmin 15px 10px;
  text-decoration: none;
}


/* obory - ikony - obzázky */

.content ul.study li img {
  height: auto;
  max-width: 120px;
  width: 100%;
}


/* obory - ikony - text */

.content ul.study li p {
  text-align: left;
  color: var(--main-text-color);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3em;
  margin: 0 0 0 25px;
}
.content ul.study li p strong {
  text-align: left;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3em;
}


@media screen and (max-width: 1000px) {
  .content .study-wrap {
    flex-direction: column;
  }
  .content .study-text {
    border-left: none;
    flex: 0 1 100%;
    padding: 0
  }
  .content ul.study li a {
    padding: 0 0 10px 0;
  }
  .content ul.study li img {
    max-width: 80px;
  }
}

@media screen and (max-width: 800px) {
  .content ul.study li {
    width: 100%;
  }
  .content ul.study li p .fa-angle-right {
    display: none;
  }
}


/************************************
          novinky - kategorie            
*************************************/

.content .news-category-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 3vmin auto;
  gap: 30px;
}

.content .news-category {
  height: auto;
  display: flex;
  flex-direction: column;
  width: calc((100%/3) - 23px);
  transition: all 0.2s ease 0s;
  position: relative;
}


/* obrázek */

.content .news-category .news-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 3/2;
  width: 100%;
  position: relative;
}

.content .news-category .news-image img {
  display: block;
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease-in-out; 
}
.content .news-category .news-image a:hover img {
  transform: scale(1.2);
}

.news-more-text {
  color: #fff;
  font-size: 4em;
  font-weight: 200;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.news-color-overlay {
  background: var(--main-link-color);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
}

.news-image:hover .news-color-overlay {
  opacity: 0.8;
  z-index: 1;
}


/* text */

.content .news-category .news-content {
  display: flex;
  flex-direction: column;
  justify-content: center;  
  padding: 30px 0;
  width: 100%;
}


/* text - nadpis */

.content .news-category .news-content .news-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: auto;
  max-height: 3rem;
  margin: 1.5vmin 0;
  overflow: hidden;
  position: relative;
  float: left;
  width: 100%;
}

.content .news-category .news-content .news-title a:link,
.content .news-category .news-content .news-title a:visited {
  color: var(--main-text-color);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4rem;
  text-decoration: none;
  transition: all 0.2s !important;
}

.content .news-category .news-content .news-title a:hover {
  text-decoration: underline;
}


/* text - štítek a datum */

.content .news-category .news-tag-date {
  display: flex;
  align-items: center;
  float: left;
  height: auto;
  width: auto;
}

.content .news-category .news-tag-date p {
  color: #999;
  font-size: 0.85rem;
  line-height: 1.2rem;
}

.content .news-category .news-tag-date a:link,
.content .news-category .news-tag-date a:visited {
  color: var(--main-link-color);
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.content .news-category .news-tag-date a:hover {
  text-decoration: underline;
}

.content .news-category .news-tag-date .fa-circle {
  color: #a7a7a7;
  font-size: 0.25rem;
  margin: 0 10px;
}


/* text - popis */

.content .news-category .news-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: auto;
  max-height: 3rem;
  overflow: hidden;
  position: relative;
  float: left;
  width: 100%;
}

.content .news-category .news-text p {
  color: #666;
  font-size: var(--main-text-size);
  font-weight: var(--main-text-weight);
  line-height: 1.4rem;
}


/* důležité */

.content .event-important .news-title a:link,
.content .event-important .news-title a:visited {
  color: #e43957 !important;
}


@media screen and (max-width: 800px) {
  .content .news-category {
    width: 100%;
    flex-direction: row;
  }
  .content .news-category .news-image {
    height: 100%;
    width: 40%;
  }
  .content .news-category .news-image .event-fit-cover {
    height: 100%;
  }
  .content .news-category .news-content {
    padding: 0 20px;
    min-height: auto;
    width: 60%;
  }
}



/************************************
            fotogalerie            
*************************************/

.content .gallery {
    background: #fff;
    box-shadow: 0 0 30px rgba(68, 45, 45, 0.2);
    float: left;
    margin: 1%;
    height: 320px;
    width: 23%;
    transition: all 0.2s ease 0s;
}
.content .gallery:hover {
    box-shadow: 0 0 30px rgba(68, 45, 45, 0.3);
    filter: none;
}


/*obrázek */

.content .gallery .gallery_image {
    float: left;
    height: 210px;
    width: 100%;
    position: relative;
}

.content .gallery .gallery_image .gallery-fit-cover {
    display: block;
    height: 210px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-more-text {
    color: #fff;
    font-size: 4em;
    font-weight: 200;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.gallery-color-overlay {
    background: var(--main-link-color);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
}

.gallery_image:hover .gallery-color-overlay {
    opacity: 0.8;
    z-index: 1;
}


/* obrázek - štítek */

.content .gallery .gallery_image .gallery_tag {
    background: var(--main-link-color);
    display: block;
    padding: 0 10px;
    position: absolute;
    left: 15px;
    top: 15px;
    height: auto;
    width: auto;
    z-index: 1;
}

.content .gallery .gallery_image .gallery_tag  a:link,
.content .gallery .gallery_image .gallery_tag  a:visited {
    color: #fff;
    font-family: var(--main-font-family);
    font-size: 0.8em;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
}
.content .gallery .gallery_image .gallery_tag  a:hover {
    text-decoration: underline;
}


/* text */

.content .gallery .gallery_content {
    float: left;
    height: auto;
    padding: 20px 20px 0 20px;
    width: 100%;
}


/* text - nadpis */

.content .gallery .gallery_content .gallery_title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: auto;
    max-height: 2.8rem;
    overflow: hidden;
    position: relative;
    float: left;
    line-height: 1.3rem;
    width: 100%;
}

.content .gallery .gallery_content .gallery_title a:link,
.content .gallery .gallery_content .gallery_title a:visited {
    color: #000;
    font-family: var(--main-font-family);
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
}

.content .gallery .gallery_content .gallery_title a:hover {
    color: var(--main-link-color);
    text-decoration: underline;
}


/* text - datum */

.content .gallery_date {
    display: block;
    float: left;
    margin: 5px 0 0 0;
    height: auto;
    width: 100%;
}

.content .gallery_date p {
    color: #666;
    font-size: 0.75rem;
    font-weight: 500;
}

.content .gallery_date .fa-calendar-alt {
    color: #666;
    margin: 0 7px 0 0;
}


@media screen and (max-width: 1000px) {
    .content .gallery {
        height: 300px;
        margin: 1%;
        width: 48%;
    }
}



/************************************
              formulář
*************************************/

/* formulář */

.content form {
  background: #fff;
  box-shadow: 0 0 30px rgba(68, 45, 45, 0.05);
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 20px 0 0 0;
  padding: 4vmin;
  height: auto;
  position: relative;
  text-align: left;
}

.content .form_half:nth-child(odd) {
  display: block;
  float: left;
  height: auto;
  margin: 0;
  padding: 0 15px 0 0;
  width: 50%;
}
.content .form_half:nth-child(even) {
  display: block;
  float: left;
  height: auto;
  margin: 0;
  padding: 0 0 0 0;
  width: 50%;
}

.content input.half-input,
.content select.half-input {
  flex: 0 1 49%;
}


/* label */

.content form label {
  display: block;
  font-size: 0.9em;
  width: 100%;
}


/* legend */

.content legend {
  background: #fff;  
	border: solid 1px #ddd;
	color: #666;
  font-size: 0.9em;
  font-family: var(--main-font-family);
  padding: 5px 10px 5px 10px;
}


/* input - text */

.content input[type="text"] {
  background: #f9f9f9;
  border: solid 1px #ccc;
  color: #333;
  cursor: pointer;
  font-family: var(--main-font-family);
  font-size: 0.9em;
  font-weight: 400;
  height: 50px;
  margin: 0 0 15px 0;
  padding: 8px 15px 10px 15px;
  text-align: left;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.content input:hover {
  border-color: #999;
}
.content input:focus {
  background: #fff;
  border-color: #999;
}

/* fix text color */
.content input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
}
.content input[type="text"]::-moz-placeholder {
  opacity: 1;
}
.content input[type="text"]:-ms-input-placeholder {
  opacity: 1;
}
.content input[type="text"]:-moz-placeholder {
  opacity: 1;
}


/* input - radio */

.content input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: solid 1px #999;
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--main-font-family);
  display: grid;
  place-content: center;
  width: 1.1em;
  height: 1.1em;
  margin: 0;
  transform: scale(1.4);
}
.content input[type="radio"]:hover {
  background: #fff;
  border-color: var(--main-link-color);
}
.content input[type="radio"]::before {
  background: var(--main-link-color);
  border-radius: 50%;
  content: "";
  width: 0.5em;
  height: 0.5em;
  transform: scale(0);
  transition: all 0.2s ease;
}
.content input[type="radio"]:checked::before {
  transform: scale(1);
}
.content input[type="radio"]:focus {
  border: solid 1px var(--main-link-color);
  outline: none;
}


/* input - checkbox */

.content input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: solid 1px #999;
  color: var(--main-text-color);
  font-family: var(--main-font-family);
  margin: 0;
  font: inherit;
  width: 1.6em;
  height: 1.6em;
  display: grid;
  place-content: center;
}
.content input[type="checkbox"]::before {
  background-color: var(--main-link-color);
  content: "";
  width: 1em;
  height: 1em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
}
.content input[type="checkbox"]:checked::before {
  transform: scale(1);
}
.content input[type="checkbox"]:focus {
  border: solid 2px var(--main-link-color);
  outline: none;
}


/* fieldset + tabulka */

.content fieldset {
  background: #f9f9f9; 
  border: #ddd 1px solid; 
  display: flex;
  flex-direction: column;
  padding: 20px;
  width: 100%;
}

.content fieldset table {
  background: none; 
  border: none;
}
.content fieldset table tr,
.content fieldset table th,
.content fieldset table td {
  background: none; 
  border: none;
  line-height: 1rem;
  padding: 10px;
}
.content fieldset table tr:hover,
.content fieldset table th:hover,
.content fieldset table td:hover {
  background: none; 
}
.content fieldset table td p {
  line-height: 1.4em;
}
.content fieldset table th {
  width: 40px;
}


/* input - number */

.content input[type="number"] {
  background: #f9f9f9;
  border: solid 1px #ccc;
  color: #333;
  cursor: pointer;
  font-family: var(--main-font-family);
  font-size: 0.9em;
  font-weight: 400;
  height: 50px;
  margin: 0 0 15px 0;
  padding: 8px 15px 10px 15px;
  text-align: left;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.content input:hover {
  border-color: #999;
}
.content input:focus {
  background: #fff;
  border-color: #999;
}

/* fix text color */
.content input::-webkit-input-placeholder {
  opacity: 1;
}
.content input::-moz-placeholder {
  opacity: 1;
}
.content input:-ms-input-placeholder {
  opacity: 1;
}
.content input:-moz-placeholder {
  opacity: 1;
}
/* hide arrows - Chrome, Safari, Edge, Opera */
.content input::-webkit-outer-spin-button,
.content input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* hide arrows - Firefox  */
.content input[type="number"] {
  -moz-appearance: textfield;
}


/* select */

.form_select {
  position: relative; 
  flex: 0 1 49%;
}

.form_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f9f9f9;
  border: solid 1px #ccc;
  color: #333;
  cursor: pointer;
  float: left;
  font-family: var(--main-font-family);
  font-size: 0.9em;
  font-weight: 400;
  height: 50px;
  margin: 0 0 15px 0;
  padding: 8px 15px 10px 15px;
  width: 100%;
}
.form_select select:hover { border-color: #999; }
.form_select select::-ms-expand { display: none;}    /* To remove button from IE11 */
.form_select select:focus { 
  background: #fff;
  border-color: #999;  
}

.form_select:after {
  content: '\f078';
  font: normal normal normal 12px/1 FontAwesome;
  color: #000;
  right: 11px;
  top: 50%;
  height: 50px;
  padding: 25px 10px 0px 15px;
  position: absolute;
  pointer-events: none;
  transform: translateY(-50%);
}


/* textarea */

.content textarea {
  background: #f9f9f9;
  border: solid 1px #ccc;
  color: #333;
  font-family: var(--main-font-family);
  font-size: 0.9em;
  font-weight: 400;
  overflow: auto;
  -webkit-appearance: none;
  margin: 0 0 10px 0;
  padding: 10px 15px 10px 15px;
  min-height: 150px;
  width: 100%;
}

.content textarea:hover {
  border-color: #999;
}
.content textarea:focus {
  background: #fff;
  border: solid 1px #999;
  outline: none
}
.content textarea::-webkit-input-placeholder {
  opacity: 1;
}
.content textarea::-moz-placeholder {
  opacity: 1;
}
.content textarea:-ms-input-placeholder {
  opacity: 1;
}
.content textarea:-moz-placeholder {
  opacity: 1;
}


/* input - file */

.content .foto_container {
  background: #f9f9f9;
  border: solid 1px #ccc;
  color: #333;
  cursor: pointer;
  font-family: var(--main-font-family);
  font-size: 0.9em;
  font-weight: 400;
  height: 50px;
  margin: 0 0 15px 0;
  padding: 3px 15px 10px 15px;
  text-align: left;
  position: relative;
  width: 100%;
}
.content .foto_container:hover {
  border-color: #999;
}

.content input.file {
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
}




/************************************
            fotogalerie             
*************************************/ 

.content .content_image_block {
  margin: 2vmin 0 0 0;
  height: auto;
  width: 100%;
	text-align: center;
}

.content .content_image_block a:link,
.content .content_image_block a:visited,
.content .content_image_block a:hover {
  background: #eee;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2);
  display: block;
  float: left;
  margin: 0 1% 2% 1%;
  overflow: hidden;
  width: 23%; 
  height: 200px; 
  text-decoration: none;
  position: relative;
}

.content .content_image_block img {
  object-fit: cover; 
  height: 200px;
  width: 100%; 
  transition: all 0.2s ease 0s;
} 


/* efekt při najetí */

.gallery-more-text {
  color: #fff;
  font-size: 4em;
  font-weight: 200;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.gallery-color-overlay {
  background: var(--main-link-color);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
}

.content_image_block a:hover .gallery-color-overlay {
  opacity: 0.8;
  z-index: 1;
}


@media screen and (max-width: 640px) {
  .content .content_image_block a:link,
  .content .content_image_block a:visited,
  .content .content_image_block a:hover {
  width: 48%; 
  }
}


/* úprava stylu ve fullscreen */

.fancybox-slide--image {
  padding: 10vmin !important
}
.fancybox-is-open .fancybox-bg {
  opacity: 0.95 !important;
}




/************************************
              kontakt 
*************************************/ 

/* kontakt - osoby */

.contacts-wrap {
  display: flex;
  flex: 1;
  flex-flow: row;
  flex-flow: wrap;
  margin: 0;
  padding: 0;
}

.contacts {
  border-top: solid 1px rgba(255, 255, 255, 0.1) ;
  border-right: solid 1px rgba(255, 255, 255, 0.1) ;
  align-items: center;
  display: flex;
  flex-flow: row;
  flex-grow: 1;
  width: 50%;
  justify-content: left;
  list-style-type: none;
  padding: 20px 10px;
  transition: all 0.2s ease 0s;
}

.contacts img {
  display: block;
  float: left;
  margin: 0 30px 0 0;
  height: auto;
  max-width: 150px;
  width: 100%;
}


/* kontakt - ikony */

.content .social-icons {
  border: none;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin: 30px 0 0 0;
  padding: 0;
}
.content .social-icons a {
  text-decoration: none;
}
.content .social-icons .fa-brands {
  border-radius: 500px;
  background: #eee;
  color: #666;
  font-size: 1.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  margin: 0 10px 10px 0;
  transition: all 0.2s ease 0s;
}
.content .social-icons .fa-facebook-f:hover  {
  background: #3b5998;
  color: #fff;
}
.content .social-icons .fa-instagram:hover  {
  background: #c3317f;
  color: #fff;
}
.content .social-icons .fa-youtube:hover  {
  background: #f70000;
  color: #fff;
}
.content .social-icons .fa-tiktok:hover  {
  background: #000;
  color: #fff;
}
.content .social-icons .fa-linkedin-in:hover  {
  background: #0077b5;
  color: #fff;
}


@media screen and (max-width: 640px) {
  .contacts {
    width: 100%;
  }
}



/************************************
            partneři            
*************************************/

.content ul.partner {
  border-top: solid 1px var(--main-border-color);
  display: flex;
  align-content: flex-start; 
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  padding: 2vmin 0 0 0;
}

.content ul.partner li {
  filter: grayscale(var(--value, 100%));
  display: flex;
  list-style: none;
  flex-direction: column;
  width: calc((100%/5) - 10px);
  transition: all 0.2s ease 0s;
}
.content ul.partner li a {
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 3vmin;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.content ul.partner li::before {
  content: "";
  padding: 0;
}
.content ul.partner li:hover {
  filter: none;
  z-index: 1;
}


/* logo */

.content ul.partner li img {
  height: auto;
  width: 100%;
  max-width: 230px;  
}

.content ul.partner li img.partner-fit-cover {
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
  max-height: 120px;
  mix-blend-mode: color-burn;
  object-fit: contain;
}


@media screen and (max-width: 600px) {
  .content ul.partner li {
    width: calc((100%/2) - 13px);
  }  
  .content ul.partner li img.partner-fit-cover {
    height: 80px;
  }  
}



/************************************
      boční menu v kategoriích         
*************************************/

ul.menu-right {
  /* background: #111; */
  margin: 10px 0 0 0;
  padding: 20px 0;
  width: 100%;
}


ul.menu-right li {
  border-bottom: #bbb solid 1px;
  color: var(--main-text-color);
  cursor: pointer;
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  height: auto;
  text-transform: uppercase;
  width: 100%;
  transition: all 0.2s ease 0s;
}

ul.menu-right li::before {
  display: none;
}

ul.menu-right li:last-child {
  border-bottom: none;
}

ul.menu-right li a:link,
ul.menu-right li a:visited {
  color: var(--main-text-color);
  display: block;
  font-family: var(--main-font-family);
  font-size: 0.85rem;
  font-weight: var(--main-text-weight);
  line-height: 1em;
  height: auto;
  text-decoration: none;
  padding: 1.5vmin 0;
  width: 100%;
  transition: all 0.2s ease 0s;
}
ul.menu-right li a:hover {
  color: var(--main-link-color);
  text-decoration: underline;
}


/* submenu */

ul.menu-right li ul {
  padding: 0 0 10px 0;
  width: 100%;
}

ul.menu-right li ul li {
  border-bottom: none;
  display: block;
  text-transform: none;
  padding: 5px 0 5px 0;
  width: 100%;
}

ul.menu-right li ul li:hover {
  background: none;
}

ul.menu-right li ul li:before {
  display: table-cell;
  content: "\16B2";
  color: var(--main-link-color);
  font-size: 1.2rem;
  font-weight: var(--main-text-weight);
  line-height: 0.1em;
  float: left;
  height: auto;
  margin: 6px 0 0 0;
  padding: 0 5px 0 0;
  transform: rotate(180deg);
}

ul.menu-right li ul li a:link,
ul.menu-right li ul li a:visited {
  color: var(--main-text-color);
  font-family: var(--main-font-family);
  font-size: var(--main-text-size);  
  font-weight: var(--main-text-weight);
  line-height: 1rem;
  padding: 0 0 0 18px;
  text-decoration: none;
  transition: all 0.2s ease 0s;
}

ul.menu-right li ul li a:hover {
  background: none;
  color: var(--main-link-color);
  text-decoration: underline;
}

ul.menu-right li ul li a.active {
  color: var(--main-link-color);
  text-decoration: underline;
}


/* sub submenu */

ul.menu-right li ul li ul {
  width: 100%;
  padding: 10px 0 10px 0;
}

ul.menu-right li ul li ul li {
  display: block;
  color: #333;
  font-size: 0.9rem;
  line-height: 1em;
  padding: 5px 0 5px 12px;
  width: 100%;
}

ul.menu-right>li>ul {
  display: none;
}

ul.menu-right>li>ul.expanded {
  display: block;
}


/* symbol +- */

.menu-symbol {
  cursor: pointer;
  display: block;
  float: right;
  font-size: 2px;
  height: 15px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 15px;
  -webkit-tap-highlight-color: transparent;
}

.menu-symbol span {
  background: #999;
  height: 2px;
  margin: 0;
  position: absolute;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.menu-symbol span {
  left: 0;
}

.menu-symbol span:nth-child(1) {
  top: 2.5em;
}

.menu-symbol span:nth-child(2) {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 2.5em;
}

.open.menu-symbol span:nth-child(2) {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}




/************************************
                mapa 
*************************************/


/* 
    -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
          -o-filter: grayscale(100%);
            filter: grayscale(100%); 
}*/


@media screen and (max-width: 600px) {
    #canvas-map {
        height: 300px;
    }
}



/************************************
              footer
*************************************/

footer {
    background: #232724;
    height: auto;
}

#footer_top {
    height: auto;
    padding: 8vmin 0;
    width: 100%;
}

#footer_top .footer_kategorie {
    height: auto;
    float: left;
    padding: 0 6vmin 0 0;
    width: 25%;
}


/* texty */

#footer_top .footer_kategorie h4 {
	color: #ddd;
  font-size: 1.2em;  
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

#footer_top .footer_kategorie p {
	color: #ddd;
  font-size: var(--main-text-size);  
  font-weight: var(--main-text-weight);  
  line-height: 1.5em;
}

#footer_top .footer_kategorie p strong {
    font-weight: 600;
}

#footer_top .footer_kategorie p .oblique {
    font-style: italic;
}


#footer_top .footer_kategorie a:link,
#footer_top .footer_kategorie a:visited {
  color: #ddd;
  font-size: var(--main-text-size);  
  font-weight: var(--main-text-weight);  
  text-decoration: underline;
  transition: all 0.2s ease 0s;
}

#footer_top .footer_kategorie a:hover {
  color: var(--main-link-color);
}


/* logo */

#footer_top .footer_kategorie img.footer-logo {
    display: block;
    width: auto;
    height: auto;
    max-height: 6vmin;
    min-height: 35px;
    opacity: 0.9;
}


/* ikony */

#footer_top .footer_kategorie .icon-wrap {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}
#footer_top .footer_kategorie .icon-wrap a {
  text-decoration: none;
}

#footer_top .footer_kategorie .fab,
#footer_top .footer_kategorie .fa-brands {
  background: none;
  border-radius: 500px;
  border: solid 1px #444;
  color: #bbb;
  font-size: 1.em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  margin: 0 10px 10px 0;
  transition: all 0.2s ease 0s;
}

#footer_top .footer_kategorie .fa-facebook-f  {
  color: #fff;
}
#footer_top .footer_kategorie .fa-facebook-f:hover  {
  background: #3b5998;
  color: #fff;
}
#footer_top .footer_kategorie .fa-instagram  {
  color: #fff;
}
#footer_top .footer_kategorie .fa-instagram:hover  {
  background: #c3317f;
  color: #fff;
}
#footer_top .footer_kategorie .fa-twitter  {
  color: #fff;
}
#footer_top .footer_kategorie .fa-twitter:hover  {
  background: #1DA1F2;
  color: #fff;
}
#footer_top .footer_kategorie .fa-x-twitter  {
  color: #fff;
}
#footer_top .footer_kategorie .fa-x-twitter:hover  {
  background: #000;
  color: #fff;
}
#footer_top .footer_kategorie .fa-youtube  {
  color: #fff;
}
#footer_top .footer_kategorie .fa-youtube:hover  {
  background: #f70000;
  color: #fff;
}
#footer_top .footer_kategorie .fa-linkedin-in  {
  color: #fff;
}
#footer_top .footer_kategorie .fa-linkedin-in:hover  {
  background: #0077b5;
  color: #fff;
}


/* seznam */

#footer_top .footer_kategorie ul {
    float: left;
    text-align: left;
    margin: 0;
    padding: 0;
}

#footer_top .footer_kategorie li {
    color: #ddd;
    display: block;
    font-size: var(--main-text-size);  
    font-weight: var(--main-text-weight);  
    line-height: 2.4em;
    list-style-type: none;
    padding: 1px 0;
    width: auto;
}

#footer_top .footer_kategorie li a:link,
#footer_top .footer_kategorie li a:visited {
    color: #ddd;
    font-size: var(--main-text-size);  
    font-weight: var(--main-text-weight);  
    text-decoration: none;
    transition: all 0.2s ease 0s;
}

#footer_top .footer_kategorie li a:hover {
  color: #fff;
    text-decoration: underline;
}


/* footer - button left */

#footer_top .button-left {
  border: solid 2px var(--alternative-link-color);
  border-radius: 500px;
  cursor: pointer;
  color: #333;
  float: left;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  height: 4.5vmin;
  min-height: 40px;
  max-height: 50px;
  padding: 0 35px;
	font-family: var(--main-font-family);  
  width: auto; 
  transition: all 0.2s ease 0s;
}
#footer_top .button-left:link,
#footer_top .button-left:visited { 
  color: #fff; 
  font-size: 0.9rem !important;  
  font-weight: 600 !important;
  text-decoration: none; 
  text-transform: uppercase;
}
#footer_top .button-left:hover { 
  background: var(--alternative-link-color);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.18);
  color: #fff;
  outline: none!important;
  text-decoration: none !important; 
}

#footer_top .button-left .fa-solid { 
  margin: 0 15px 0 0;
  font-size: 1rem;
}



/* footer - bottom */

#footer {
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    height: auto;
    padding: 20px 0 30px 0;
    width: 100%;
}

#footer p {
  color: #ddd;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6em;
}

#footer a:link,
#footer a:visited {
  color: #ddd;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6rem;
  text-decoration: underline;
  transition: all 0.2s ease 0s;
}
#footer a:hover {
    color: #fff;
}


#footer_bottom_left {
  float: left;
  height: auto;
  text-align: left;
  width: 50%;
}
#footer_bottom_left i {
  margin: 0 10px 0 0;
}

#footer_bottom_right {
  float: right;
  height: auto;
  text-align: right;
  width: 50%;
}

p.clear_footer {
    display: none;
}

@media screen and (max-width: 600px) {
  #footer_top {
      padding: 40px 0 10px 0;
  }

  #footer_top .footer_kategorie {
      width: 50%;
      padding: 0 20px 25px 0;
  }

  #footer_top .footer_kategorie h2 {
      margin: 0 0 10px 0;
  }
  #footer_top .footer_kategorie img.footer-logo {
    min-height: 50px;
  }
  p.clear_footer {
      clear: both;
      display: block;
      font-size: 0px;
      height: 0px;
      line-height: 0px;
      text-indent: -500px;
  }
  #footer_bottom_left,
  #footer_bottom_right {
      text-align: center;
      width: 100%;
  }
}



/************************************
               scrolování
*************************************/

.scrollToTopBtn {
  background: var(--alternative-link-color);
  border: none;
  border-radius: 500px;
  color: #fff;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 60px;
  width: 60px;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
}
.scrollToTopBtn:hover {
  background: #000;
}

.showBtn {
  opacity: 1;
  transform: translateY(0);
}



/************************************
          liĹˇta COOKIES 2022
*************************************/

/* tabulka pro Cookies */

.content .table-wrapper {
  background: #fff;
  overflow-x: auto;
  min-width: 280px;
}

.content table.table-cookies {
  border: solid 1px #ddd;
  border-collapse: collapse;
  border-spacing: 0;
  display: table;
  text-align: left;
  width: 100%;
}

.content table.table-cookies tr {
  border-top: solid 1px #ddd;
}

.content table.table-cookies tr:first-child {
  border-top: none;
}

.content table.table-cookies th {
  background: #f9f9f9;
  border-bottom: 1px solid #ddd; 
  padding: 1vmin 10px;
}

.content table.table-cookies td {
  /* background: #fff; */
  /* border: 1px solid #ddd; */
  color: #111;
  padding: 1vmin 10px;
  transition: all 0.2s !important;
}

.content table.table-cookies th:nth-child(1) { width: 15%; }
.content table.table-cookies th:nth-child(2) { width: 15%; }
.content table.table-cookies th:nth-child(3) { width: 15%; }
.content table.table-cookies th:nth-child(4) { width: 65%; }


/* .content table.table-cookies tr:nth-child(2n+1) td { 
  background-color: #f8f8f8; 
} */

.content table.table-cookies tr:hover td { 
  background-color: #f9f9f9; 
  cursor: default; 
}

@media screen and (max-width: 900px) {
  .content table.table-cookies th:nth-child(1),
  .content table.table-cookies th:nth-child(2),
  .content table.table-cookies th:nth-child(3),
  .content table.table-cookies th:nth-child(4) 
  { width: auto; }
}


/* okno pro cookies */

.freeprivacypolicy-com---nb .cc-nb-main-container {
  padding: 1.5rem !important;
}
.freeprivacypolicy-com---palette-light.freeprivacypolicy-com---nb {
  box-shadow: 0 0 30px rgb(68 45 45 / 20%);
  max-width: 500px;
}


/* nadpis + text */

.freeprivacypolicy-com---nb .cc-nb-title,
.freeprivacypolicy-com---pc-dialog .cc-pc-head-title-headline, 
.freeprivacypolicy-com---pc-dialog .cc-cp-body-content-entry-title  {
    font-family: var(--main-font-family);
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    line-height: 1em;
    margin: 0 0 5px 0;
}

.freeprivacypolicy-com---nb .cc-nb-text,
.freeprivacypolicy-com---pc-dialog .cc-cp-body-content-entry-text  {
    color: #000;
    font-size: 0.95rem !important;
    line-height: 1.3em;
}


/* buttony */

.freeprivacypolicy-com---palette-light .cc-nb-okagree,
.freeprivacypolicy-com---palette-light .cc-nb-reject,
.freeprivacypolicy-com---palette-light .cc-cp-foot-save {
    background-color: var(--main-link-color) !important;
    font-family: var(--main-font-family);
}
.freeprivacypolicy-com---palette-light .cc-nb-changep {
    font-family: var(--main-font-family);
}

.freeprivacypolicy-com---palette-light .cc-nb-okagree:hover,
.freeprivacypolicy-com---palette-light .cc-nb-reject:hover,
.freeprivacypolicy-com---palette-light .cc-cp-foot-save:hover {
  background-color: rgba(0, 0, 0, 0.8) !important;
}


@media screen and (max-width: 640px) {
  .freeprivacypolicy-com---nb-simple {
      max-width: 100% !important;
  }
  .freeprivacypolicy-com---palette-light .cc-nb-okagree,
  .freeprivacypolicy-com---palette-light .cc-nb-reject {
      display: inline-block !important;
      width: 49% !important;
  }
}



/************************************
          přiložené soubory
*************************************/ 

ul.attached-files {
  color: var(--main-text-color);
  padding: 0;
  margin: 0.3125rem 0;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  list-style-type: none;
  width: 100%;
  margin: 1.25rem 0;
  position: relative;
}

ul.attached-files li.file {
  background: var(--main-bg-color);
  display: list-item;
  list-style-type: none;
  padding: 0;
  margin: 0.3125rem 0;
}
ul.attached-files li.file:before {
  display: none;
}

ul.attached-files li.file a {
  display: block;
  color: var(--main-text-color);
  font-size: var(--main-text-size);
  line-height: 1.25rem;
  padding: 20px 25px;
  text-decoration: underline;
  text-align: left;
  transition: all 500ms cubic-bezier(0.17, 0.67, 0.16, 0.99);
}
ul.attached-files li.file a:hover {
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.1);
  color: #000;
}
ul.attached-files li.file a:hover:before {
  text-decoration: none;
}


/* ikony */

ul.attached-files li.file a:before {
  content: '\f00d';
	color: var(--main-link-color);

  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  font-size: 1.8em;

  display: block;
  float: left;
  line-height: 1.25rem;
  margin: 0 0.9rem 0 0;
  min-width: 30px;
}

ul.attached-files li.file a:after {
  content: '\f063';
  color: var(--main-link-color);

  text-decoration: none;
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-size: 1rem;
  font-variant: normal;
  font-weight: 900;

  display: block;
  float: right;
  line-height: 1.25rem;
  margin: 0 0.625rem 0 0;
}

ul.attached-files li.file a[href$=".pdf"]:before {
  content: '\f1c1';
}

ul.attached-files li.file a[href$=".jpg"]:before,
ul.attached-files li.file a[href$=".jpeg"]:before,
ul.attached-files li.file a[href$=".png"]:before {
  content: '\f1c5';
}

ul.attached-files li.file a[href$=".txt"]:before {
  content: '\f0f6';
}

ul.attached-files li.file a[href$=".doc"]:before,
ul.attached-files li.file a[href$=".docx"]:before {
  content: '\f1c2';
}

ul.attached-files li.file a[href$=".xls"]:before,
ul.attached-files li.file a[href$=".xlsx"]:before {
  content: '\f1c3';
}



/************************************
          formátované odkazy
*************************************/

.link-formatted,
.link-pretty {
  background: var(--main-bg-color);
  display: block;
  color: var(--main-link-color);
  font-size: var(--main-text-size);
  line-height: 1.25rem;
  margin: 0.3125rem 0;
  padding: 20px 25px;
  text-decoration: underline;
  transition: all 500ms cubic-bezier(0.17, 0.67, 0.16, 0.99);
}

.link-formatted,
.link-pretty,
.link-formatted:visited,
.link-pretty:visited {
  color: var(--main-text-color) !important;
}

.link-formatted:hover,
.link-pretty:hover {
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.1);

}

.link-formatted:hover:before,
.link-pretty:hover:before {
    text-decoration: none;
}

.link-formatted:before,
.link-pretty:before {
    content: '\f00d';
    color: var(--main-link-color);

    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-variant: normal;
    font-size: 1.8rem;
    font-weight: 900;

    display: block;
    float: left;
    line-height: 1.25rem;
    margin: 0 0.9rem 0 0;
}

.link-formatted:after,
.link-pretty:after {
    content: '\f063';
    color: var(--main-link-color);

    text-decoration: none;
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-size: 1rem;
    font-variant: normal;
    font-weight: 900;

    display: block;
    float: right;
    line-height: 1.25rem;
    margin: 0 0.625rem 0 0;
  }

.link-pretty:before {
    content: '\f0ac'
}

.link-pretty:after {
    content: '\f061'
}

.link-formatted[href$=".pdf"]:before {
    content: '\f1c1';
}

.link-formatted[href$=".jpg"]:before,
.link-formatted[href$=".jpeg"]:before,
.link-formatted[href$=".png"]:before {
    content: '\f1c5';
}

.link-formatted[href$=".txt"]:before {
    content: '\f0f6';
}

.link-formatted[href$=".doc"]:before,
.link-formatted[href$=".docx"]:before {
    content: '\f1c2';
}

.link-formatted[href$=".xls"]:before,
.link-formatted[href$=".xlsx"]:before {
    content: '\f1c3';
}



/************************************
                video
*************************************/

video {
  display: block;
  height: auto;
  aspect-ratio: 16/9;
  width: 100%;
  margin: 0 auto;
}

iframe {
  display: block;
  /* height: auto; */
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}



/************************************
          formátované obrázky
*************************************/ 

.content img.image_offer {
  background: rgba(0, 57, 114, 1);
  display: block;
  margin: 0 auto;
  height: auto;
  max-width: 600px;
  width: 100%;
  filter: grayscale(.5) brightness(.6);
  transition: all 0.2s ease 0s;
}
.content img.image_offer:hover {
  filter: grayscale(0) brightness(1);
}



/************************************
          zarovnání obrázků
*************************************/ 

.content .center_image_smaller {
  display: block;
  margin: 0 auto;
  height: auto;
  max-width: 250px;
  width: 100%;
}
.content .center_image {
  display: block;
  margin: 0 auto;
  height: auto;
  max-width: 600px;
  width: 100%;
}
.content .center_image_fullsize {
  display: block;
  margin: 0 auto;
  height: auto;
  max-width: 1000px;
  width: 100%;
}

.content .left_image_smaller {
  float: left;
  display: block;
  height: auto;
  max-width: 250px;
  width: 100%;
}
.content .left_image {
  float: left;
  display: block;
  height: auto;
  max-width: 600px;
  width: 100%;
}
.content .left_image_fullsize {
  float: left;
  display: block;
  height: auto;
  max-width: 1000px;
  width: 100%;
}

.content .right_image_smaller {
  float: right;
  display: block;
  height: auto;
  max-width: 250px;
  width: 100%;
}
.content .right_image {
  float: right;
  display: block;
  height: auto;
  max-width: 600px;
  width: 100%;
}
.content .right_image_fullsize {
  float: right;
  display: block;
  height: auto;
  max-width: 1000px;
  width: 100%;
}

@media screen and (max-width: 600px) { 
  .content .left_image_smaller,
  .content .left_image,
  .content .center_image_smaller, 
  .content .center_image,
  .content .right_image_smaller,
  .content .right_image {
    max-width: 45%;
  }
}  



/************************************
          WYSIWYG -  bloky v2
*************************************/

.content .cms-block {
  border: dashed 1px #ddd;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 2vmin;
}
.content .cms-block::after {
  border: dashed 1px #ddd;
  content: "";
  display: block;
  width: 100%;
  margin: 0 0 2vmin 0;
}


.content .cms-block-column {
  border: dashed 1px #ddd;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.content .cms-block-column-2 {
  border: dashed 1px #ddd;
  display: flex;
  flex: 2;
  flex-direction: column;
}

.content .cms-block-center {
  border: dashed 1px #ddd;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
}



/************************************
          WYSIWYG -  bloky
*************************************/

.content .content_33 {
  display: block;
  float: left;
  height: auto;
  margin: 0 0 5vmin 0;
  padding: 0 3% 0 0;
  width: 33.3%;
}

.content .content_50 {
  display: block;
  float: left;
  height: auto;
  margin: 0 0 5vmin 0;
  padding: 0 3% 0 0;
  width: 50%;
}

.content .content_66 {
  display: block;
  float: left;
  height: auto;
  margin: 0 0 5vmin 0;
  padding: 0 3% 0 0;
  width: 66.6%;
}

#tinymce .content_33,
#tinymce .content_50,
#tinymce .content_66 {
  border: dashed 1px grey;
}

@media screen and (max-width: 640px) {
  .content .content_33,
  .content .content_50,
  .content .content_66 {
      margin: 0 0 20px 0;
      padding: 0;
      width: 100%;
  }
}
