/* Font import (support for all browsers) */
@font-face {
  font-family: "Cabin";
  src: url("./font/Cabin_SemiCondensed-Regular.eot");
  src: url("./font/Cabin_SemiCondensed-Regular.eot?#iefix") format("embedded-opentype"),
    url("./font/Cabin_SemiCondensed-Regular.woff2") format("woff2"),
    url("./font/Cabin_SemiCondensed-Regular.woff") format("woff"),
    url("./font/Cabin_SemiCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Cabin";
  src: url("./font/Cabin_SemiCondensed-SemiBold.eot");
  src: url("./font/Cabin_SemiCondensed-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("./font/Cabin_SemiCondensed-SemiBold.woff2") format("woff2"),
    url("./font/Cabin_SemiCondensed-SemiBold.woff") format("woff"),
    url("./font/Cabin_SemiCondensed-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Cabin";
  src: url("./font/Cabin_SemiCondensed-Bold.eot");
  src: url("./font/Cabin_SemiCondensed-Bold.eot?#iefix") format("embedded-opentype"),
    url("./font/Cabin_SemiCondensed-Bold.woff2") format("woff2"),
    url("./font/Cabin_SemiCondensed-Bold.woff") format("woff"),
    url("./font/Cabin_SemiCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

html.menu_on {
  overflow: hidden;
  height: 100vh;
}

article {
  width: 100%;
  background-color: #ebebeb;
}

body {
  font-family: "Cabin", "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13pt;
  text-align: center;
  background-color: #fff;
}

strong {
  font-weight: 700;
}

figure {
  margin: 0;
  overflow: hidden;
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a,
a:active {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding-top: 1rem;
}

article.sub aside {
  width: 25%;
  margin-right: 2rem;
  margin-top: 1rem;
  background-color: #fff;
  display: inline-block;
  vertical-align: top;
}

article.sub aside ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

article.sub aside ul li a {
  display: block;
  color: #000;
  text-align: left;
  text-transform: none;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid #cacaca;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 0.9em;
}

article.sub aside ul li a:hover,
article.sub aside ul li a.selected {
  text-decoration: none;
  color: #b8a779;
}

article.sub aside ul li:last-child a {
  border: 0 none;
}

article.sub .main_content {
  width: calc(75% - 2rem);
  display: inline-block;
  vertical-align: top;
}
article.sub .main_content.full-width {
	display: block;
	width: 100%;
}
article.sub .main_content.full-width img {
	width: auto;
	max-width: 100%;
}

article.sub .main_content h1 {
  margin-top: 0;
  color: #0072bb;
}

article.sub .main_content h2 {
  margin-top: 0;
  font-size: 1.2em;
}

article.sub .main_content h3 {
  font-size: 1.1em;
}
article.sub .main_content a {
	color: #0072bb;
	text-decoration: none;
}
article.sub .main_content a:hover {
	text-decoration: underline;
}

article.sub .main_content h4 {
  margin-top: 0;
  font-size: 1em;
}

article.sub .main_content p {
  font-size: 1em;
}

article.sub .main_content ul li {
  margin-bottom: 0.5em;
  font-size: 1em;
}

article.sub .main_content table th,
article.sub .main_content table td {
  padding: 0.5em 1em 0.5em 0;
  text-align: left;
  font-size: 1em;
}

article.sub .main_content .white_section {
  background-color: #fff;
  color: #000;
  padding: 2rem;
  margin: 1rem 0;
}

header .promo_main {
  text-align: left;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  text-decoration: none;
}

header .promo_main .button {
  float: right;
  margin-top: 2rem;
  border: 1px solid #fff;
  text-transform: none;
  font-size: 0.9em;
  padding: 1rem 3rem;
}

header .promo_main .button:hover {
  background-color: #fff;
  color: #0072bb;
}

header .promo_main div {
  display: inline-block;
  width: 65%;
  vertical-align: top;
  background-color: #0072bb;
  color: #fff;
  padding: 4rem;
}

header .promo_main div h1,
header .promo_main div h2 {
  margin: 0 0 1em 0;
}

header .promo_main figure {
  display: inline-block;
  width: 35%;
  vertical-align: top;
  aspect-ratio: 4/3;
}

#menu-obory {
  display: grid;
  justify-content: stretch;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  padding: 0;
  margin: 0;
}

#menu-obory li {
  list-style: none;
  display: block;
  font-weight: 700;
  width: 100%;
  background-color: #fff;
  color: #000;
  letter-spacing: 1px;
  transition: all 0.1s;
  padding: 0;
margin:0;
}
#menu-obory li a {
	display: block;
	padding: 1rem;
	color: inherit;
}

#menu-obory li:hover {
  background-color: #b8a779;
  color: #fff;
  text-decoration: none;
}
#menu-obory li:hover a {
	text-decoration: none;
}

section {
  text-align: left;
}

section .wrapper h2 {
  margin-top: 0;
}

section .news_promo_wrapper {
  background-color: #fff;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.white_section .news_promo_wrapper {
	padding-right: 0;
	padding-left: 0;
}

.promo_secondary {
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo_secondary:hover {
  text-decoration: none;
}

.promo_secondary:hover img {
  opacity: 0.8;
}

.promo_secondary figure {
  max-height: 10em;
}

.white_section .promo_secondary figure {
	max-height: 8em;
}

.promo_secondary h3 {
  color: #0072bb;
  margin: 0.5rem 0;
}

.promo_secondary p {
  margin: auto 0 1rem 0;
  font-size: 0.8em !important;
  color: #000;
}

.promo_secondary span {
  color: #cacaca;
  font-size: 0.8em;
}

.blog-posts {
	display: flex;
	flex-direction: column;
}
.blog-posts .post {
	display: grid;
	grid-template-columns: 6rem 1fr;
	column-gap: 1rem;
	padding: 1rem 0;
}
.blog-posts.search .post {
	grid-template-columns: 1fr;
}
.blog-posts .post:not(:first-child) {
	border-top: 1px solid rgba(0,0,0,0.1);
}
.blog-posts .post figure {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
}
.blog-posts .post figure img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-posts .post .meta h3 {
	margin: 0;
	color: #0072bb;
}
.blog-posts .post .meta {
	color: #000;
}
.blog-posts .post .meta .desc {
	font-weight: 300;
  margin: 0.5em 0;
}
.blog-posts .post .meta > span {
	font-size: 0.8em;
}
.paginate {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 0.5em;
  margin-top: 2em;
}
.paginate .page-numbers.current {
  font-weight: 600;
}
footer {
  background-color: #0072bb;
  color: #fff;
  text-align: left;
  font-size: 0.8em;
  margin-top: 1rem;
}

footer h2 {
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: normal;
  margin: 0 0 1em 0;
  font-size: 1.2em;
}

footer span {
  vertical-align: middle;
}

footer a,
footer a:hover {
  color: #fff;
}

footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  padding: 0.25em 0;
}

footer .wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  column-gap: 2em;
}

footer .wrapper.final {
  border-top: 1px solid #fff;
  opacity: 0.7;
}

footer .wrapper.final span {
  vertical-align: middle;
  line-height: 2em;
}

footer .wrapper.final img {
  max-width: 2em;
  vertical-align: middle;
}

footer .wrapper.final a:hover {
  text-decoration: none;
}

footer .wrapper.final div.copy span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1em;
}

footer .footer_categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer .footer_categories div {
  margin-right: 4em;
}

footer .pre {
  background-color: #fff;
  color: #0072bb;
}

footer img.partners {
  width: 45em;
  max-width: 100%;
}

footer .social img {
  max-width: 3em;
  margin-left: 1em;
}

#burger {
  display: none;
}

#menu {
  background-color: #fff;
}

#menu .wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#menu .mid {
  text-align: center;
}

#menu .mid .desc {
  color: #0072bb;
  display: block;
  margin: 0.6rem 0;
}
#menu .mid label {
  display: block;
}
#menu .mid input {
  -webkit-appearance: none;
  border: 1px solid #b8a779;
  font-size: 0.7em;
  padding: 0.8em 1em;
}

#menu .mid input::placeholder {
  color: #000;
  opacity: 1;
}

#menu .mid input::-ms-input-placeholder {
  color: #000;
}

#menu .mid input[type="submit"] {
  text-align: center;
  padding-left: 2em;
  padding-right: 2em;
  background-color: transparent;
  border-left: 0 none;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

#menu .mid input[type="submit"]:hover {
  color: #fff;
  background-color: #b8a779;
  cursor: pointer;
}

#menu .right {
  text-align: right;
}

#menu .right .lng {
  display: block;
}
#menu .right .lng img {
  max-width: 1.5em;
  margin: 0.6rem 0;
}

#menu .right .button {
  font-size: 0.8em;
}

#logo img {
  max-width: 140px;
}

#menu_inner {
  background-color: #0072bb;
}

#menu_inner .wrapper {
  padding-top: 0;
  padding-bottom: 0;
  color: #fff;
}
.menu-hlavni-menu-container {
  width: 100%;
}
#menu_inner .menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  column-gap: 0.5rem;
}

#menu_inner ul > li {
  display: inline-block;
  font-size: 0.9em;
  width: 100%;
}

#menu_inner ul li.separator {
  padding: 0.7rem 0;
}

#menu_inner ul li a {
  position: relative;
  display: block;
  color: #fff;
  text-transform: uppercase;
  padding: 0.7rem 2rem 0.7rem 2rem;
  width: 100%;
}

#menu_inner ul > li > a:after {
  content: "";
  position: absolute;
  right: -0.27rem;
  top: 0.8rem;
  height: 1em;
  width: 2px;
  background: #fff;
}
#menu_inner ul > li:last-child > a:after {
  display: none;
}

#menu_inner ul li a:hover {
  text-decoration: none;
}

#menu_inner ul > li:hover > a {
  color: #0072bb;
  background-color: #fff;
}

#menu_inner .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  background-color: #fff;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
}

#menu_inner .sub-menu.active {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

#menu_inner .sub-menu li {
  display: block;
  width: calc(50% - 0.5rem);
  text-align: left;
}

#menu_inner .sub-menu li a {
  color: #000;
  text-align: left;
  text-transform: none;
  padding: 1em 0.5em;
  border-bottom: 1px solid #cacaca;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 1.1em;
}

#menu_inner .sub-menu li a:hover {
  border-bottom: 1px solid #b8a779;
  color: #b8a779;
}

#news .button {
  text-transform: none;
  padding: 0.6rem 2.4rem;
  font-size: 0.8em;
}

#news .button:hover {
  background-color: #fff;
  border: 1px solid #fff;
}

#alumni .alumni_promo_wrapper div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: left;
}

#alumni .promo_secondary {
  display: inline-block;
  padding: 2rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;

  margin: 0 1rem;
}

#alumni .alumni_promo_wrapper {
  overflow: hidden;
}

#alumni .alumni_promo_wrapper div.slick-list {
  width: calc(100% + 2rem);
  margin-left: -1rem;
}

#alumni .promo_secondary h3 {
  margin: 0 0 2rem 0;
  color: #b8a779;
}

#alumni .promo_secondary span {
  margin-top: auto;
  margin-left: auto;
  color: #000;
  font-size: 0.8em;
}

.slick-dots {
  list-style-type: none;
  margin: 0;
  padding: 2rem 0;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  cursor: pointer;
  border-radius: 100%;
  background-color: #cacaca;
  width: 0.6em;
  height: 0.6em;
  margin: 0 0.6rem;
  outline: 0.3em solid transparent;
}

.slick-dots li.slick-active {
  background-color: #b8a779;
  outline: 0.4em solid rgba(185, 168, 122, 0.4);
}

.slick-dots li button {
  display: none;
}

.button {
  display: inline-block;
  text-transform: uppercase;
  padding: 0.6em 1.2em;
  background-color: #0072bb;
  border: 1px solid transparent;
  color: #fff;

  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

.button:hover {
  border: 1px solid #0072bb;
  color: #0072bb;
  background-color: transparent;
  text-decoration: none;
}

.button.gold {
  background-color: #b8a779;
}

.button.gold:hover {
  border: 1px #b8a779;
  color: #b8a779;
}

.wrapper {
  max-width: 1200px;
  padding: 1rem 4rem;
  position: relative;
  margin: 0 auto;
}

.clear {
  clear: both;
}

.alr {
  text-align: right;
}

.center {
  text-align: center;
}

@media only screen and (max-width: 1260px) {
	section .news_promo_wrapper {
		gap: 1rem;
	}
}
@media only screen and (max-width: 1024px) {
  #menu_inner ul li a {
    font-size: 0.9em;
  }
}
@media only screen and (min-width: 950px) {
  section .news_promo_wrapper.gallery {
    grid-template-columns: repeat(4, minmax(0,1fr));
  }
  .white_section .news_promo_wrapper.gallery .promo_secondary figure {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
  .white_section .news_promo_wrapper.gallery .promo_secondary figure img {
    position: absolute;
    display: block;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}
@media only screen and (max-width: 950px) {
  article.sub aside {
    display: none;
  }

  article.sub .main_content {
    width: 100%;
  }

  section .news_promo_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  section .news_promo_wrapper .promo_secondary:nth-child(3) {
    display: none;
  }

  #logo img {
    max-width: 70px;
  }

  #burger {
    -webkit-appearance: none;
    border: 0 none;
    background: transparent;
    display: block;
    width: 35px;
    cursor: pointer;
    padding: 0;
  }

  #burger span {
    display: block;
    height: 4px;
    width: 100%;
    background-color: #0072bb;
    margin: 5px 0;

    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }

  html.menu_on #burger {
    position: absolute;
    z-index: 1000;
    top: 1.4rem;
    right: 1rem;
  }

  html.menu_on #burger span {
    background-color: #fff;
    position: relative;
  }

  html.menu_on #burger span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
  }

  html.menu_on #burger span:nth-child(2) {
    display: none;
  }

  html.menu_on #burger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #menu .mid {
    display: none;
  }

  #menu .right {
    display: none;
  }

  #menu_inner {
    opacity: 0;
    overflow: hidden;
    width: 1px;
    height: 1px;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  #menu_inner ul > li > a:after {
    display: none;
  }

  #menu_inner.active {
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-top: 4rem;
  }

  #menu_inner .wrapper {
    padding: 5rem 1rem 1rem 1rem;
  }

  #menu_inner ul {
    flex-direction: column;
  }

  #menu_inner ul li.separator {
    display: none;
  }

  #menu_inner ul li {
    display: block;
  }

  #menu_inner ul li a {
    text-align: left;
    font-size: 1.1em;
    padding: 0.8rem 1.2rem 0.8rem 1.2rem;
  }

  .wrapper {
    padding: 1rem 3rem;
  }
  #menu_inner .sub-menu.active {
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  #menu_inner .sub-menu li {
    color: #000;
    display: block;
    width: 100%;
    font-weight: 600;
  }
  #menu_inner .sub-menu li a {
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
}

@media only screen and (max-width: 768px) {
  header .promo_main {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  header .promo_main .button {
    display: none;
  }

  header .promo_main figure {
    width: 100%;
    max-height: 10em;
  }

  header .promo_main div {
    width: 100%;
    padding: 2rem;
  }

  #menu-predmety li {
    width: calc(50% - 0.75rem);
    margin-bottom: 1rem;
    font-size: 0.9em;
  }

  footer .footer_categories {
    display: none;
  }

  .wrapper {
    padding: 1rem 2rem;
  }
  #menu-obory {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
  }
  #menu-obory li {
	display: block;
	width: 100%;
	margin: 0;
  }
}

@media only screen and (max-width: 600px) {
  section .news_promo_wrapper {
    display: block;
  }

  section .news_promo_wrapper .promo_secondary {
    width: 100%;
    margin-bottom: 1rem;
  }

  section .news_promo_wrapper .promo_secondary:nth-child(3) {
    display: flex;
  }

  footer .pre .wrapper {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }

  footer .pre .wrapper .alr.social {
    text-align: center;
    margin-top: 1rem;
  }

  footer .social img {
    margin: 0 0.5em;
  }

  footer .wrapper {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }

  footer .wrapper.final span.alr {
    margin: 1rem 0 0 0;
    width: 100%;
    text-align: center;
  }
  footer .wrapper.final div.copy span {
    justify-content: center;
    gap: 0.5em;
  }
  footer .wrapper.final {
    row-gap: 2em;
  }
}

@media only screen and (max-width: 480px) {
  header .promo_main p {
    display: none;
  }

  header .promo_main div h1,
  header .promo_main div h2 {
    margin-bottom: 0;
    font-size: 1.1em;
  }

  .wrapper {
    padding: 1rem;
  }
  #menu-obory {
	grid-template-columns: 1fr;
  }
  #menu-obory li a {
	padding: 0.75em 1rem;
  }
  .blog-posts .post {
    grid-template-columns: 3rem 1fr;
  }
}