@charset "UTF-8";
@font-face {
  font-family: "Releway";
  src: url("../fonts/Raleway.ttf");
  font-weight: 1 999;
  font-style: normal;
}
@font-face {
  font-family: "Releway";
  src: url("../fonts/Raleway-Italic.ttf");
  font-weight: 1 999;
  font-style: italic;
}
:root {
  /*
  --col-1: white;
  --col-2: #2890c2;
  //--col-3: #ff7e15;
  --col-3: #71a8c3;
  --col-4: #686767;
  --col-5: #f4f9fc;
  --col-6: #e08813;
  --col-7: #8f432a;
  --col-8: #5e5b5a;
  --col-9: #c25734;
  */
  --col-1: white;
  --col-2: #608ba7;
  --col-3: #2890c2;
  --col-4: #2380a8;
  --col-5: #1e5c90;
  --col-6: #7a997c;
  --col-7: #71b578;
  --col-8: #519f5f;
  --col-9: #3e7843;
  --col-10: #7bd3f9;
  --max-width: 1200px;
  --header-height: 7em ;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: Releway, Arial, sans-serif;
  font-weight: 500;
}

div, span {
  display: flex;
}

#app {
  width: calc(100vw - (100vw - 100%));
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--col-1);
}

.hide {
  display: none !important;
}

#header {
  background-color: var(--col-3);
  width: 100%;
  justify-content: center;
}
#header > div {
  width: 100%;
  max-width: var(--max-width);
  justify-content: space-between;
  align-items: center;
}
#header > div .enki-logo {
  font-weight: 700;
  max-width: var(--header-height);
  max-height: var(--header-height);
  width: var(--header-height);
  height: var(--header-height);
}
#header > div .enki-logo img {
  padding: 0.5em;
}
#header > div .menu {
  justify-content: flex-end;
}
#header > div .menu-item {
  /* Odkomentovat pro zobrazování "hamburgrového" menu
  @media (orientation: portrait) {
      display: none;
      //display: flex;
  }
  //*/
  font-size: 1.5em;
  padding-left: 2rem;
  padding-right: 2rem;
  color: var(--col-1);
  text-decoration: none;
}

#header div {
  /* Odkomentovat pro zobrazování "hamburgrového" menu
  @media (orientation: portrait) {
      .menu-button-container {
          display: flex;
          //display: none;
      }

      .menu {
          position: absolute;
          top: 0;
          margin-top: var(--header-height);
          left: 0;
          flex-direction: column;
          width: 100%;
          justify-content: center;
          align-items: center;
      }


      #menu-toggle:checked ~ .menu > span, #menu-toggle:checked ~ .menu > a {
          display: flex !important;
          justify-content: center;
          margin: 0;
          padding: 0.5em 0;
          width: 100%;
          color: var(--col-1);
          background-color: var(--col-2);
      }

      .menu > span:not(:last-child), .menu > a:not(:last-child) {
          border-bottom: 1px solid var(--col-3);
      }
  }
  //*/
}
#header div .menu-button-container {
  display: none;
  height: 100%;
  width: 2em;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 1em;
  padding-left: 1em;
}
#header div #menu-toggle {
  display: none;
}
#header div .menu-button,
#header div .menu-button::before,
#header div .menu-button::after {
  display: block;
  background-color: var(--col-1);
  position: absolute;
  height: 4px;
  width: 30px;
  border-radius: 2px;
}
#header div .menu-button::before {
  content: "";
  margin-top: -8px;
}
#header div .menu-button::after {
  content: "";
  margin-top: 8px;
}
#header div #menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}
#header div #menu-toggle:checked + .menu-button-container .menu-button {
  background-color: var(--col-2);
}
#header div #menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

.section {
  flex-direction: column;
  width: calc(100% - 0em);
}
.section .section-container {
  align-self: center;
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  justify-content: center;
}
.section .section-container > div {
  max-width: var(--max-width);
}

.section-col-1 {
  color: var(--col-1);
}

.section-bgcol-2 {
  background-color: var(--col-2);
}

.section-bgcol-3 {
  background-color: var(--col-3);
}

.section-bgcol-4 {
  background-color: var(--col-4);
}

.section-bgcol-5 {
  background-color: var(--col-5);
}

.section-bgcol-6 {
  background-color: var(--col-6);
}

.section-bgcol-7 {
  background-color: var(--col-7);
}

.section-bgcol-8 {
  background-color: var(--col-8);
}

.section-bgcol-9 {
  background-color: var(--col-9);
}

.section-bgimage {
  background-size: cover;
  background-position: center;
}

.bgimage-overlay-full {
  background-image: linear-gradient(var(--col-3), rgba(255, 255, 255, 0.1882352941), rgba(255, 255, 255, 0.1882352941), var(--col-6));
}

.section-border-top-bottom-1 {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--col-2);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--col-2);
}

.button {
  box-shadow: 0 8px 16px -3px rgba(0, 0, 0, 0.2), 0 6px 20px -3px rgba(0, 0, 0, 0.19);
  padding: 1rem;
  border-radius: 5px;
}

.button:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
}

#section-news {
  width: calc(100% - 1.5rem);
  justify-content: space-between;
}
#section-news span {
  align-items: center;
}
#section-news #news-head {
  font-weight: 600;
}
#section-news #news-text {
  text-overflow: clip;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  font-weight: 400;
}
#section-news #news-more {
  font-size: 1.5rem;
}

#section-about {
  text-align: justify;
  font-size: 1.3em;
  font-weight: 300;
}
@media (orientation: portrait) {
  #section-about {
    text-align: left;
  }
}

#section-about-detail {
  flex-direction: column;
}
#section-about-detail p, #section-about-detail h2, #section-about-detail h3 {
  padding-left: 0.5rem;
}

#section-slideshow {
  overflow: hidden;
}
#section-slideshow #section-slideshow-inner {
  animation: slideshow-move linear 25s infinite;
  width: 200%;
  position: relative;
}
#section-slideshow #section-slideshow-inner:hover {
  animation-play-state: paused;
}
#section-slideshow img {
  border-radius: 2rem;
  max-height: 15rem;
  width: auto;
  padding: 1rem;
}

@keyframes slideshow-move {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
#section-projects h3 {
  margin-block-start: 0.1rem;
  margin-block-end: 0.1rem;
}

#section-bignav {
  flex-direction: row;
  margin-bottom: 4rem;
}
@media (orientation: portrait) {
  #section-bignav {
    flex-direction: column;
  }
}
#section-bignav #bignav-picture {
  min-width: 50%;
}
@media (orientation: portrait) {
  #section-bignav #bignav-picture {
    display: none;
  }
}
#section-bignav #bignav-picture img {
  width: 80%;
  object-fit: contain;
}
#section-bignav #bignav {
  min-width: 50%;
  flex-flow: wrap;
}
#section-bignav #bignav #bignav-item {
  width: calc(50% - 4rem);
  height: calc(50% - 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--col-2);
  margin: 1rem;
  padding: 1rem;
  text-decoration: none;
  transition: transform 0.2s;
  border-radius: 7px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#section-bignav #bignav #bignav-item img {
  width: 50%;
  object-fit: contain;
}
#section-bignav #bignav #bignav-item span {
  padding: 0.5em;
  font-size: 1.3em;
  font-weight: 700;
  text-align: center;
}
#section-bignav #bignav #bignav-item:hover {
  transform: scale(1.1);
}

#bignav-overlay {
  background-image: linear-gradient(var(--col-3), rgba(255, 255, 255, 0.1882352941), rgba(255, 255, 255, 0.1882352941), var(--col-8));
}

.paragraph-columns {
  width: 100%;
  flex-direction: column;
}
.paragraph-columns > h2 {
  padding-left: 0.5rem;
}
.paragraph-columns > div {
  padding-left: 0.5rem;
}
@media (orientation: portrait) {
  .paragraph-columns > div {
    flex-direction: column;
  }
}
@media (orientation: landscape) {
  .paragraph-columns > div {
    flex-direction: row;
  }
}
.paragraph-columns .p-col-3 {
  width: 30%;
  flex-direction: column;
  border-left-width: 3px;
  border-left-style: solid;
  padding-left: 1.5rem;
}
@media (orientation: portrait) {
  .paragraph-columns .p-col-3 {
    width: calc(100% - 3px - 1rem);
  }
}
.paragraph-columns .p-col-3 p {
  text-align: justify;
  padding-right: 1.5rem;
  margin-block-start: 0.2rem;
  margin-block-end: 0.8rem;
}

.paragraph-rows {
  width: 100%;
  flex-direction: column;
}
.paragraph-rows > h2 {
  padding-left: 0.5rem;
}
.paragraph-rows > div {
  padding-left: 0.5rem;
}
@media (orientation: portrait) {
  .paragraph-rows > div {
    flex-direction: column;
  }
}
@media (orientation: landscape) {
  .paragraph-rows > div {
    flex-direction: column;
  }
}
.paragraph-rows .p-row {
  width: calc(100% - 3px - 1rem);
  flex-direction: column;
}
.paragraph-rows .p-row p {
  text-align: justify;
  padding-right: 1rem;
  margin-block-start: 0.2rem;
  margin-block-end: 0.8rem;
}

.paragraph-columns .paragraph-more, .paragraph-rows .paragraph-more {
  font-size: 1.5rem;
  align-self: flex-end;
  padding: 1rem;
  /*
  a:hover {
      transform: scale(1.1);
      transition: transform 0.2s;
  }
  //*/
}
.paragraph-columns .paragraph-more a, .paragraph-rows .paragraph-more a {
  color: var(--col-1);
  text-decoration: none;
  /*
  box-shadow: 0 8px 16px -3px rgba(0,0,0,0.2), 0 6px 20px -3px rgba(0,0,0,0.19);
  padding: 1rem;
  border-radius: 5px;
  //*/
}

#section-footer {
  width: 100%;
}
@media (orientation: portrait) {
  #section-footer {
    flex-direction: column;
    align-self: flex-start;
    width: auto;
  }
}
#section-footer #footer-contact, #section-footer #footer-partners {
  flex-direction: column;
}
@media (orientation: landscape) {
  #section-footer #footer-contact, #section-footer #footer-partners {
    width: 50%;
  }
}
#section-footer #footer-contact h3, #section-footer #footer-partners h3 {
  margin-bottom: 0.5rem;
}
#section-footer #footer-contact p, #section-footer #footer-contact a, #section-footer #footer-partners p, #section-footer #footer-partners a {
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}
#section-footer #footer-contact a, #section-footer #footer-partners a {
  text-decoration: none;
  color: var(--col-10);
}
@media (orientation: landscape) {
  #section-footer #footer-partners {
    align-items: flex-end;
  }
}

#section-publikace {
  color: var(--col-1);
  flex-direction: column;
  width: calc(100% - 1.5rem);
}
#section-publikace .publikace-header {
  border-bottom: 2px solid var(--col-1);
  justify-content: space-between;
  padding-bottom: 1rem;
  padding-top: 1rem;
  flex-direction: column;
}
#section-publikace .publikace-header h3 {
  margin-bottom: 0.5rem;
  margin-block-start: 0;
  margin-block-end: 0;
}
#section-publikace .publikace-header h4 {
  margin-block-start: 1rem;
  margin-block-end: 1rem;
  font-size: 1rem;
}
#section-publikace .publikace-header .publikace-sort {
  font-size: 1.17rem;
  text-align: right;
}
@media (orientation: portrait) {
  #section-publikace .publikace-header .publikace-sort {
    flex-direction: column;
  }
}
#section-publikace .publikace-header .publikace-sort label {
  margin-right: 0.5rem;
}
#section-publikace .publikace-header #publikace-sort {
  background-color: var(--col-6);
  border: 0;
  color: var(--col-1);
  font-size: 1.17rem;
}
@media (orientation: portrait) {
  #section-publikace .publikace-header #publikace-sort {
    text-align: right;
  }
}
#section-publikace .publikace-header #publikace-sort:focus-visible {
  outline: none;
}
#section-publikace .publikace-item {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  flex-direction: column;
  border-bottom: 1px dotted var(--col-1);
}
#section-publikace .publikace-item:last-child {
  border-bottom-style: none;
}
#section-publikace .publikace-item .publikace-info {
  font-style: normal;
  display: inline;
}
#section-publikace .publikace-item .publikace-abstract {
  font-size: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
#section-publikace .item-top-border {
  border-top: 1px dotted var(--col-1);
  padding-top: 0.5rem;
}

#section-projects-list {
  color: var(--col-1);
  flex-direction: column;
  width: calc(100% - 1.5rem);
  border-radius: 7px;
}
#section-projects-list .projects-header {
  border-bottom: 2px solid var(--col-1);
  justify-content: space-between;
  padding-bottom: 1rem;
  padding-top: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
#section-projects-list .projects-header h3 {
  margin-bottom: 0.5rem;
  margin-block-start: 0;
  margin-block-end: 0;
  align-self: center;
}
#section-projects-list .projects-header .projects-sort {
  font-size: 1.17rem;
  text-align: right;
}
@media (orientation: portrait) {
  #section-projects-list .projects-header .projects-sort {
    flex-direction: column;
  }
}
#section-projects-list .projects-header .projects-sort label {
  margin-right: 0.5rem;
}
#section-projects-list .projects-header #projects-sort {
  border: 0;
  color: var(--col-1);
  font-size: 1.17rem;
}
@media (orientation: portrait) {
  #section-projects-list .projects-header #projects-sort {
    text-align: right;
  }
}
#section-projects-list .projects-header #projects-sort:focus-visible {
  outline: none;
}
#section-projects-list .projects-item {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  flex-direction: column;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
  text-decoration: none;
  color: var(--col-1);
}
#section-projects-list .projects-item:last-child {
  border-bottom-style: none;
}
#section-projects-list .projects-item:hover {
  background-color: var(--col-8);
}
#section-projects-list .projects-item .projects-info {
  font-style: normal;
  display: inline;
  font-weight: bold;
}
#section-projects-list .projects-item .projects-abstract {
  font-size: 1rem;
  margin-top: 0.75rem;
  flex-direction: column;
}
#section-projects-list .item-top-border {
  border-top: 1px dotted var(--col-1);
  padding-top: 0.5rem;
}

#section-project-detail {
  flex-direction: column;
  width: calc(100% - 1.5rem);
  color: var(--col-1);
}
#section-project-detail .info-row .info-label {
  font-weight: bold;
}
#section-project-detail .info-row .info-text {
  padding-left: 0.5rem;
}
#section-project-detail .info-row .info-list {
  margin-block-start: 0rem;
  margin-block-end: 0rem;
  padding-inline-start: 0.5rem;
}
#section-project-detail .info-row .info-list li {
  list-style-type: none;
}
#section-project-detail .abstract {
  flex-direction: column;
}

#section-blog {
  color: var(--col-1);
  flex-direction: column;
  width: calc(100% - 1.5rem);
}
#section-blog > div > div > h3, #section-blog > div > div > h4 {
  margin-block-start: 0.5rem;
  margin-block-end: 0.5rem;
}
#section-blog > div > div > h4 {
  margin-left: auto;
  padding-right: 0.5rem;
}
#section-blog .blog-header {
  border-bottom: 2px solid var(--col-1);
  justify-content: space-between;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
#section-blog .blog-header h3 {
  margin-bottom: 0.5rem;
  margin-block-start: 0;
  margin-block-end: 0;
  align-self: center;
}
#section-blog .blog-header .blog-sort {
  font-size: 1.17rem;
  text-align: right;
}
@media (orientation: portrait) {
  #section-blog .blog-header .blog-sort {
    flex-direction: column;
  }
}
#section-blog .blog-header .blog-sort label {
  margin-right: 0.5rem;
}
#section-blog .blog-header #blog-sort {
  background-color: var(--col-3);
  border: 0;
  color: var(--col-1);
  font-size: 1.17rem;
}
@media (orientation: portrait) {
  #section-blog .blog-header #blog-sort {
    text-align: right;
  }
}
#section-blog .blog-header #blog-sort:focus-visible {
  outline: none;
}
#section-blog .blog-item {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  flex-direction: column;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
  text-decoration: none;
  color: var(--col-1);
}
#section-blog .blog-item:last-child {
  border-bottom-style: none;
}
#section-blog .blog-item .blog-info {
  font-style: normal;
  display: inline;
  font-weight: bold;
}
#section-blog .blog-item .blog-abstract {
  font-size: 1rem;
  margin-top: 0.75rem;
  flex-direction: column;
}
#section-blog .blog-item .blog-date {
  font-size: 0.8rem;
  padding-bottom: 0.3rem;
  margin-left: auto;
}
#section-blog .blog-item .blog-author {
  font-weight: bold;
  padding-bottom: 0.5rem;
  margin-left: auto;
}
#section-blog .item-top-border {
  border-top: 1px dotted var(--col-1);
  padding-top: 0.5rem;
}

#section-news-list {
  color: var(--col-1);
  flex-direction: column;
  width: calc(100% - 1.5rem);
}
#section-news-list .news-item {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
  text-decoration: none;
  color: var(--col-1);
  flex-direction: row;
}
@media (orientation: portrait) {
  #section-news-list .news-item {
    flex-direction: column;
  }
}
#section-news-list .news-item:last-child {
  border-bottom-style: none;
}
#section-news-list .news-item .news-date {
  font-style: normal;
  display: inline;
  font-style: italic;
}
#section-news-list .news-item .news-text {
  font-style: normal;
  display: inline;
  font-weight: bold;
  padding-left: 0.5rem;
}
#section-news-list .item-top-border {
  border-top: 1px dotted var(--col-1);
  padding-top: 0.5rem;
}

#section-gallery-list {
  color: var(--col-1);
  flex-direction: column;
  width: calc(100% - 1.5rem);
  border-radius: 7px;
}
#section-gallery-list .gallery-header {
  border-bottom: 2px solid var(--col-1);
  justify-content: space-between;
  padding-bottom: 1rem;
  padding-top: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
#section-gallery-list .gallery-header h3 {
  margin-bottom: 0.5rem;
  margin-block-start: 0;
  margin-block-end: 0;
  align-self: center;
}
#section-gallery-list .gallery-items {
  flex-wrap: wrap;
  justify-content: center;
}
#section-gallery-list .gallery-items figure {
  cursor: zoom-in;
}
#section-gallery-list .gallery-items figure, #section-gallery-list .gallery-items a {
  display: flex;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  margin-block-start: 1rem;
  margin-block-end: 1rem;
  margin-inline-start: 1rem;
  margin-inline-end: 1rem;
  flex-direction: column;
  justify-content: space-evenly;
  width: 8rem;
  text-decoration: none;
  color: var(--col-1);
}
@media (orientation: portrait) {
  #section-gallery-list .gallery-items figure, #section-gallery-list .gallery-items a {
    margin-block-start: 0.5rem;
    margin-block-end: 0.5rem;
    margin-inline-start: 0.5rem;
    margin-inline-end: 0.5rem;
  }
}
#section-gallery-list .gallery-items figure figcaption, #section-gallery-list .gallery-items a figcaption {
  text-align: center;
  font-size: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#section-gallery-list .item-top-border {
  border-top: 1px dotted var(--col-1);
  padding-top: 0.5rem;
}

#gallery-modal {
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
#gallery-modal #gallery-modal-image {
  padding: 1rem;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  cursor: zoom-out;
}
#gallery-modal #gallery-modal-image img {
  max-height: 90%;
  /* width: auto; */
  object-fit: contain;
}
#gallery-modal #gallery-modal-image p {
  display: flex;
  height: 10%;
  align-self: center;
  align-items: center;
  color: var(--col-1);
  background-color: var(--col-9);
  padding: 1rem;
  border-radius: 5px;
  margin-block-start: 0.5rem;
}

#gallery-modal-previous, #gallery-modal-next {
  background-color: var(--col-9);
  color: var(--col-1);
  opacity: 50%;
  font-size: 6rem;
  /* align-items: center; */
  align-self: center;
  box-shadow: 0 8px 16px -3px rgba(0, 0, 0, 0.2), 0 6px 20px -3px rgba(0, 0, 0, 0.19);
  padding: 1rem;
  border-radius: 5px;
}

#section-contacts {
  color: var(--col-1);
  flex-direction: column;
  width: calc(100% - 1.5rem);
  border-radius: 7px;
}
#section-contacts .contacts-header {
  border-bottom: 2px solid var(--col-1);
  justify-content: space-between;
  padding-bottom: 1rem;
  padding-top: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-weight: bold;
}
@media (orientation: portrait) {
  #section-contacts .contacts-header {
    display: none;
  }
}
#section-contacts .contacts-header h3 {
  margin-bottom: 0.5rem;
  margin-block-start: 0;
  margin-block-end: 0;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}
#section-contacts .contacts-item {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
}
#section-contacts .contacts-item:last-child {
  border-bottom-style: none;
}
@media (orientation: portrait) {
  #section-contacts .contacts-item {
    flex-direction: column;
  }
}
#section-contacts .contacts-col {
  justify-content: center;
  align-self: center;
  flex-direction: column;
  align-items: center;
  overflow-wrap: anywhere;
}
@media (orientation: portrait) {
  #section-contacts .contacts-col {
    width: 100% !important;
  }
}
#section-contacts .contacts-col-name {
  width: 22%;
  font-weight: bold;
}
#section-contacts .contacts-col-work {
  width: 45%;
  align-items: flex-start;
}
#section-contacts .contacts-col-phone {
  width: 15%;
}
#section-contacts .contacts-col-email {
  width: 18%;
}
