.lightbox {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 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: #323232;
  word-spacing: -0.3em;
}
.lightbox .lightbox-gallery .lightbox-gallery-slider {
  white-space: nowrap;
  overflow: hidden;
  transition: left 0.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 #646464;
  background-color: #646464;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.lightbox .lightbox-gallery .img.active {
  padding: 0;
  border: 4px solid #6296dd;
}

#hdr.pg-hdr {
  height: 280px;
}
@media all and (max-width: 900px) {
  #hdr.pg-hdr {
    background-image: linear-gradient(to right, rgba(0, 63, 151, 0.8), rgba(0, 63, 151, 0.8)), url(../img/bg.jpg);
    background-size: 100% 100%, 130% auto;
    background-position: center left, center right;
  }
}

main {
  position: relative;
  padding: 60px 0 160px;
}
main:before {
  content: "";
  display: block;
  width: 520px;
  height: 520px;
  position: absolute;
  z-index: -1;
  bottom: -150px;
  right: 40px;
  transform: rotate(30deg);
  background-image: url(../img/symbol.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
main .aside-nav {
  float: right;
  width: 300px;
  overflow: hidden;
  border-radius: 20px;
}
@media all and (max-width: 850px) {
  main .aside-nav {
    float: left;
  }
}
main .aside-nav h1 {
  padding: 25px;
  background: #003f97;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
  color: white;
}
main .aside-nav .links {
  padding: 0 25px;
  background: #ebf1f9;
}
main .aside-nav .links a {
  display: block;
  position: relative;
  padding: 20px 0;
  padding-left: 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #0f1d3c;
  transition: padding 0.35s ease;
}
main .aside-nav .links a:not(:last-of-type) {
  border-bottom: 1px dashed #d4dbe7;
}
main .aside-nav .links a:before {
  content: "";
  display: block;
  width: 0;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  transition: width 0.35s ease;
  background-image: url(../img/arrow.svg);
  background-size: cover;
  background-position: center right;
}
main .aside-nav .links a.active, main .aside-nav .links a:hover {
  padding-left: 40px;
}
main .aside-nav .links a.active:before, main .aside-nav .links a:hover:before {
  width: 20px;
}
main section.main {
  float: left;
  width: calc(100% - 300px);
  padding-right: 80px;
  padding-bottom: 40px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: #0f1d3c;
}
@media all and (max-width: 1000px) {
  main section.main {
    padding-right: 40px;
  }
}
@media all and (max-width: 850px) {
  main section.main {
    width: 100%;
    padding-right: 0;
  }
}
main section.main.redakce {
  width: 100%;
}
main section.main.redakce .content img {
  float: right;
  width: 50%;
  margin-left: 20px;
  min-width: 550px;
}
@media all and (max-width: 750px) {
  main section.main.redakce .content img {
    min-width: 100%;
  }
}
main section.main h1 {
  margin-bottom: 30px;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #0f1f3c;
}
main section.main h2 {
  margin: 30px 0;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #0f1f3c;
}
main section.main h3 {
  margin: 30px 0;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #6296dd;
}
main section.main img {
  max-width: 100%;
}
main .main-photo {
  float: right;
  width: calc(50% - 20px);
  margin-left: 20px;
}
@media all and (max-width: 750px) {
  main .main-photo {
    min-width: 100%;
  }
}
main .main-photo ~ section {
  float: left;
  width: 50%;
}
@media all and (max-width: 750px) {
  main .main-photo ~ section {
    min-width: 100%;
  }
}
main section:after {
  content: "";
  display: block;
  clear: both;
}
main .content {
  position: relative;
}
main .content .podmenu .item {
  float: left;
  width: 200px;
  height: 60px;
  position: relative;
  margin: 0 20px 20px 0;
  border-radius: 20px;
  background: #ebf1f9;
  transition: background 0.3s ease;
}
main .content .podmenu .item:hover {
  background: #c4d6ed;
}
main .content .podmenu .item span {
  width: calc(100% - 40px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 600;
}
main .content p {
  margin: 30px 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: #0f1d3c;
}
main .content ul {
  list-style: none;
}
main .content ul li {
  position: relative;
  padding: 5px 0 5px 40px;
}
main .content ul li:before {
  content: "";
  display: block;
  width: 20px;
  height: 12px;
  position: absolute;
  top: 9px;
  left: 0;
  transition: width 0.35s ease;
  background-image: url(../img/arrow.svg);
  background-size: cover;
  background-position: center right;
}
main .content ol {
  list-style-position: inside;
}
main .content ol li {
  padding: 5px 0 5px 40px;
}
main .content ul, main .content ol {
  margin: 20px 0;
}
main .content ul ul, main .content ul ol, main .content ol ul, main .content ol ol {
  width: calc(100% - 20px);
  position: relative;
  left: 20px;
}
main .content .kontakty {
  word-spacing: -0.3em;
}
main .content .kontakty .osoba {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 10px);
  min-height: 136px;
  margin: 20px 0;
  padding: 20px;
  border-radius: 10px;
  word-spacing: 0;
}
main .content .kontakty .osoba:nth-of-type(odd) {
  margin-right: 10px;
}
main .content .kontakty .osoba:nth-of-type(even) {
  margin-left: 10px;
}
main .content .kontakty .osoba:after {
  content: "";
  display: block;
  clear: both;
}
main .content .kontakty .osoba img {
  float: left;
  width: 96px;
  height: 96px;
  border-radius: 48px;
  object-fit: cover;
  object-position: 50% 10%;
}
main .content .kontakty .osoba .text {
  float: right;
  width: calc(100% - 100px);
  padding-left: 20px;
}
main .content .kontakty .osoba .text div {
  margin: 3px 0;
}
main .content .mapa-uvolnovac-mista {
  float: right;
  width: 50%;
  margin-left: 20px;
  min-width: 450px;
  height: 360px;
}
@media all and (max-width: 1200px) {
  main .content .mapa-uvolnovac-mista {
    width: 300px;
    min-width: unset;
    height: 260px;
  }
}
@media all and (max-width: 800px) {
  main .content .mapa-uvolnovac-mista {
    display: none;
  }
}
@media all and (min-width: 801px) {
  main .content .mapa-responsive {
    width: 50%;
    min-width: 450px;
    height: 360px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media all and (max-width: 1200px) {
  main .content .mapa-responsive {
    width: 300px;
    min-width: unset;
    height: 260px;
  }
}
@media all and (max-width: 800px) {
  main .content .mapa-responsive {
    width: 100%;
    height: 100vw;
    max-height: 500px;
  }
}
main .content .mapa-responsive iframe {
  width: 100%;
  height: 100%;
}
main .content .car .carousel-container {
  width: 955px;
  position: relative;
  margin: auto auto;
}
@media all and (max-width: 1480px) {
  main .content .car .carousel-container {
    width: 630px;
  }
}
@media all and (max-width: 1115px) {
  main .content .car .carousel-container {
    width: 305px;
    max-width: calc(100vw - 100px);
  }
}
@media all and (max-width: 770px) {
  main .content .car .carousel-container {
    width: 305px;
    max-width: calc(100vw - 100px);
  }
}
main .content .car .carousel {
  width: 975px;
  overflow: hidden;
  position: relative;
  left: -12px;
}
@media all and (max-width: 1480px) {
  main .content .car .carousel {
    width: 650px;
  }
}
@media all and (max-width: 1115px) {
  main .content .car .carousel {
    width: 325px;
    max-width: calc(100vw - 80px);
  }
}
@media all and (max-width: 770px) {
  main .content .car .carousel {
    width: 325px;
    max-width: calc(100vw - 80px);
  }
}
main .content .car .carousel .item-container {
  position: relative;
  left: 0;
  padding: 30px 0;
  word-spacing: -0.3em;
  white-space: nowrap;
  transition: left 0.4s ease;
}
main .content .car .carousel .item-container .item {
  max-width: calc(100vw - 80px) !important;
}
main .content .car .carousel .item-container .item {
  display: inline-block;
  vertical-align: top;
  word-spacing: 0;
  white-space: normal;
  width: 325px;
  max-width: calc(100vw - 20px);
  padding: 12px;
}
main .content .car .carousel .item-container .item article {
  width: 100%;
  height: 390px;
  position: relative;
  transform: scale(1);
  transition: transform 0.4s ease;
  cursor: pointer;
}
main .content .car .carousel .item-container .item article:after {
  content: "";
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  left: 15px;
  top: 0;
  z-index: -1;
  background: 0;
  box-shadow: 0 0 20px 4px rgba(30, 90, 181, 0.1);
  transition: box-shadow 0.4s ease;
}
main .content .car .carousel .item-container .item article:hover {
  transform: scale(1.04);
}
main .content .car .carousel .item-container .item article:hover:after {
  box-shadow: 0 10px 20px 4px rgba(30, 90, 181, 0.1);
}
main .content .car .carousel .item-container .item .bg {
  height: 50%;
  width: 100%;
  position: absolute;
  top: 0;
  background-image: url("../img/default_img.jpg");
  background-size: cover;
}
main .content .car .carousel .item-container .item .bg .tag {
  height: 25px;
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 0 10px;
  border-radius: 13px;
  background: #003f97;
  line-height: 25px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: white;
}
main .content .car .carousel .item-container .item .text {
  height: 50%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  border: 10px solid white;
  background: white;
}
main .content .car .carousel .item-container .item .text .date {
  position: relative;
  padding-left: 28px;
  color: #344651;
}
main .content .car .carousel .item-container .item .text .date:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 3px;
  top: calc(50% - 10px);
  background-image: url(../img/calendar-light.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
main .content .car .carousel .item-container .item .text h2 {
  margin: 10px 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  color: #0f1f3c;
}
main .content .car .carousel .item-container .item .text p {
  margin: 0;
  padding-left: 2px;
  font-size: 13.5px;
  line-height: 22px;
  color: #344651;
}
main .content .car .carousel-controls {
  width: 120px;
  height: 0;
  position: absolute;
  bottom: 100%;
  right: 0;
  pointer-events: none;
}
main .content .car .carousel-controls .btn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  border: 1px solid #566888;
  border-radius: 25px;
  pointer-events: all;
}
@media all and (max-width: 450px) {
  main .content .car .carousel-controls .btn {
    width: 30px;
    height: 30px;
  }
}
main .content .car .carousel-controls .btn .arrow {
  width: 26px;
  height: 15px;
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 13px);
  background-image: url(../img/arrow-blue.svg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
@media all and (max-width: 450px) {
  main .content .car .carousel-controls .btn .arrow {
    width: 18px;
    height: 12px;
    top: calc(50% - 6px);
    left: calc(50% - 9px);
  }
}
main .content .car .carousel-controls .btn.prev {
  right: 60px;
}
@media all and (max-width: 450px) {
  main .content .car .carousel-controls .btn.prev {
    right: 40px;
  }
}
main .content .car .carousel-controls .btn.prev .arrow {
  transform: rotate(180deg);
}
main .content .car .carousel-controls .btn.next {
  right: 0;
}
main .dokumenty table {
  border-collapse: collapse;
}
main .dokumenty table tr td {
  padding: 5px;
}
main .dokumenty table tr img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
main .fotogalerie img {
  float: left;
  width: 160px;
  height: 120px;
  object-fit: cover;
  margin: 0 20px 20px 0;
  cursor: pointer;
}
main #articles {
  float: none;
  width: 100%;
}
main #articles .strankovani {
  text-align: center;
  padding: 30px 0;
}
main #articles .strankovani a {
  display: inline-block;
  vertical-align: top;
  width: 28px;
  height: 28px;
  margin: 10px 20px;
  border: 1px solid #c8c8c8;
  border-radius: 14px;
  line-height: 24px;
  text-decoration: none;
  color: #c8c8c8;
}
main #articles .strankovani a.active {
  border-color: black;
  color: black;
}
main #articles .item-container {
  width: 1300px;
  max-width: 100vw;
  word-spacing: -0.3em;
}
main #articles .item {
  display: inline-block;
  vertical-align: top;
  word-spacing: 0;
  white-space: normal;
  width: 325px;
  max-width: calc(100vw - 20px);
  padding: 12px;
}
main #articles .item article {
  width: 100%;
  height: 390px;
  position: relative;
  transform: scale(1);
  transition: transform 0.4s ease;
  cursor: pointer;
}
main #articles .item article:after {
  content: "";
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  left: 15px;
  top: 0;
  z-index: -1;
  background: 0;
  box-shadow: 0 0 20px 4px rgba(30, 90, 181, 0.1);
  transition: box-shadow 0.4s ease;
}
main #articles .item article:hover {
  transform: scale(1.04);
}
main #articles .item article:hover:after {
  box-shadow: 0 10px 20px 4px rgba(30, 90, 181, 0.1);
}
main #articles .item .bg {
  height: 50%;
  width: 100%;
  position: absolute;
  top: 0;
  background-image: url("../img/default_img.jpg");
  background-size: cover;
}
main #articles .item .bg .tag {
  height: 25px;
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 0 10px;
  border-radius: 13px;
  background: #003f97;
  line-height: 25px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: white;
}
main #articles .item .text {
  height: 50%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  border: 10px solid white;
  background: white;
}
main #articles .item .text .date {
  position: relative;
  padding-left: 28px;
  color: #344651;
}
main #articles .item .text .date:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 3px;
  top: calc(50% - 10px);
  background-image: url(../img/calendar-light.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
main #articles .item .text h2 {
  margin: 10px 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  color: #0f1f3c;
}
main #articles .item .text p {
  margin: 0;
  padding-left: 2px;
  font-size: 13.5px;
  line-height: 22px;
  color: #344651;
}
main .lightbox {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
main .lightbox.active {
  display: block;
}
main .lightbox button {
  display: block;
  background: none;
  text-align: center;
  border: 0;
  color: white;
  cursor: pointer;
}
main .lightbox .exit {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 30px;
  font-size: 25px;
}
main .lightbox .exit span {
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  border-radius: 1px;
  background: white;
}
main .lightbox .exit span:first-of-type {
  top: calc(50% - 2px);
  transform: rotate(45deg);
}
main .lightbox .exit span:last-of-type {
  bottom: calc(50% - 2px);
  transform: rotate(-45deg);
}
main .lightbox .previous {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  line-height: 50px;
  font-size: 40px;
}
main .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;
}
main .lightbox .next {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  line-height: 50px;
  font-size: 40px;
}
main .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;
}
main .lightbox .full {
  max-height: calc(100% - 140px);
  max-width: calc(100% - 100px);
  position: absolute;
  left: 50%;
  top: calc(50% - 55px);
  transform: translate(-50%, -50%);
}
main .lightbox .lightbox-gallery {
  height: 110px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 20px;
  background: #323232;
  word-spacing: -0.3em;
}
main .lightbox .lightbox-gallery .lightbox-gallery-slider {
  white-space: nowrap;
  overflow: hidden;
  transition: left 0.5s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}
main .lightbox .lightbox-gallery .img {
  display: inline-block;
  height: 90px;
  width: 160px;
  margin: 10px;
  padding: 4px;
  border: 4px solid #646464;
  background-color: #646464;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
main .lightbox .lightbox-gallery .img.active {
  padding: 0;
  border: 4px solid #6296dd;
}
main .music-files {
  padding: 40px 0;
}
main .music-files .music-file {
  padding: 10px 0;
}
main .music-files .music-file audio {
  display: inline-block;
  vertical-align: middle;
}
main .music-files .music-file span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 20px;
}

/*# sourceMappingURL=page.css.map */
