@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap");
#header {
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: #fff;
  padding: 0.75rem 0;
}
#header.small-header {
  padding: 0.25rem 0;
}
#header.small-header .content {
  transition: all 0.2s ease;
}
#header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}
#header .content .logo-parent {
  display: flex;
  flex-direction: column;
}
#header .content .logo-parent a {
  z-index: 9;
}
#header .content .logo-parent a img {
  width: 70px;
  height: 70px;
}
@media only screen and (max-width: 540px) {
  #header .content .logo-parent a img {
    height: 60px;
    width: 60px;
  }
}
#header .content .logo-parent span {
  font-size: 12px;
}
#header .content .header-menu ul:not(.sub-menu) {
  display: flex;
  align-items: center;
}
#header .content .header-menu ul:not(.sub-menu) li {
  list-style-type: none;
  padding: 0.5rem 1rem;
  position: relative;
}
@media only screen and (max-width: 1320px) {
  #header .content .header-menu ul:not(.sub-menu) li {
    padding: 0.5rem 0.75rem;
  }
  #header .content .header-menu ul:not(.sub-menu) li:first-child {
    padding-left: 0;
  }
  #header .content .header-menu ul:not(.sub-menu) li:last-child {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  #header .content .header-menu ul:not(.sub-menu) li {
    padding: 0.5rem;
  }
  #header .content .header-menu ul:not(.sub-menu) li a {
    font-size: 14px;
  }
}
#header .content .header-menu ul:not(.sub-menu) li a {
  text-decoration: none;
  font-weight: 500;
}
#header .content .header-menu ul:not(.sub-menu) li ul.sub-menu {
  position: absolute;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19);
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
  transition: all 0.2s ease;
  padding: 0.5rem 0;
  max-width: 175px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width: 800px) {
  #header .content .header-menu ul:not(.sub-menu) li ul.sub-menu {
    z-index: 10;
    max-width: 225px;
    min-width: 140px;
  }
  #header .content .header-menu ul:not(.sub-menu) li ul.sub-menu > li {
    padding: 0.5rem !important;
  }
}
#header .content .header-menu ul:not(.sub-menu) li:hover ul.sub-menu, #header .content .header-menu ul:not(.sub-menu) li.open ul.sub-menu {
  transition: all 0.2s ease;
  opacity: 1;
  pointer-events: all;
}
#header .content .header-menu ul:not(.sub-menu) li.prazna-stran > a {
  pointer-events: none;
  cursor: pointer;
}
@media only screen and (max-width: 800px) {
  #header .content .header-menu {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    transform: translateY(-100%);
    background-color: #fff;
    transition: all 0.4s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header .content .header-menu ul {
    flex-direction: column;
    justify-content: center;
  }
  #header .content .header-menu ul li {
    padding: 0.75rem 0;
  }
  #header .content .header-menu.open {
    transform: translate(0);
    transition: all 0.4s ease-out;
  }
}
#header .content .burger {
  display: none;
  z-index: 9;
  cursor: pointer;
}
@media only screen and (max-width: 800px) {
  #header .content .burger {
    display: block;
  }
}
#header .content .burger > div {
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 3px;
  background-color: #25383c;
  transition: all 0.4s ease;
}
#header .content .burger.open > div {
  transition: all 0.4s ease;
}
#header .content .burger.open > div:first-child {
  transform: translateY(7px) rotate(45deg);
}
#header .content .burger.open > div:nth-child(2) {
  opacity: 0;
}
#header .content .burger.open > div:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.loading-page {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 999;
}
.loading-page.hide {
  display: none;
}
.loading-page .spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border-top: 1px solid #000;
  -webkit-animation: spinnerAnimation 0.5s ease infinite;
          animation: spinnerAnimation 0.5s ease infinite;
}

@-webkit-keyframes spinnerAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinnerAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
footer {
  padding: 1.5rem 0;
  background-color: #313131;
  color: #fff;
}
footer .content {
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
footer .content a.logo {
  justify-self: center;
}
footer .content a.logo img {
  width: 100px;
  height: 100px;
}
footer .content .social {
  justify-self: end;
}
footer .content .social i {
  color: #fff;
  font-size: 2rem;
  margin: 0 0.5rem;
}
@media only screen and (max-width: 540px) {
  footer .content {
    grid-template-columns: 1fr;
  }
  footer .content > div,
footer .content .logo {
    margin: 1rem 0;
    justify-self: center !important;
  }
}

.banner-slider .swiper {
  height: 350px;
}
@media only screen and (max-width: 1320px) {
  .banner-slider .swiper {
    height: 300px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-slider .swiper {
    height: 250px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-slider .swiper {
    height: 200px;
  }
  .banner-slider .swiper .swiper-button-next::after,
.banner-slider .swiper .swiper-button-prev::after {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 475px) {
  .banner-slider .swiper {
    height: 150px;
  }
}
.banner-slider .swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-text {
  display: flex;
  padding: 2rem 0;
}
.image-text.image-right {
  flex-direction: row-reverse;
}
@media only screen and (min-width: 767px) {
  .image-text.image-right .text {
    margin-right: 1rem;
  }
  .image-text.image-right .image {
    margin-left: 1rem;
  }
}
@media only screen and (min-width: 767px) {
  .image-text.image-left .text {
    margin-left: 1rem;
  }
  .image-text.image-left .image {
    margin-right: 1rem;
  }
}
.image-text > div {
  width: 50%;
}
.image-text > div img {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .image-text {
    flex-direction: column-reverse !important;
  }
  .image-text > div {
    margin: 1rem 0 !important;
    width: 100%;
  }
}

.title_text {
  margin-bottom: 2rem;
}
.title_text h3 {
  padding-bottom: 0.75rem;
}

#page,
#single,
#archive {
  min-height: 85vh;
  padding-bottom: 2rem;
}
#page .container .homepage-posts,
#single .container .homepage-posts,
#archive .container .homepage-posts {
  text-align: center;
  padding: 4rem 0;
}
#page .container .homepage-posts h1,
#single .container .homepage-posts h1,
#archive .container .homepage-posts h1 {
  padding-bottom: 2rem;
  font-weight: 500;
}
#page .container .homepage-posts .last-posts,
#single .container .homepage-posts .last-posts,
#archive .container .homepage-posts .last-posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}
@media only screen and (max-width: 1320px) {
  #page .container .homepage-posts .last-posts,
#single .container .homepage-posts .last-posts,
#archive .container .homepage-posts .last-posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  #page .container .homepage-posts .last-posts,
#single .container .homepage-posts .last-posts,
#archive .container .homepage-posts .last-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 475px) {
  #page .container .homepage-posts .last-posts,
#single .container .homepage-posts .last-posts,
#archive .container .homepage-posts .last-posts {
    grid-template-columns: 1fr;
  }
}
#page .container .title,
#single .container .title,
#archive .container .title {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
}
#page .container .wp-block-image,
#single .container .wp-block-image,
#archive .container .wp-block-image {
  margin: 1rem 0;
}
#page .post,
#single .post,
#archive .post {
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-bottom: 2px solid #25383c;
  border-radius: 0.35rem;
}
#page .post .background,
#single .post .background,
#archive .post .background {
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-top-left-radius: 0.35rem;
  border-top-right-radius: 0.35rem;
}
#page .post .background:hover .text,
#single .post .background:hover .text,
#archive .post .background:hover .text {
  opacity: 1;
}
#page .post .background:hover .overflow,
#single .post .background:hover .overflow,
#archive .post .background:hover .overflow {
  opacity: 0.5;
  transition: all 0.3s ease;
}
#page .post .background .overflow,
#single .post .background .overflow,
#archive .post .background .overflow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: all 0.3s ease;
  border-top-left-radius: 0.35rem;
  border-top-right-radius: 0.35rem;
}
#page .post .background .text,
#single .post .background .text,
#archive .post .background .text {
  opacity: 0;
  color: #fff;
  padding: 1rem;
  z-index: 1;
}
#page .post .background .text p,
#single .post .background .text p,
#archive .post .background .text p {
  position: relative;
  z-index: 1;
  text-align: start;
}
#page .post .title,
#single .post .title,
#archive .post .title {
  padding: 1rem 0.5rem;
}

#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
#popup.hide {
  transform: translateY(100%);
  transition: all 0.3s ease;
}
#popup .close-popup {
  position: absolute;
  top: 15px;
  left: 50%;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
#popup .close-popup::before, #popup .close-popup::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #fff;
}
#popup .close-popup::before {
  transform: rotate(45deg);
}
#popup .close-popup::after {
  transform: rotate(-45deg);
}
#popup .gallery_parent {
  width: 100%;
  height: 80%;
}
#popup .gallery_parent .gallery_box {
  height: 100%;
}
#popup .gallery_parent .gallery_box .swiper-container {
  width: 100%;
  height: 100%;
}
#popup .gallery_parent .gallery_box .swiper-container .swiper_btn.swiper-button-prev {
  left: 30px;
}
#popup .gallery_parent .gallery_box .swiper-container .swiper_btn.swiper-button-next {
  right: 30px;
}
@media only screen and (max-width: 767px) {
  #popup .gallery_parent .gallery_box .swiper-container .swiper_btn.swiper-button-prev {
    left: 15px;
  }
  #popup .gallery_parent .gallery_box .swiper-container .swiper_btn.swiper-button-next {
    right: 15px;
  }
  #popup .gallery_parent .gallery_box .swiper-container .swiper_btn::after {
    font-size: 2rem;
  }
}
#popup .gallery_parent .gallery_box .swiper-container .swiper-wrapper {
  display: flex;
  align-items: center;
}
#popup .gallery_parent .gallery_box .swiper-container .swiper-wrapper .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#popup .gallery_parent .gallery_box .swiper-container .swiper-wrapper .swiper-slide picture {
  max-height: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 90%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  height: 100%;
}
#popup .gallery_parent .gallery_box .swiper-container .swiper-wrapper .swiper-slide picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#archive .container .posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}
@media only screen and (max-width: 1320px) {
  #archive .container .posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  #archive .container .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 475px) {
  #archive .container .posts {
    grid-template-columns: 1fr;
  }
}
#archive .container .pagination {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}
#archive .container .pagination a {
  padding: 0.75rem 2rem;
  border: 1px solid #25383c;
  border-radius: 0.5rem;
  margin: 0 1rem;
  transition: all 0.3s ease;
  background-color: #fff;
}
#archive .container .pagination a:hover {
  transition: all 0.3s ease;
  background-color: #25383c;
  color: #fff;
}
#archive .container .gallery_archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
@media only screen and (max-width: 768px) {
  #archive .container .gallery_archive {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 450px) {
  #archive .container .gallery_archive {
    grid-template-columns: 1fr;
  }
}
#archive .container .gallery_archive .gallery_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#archive .container .gallery_archive .gallery_item .gallery_title {
  margin-bottom: 0.5rem;
  text-align: center;
}
#archive .container .gallery_archive .gallery_item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#single #gallery_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  #single #gallery_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  #single #gallery_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 475px) {
  #single #gallery_list {
    grid-template-columns: 1fr;
  }
}
#single #gallery_list img {
  max-width: 100%;
  max-height: 100%;
  cursor: pointer;
}

.under-title {
  display: flex;
}
.under-title > div {
  display: flex;
  width: 50%;
}
@media only screen and (max-width: 1300px) {
  .under-title {
    flex-direction: column;
  }
  .under-title > div {
    width: 100%;
    margin: 1rem 0;
  }
}
.under-title .event__info {
  display: flex;
  justify-content: center;
  align-items: center;
}
.under-title .event__info > div {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 1rem;
  border-radius: 0.5em;
  max-width: 32rem;
  width: 100%;
}
.under-title .event__info > div h3 {
  margin-bottom: 1em;
}
.under-title .event__info > div p {
  margin-bottom: 0.25em;
}
.under-title .legend__nav {
  flex-direction: column;
}
.under-title .legend__nav > div {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.under-title .legend__nav > div > div {
  margin-right: 1rem;
  width: 30px;
  min-width: 30px;
  height: 30px;
}

.calendar__parent {
  margin-top: 3rem;
}
.calendar__parent .calendar > div.month {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 2rem;
}
.calendar__parent .calendar > div.month i {
  font-size: 2rem;
  cursor: pointer;
}
.calendar__parent .calendar > div.month .date {
  text-align: center;
}
.calendar__parent .calendar > div.month .date h4 {
  font-size: 1.5rem;
}
.calendar__parent .calendar > div.month .date p {
  display: none;
}
.calendar__parent .calendar > div.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar__parent .calendar > div.weekdays > div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  border: 1px solid #000;
  padding: 1rem;
  border-right: none;
  font-weight: 600;
}
.calendar__parent .calendar > div.weekdays > div:last-child {
  border-right: 1px solid #000;
}
@media only screen and (max-width: 768px) {
  .calendar__parent .calendar > div.weekdays > div {
    padding: 0.75rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 540px) {
  .calendar__parent .calendar > div.weekdays > div {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 340px) {
  .calendar__parent .calendar > div.weekdays > div {
    padding: 0.5rem;
    font-size: 0.5rem;
  }
}
.calendar__parent .calendar > div.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar__parent .calendar > div.days > div {
  width: 100%;
  padding: 0.45rem;
  height: 6rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  border: 1px solid #000;
  border-top: none;
  border-right: none;
  position: relative;
}
.calendar__parent .calendar > div.days > div:nth-child(7), .calendar__parent .calendar > div.days > div:nth-child(14), .calendar__parent .calendar > div.days > div:nth-child(21), .calendar__parent .calendar > div.days > div:nth-child(28), .calendar__parent .calendar > div.days > div:nth-child(35), .calendar__parent .calendar > div.days > div:nth-child(42) {
  border-right: 1px solid #000;
}
.calendar__parent .calendar > div.days > div p {
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .calendar__parent .calendar > div.days > div p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 540px) {
  .calendar__parent .calendar > div.days > div p {
    font-size: 0.75rem;
  }
}
.calendar__parent .calendar > div.days > div.prev-date p, .calendar__parent .calendar > div.days > div.next-date p {
  opacity: 0.5;
}
.calendar__parent .calendar > div.days > div .event {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #25383c;
  font-size: 16px;
  line-height: 24px;
  background: rgb(247, 247, 247);
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #25383c;
  text-decoration: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1320px) {
  .container {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 475px) {
  .container {
    padding: 0 14px;
  }
}

header .content,
footer .content {
  max-width: 100%;
  padding: 0 80px;
}
@media only screen and (max-width: 1320px) {
  header .content,
footer .content {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1024px) {
  header .content,
footer .content {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  header .content,
footer .content {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 475px) {
  header .content,
footer .content {
    padding: 0 14px;
  }
}/*# sourceMappingURL=style.css.map */