/**
 * styles.scss
 * ---
 * Main `sass` file. Import here `sass` files
 */
/**
 * modules/variables
 * ---
 */
/**
 * Media
 */
/**
  * Colors
  */
/**
 * Grid
 */
/**
 * modules/mixins
 * ---
 */
/**
 * modules/fonts
 * ---
 * Declare fonts here
 */
/**
 * Typography
 */
section#head {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 10px rgba(34, 39, 54, 0.1);
  border-bottom: 1px solid #ddd;
}
section#head .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  padding: 0 15px;
}
@media (max-width: 768px) {
  section#head .wrapper {
    padding: 0;
  }
}
section#head .head-menu-container {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 auto;
}
@media (max-width: 768px) {
  section#head .head-menu-container {
    gap: 0;
  }
}
section#head .navbar ul .dropdown-menu {
  margin-top: 20px !important;
}
section#head .dropdown-item {
  color: #000 !important;
}
section#head .logo {
  display: flex;
  padding: 5px 0;
  flex: 0 1 300px;
  color: #000;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
section#head .logo img {
  max-height: 70px;
}
@media (max-width: 768px) {
  section#head .logo img {
    max-height: 40px;
  }
}
section#head .logo .text {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}
section#head .logo .text h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}
@media (max-width: 768px) {
  section#head .logo .text h2 {
    font-size: 1em;
  }
}
section#head .logo .text span {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 13px;
  text-shadow: 0.5px 0 #000;
  color: #000;
}
@media (max-width: 768px) {
  section#head .logo .text span {
    display: none;
  }
}
section#head .logo .box {
  font-family: "Poppins", sans-serif;
  position: relative;
}
section#head .logo .box i {
  position: absolute;
  left: 0;
  font-size: 25px;
  background: #0000ff;
  padding: 8px;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #fff;
}
section#head .logo .box .text {
  display: inline-block;
  margin-left: 40px;
}
section#head .logo .box .text span {
  display: block;
}
section#head #flags {
  width: auto !important;
  background: #fff;
  padding: 5px;
  min-width: 88px;
  text-align: left;
}
section#head #flags ul {
  padding-left: 0 !important;
}
section#head #flags ul li {
  line-height: 0;
  float: left !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border: none !important;
  list-style: none !important;
  content: none !important;
}

#head.fixed-menu {
  transition: 0.1s linear all;
  background: #fff;
}

.fast-contact {
  border-bottom: 1px solid #ddd;
  background: #f1f1f1;
  padding: 10px 0;
  transition: 0.1s linear all;
}
.fast-contact .fast-contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.fast-contact .fast-contact-wrapper .fast-contact-box {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-right: 15px;
  border-right: 1px solid #ddd;
  font-size: 1.1em;
}
.fast-contact .fast-contact-wrapper .fast-contact-box i {
  font-size: 15px;
}
.fast-contact .fast-contact-wrapper .fast-contact-box span:first-of-type {
  font-weight: bold;
}
.fast-contact .fast-contact-wrapper .fast-contact-box span a {
  color: #000;
}
@media (max-width: 768px) {
  .fast-contact {
    display: none;
  }
}

.fixed-menu .fast-contact {
  padding: 5px 0;
  transition: 0.1s linear all;
}

#slider {
  position: relative;
  height: 800px;
  max-height: 800px;
}
@media (max-width: 768px) {
  #slider {
    height: 500px;
    max-height: 500px;
  }
}
#slider .slider_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#slider .slider-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 60%;
  background: rgba(26, 184, 242, 0.8);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 60px 0 100px;
}
@media (max-width: 768px) {
  #slider .slider-wrapper {
    width: 100%;
    justify-content: center;
    padding: 0 25px;
  }
}
#slider .slider-wrapper .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 605px;
  font-family: "Poppins", sans-serif;
}
#slider .slider-wrapper .text .min-text {
  font-weight: bold;
  letter-spacing: 2px;
}
#slider .slider-wrapper .text h2 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1em;
  color: #ffe202;
  font-size: 70px;
}
#slider .slider-wrapper .text hr {
  background: #fff;
  width: 200px;
  margin: 0 auto;
}
#slider .slider-wrapper .text span {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: 1px;
}
#slider .slider-wrapper .text .slider-button {
  max-width: 250px;
  margin-top: 15px;
  padding: 15px 30px;
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transition: 0.1s linear all;
}
#slider .slider-wrapper .text .slider-button:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.4);
  transition: 0.1s linear all;
}

#video {
  min-width: 100%;
}

@media (max-width: 768px) {
  .owl-carousel .item {
    max-height: 500px;
    min-height: 500px !important;
  }
  #slider .text h2 {
    font-size: 30px !important;
  }
}
.news-sort {
  display: block;
  position: relative;
  background: #fff;
  margin: 60px 0;
}

.news-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 15px 0;
}

.news-item {
  display: flex;
  width: 100%;
  gap: 15px;
  flex: 0 1 345px;
  flex-direction: column;
  transition: 0.1s linear all;
}
@media (max-width: 768px) {
  .news-item {
    flex: 1 0 100% !important;
    flex-direction: column;
  }
}
.news-item:hover {
  transition: 0.1s linear all;
}
.news-item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 250px;
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #fafafa;
  text-align: center;
}
.news-item .image img {
  width: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .news-item .image img {
    min-height: 300px;
  }
}
.news-item .image .date {
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(14, 179, 239, 0.8);
  color: #fff;
  padding: 5px 0;
  font-size: 1.2em;
}
.news-item .text {
  position: relative;
  display: flex;
  gap: 15px;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background: #fafafa;
  padding: 15px;
  border: 1px solid #eee;
}
.news-item .text a {
  display: block;
}
.news-item .text a:hover {
  text-decoration: none;
}
.news-item .text a h2 {
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-weight: bold;
  color: #0a0a0a;
  font-size: 1.5em;
}
.news-item .text a p {
  font-family: "Roboto", sans-serif;
  margin-top: 10px;
  color: #666;
  font-weight: 400;
  font-size: 14px;
}
.news-item .text .news-item-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 1em;
}
.news-item .text .news-item-info .read-more {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #666;
  font-weight: bold;
}
.news-item .text .news-item-info .read-more i {
  padding: 5px 10px;
  background: rgba(26, 184, 242, 0.8);
  color: #fff;
  font-size: 1.3em;
  margin-left: 10px;
}

#sort-news {
  margin-bottom: 20px;
}
#sort-news ul {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  gap: 15px;
}
#sort-news ul li {
  text-transform: uppercase;
  font-size: 1.3em;
  cursor: pointer;
  padding: 10px 20px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #f1f1f1;
}
#sort-news ul li.act {
  background: rgba(26, 184, 242, 0.8);
  color: #fff;
}
@media (max-width: 768px) {
  #sort-news ul {
    flex-wrap: wrap;
  }
  #sort-news ul li {
    font-size: 1.2em;
    flex: 1 1 50%;
  }
}

section#top-banner {
  background: #fff;
  margin-bottom: 15px;
}

section#top-banner .card {
  margin-bottom: 5px;
}

section#top-banner .card-header button {
  font-family: "Poppins", sans-serif;
  display: block;
  width: 100%;
  position: relative;
  color: #222;
  border: 1px solid #ddd;
  background-color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  padding: 0;
  white-space: normal;
  font-size: 1em;
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  section#top-banner .card-header button {
    gap: 10px;
  }
}
section#top-banner .card-header button .text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 37px;
  gap: 15px;
}
@media (max-width: 768px) {
  section#top-banner .card-header button .text-wrapper {
    gap: 10px;
  }
}
section#top-banner .card-header button > .badge {
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 10px 20px 10px 15px;
  background: #e42e16;
  color: #fff;
  font-size: 16px;
  border-radius: 0;
}

section#top-banner .card-header .title {
  font-size: 1.3em;
}
@media (max-width: 768px) {
  section#top-banner .card-header .title {
    font-size: 1em;
  }
}

section#top-banner .card-header button:hover,
section#top-banner .card-header button:visited {
  text-decoration: none !important;
}

section#top-banner .card-header .date {
  padding: 8px 10px;
}
@media (max-width: 768px) {
  section#top-banner .card-header .date {
    flex: 0 0 107px;
  }
}

section#top-banner .card-header button .title {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

section#top-banner .card-body {
  font-family: "Roboto", sans-serif;
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px;
  background-color: #fafafa;
  border: 1px solid #eef0f3;
  border-top-color: #eef0f3;
  text-align: justify;
}

section#top-banner .card-body .read-more a {
  color: #fff;
  background-color: rgba(26, 184, 242, 0.8);
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1.5rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
  margin-top: 15px;
}

.boxes {
  position: relative;
  padding: 60px 0;
  margin-bottom: 30px;
  background-color: #fafafa;
}
.boxes .boxes-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 768px) {
  .boxes .boxes-wrapper {
    flex-direction: column;
  }
}
.boxes .boxes-wrapper .box {
  flex: 1 1 20%;
  position: relative;
  display: block;
  cursor: pointer;
  transition: 0.1s linear all;
  text-align: center;
  color: #000;
}
.boxes .boxes-wrapper .box::after {
  position: absolute;
  right: -15px;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #ddd;
}
@media (max-width: 768px) {
  .boxes .boxes-wrapper .box::after {
    display: none;
  }
}
.boxes .boxes-wrapper .box:last-of-type::after {
  display: none;
}
.boxes .boxes-wrapper .box .text {
  display: block;
  padding: 0 15px;
  opacity: 0.4;
  transition: 0.1s linear all;
}
.boxes .boxes-wrapper .box .text h4 {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin-top: 15px;
  font-size: 1.4em;
}
.boxes .boxes-wrapper .box img {
  display: block;
  width: 170px;
  transition: transform 0.1s ease-in-out;
  padding: 10px;
  margin: 0 auto;
}
.boxes .boxes-wrapper .box:hover {
  text-decoration: none;
  font-weight: bold;
}
.boxes .boxes-wrapper .box:hover .text {
  opacity: 1;
  transition: 0.1s linear all;
}
.boxes .boxes-wrapper .box:hover img {
  opacity: 0.8;
  transform: scale(1.1);
}

.boxes_sidebar {
  position: relative;
  margin-bottom: 30px;
}
.boxes_sidebar .item {
  display: block;
  width: 100%;
  height: auto !important;
  font-size: 1.3em;
  font-weight: 400;
  margin-bottom: 15px;
  background: #fff;
}
.boxes_sidebar .item a {
  display: flex;
  color: #000 !important;
  background: #fafafa;
  align-items: center;
  gap: 10px;
}
.boxes_sidebar .item a .image {
  display: inline-block;
  padding: 5px 0 5px 10px;
  border-left: 10px solid rgba(26, 184, 242, 0.8);
  min-width: 70px;
  text-align: center;
}
.boxes_sidebar .item a .image img {
  max-height: 50px;
  width: auto;
}
.boxes_sidebar .item a .text {
  font-family: "Poppins", sans-serif;
  padding: 5px 0;
}
.boxes_sidebar .item:last-of-type {
  margin-bottom: 0;
}
.boxes_sidebar .boxes-wrapper {
  position: relative;
  display: block;
  z-index: 10;
}

.sidemenu {
  position: relative;
  margin-bottom: 30px;
}
.sidemenu ul {
  margin: 0;
  text-decoration: none;
  list-style: none;
  padding-bottom: 15px;
}
.sidemenu ul li a {
  font-family: "Poppins", sans-serif;
  display: block;
  color: #595959;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.3em;
  padding: 3px 0;
}
.sidemenu ul li a:before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: #29712f;
  margin-right: 5px;
}
.sidemenu ul li a:hover {
  color: #000;
}
.sidemenu .pdf_object {
  width: 100%;
  min-height: 300px;
}

section#kontakt {
  position: relative;
  background: #fff;
  padding: 60px 0;
}
section#kontakt .big-title {
  margin-bottom: 45px;
}
section#kontakt .box a {
  color: #000;
  font-weight: 400 !important;
}
section#kontakt .box h3 {
  display: flex;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 1.8em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}
section#kontakt .box .set {
  font-weight: bold;
  letter-spacing: 1px;
  color: rgba(10, 135, 181, 0.8);
  font-size: 1.3em;
  padding-bottom: 5px;
}
section#kontakt .box .set span {
  font-weight: 400 !important;
  letter-spacing: normal;
  color: #000;
}
section#kontakt .box br {
  display: block;
  width: 100%;
  height: 1px;
  background: #ddd;
  content: "";
  margin: 15px 0;
}
@media (max-width: 768px) {
  section#kontakt {
    flex-direction: column;
    gap: 30px;
  }
}

.map {
  display: block;
  margin-bottom: 15px;
}
.map iframe {
  width: 100%;
  height: 500px;
}

.print-pdf-icons {
  font-family: "Roboto", sans-serif;
  display: flex;
  position: relative;
  color: #222;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  margin: 15px 0;
  white-space: normal;
  gap: 3px;
}
.print-pdf-icons i {
  padding: 10px;
  background: rgba(26, 184, 242, 0.8);
  min-width: 33px;
  text-align: center;
  color: #fff;
}
.print-pdf-icons a, .print-pdf-icons #readNews {
  cursor: pointer;
  display: inline-block;
  color: #000 !important;
  transition: 0.1s linear all;
  border: 1px solid rgba(26, 184, 242, 0.8);
  font-size: 14px;
}
.print-pdf-icons a:hover, .print-pdf-icons #readNews:hover {
  background: rgba(26, 184, 242, 0.8) !important;
  color: #fff !important;
  text-decoration: none;
}
.print-pdf-icons .date {
  margin-right: 7px;
  border: 1px solid #222;
  background: #fff;
}
.print-pdf-icons .date i {
  min-width: auto !important;
}

#pdf-file-object {
  width: 100%;
  min-height: 500px;
}

/* Hide icons on category page */
.category .print-pdf-icons {
  display: none;
}

section#breadcrumb {
  font-family: "Poppins", sans-serif;
  list-style: none;
  font-size: 1.2em;
  padding-left: 0;
  width: 100%;
  background: #fff;
  margin-top: 80px;
}
section#breadcrumb ul.breadcrumbs {
  margin: 0;
  padding: 10px 0;
}
section#breadcrumb ul.breadcrumbs li {
  display: inline-block;
  color: #fff;
}
section#breadcrumb ul.breadcrumbs li a {
  color: #fff;
}
section#breadcrumb ul.breadcrumbs li.item-current {
  color: #fff;
  font-weight: 600;
}
section#breadcrumb .separator {
  margin: 0 5px;
}
section#breadcrumb .site-navi-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #222;
  margin: 30px 0 15px 0;
  padding: 0 15px;
  min-height: 66px;
}
@media (max-width: 768px) {
  section#breadcrumb .site-navi-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
section#breadcrumb .site-navi-wrapper .breadcrumb {
  margin-bottom: 0;
  flex: 1 1 auto;
  padding: 0;
  background-color: transparent !important;
}

#page {
  margin: 15px 0 30px 0;
}
#page .image {
  margin-top: 30px;
  text-align: center;
  background: #fafafa;
  margin-bottom: 30px;
}
#page .image img {
  max-height: 500px;
}
#page .content {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  text-align: justify;
  background: #fff;
}
#page .content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  color: rgba(26, 184, 242, 0.8);
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
#page .content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: rgba(26, 184, 242, 0.8);
  font-weight: bold;
  margin: 30px 0 15px 0;
}
#page .content ol {
  margin-left: 30px;
}
#page .content ul {
  margin-left: 30px;
  list-style: none !important;
}
#page .content ul li {
  position: relative;
  padding-left: 17px;
}
#page .content ul li:before {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  color: rgba(26, 184, 242, 0.8);
  margin-right: 5px;
}
#page .content ul li ul {
  margin-left: 0 !important;
  padding-left: 0;
}

section#category {
  display: block;
  margin: 60px 0;
}

.events {
  display: block;
}

.events-calendar-wrapper {
  font-family: "Poppins", sans-serif;
  margin-bottom: 0 !important;
}

.eventCalendar-day a {
  font-size: 17px !important;
}

.eventCalendar-daysList.eventCalendar-showAsWeek li {
  border-top: solid 2px #fafafa !important;
}

.eventCalendar-wrap .eventCalendar-arrow {
  position: absolute;
  top: 0;
  right: 0;
  float: right;
  text-align: right;
  color: #000 !important;
  z-index: 9998;
  background: #0088c3 !important;
}

.eventCalendar-prev {
  right: 25px !important;
  left: auto !important;
}

.eventCalendar-wrap .eventCalendar-daysList li.eventCalendar-day {
  color: #989898;
  background: #e3f2f9 !important;
}

.eventCalendar-wrap .eventCalendar-daysList li.eventCalendar-day:nth-child(7n-1) {
  background: #e9f8ff !important;
}

.eventCalendar-wrap .eventCalendar-daysList li.eventCalendar-day:nth-child(7n) {
  background: #dceef7 !important;
}

.eventCalendar-daysList.eventCalendar-showAsWeek li.eventCalendar-empty {
  background: #fafafa !important;
}

.eventCalendar-day-header {
  font-size: 18px !important;
}

.eventCalendar-wrap .eventCalendar-daysList li {
  display: block;
  float: left;
  line-height: 40px;
  margin: 1px;
}

.eventCalendar-wrap .eventCalendar-daysList li.eventCalendar-day-header {
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #b1b1b1;
}

.eventCalendar-wrap .eventCalendar-prev span {
  border-right: 6px solid #fff;
}

.eventCalendar-wrap .eventCalendar-next span {
  border-left: 6px solid #fff;
}

.eventCalendar-currentTitle .eventCalendar-monthTitle {
  color: #000 !important;
  text-align: left !important;
}

.eventCalendar-daysList.eventCalendar-showAsWeek {
  border-left: none !important;
  margin-bottom: 0;
  background: #fafafa !important;
  border-right: none !important;
}

.eventCalendar-daysList.eventCalendar-showAsWeek li {
  border-top: 2px solid #e6e6e6;
}

.eventCalendar-list-wrap .close_event_list {
  display: block;
  position: absolute;
  top: 0;
  right: 52px;
  z-index: 11;
  width: 30px;
  height: 27px;
  line-height: 26px;
  background: #000;
  color: #fff;
  text-align: center;
}

.eventCalendar-subtitle {
  padding-left: 0 !important;
  font-size: 14px !important;
}

.eventCalendar-daysList a {
  padding: 6px 0 !important;
}

.eventCalendar-slider {
  min-height: 270px !important;
}

.eventCalendar-day a {
  border: solid 2px #fafafa !important;
}

.eventCalendar-daysList.eventCalendar-showAsWeek li {
  border-top: solid 2px #fafafa !important;
}

.eventCalendar-wrap .eventCalendar-arrow {
  position: absolute;
  top: 0;
  right: 0;
  float: right;
  text-align: right;
  color: #fff !important;
  z-index: 9997;
  background: rgba(26, 184, 242, 0.8) !important;
}

.eventCalendar-prev {
  right: 25px !important;
  left: auto !important;
}

.eventCalendar-wrap .eventCalendar-daysList li.eventCalendar-day {
  color: #989898;
  background: #f0f8fc;
}

.eventCalendar-wrap .eventCalendar-daysList li.eventCalendar-day:nth-child(7n-1) {
  background: #daf3ff !important;
}

.eventCalendar-wrap .eventCalendar-daysList li.eventCalendar-day:nth-child(7n) {
  background: #d0e8f4 !important;
}

.eventCalendar-daysList.eventCalendar-showAsWeek li.eventCalendar-empty {
  background: #fafafa;
}

.eventCalendar-day-header {
  font-size: 18px !important;
}

.eventCalendar-wrap .eventCalendar-daysList li {
  display: block;
  float: left;
  line-height: 40px;
  margin: 1px;
}

.eventCalendar-wrap .eventCalendar-daysList li.eventCalendar-day-header {
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #b1b1b1;
}

.eventCalendar-currentTitle .eventCalendar-monthTitle {
  color: #000 !important;
  text-align: left !important;
  margin-top: 5px;
  font-size: 18px !important;
}

.eventCalendar-daysList.eventCalendar-showAsWeek {
  border-left: none !important;
  margin-bottom: 0;
  background: #fafafa !important;
  border-right: none !important;
}

.eventCalendar-daysList.eventCalendar-showAsWeek li {
  border-top: 2px solid #e6e6e6;
}

.eventCalendar-daysList li.today a {
  background: #222 !important;
  color: #fff !important;
}

.eventCalendar-daysList li.today a:focus-visible {
  color: #000 !important;
}

.eventCalendar-daysList li.eventCalendar-dayWithEvents a:focus-visible {
  color: #000 !important;
}

.links {
  display: block;
  position: relative;
}
.links .item {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  height: auto !important;
  border: 1px solid #ddd;
  padding: 0 10px;
  box-shadow: 0 15px 25px 5px rgba(0, 0, 0, 0.1);
  margin-right: 10px;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 15px;
  background: #fff;
}
.links .item .image {
  display: inline-block;
  margin-right: 5px;
  padding: 5px 10px 5px 0;
  border-right: 1px solid #ddd;
}
.links .item .image img {
  max-width: 40px;
  max-height: 40px;
}
.links .item a {
  display: block;
  color: #000 !important;
}
.links .item span {
  padding: 0 5px;
}

section#gallery {
  background: #222;
  margin-top: 30px;
  padding: 60px 0;
}
section#gallery .title {
  border-bottom: none;
}
section#gallery .title h2 {
  color: #fff;
  padding-bottom: 0;
  margin-bottom: 20px;
}
section#gallery .gallery-item .image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
section#gallery .gallery-item .image .date {
  position: absolute;
}
section#gallery .gallery-item .image img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}
section#gallery .gallery-item .image a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 1.5em;
  color: #fff;
  margin-top: 15px;
  display: flex;
  gap: 5px;
  transition: 0.1s linear all;
}
section#gallery .gallery-item .image a i {
  text-align: center;
  background: rgba(26, 184, 242, 0.8);
  color: #fff;
  padding: 5px;
  height: 100%;
  min-height: 60px;
  width: 25px;
  transition: 0.1s linear all;
}
section#gallery .gallery-item .image a:hover i {
  transition: 0.1s linear all;
  width: 40px;
}
@media (max-width: 768px) {
  section#gallery .gallery-item {
    margin-bottom: 30px;
  }
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 30px;
}
.gallery .gallery-icon {
  max-height: 240px;
  overflow: hidden;
}

.gallery:after {
  content: "";
  display: table;
  clear: both;
}

img.aligncenter, div.aligncenter, figure.aligncenter, img.wp-post-image {
  display: block;
  margin: 1em auto;
}

img.alignright, div.alignright, figure.alignright {
  float: right;
  margin: 1em 0 1em 2em;
}

img.alignleft, div.alignleft, figure.alignleft, img.wp-post-image.attachment-thumb {
  float: left;
  margin: 1em 1em 2em 0;
}

figure {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

p img.alignright, p img.alignleft {
  margin-top: 0;
}

.gallery figure img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.gallery figure {
  float: left;
  margin: 1px;
  flex: 1 1 auto;
}

.gallery.gallery-columns-1 figure {
  width: 100%;
  margin: 0 0 1em 0;
  float: none;
}

.gallery.gallery-columns-3 figure {
  width: 32%;
}

.gallery.gallery-columns-3 figure:nth-of-type(3n+3) {
  margin-right: 0;
}

.gallery.gallery-columns-3 figure:nth-of-type(3n+4) {
  clear: left;
}

.gallery.gallery-columns-2 figure {
  width: 49%;
}

.gallery.gallery-columns-2 figure:nth-of-type(even) {
  margin-right: 0;
}

.gallery.gallery-columns-2 figure:nth-of-type(odd) {
  clear: left;
}

.gallery.gallery-columns-4 figure {
  width: 23.25%;
}

.gallery.gallery-columns-4 figure:nth-of-type(4n+4) {
  margin-right: 0;
}

.gallery.gallery-columns-4 figure:nth-of-type(4n+5) {
  clear: left;
}

.gallery.gallery-columns-5 figure {
  width: 18%;
}

.gallery.gallery-columns-5 figure:nth-of-type(5n+5) {
  margin-right: 0;
}

.gallery.gallery-columns-5 figure:nth-of-type(5n+6) {
  clear: left;
}

.gallery.gallery-columns-6 figure {
  width: 14.2%;
}

.gallery.gallery-columns-6 figure:nth-of-type(6n+6) {
  margin-right: 0;
}

.gallery.gallery-columns-6 figure:nth-of-type(6n+7) {
  clear: left;
}

.gallery.gallery-columns-7 figure {
  width: 12%;
}

.gallery.gallery-columns-7 figure:nth-of-type(7n+7) {
  margin-right: 0;
}

.gallery.gallery-columns-7 figure:nth-of-type(7n+8) {
  clear: left;
}

.gallery.gallery-columns-8 figure {
  width: 10.2%;
}

.gallery.gallery-columns-8 figure:nth-of-type(8n+8) {
  margin-right: 0;
}

.gallery.gallery-columns-8 figure:nth-of-type(8n+9) {
  clear: left;
}

.gallery.gallery-columns-9 figure {
  width: 8.85%;
}

.gallery.gallery-columns-9 figure:nth-of-type(9n+9) {
  margin-right: 0;
}

.gallery.gallery-columns-9 figure:nth-of-type(9n+10) {
  clear: left;
}

@media (max-width: 767px) {
  img.alignright, div.alignright, figure.alignright, img.alignleft, div.alignleft, figure.alignleft, img.wp-post-image.attachment-thumb {
    display: block;
    margin: 1em auto;
    float: none;
  }
  .gallery.gallery-columns-4 figure, .gallery.gallery-columns-5 figure, .gallery.gallery-columns-6 figure, .gallery.gallery-columns-7 figure, .gallery.gallery-columns-8 figure, .gallery.gallery-columns-9 figure {
    width: 100%;
    margin: 0 0 1em 0;
    float: none;
  }
}
@media (max-width: 768px) {
  .events {
    margin-top: 30px;
  }
}

.social-icons {
  margin-top: 18px;
}
.social-icons a {
  display: inline-block;
  padding: 7px;
  text-align: center;
  border: 1px solid #ddd;
  background: #fff;
}
.social-icons a img {
  max-width: 35px;
  max-height: 35px;
}

.search-form {
  display: flex;
  align-items: baseline;
  font-family: "Roboto", sans-serif;
}

.search-form input[type=text],
.search-form input[type=search] {
  padding: 10px;
  min-width: 300px;
}

.search-form button,
.search-form [type=button],
.search-form [type=reset],
.search-form [type=submit] {
  width: 43px;
  height: 43px;
  border: 1px solid #ddd;
  background: #222;
  color: #fff;
}

section#copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  background: #fafafa;
  text-align: center;
}
section#copyright > div {
  display: flex;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  padding: 0 15px;
}
section#copyright img {
  max-width: 65px;
  opacity: 1;
  transition: 0.2s linear all;
}
section#copyright img:hover {
  opacity: 0.8;
  transition: 0.2s linear all;
}
@media (max-width: 768px) {
  section#copyright {
    flex-direction: column;
    gap: 5px;
  }
  section#copyright .hide-mobile {
    display: none;
  }
  section#copyright img {
    margin: 15px 0;
    max-width: 80px;
  }
}

.rso {
  display: block;
}
.rso .card-header button {
  font-family: "Poppins", sans-serif;
  display: block;
  width: 100%;
  position: relative;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  padding: 0;
  white-space: normal;
}
.rso .card-header button .text-wrapper {
  display: block;
  color: #595959;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.3em;
  padding: 3px 0;
}
.rso .card-header button .text-wrapper:before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: rgba(26, 184, 242, 0.8);
  margin-right: 5px;
}
.rso .card-header button .text-wrapper:hover {
  color: #000;
}
.rso .card-header button:hover, .rso .card-header button:focus, .rso .card-header button:focus-visible {
  text-decoration: none;
  outline: 0 !important;
}
.rso .card-header button[aria-expanded=true] .text-wrapper {
  font-weight: bold;
  color: #000;
}
.rso .card-body {
  font-size: 1.1em;
  line-height: 1.8;
  padding: 12px 15px 9px 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #fafafa;
  border: 1px solid #eef0f3;
  border-top-color: #eef0f3;
  text-align: justify;
}
.rso ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  list-style: none;
}
.rso ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}
.rso ul li a {
  color: #000;
}
.rso ul li a:hover {
  color: #337ab7;
}
.rso ul li span {
  cursor: default;
  font-weight: bold;
}
.rso ul li span.normal {
  color: #000;
}
.rso ul li span.warning {
  color: orange;
}
.rso ul li span.alarm {
  color: red;
}
.rso ul li:first-of-type {
  display: none;
}
.rso .info {
  margin-bottom: 10px;
}
.rso .info .info-title {
  font-weight: bold;
}
.rso .info .info-title i {
  color: #fff;
  background: red;
  padding: 5px 10px;
}
.rso .info:first-of-type {
  display: none;
}
@media (max-width: 768px) {
  .rso .rso-accordion-wrapper {
    display: none;
  }
}

.sub-page-menu {
  margin-top: 15px;
}
.sub-page-menu ul {
  list-style: none;
  text-decoration: none;
  margin-left: 0 !important;
  display: flex;
  flex-wrap: wrap;
}
.sub-page-menu ul li {
  display: flex;
  padding-left: 0 !important;
}
.sub-page-menu ul li a {
  color: #fff;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: 0.1s linear all;
  font-size: 0.7em;
  padding-right: 15px;
  min-width: 100px;
  min-height: 80px;
  max-width: 300px;
  padding: 0 10px;
  color: #fff;
  background: rgba(26, 184, 242, 0.8);
  letter-spacing: 1px;
  text-align: left;
}
.sub-page-menu ul li a i {
  display: block;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 0;
  transition: 0.1s linear all;
}
.sub-page-menu ul li:hover a i {
  transition: 0.1s linear all;
  background: rgba(26, 184, 242, 0.8);
  color: #fff;
  padding-left: 5px;
}
.sub-page-menu ul li:before {
  display: none;
}
.sub-page-menu span {
  width: 100%;
  display: block;
  line-height: 20px;
  padding: 10px 0;
  font-weight: bold;
  font-size: 1.2em;
}

/**
 * partials/reset
 * ---
 * Reset file
 * NOTE: also `normalize.css` is used
 */
*,
*:after,
*:before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Dosis", Helvetica, Arial, "Open Sans", sans-serif;
  font-size: 140%;
  line-height: 1.5;
  color: #222;
  background-color: #fff;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: #222;
  text-decoration: none;
}
a:focus, a:hover {
  text-decoration: underline;
}
input[type=text],
input[type=search] {
  font-size: inherit;
  line-height: inherit;
}

::selection {
  background-color: #04a4cc;
  color: #fff;
  text-shadow: none;
}

/**
 * partials/wordpress
 * ---
 * Wordpess core classes
 */
/**
 * Alignment
 */
.alignnone {
  margin: 5px 15px 15px 0;
}

.aligncenter {
  display: block;
  margin: 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 15px 15px;
}

.alignleft {
  float: left;
  margin: 5px 15px 15px 0;
}

/**
 * Gallery & images
 */
.wp-caption {
  background: #fff;
  border: thin solid #F0F0F0;
  max-width: 95%;
  padding: 5px 5px;
  text-align: center;
}
.wp-caption img {
  width: auto;
  max-width: 98.5%;
  height: auto;
  border: 0 none;
  padding: 0;
  margin: 0;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  margin: 0;
  padding: 0 5px 5px;
  font-size: 140%;
  line-height: 1.5;
}

/**
 * partials/utils
 * ---
 * Utils classes
 */
.clear:before, .clear:after {
  content: " ";
  display: table;
}
.clear:after {
  clear: both;
}

.reset-box {
  padding: 0;
  margin: 0;
}

/**
 * partials/wrapper
 * ---
 */
.wrapper {
  max-width: calc(100% - 120px);
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}

/**
 * partials/header
 * ---
 */
/**
 * partials/nav
 * ---
 * Menus
 */
.navigation {
  font-family: "Roboto", sans-serif;
  width: 100%;
  background-color: transparent !important;
  padding: 0 !important;
}
.navigation .collapse {
  padding: 0;
}
.navigation .mega-sub-menu {
  box-shadow: 0 5px 10px rgba(34, 39, 54, 0.4) !important;
  transition: 0.1s linear all;
}
.navigation #mega-menu-wrap-header-menu {
  background-color: #fff !important;
}
.navigation #mega-menu-header-menu {
  display: flex !important;
  justify-content: center;
}
@media (max-width: 768px) {
  .navigation #mega-menu-header-menu {
    flex-wrap: wrap;
    background-color: #fff !important;
  }
}
.navigation #mega-menu-header-menu .mega-menu-item {
  flex: 1 1 250px;
}
@media (max-width: 768px) {
  .navigation #mega-menu-header-menu .mega-menu-item {
    flex: 1 0 100%;
    border-left: none !important;
  }
  .navigation #mega-menu-header-menu .mega-menu-item.mega-toggle-on > .mega-menu-link {
    background-color: rgba(26, 184, 242, 0.8) !important;
    color: #000 !important;
  }
  .navigation #mega-menu-header-menu .mega-menu-item .mega-indicator {
    position: absolute !important;
    right: 15px;
  }
}
.navigation #mega-menu-header-menu .mega-menu-item .mega-menu-link {
  text-align: center !important;
  font-size: 1.4em !important;
  padding: 3px 10px !important;
  height: auto !important;
}
@media (max-width: 768px) {
  .navigation #mega-menu-header-menu .mega-menu-item .mega-menu-link {
    color: #000 !important;
  }
}
.navigation #mega-menu-header-menu .mega-menu-item .mega-sub-menu {
  width: 100% !important;
  margin-top: 17px !important;
  background: #fff !important;
}
.navigation #mega-menu-header-menu .mega-menu-item .mega-sub-menu .mega-menu-item {
  padding-bottom: 5px !important;
  margin-bottom: 5px !important;
  border-bottom: 1px solid #ddd !important;
}
.navigation #mega-menu-header-menu .mega-menu-item .mega-sub-menu .mega-menu-item .mega-menu-link {
  line-height: 30px;
  background: #fff !important;
}

@media (max-width: 768px) {
  .navbar-toggle {
    border: 1px solid #000 !important;
    margin-right: 0 !important;
    margin-left: 15px;
  }
  .navbar-toggle .icon-bar {
    background: #000;
  }
  .navbar-collapse {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
  }
  .navbar-collapse .mega-menu-toggle {
    display: none !important;
  }
}
/**
 * partials/sidebar
 * ---
 */
.sidebar {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  z-index: 10;
}
.sidebar .section-title {
  font-family: "DM Serif Display", serif;
  font-size: 40px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 3px solid #00782f;
  color: rgba(26, 184, 242, 0.8);
}
.sidebar .section-title i {
  margin-right: 5px;
  color: rgba(26, 184, 242, 0.8);
}
.sidebar .sidebar-widget-menu {
  font-family: "Poppins", sans-serif;
  margin: 30px 0;
}
.sidebar .sidebar-widget-menu ul {
  list-style: none;
  padding: 0 !important;
  margin-top: 30px;
}
.sidebar .sidebar-widget-menu ul li a {
  display: block;
  padding: 15px 10px;
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
  font-size: 16px;
  box-shadow: 0 5px 10px rgba(34, 39, 54, 0.1);
  color: #222;
}
@media (max-width: 768px) {
  .sidebar {
    margin: 30px 0;
  }
  .sidebar .events-calendar-wrapper {
    display: none;
  }
  .sidebar .sidemenu .menu {
    display: none;
  }
  .sidebar .title {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
  }
  .sidebar .title .mobile-sidemenu-btn, .sidebar .title .mobile-sidebar-element-btn {
    display: block;
    min-width: 40px;
    height: 40px;
    background: rgba(26, 184, 242, 0.8);
    text-align: center;
    color: #fff;
    font-weight: bold;
    border: none;
    font-size: 1.5em;
  }
}
.sidebar .mobile-sidemenu-btn, .sidebar .mobile-sidebar-element-btn {
  display: none;
}

.ask-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 5px;
  margin-bottom: 15px;
  background: rgba(26, 184, 242, 0.8);
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}
.ask-button:hover {
  color: #fff;
}

/**
 * partials/footer
 * ---
 */
/**
 * partials/print
 * ---
 * Print version
 * (from https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css)
 */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
* {
  margin: 0;
  padding: 0;
}

body {
  font-size: 13px !important;
}

.container-fluid {
  max-width: 1500px;
  width: calc(100% - 15px) !important;
}

a {
  text-decoration: none !important;
}

.hidden-text {
  display: none !important;
}

.links-and-events-wrapper {
  background: #fafafa;
  padding: 60px 0;
}

#page,
section#category {
  background-color: #fff;
  margin: 0;
}

.color {
  display: inline !important;
  color: #c490d1;
}

.color-second {
  display: inline !important;
  color: rgba(26, 184, 242, 0.8);
}

.clear {
  clear: both;
}

.big-title {
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.big-title h2 {
  font-weight: bold;
  color: #000;
  font-size: 4.5em;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .big-title h2 {
    font-size: 2.5em;
  }
}

.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", sans-serif;
  color: #000;
  border-bottom: 2px solid #f1f1f1;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.title h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: bold;
  color: #000;
  font-size: 1.8em;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .title h2 {
    font-size: 1.6em;
  }
}
.title .show-more-news {
  font-size: 1.2em;
  color: rgba(26, 184, 242, 0.8);
}
@media (max-width: 768px) {
  .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.date {
  display: inline-block;
  font-size: 1em;
  background: #f1f1f1;
  padding: 5px 10px;
  color: #222;
}

.date i {
  padding: 0;
  background: transparent !important;
  color: #222 !important;
  margin-right: 2px;
  font-size: 14px;
}

table {
  font-family: "Roboto", sans-serif;
  position: relative;
  background: #fff;
  display: block;
  font-size: 15px;
  width: 100% !important;
  margin: 30px 0;
  overflow-x: auto;
}
table td {
  padding: 10px;
  border: 1px solid #ddd;
  font-weight: bold;
}
table td:nth-child(even) {
  background: #f6f6f6;
  color: #222;
  font-weight: 400;
}

.show-more-cat {
  display: block;
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 15px;
  background: rgba(26, 184, 242, 0.8);
  color: #fff;
  text-transform: uppercase;
  transition: 0.1s linear all;
}

.show-more-cat:hover {
  background: rgba(13, 171, 229, 0.8);
  text-decoration: none;
  color: #fff !important;
}

.pagination {
  display: block !important;
  width: 100%;
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 1.2em;
  background: rgba(26, 184, 242, 0.8);
  color: #fff;
  text-transform: uppercase;
  transition: 0.1s linear all;
  margin-bottom: 30px;
}

.pagination a {
  color: #fff !important;
}

.pagination .current {
  background: #fff !important;
  color: #000 !important;
  font-weight: bold !important;
  padding: 2px 5px;
}

.pagination .prev,
.pagination .next {
  padding: 0 15px;
}

.blank-image {
  display: flex;
  background-color: #f1f1f1;
  justify-content: center;
  align-items: center;
}
.blank-image img {
  object-fit: contain !important;
  max-width: 100px;
}

#flags {
  width: 87px !important;
}

.lang {
  background: #fff;
  border: 1px solid #222;
}

.lang ul {
  background: #fff;
  float: left;
  height: 39px;
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 4px;
}

.lang ul li {
  float: left !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border: none !important;
  list-style: none !important;
  content: none !important;
}

@media print {
  .head-static-wrapper,
  section#breadcrumb,
  .print-pdf-icons,
  #pojo-a11y-toolbar,
  #accept_cookie_wrapper,
  .footer {
    display: none;
  }
}

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