@charset "UTF-8";
/**
 * styles.scss
 * ---
 * Main `sass` file. Import here `sass` files
 */
/**
 * modules/variables
 * ---
 */
/**
 * Media
 */
/**
  * Colors
  */
/**
 * Grid
 */
/**
 * modules/mixins
 * ---
 */
/**
 * modules/fonts
 * ---
 * Declare fonts here
 */
/**
 * Typography
 */
.head-static-wrapper {
  display: block;
  min-height: 190px;
}
@media (max-width: 768px) {
  .head-static-wrapper {
    min-height: 80px;
  }
}

section#head {
  position: fixed;
  width: 100%;
  z-index: 9999;
  transition: 0.1s linear all;
}
section#head .head-info {
  padding: 30px 0;
  transition: 0.1s linear all;
}
@media (max-width: 768px) {
  section#head .head-info {
    width: 100%;
    padding: 15px 0 !important;
    height: 80px;
    background-color: #fff;
  }
}
section#head .head-info .logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 0 500px;
  transition: 0.1s linear all;
  color: #000;
}
@media (max-width: 768px) {
  section#head .head-info .logo {
    max-height: 50px;
  }
}
@media (max-width: 930px) {
  section#head .head-info .logo {
    flex: 1 1 500px;
  }
}
section#head .head-info .logo img {
  transition: 0.1s linear all;
  max-height: 80px;
}
@media (max-width: 768px) {
  section#head .head-info .logo img {
    height: 55px;
  }
}
section#head .head-info .logo .logo-text h1 {
  font-family: "Hurricane", cursive;
  font-size: 4em;
  font-weight: 800;
  margin: 0;
  line-height: 1.2em;
  color: #fff;
}
@media (max-width: 768px) {
  section#head .head-info .logo .logo-text h1 {
    font-size: 1.4em !important;
    color: #000;
    line-height: 1;
  }
}
section#head .head-info .logo .logo-text span {
  font-size: 1.1em;
  letter-spacing: 3px;
  color: #fff;
}
@media (max-width: 768px) {
  section#head .head-info .logo .logo-text span {
    font-size: 0.8em !important;
    letter-spacing: 1px;
    color: #000;
  }
}
section#head .head-info .box {
  font-family: "Dosis", sans-serif;
  position: relative;
}
section#head .head-info .box i {
  position: absolute;
  left: 0;
  font-size: 25px;
  background: #0000ff;
  padding: 8px;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #fff;
}
section#head .head-info .box .text {
  display: inline-block;
  margin-left: 40px;
}
section#head .head-info .box .text span {
  display: block;
}
section#head .mobile-wrapper {
  display: none;
}

@media (max-width: 768px) {
  .head-menu-container {
    background: #fff;
    position: absolute;
    right: 0;
    left: 0;
    top: 15px;
  }
}

.fixed-menu {
  transition: 0.1s linear all;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}
.fixed-menu div, .fixed-menu h1, .fixed-menu span {
  transition: 0.1s linear all;
}
.fixed-menu .head-info {
  padding: 10px 0 !important;
}
.fixed-menu .head-info .logo img {
  height: 55px;
}
.fixed-menu .head-info .logo .logo-text h1, .fixed-menu .head-info .logo .logo-text span {
  color: #000 !important;
}
.fixed-menu .head-menu-container {
  padding: 0;
}

.head-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.head-wrapper > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 100%;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  .head-wrapper {
    display: none;
  }
}

.main-elements-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .main-elements-wrapper {
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 9999;
  }
}

@media (max-width: 768px) {
  section#head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-toggle {
    background-color: #fff !important;
    border: 1px solid #000 !important;
    margin-right: 0 !important;
  }
  .navbar-toggle .icon-bar {
    background: #000;
  }
  .navbar-collapse {
    padding: 0 !important;
    margin-top: 14px;
  }
  .navbar-collapse .mega-menu-toggle {
    display: none !important;
  }
  .mobile-wrapper {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 25px 0;
    box-shadow: 0 5px 10px rgba(34, 39, 54, 0.4);
  }
}
.fast-contact {
  padding: 10px 0;
  transition: 0.1s linear all;
}
.fast-contact .fast-contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.fast-contact .fast-contact-wrapper .fast-contact-box {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-right: 15px;
  border-right: 1px solid #eee;
  font-size: 1.1em;
}
.fast-contact .fast-contact-wrapper .fast-contact-box i {
  font-size: 15px;
  color: #eb1038;
}
.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-images-wrapper {
  position: relative;
  min-height: 800px;
}
@media (max-width: 768px) {
  .slider-images-wrapper {
    min-height: 300px;
  }
}

#slider_images {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  height: 800px;
  overflow: hidden;
}
#slider_images .owl-stage-outer,
#slider_images .owl-stage,
#slider_images .owl-item,
#slider_images .item {
  height: 800px;
}
@media (max-width: 768px) {
  #slider_images .owl-stage-outer,
  #slider_images .owl-stage,
  #slider_images .owl-item,
  #slider_images .item {
    height: 300px;
  }
}
@media (max-width: 768px) {
  #slider_images {
    margin-top: 0;
    min-height: 300px;
  }
}
#slider_images .welcome-banner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #slider_images .welcome-banner {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
#slider_images .welcome-banner .welcome-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px;
}
@media (max-width: 768px) {
  #slider_images .welcome-banner .welcome-wrapper {
    flex-direction: column;
  }
}
#slider_images .welcome-banner .welcome-wrapper img {
  max-width: 90px;
}
@media (max-width: 768px) {
  #slider_images .welcome-banner .welcome-wrapper img {
    max-width: 70px;
  }
}
#slider_images .welcome-banner .welcome-wrapper .text {
  color: #fff;
  margin-bottom: 15px;
}
#slider_images .welcome-banner .welcome-wrapper .text h2 {
  font-family: "Hurricane", cursive;
  font-size: 8em;
  margin: 0;
}
@media (max-width: 768px) {
  #slider_images .welcome-banner .welcome-wrapper .text h2 {
    font-size: 4em;
    text-align: center;
  }
}
#slider_images .welcome-banner .welcome-wrapper .text span {
  font-family: "Fire Sans", sans-serif;
  display: block;
  margin-top: -20px;
  margin-left: 6px;
  letter-spacing: 3.4px;
}
@media (max-width: 768px) {
  #slider_images .welcome-banner .welcome-wrapper .text span {
    font-size: 0.8em;
    text-align: center;
    margin-top: 0;
  }
}
#slider_images .item {
  position: relative;
  height: 800px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  #slider_images .item {
    min-height: 300px;
    height: 300px;
  }
}
#slider_images .item .image {
  max-height: 800px;
  overflow: hidden;
  min-height: 800px;
  background: #f1f1f1;
}
@media (max-width: 768px) {
  #slider_images .item .image {
    min-height: 300px;
    max-height: 300px;
  }
}
#slider_images .item .image .blank-image {
  display: flex;
  background-color: #f1f1f1;
  justify-content: center;
  align-items: center;
}
#slider_images .item .image .blank-image img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
#slider_images .item .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#slider_images .item .description {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  width: 400px;
  padding: 15px;
  background-color: rgba(168, 42, 0, 0.9);
}
@media (max-width: 768px) {
  #slider_images .item .description {
    width: 100%;
    left: 0;
  }
}
#slider_images .item .description a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
#slider_images .item .description .news-title h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin: 0;
  font-size: 2.2em;
  margin-bottom: 20px;
  display: block;
  color: #fff;
}
#slider_images .item .description .text {
  font-size: 1.2em;
  color: #fff;
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
#slider_images .item .description .show-more {
  display: inline;
  background: #fff;
  padding: 7px 20px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  color: #000;
}
@media (max-width: 768px) {
  #slider_images {
    max-height: 300px;
    overflow: hidden;
  }
  #slider_images .item {
    min-height: 300px;
  }
}

#slider_news {
  position: relative;
  background: #fff;
}
#slider_news .item {
  display: flex;
  align-items: stretch;
  position: relative;
  border: 1px solid #ddd;
  min-height: 400px;
}
@media (max-width: 768px) {
  #slider_news .item {
    display: block;
    min-height: 398px;
  }
}
#slider_news .item .image {
  display: flex;
  max-height: 398px;
  overflow: hidden;
  min-height: 400px;
  background: #f1f1f1;
  flex: 1 0 60%;
  align-items: center;
  justify-content: center;
}
#slider_news .item .image .blank-image {
  display: flex;
  background-color: #f1f1f1;
  justify-content: center;
  align-items: center;
}
#slider_news .item .image .blank-image img {
  max-width: none !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
#slider_news .item .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#slider_news .item .image .image {
  flex: 0 0 100%;
}
#slider_news .item .description {
  display: block;
  position: relative;
  flex: 1 0 40%;
  padding: 15px;
  background-color: rgb(41, 113, 47);
}
@media (max-width: 768px) {
  #slider_news .item .description {
    left: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
  }
}
#slider_news .item .description .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
#slider_news .item .description .news-title h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin: 0;
  font-size: 2.2em;
  margin-bottom: 20px;
  display: block;
  color: #fff;
}
#slider_news .item .description .text {
  font-size: 1.2em;
  color: #fff;
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
#slider_news .item .description .show-more {
  display: inline;
  background: #fff;
  padding: 7px 20px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  color: #000;
}

.news-sort {
  display: block;
  position: relative;
}

#sort {
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#sort .mix {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-top: 15px;
}
#sort .mix.active {
  display: block;
}
#sort .mix.visible {
  opacity: 1;
  transform: translateY(0);
}

.news-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin: 15px 0;
}
@media (max-width: 768px) {
  .news-wrapper {
    grid-template-columns: 1fr;
  }
}
.news-wrapper .show-more-cat,
.news-wrapper .pagination {
  grid-column: 1/-1;
}

.news-item {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(235, 16, 56, 0.15);
  border-color: #eb1038;
}
.news-item .image {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.news-item .image .img-bg {
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.news-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  transition: transform 0.3s ease;
}
.news-item:hover .image img {
  transform: scale(1.05);
}
.news-item .text {
  position: absolute;
  bottom: 30px;
  padding: 0 20px;
  z-index: 10;
}
.news-item .text h2 {
  font-family: "Dosis", sans-serif;
  margin: 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.4em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.news-item .date {
  background-color: transparent;
  color: #fff;
  padding: 0;
  margin-bottom: 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#sort-news {
  margin-bottom: 15px;
}
#sort-news ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid #e0e0e0;
}
#sort-news ul li {
  font-size: 1.4em;
  padding: 12px 8px;
  cursor: pointer;
  text-align: center;
  color: #666;
  transition: color 0.3s ease, border-color 0.3s ease, text-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 500;
}
#sort-news ul li:hover {
  color: #eb1038;
}
#sort-news ul li.act {
  color: #eb1038;
  border-bottom-color: #eb1038;
  text-shadow: 0.5px 0 0 currentColor;
}
@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;
}
section#top-banner .card {
  margin-bottom: 8px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
section#top-banner .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(235, 16, 56, 0.15);
}

section#top-banner .card-header button {
  font-family: "Dosis", sans-serif;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  width: 100%;
  position: relative;
  color: #222;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  padding: 0;
  white-space: normal;
  font-size: 1em;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  section#top-banner .card-header button {
    gap: 10px;
  }
}
section#top-banner .card-header button:focus, section#top-banner .card-header button:focus-visible {
  outline: none;
}
section#top-banner .card-header button:hover {
  background-color: #fafafa;
  border-color: #eb1038;
}
section#top-banner .card-header button:hover > i {
  background: rgb(211.125498008, 14.374501992, 50.3107569721);
}
section#top-banner .card-header button .text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  gap: 15px;
}
@media (max-width: 768px) {
  section#top-banner .card-header button .text-wrapper {
    gap: 10px;
  }
}
section#top-banner .card-header button > i {
  text-align: center;
  padding: 15px 20px;
  background: #eb1038;
  color: #fff;
  font-size: 30px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  section#top-banner .card-header button > i {
    padding: 20px 10px;
    font-size: 15px;
  }
}

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 {
  margin-right: 15px;
}
@media (max-width: 768px) {
  section#top-banner .card-header .date {
    display: none;
  }
}

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

section#top-banner .card-body {
  font-size: 1.1em;
  line-height: 1.8;
  padding: 15px 20px;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-top: none;
  text-align: justify;
}

section#top-banner .card-body .read-more a {
  color: #fff;
  background-color: #eb1038;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1.5rem;
  line-height: 1.5;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
section#top-banner .card-body .read-more a:hover {
  background-color: rgb(196.8007968127, 13.3992031873, 46.8972111554);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(235, 16, 56, 0.3);
}
section#top-banner .card-body .read-more a:active {
  transform: translateY(0);
}

.boxes {
  position: relative;
  z-index: 10;
}
.boxes .boxes-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .boxes .boxes-wrapper {
    margin-top: 0;
    margin-bottom: 15px;
    gap: 15px;
  }
}
.boxes .boxes-wrapper .box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #000;
  background-color: #000;
  padding: 10px 5px 10px 15px;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.boxes .boxes-wrapper .box .text {
  display: flex;
  align-items: center;
}
.boxes .boxes-wrapper .box .text h3 {
  font-family: "Dosis", sans-serif;
  margin: 0;
  text-transform: uppercase;
  font-size: 1em;
  transition: color 0.3s ease;
  padding: 0 10px;
  letter-spacing: 1.7px;
  color: #fff;
}
.boxes .boxes-wrapper .box .text .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #eb1038;
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s ease;
  background-color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .boxes .boxes-wrapper .box .text .icon {
    width: 25px;
    height: 25px;
  }
}
.boxes .boxes-wrapper .box .text .icon i {
  font-size: 0.8em;
  transition: all 0.3s ease;
  color: #eb1038;
}
@media (max-width: 768px) {
  .boxes .boxes-wrapper .box .text .icon i {
    font-size: 1em;
  }
}
.boxes .boxes-wrapper .box .text .icon i.fa-file-signature {
  padding-left: 3px;
}
.boxes .boxes-wrapper .box:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(235, 16, 56, 0.15);
  border-color: #eb1038;
}
.boxes .boxes-wrapper .box:hover .icon {
  border-color: #eb1038;
  background-color: rgba(235, 16, 56, 0.05);
  box-shadow: 0 6px 12px rgba(235, 16, 56, 0.2);
  transform: scale(1.05);
}
.boxes .boxes-wrapper .box:hover .icon i {
  color: #eb1038;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .boxes .boxes-wrapper .box {
    flex: 1 1 200px;
    padding: 15px;
    justify-content: flex-start;
  }
  .boxes .boxes-wrapper .box .text h3 {
    font-size: 1em;
  }
}
@media (max-width: 768px) {
  .boxes {
    top: 0;
    margin-top: 15px;
  }
}

.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 #eb1038;
  min-width: 70px;
  text-align: center;
}
.boxes_sidebar .item a .image img {
  max-height: 50px;
  width: auto;
}
.boxes_sidebar .item a .text {
  font-family: "Dosis", 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 {
  display: flex;
  flex-direction: column;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin: 10px 0;
  padding: 15px 20px;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  gap: 15px;
}
@media (min-width: 768px) {
  .sidemenu {
    min-height: 500px;
  }
}
.sidemenu ul {
  margin: 0;
  text-decoration: none;
  list-style: none;
  padding-bottom: 15px;
}
.sidemenu ul li a {
  position: relative;
  font-family: "Dosis", sans-serif;
  display: block;
  color: #595959;
  font-weight: 600;
  font-size: 1.3em;
  padding: 4px 0;
  padding-left: 20px;
}
.sidemenu ul li a:before {
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: #eb1038;
  margin-right: 5px;
}
.sidemenu ul li a:hover {
  color: #000;
}
.sidemenu .pdf_object {
  width: 100%;
  min-height: 300px;
}

/**
 * menu-boxes.scss
 * ---
 * Styles for menu accordion component
 */
.menu-boxes {
  display: block;
  margin-top: -230px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .menu-boxes {
    margin-top: 15px;
  }
}

.menu-accordion {
  width: 100%;
}

.accordion-headers {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.accordion-header {
  flex: 1;
  min-width: 160px;
  padding: 30px 25px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.accordion-header i {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
  color: #eb1038;
  transition: all 0.3s ease;
}
.accordion-header:hover {
  background: #fff;
  border-color: #eb1038;
  box-shadow: 0 4px 12px rgba(235, 16, 56, 0.15);
  transform: translateY(-2px);
}
.accordion-header:hover i {
  transform: scale(1.1);
}
.accordion-header--link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.accordion-header--link:hover {
  color: inherit;
  text-decoration: none;
}
.accordion-header.active {
  background: #eb1038;
  color: #fff;
  border-color: rgb(187.2509960159, 12.7490039841, 44.6215139442);
  box-shadow: 0 4px 12px rgba(235, 16, 56, 0.3);
  position: relative;
}
.accordion-header.active i {
  color: #fff;
}
.accordion-header.active::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #eb1038;
  z-index: 10;
}

.accordion-content-wrapper {
  position: relative;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content {
  width: 100%;
  background-color: #e5e5e5;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px;
}
.accordion-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  position: relative;
}
.accordion-content.fading-out {
  opacity: 0;
  transform: translateY(-10px);
  position: absolute;
}
.accordion-content ul, .accordion-content .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 1200px) {
  .accordion-content ul, .accordion-content .menu {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (max-width: 992px) {
  .accordion-content ul, .accordion-content .menu {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 768px) {
  .accordion-content ul, .accordion-content .menu {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.accordion-content li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 12px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  transition: all 0.25s ease;
  overflow: hidden;
}
.accordion-content li:hover {
  background: #fff;
  border-color: #eb1038;
  box-shadow: 0 2px 8px rgba(235, 16, 56, 0.15);
  transform: translateY(-2px);
}
.accordion-content li a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.25s ease;
  gap: 12px;
}
.accordion-content li a:before {
  content: "→";
  color: #eb1038;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.accordion-content li a:hover {
  color: #eb1038;
}
.accordion-content li a:hover:before {
  transform: translateX(3px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kafelki-sidebar {
  margin-top: 15px;
}
.kafelki-sidebar__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #eb1038;
  color: #fff;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(235, 16, 56, 0.3);
}
.kafelki-sidebar__header i {
  font-size: 22px;
  flex-shrink: 0;
}
.kafelki-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0 !important;
}
.kafelki-sidebar__list li {
  margin-bottom: 0;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-top: none;
  overflow: hidden;
  transition: all 0.25s ease;
}
.kafelki-sidebar__list li:last-child {
  border-radius: 0 0 6px 6px;
}
.kafelki-sidebar__list li:hover {
  background: #fff;
  border-color: #eb1038;
  box-shadow: 0 2px 8px rgba(235, 16, 56, 0.15);
  transform: translateY(-2px);
  position: relative;
  z-index: 1;
}
.kafelki-sidebar__list li a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  gap: 12px;
  transition: color 0.25s ease;
}
.kafelki-sidebar__list li a::before {
  content: "→";
  color: #eb1038;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.kafelki-sidebar__list li a:hover {
  color: #eb1038;
}
.kafelki-sidebar__list li a:hover::before {
  transform: translateX(3px);
}
.kafelki-sidebar__list .kafelki-sidebar__item--current {
  background: #fff;
  border-left: 3px solid #eb1038;
}
.kafelki-sidebar__list .kafelki-sidebar__item--current a {
  color: #eb1038;
  font-weight: bold;
  pointer-events: none;
  cursor: default;
}
.kafelki-sidebar__list .kafelki-sidebar__item--current a::before {
  transform: translateX(3px);
}
.kafelki-sidebar__list .kafelki-sidebar__item--current:hover {
  transform: none;
  box-shadow: none;
}

section#kontakt {
  position: relative;
  background: #fff;
  padding-top: 30px;
}
@media (max-width: 768px) {
  section#kontakt {
    padding-top: 15px;
  }
}
section#kontakt .contact-header {
  margin-bottom: 30px;
}
section#kontakt .contact-header h2 {
  font-family: "Dosis", sans-serif;
  font-weight: 800;
  font-size: 2em;
  color: #000;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 768px) {
  section#kontakt .contact-header h2 {
    font-size: 1.6em;
  }
}
section#kontakt .contact-card {
  background: #fff;
  padding-bottom: 30px;
  height: 100%;
}
@media (max-width: 768px) {
  section#kontakt .contact-card {
    padding: 20px;
  }
}
section#kontakt .contact-card h4 {
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  font-size: 1.3em;
  color: #eb1038;
  margin: 0 0 15px 0;
}
section#kontakt .contact-card h4 i {
  margin-right: 8px;
}
section#kontakt .contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
section#kontakt .contact-card ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 1.05em;
  color: #555;
}
section#kontakt .contact-card ul li:last-child {
  margin-bottom: 0;
}
section#kontakt .contact-card ul li a {
  color: #555;
  transition: color 0.3s ease;
}
section#kontakt .contact-card ul li a:hover {
  color: #eb1038;
}
section#kontakt .contact-card ul li i {
  color: #eb1038;
  margin-right: 8px;
  width: 18px;
  display: inline-block;
  text-align: center;
}
section#kontakt .combined-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
}
@media (max-width: 768px) {
  section#kontakt .combined-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
section#kontakt .combined-card .contact-info-section .logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #e0e0e0;
}
@media (max-width: 768px) {
  section#kontakt .combined-card .contact-info-section .logo-section {
    flex-direction: column;
    text-align: center;
  }
}
section#kontakt .combined-card .contact-info-section .logo-section .contact-logo {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
section#kontakt .combined-card .contact-info-section .logo-section .logo-text h3 {
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  color: #222;
  margin: 0 0 5px 0;
}
section#kontakt .combined-card .contact-info-section .logo-section .logo-text p {
  color: #666;
  font-size: 1em;
  margin: 0 0 10px 0;
  line-height: 1.6;
}
section#kontakt .combined-card .contact-info-section .logo-section .logo-text .footer-social {
  display: flex;
  gap: 8px !important;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  section#kontakt .combined-card .contact-info-section .logo-section .logo-text .footer-social {
    justify-content: center;
  }
}
section#kontakt .combined-card .contact-info-section .logo-section .logo-text .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #555;
  transition: all 0.3s ease;
}
section#kontakt .combined-card .contact-info-section .logo-section .logo-text .footer-social a i {
  font-size: 14px;
}
section#kontakt .combined-card .contact-info-section .logo-section .logo-text .footer-social a:hover {
  background: #eb1038;
  color: #fff;
  transform: translateY(-2px) scale(1.1);
}
section#kontakt .combined-card .contact-info-section .contact-details h4 {
  font-size: 1.1em;
  margin-top: 20px;
  margin-bottom: 10px;
}
section#kontakt .combined-card .contact-info-section .contact-details h4:first-child {
  margin-top: 0;
}
section#kontakt .combined-card .contact-info-section .contact-details ul {
  margin-bottom: 15px;
}
section#kontakt .combined-card .contact-info-section .contact-details ul.office-data li i {
  color: #eb1038;
}
section#kontakt .combined-card .contact-info-section .contact-details ul.hours-list li {
  display: flex;
  align-items: center;
}
section#kontakt .combined-card .contact-info-section .contact-details ul.hours-list li .day {
  color: #555;
  padding-right: 5px;
}
section#kontakt .combined-card .contact-info-section .contact-details ul.hours-list li .time {
  color: #eb1038;
  font-weight: 500;
}
section#kontakt .combined-card .contact-map-section {
  display: flex;
  flex-direction: column;
}
section#kontakt .combined-card .contact-map-section h4 {
  margin-bottom: 15px;
  flex-shrink: 0;
}
section#kontakt .combined-card .contact-map-section .map {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-height: 400px;
}
section#kontakt .combined-card .contact-map-section .map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  section#kontakt .combined-card .contact-map-section .map iframe {
    min-height: 300px;
  }
}
section#kontakt .contact-main {
  margin-bottom: 0;
}
section#kontakt .contact-bottom .payments-card .payments-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  section#kontakt .contact-bottom .payments-card .payments-row {
    grid-template-columns: 1fr;
  }
}
section#kontakt .contact-bottom .payments-card .payment-item {
  padding: 20px;
  background: #fafafa;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
section#kontakt .contact-bottom .payments-card .payment-item:hover {
  background: #fff;
  border-color: #eb1038;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(235, 16, 56, 0.15);
}
section#kontakt .contact-bottom .payments-card .payment-item.copied::after {
  content: "Skopiowano numer konta";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #eb1038;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1em;
  font-family: "Open Sans", sans-serif;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(235, 16, 56, 0.4);
  animation: tooltipPopIn 0.3s ease forwards;
  z-index: 1000;
}
section#kontakt .contact-bottom .payments-card .payment-item strong {
  display: block;
  color: #222;
  font-size: 1em;
  margin-bottom: 12px;
  font-weight: 600;
  min-height: 40px;
}
section#kontakt .contact-bottom .payments-card .payment-item .account-number {
  display: block;
  font-size: 0.95em;
  color: #666;
  font-family: monospace;
  word-break: break-all;
  line-height: 1.6;
}
section#kontakt .contact-bottom .payments-card .payment-item .account-number i {
  color: #eb1038;
  margin-right: 6px;
}
@keyframes tooltipPopIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.print-pdf-icons {
  font-family: "Open Sans", sans-serif;
  display: flex;
  position: relative;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}
.print-pdf-icons a, .print-pdf-icons #readNews {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #666;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.print-pdf-icons a i, .print-pdf-icons #readNews i {
  padding: 0;
  background: transparent;
  min-width: auto;
  text-align: center;
  color: inherit;
  font-size: 18px;
}
.print-pdf-icons a:hover, .print-pdf-icons #readNews:hover {
  background: #eb1038 !important;
  border-color: #eb1038 !important;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(235, 16, 56, 0.2);
}
.print-pdf-icons a:hover i, .print-pdf-icons #readNews:hover i {
  color: #fff;
}
.print-pdf-icons a:active, .print-pdf-icons #readNews:active {
  transform: translateY(0);
}
.print-pdf-icons #readNews.active {
  background: #eb1038 !important;
  border-color: #eb1038 !important;
  color: #fff !important;
}
.print-pdf-icons #readNews.active i {
  color: #fff;
}
.print-pdf-icons .date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  height: 44px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.print-pdf-icons .date i {
  padding: 0;
  min-width: auto !important;
  background: transparent !important;
  color: #eb1038;
  font-size: 16px;
}

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

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

section#breadcrumb {
  font-family: "Dosis", sans-serif;
  list-style: none;
  font-size: 1.3em;
  padding-left: 0;
  width: 100%;
  background: #fff;
}
section#breadcrumb ul.breadcrumbs {
  margin: 0;
  padding: 0;
}
section#breadcrumb ul.breadcrumbs li {
  display: inline-block;
  color: #666;
  transition: color 0.3s ease;
}
section#breadcrumb ul.breadcrumbs li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
section#breadcrumb ul.breadcrumbs li a:hover {
  color: #eb1038;
}
section#breadcrumb ul.breadcrumbs li a i.fa-home {
  font-size: 1.1em;
  vertical-align: middle;
}
section#breadcrumb ul.breadcrumbs li.item-home a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
section#breadcrumb ul.breadcrumbs li.item-current {
  color: #eb1038;
  font-weight: 600;
}
section#breadcrumb .separator {
  margin: 0 8px;
  color: #999;
  font-size: 0.9em;
}
section#breadcrumb .separator::before {
  content: "→";
}
section#breadcrumb .site-navi-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin: 10px 0;
  padding: 15px 20px;
  min-height: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  section#breadcrumb .site-navi-wrapper {
    padding: 12px 15px;
    gap: 10px;
  }
}
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: "Open Sans", sans-serif;
  font-size: 17px;
  text-align: left;
  background: #fff;
  min-height: 50vh;
}
#page .content h2 {
  font-family: "Dosis", sans-serif;
  font-size: 25px;
  color: #333;
  font-weight: bold;
  margin: 15px 0;
}
#page .content h3 {
  font-family: "Dosis", sans-serif;
  font-size: 17px;
  color: #eb1038;
  font-weight: bold;
  margin: 30px 0 15px 0;
}
#page .content ol {
  margin-left: 30px;
}
#page .content ul {
  margin-left: 30px;
}
#page .content ul li {
  position: relative;
}
#page .content ul li ul {
  margin-left: 0 !important;
  padding-left: 0;
}
#page .table-responsive-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 15px 0;
}
#page .table-responsive-wrap table {
  min-width: 400px;
  margin: 0;
}
#page #article-text {
  display: flex;
  flex-direction: column;
}
#page #article-text #waste-calendar-app {
  order: -1;
  margin-bottom: 15px;
}

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

.events {
  display: block;
}

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

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

.eventCalendar-daysList.eventCalendar-showAsWeek li {
  border-top: solid 2px #fff !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: #f0f8fc !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: #fff !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: #fff !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 #fff !important;
}

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

.eventCalendar-wrap .eventCalendar-arrow {
  position: absolute;
  top: 0;
  right: 0;
  float: right;
  text-align: right;
  color: #fff !important;
  z-index: 9997;
  background: #eb1038 !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: #e9f8ff !important;
}

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

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

.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: #fff !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;
  background: #fff;
}
.links .links-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .links .links-wrapper {
    gap: 15px;
    margin-bottom: 0;
  }
}
.links .links-wrapper .item {
  flex: 1 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.1s linear all;
  text-align: center;
  padding: 5px;
  font-size: 1.1em;
  font-weight: 600;
  background-color: #fafafa;
}
@media (max-width: 768px) {
  .links .links-wrapper .item {
    flex: 1 1 120px;
  }
}
.links .links-wrapper .item .image img {
  max-width: 80px;
}
.links .links-wrapper .item a {
  display: block;
  color: #000 !important;
}
.links .links-wrapper .item span {
  padding: 0 5px;
}

/**
 * partials/custom/files
 * ---
 * Style listy plików do pobrania oraz accordionów grupujących pliki.
 * Używane przez wtyczkę ITLU (filtr itlu_files).
 */
.post-files {
  margin-top: 30px;
}

.itlu-files-list {
  list-style: none;
  margin: 0 !important;
  padding: 0;
}

.itlu-file-item {
  border-bottom: 1px solid #e8e8e8;
}
.itlu-file-item:last-child {
  border-bottom: none;
}
.itlu-file-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.itlu-file-item a:hover {
  background: #f5f5f5;
  color: inherit;
}

.itlu-file-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: #777;
}
.itlu-file-icon::after {
  content: attr(data-ext);
}

.itlu-icon-pdf {
  background: #e74c3c;
}

.itlu-icon-word {
  background: #2b5eb7;
}

.itlu-icon-excel {
  background: #1e7e45;
}

.itlu-icon-ppt {
  background: #c0392b;
}

.itlu-icon-zip {
  background: #8e44ad;
}

.itlu-icon-image {
  background: #e67e22;
}

.itlu-icon-video {
  background: #16a085;
}

.itlu-icon-audio {
  background: #2980b9;
}

.itlu-icon-text {
  background: #7f8c8d;
}

.itlu-icon-default {
  background: #95a5a6;
}

.itlu-file-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.itlu-file-name {
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
}

.itlu-file-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
}

.itlu-file-ext {
  background: #eee;
  border-radius: 3px;
  padding: 1px 5px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: #555;
}

.itlu-file-size {
  color: #aaa;
}

.itlu-files-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.itlu-accordion-item {
  border-bottom: 1px solid #e0e0e0;
}
.itlu-accordion-item:last-child {
  border-bottom: none;
}

.itlu-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: #f7f7f7;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: background 0.15s;
}
.itlu-accordion-header:hover {
  background: #efefef;
}

.itlu-accordion-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.itlu-accordion-icon::before {
  content: "";
  position: absolute;
  background: #555;
  border-radius: 2px;
  width: 14px;
  height: 2px;
  top: 7px;
  left: 1px;
}
.itlu-accordion-icon::after {
  content: "";
  position: absolute;
  background: #555;
  border-radius: 2px;
  width: 2px;
  height: 14px;
  top: 1px;
  left: 7px;
  transition: transform 0.2s, opacity 0.2s;
}

.itlu-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.itlu-accordion-item.open .itlu-accordion-body {
  max-height: 2000px;
}

.itlu-accordion-desc {
  margin: 0;
  padding: 10px 16px 6px;
  font-size: 13px;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.5;
}

.itlu-accordion-item.open .itlu-accordion-icon::after {
  opacity: 0;
  transform: rotate(90deg);
}

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;
  -o-object-fit: cover;
     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: #eb1038;
  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 {
  margin-top: 30px;
  display: grid;
  gap: 10px;
}
.gallery::after {
  display: none;
}
.gallery .gallery-item {
  float: none !important;
  width: auto !important;
  margin: 0;
}
.gallery .gallery-icon {
  overflow: hidden;
  max-height: 260px;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-columns-1 {
  grid-template-columns: repeat(1, 1fr);
  max-width: 500px;
}

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

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

@media (max-width: 767px) {
  .gallery {
    grid-template-columns: 1fr !important;
  }
}
.events {
  display: block;
  margin-bottom: 15px;
}
.events .event-item {
  position: relative;
  display: block;
  margin-bottom: 15px;
}
.events .event-item .image {
  width: 100%;
  background: #ddd;
  overflow: hidden;
  min-height: 378px;
  max-height: 378px;
  text-align: center;
}
.events .event-item .image img {
  width: auto;
  min-width: 100%;
  min-height: 378px;
}
.events .event-item .image .bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.events .event-item .text {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  padding: 15px;
  background: rgba(215, 179, 29, 0.85);
}
.events .event-item .text h2 {
  font-family: "Dosis", sans-serif;
  color: #fff;
  font-size: 30px;
  margin-top: 0;
}
.events .event-item .text .meta-data {
  margin-top: 15px;
}
.events .event-item .text .meta-data span {
  font-family: "Dosis", sans-serif;
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.events .event-item .text .meta-data span i {
  font-size: 20px;
  margin-right: 5px;
  width: 20px;
}
.events .events-list {
  background: #fff;
  border: 1px solid #ddd;
}
.events .events-list .list-item {
  font-family: "Dosis", sans-serif;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.events .events-list .list-item a {
  color: #000;
}
.events .events-list .list-item a h3 {
  position: relative;
  font-size: 15px;
  font-weight: 500;
}
.events .events-list .list-item span {
  display: inline-block;
  margin-right: 10px;
}
.events .events-list .list-item span i {
  font-size: 14px;
  margin-right: 5px;
  width: 10px;
  color: #1e73be;
}
@media (max-width: 768px) {
  .events {
    margin-bottom: 30px;
  }
  .events .eventCalendar-slider {
    min-height: 330px !important;
  }
  .events .eventCalendar-monthWrap {
    width: 100% !important;
  }
}

.social-icons {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
}
.social-icons a i {
  padding-top: 2px;
  font-size: 16px;
}
.social-icons a:hover {
  background: #eb1038;
  color: #fff;
  transform: translateY(-3px);
}

.search-form {
  display: flex;
  align-items: stretch;
  font-family: "Open Sans", sans-serif;
}

.search-form input[type=text],
.search-form input[type=search] {
  padding: 12px 15px;
  min-width: 300px;
  border: 1px solid #e0e0e0;
  border-right: none;
  border-radius: 6px 0 0 6px;
  background: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}
.search-form input[type=text]:focus,
.search-form input[type=search]:focus {
  outline: none;
  border-color: #eb1038;
  box-shadow: 0 2px 8px rgba(235, 16, 56, 0.1);
}
.search-form input[type=text]::-moz-placeholder, .search-form input[type=search]::-moz-placeholder {
  color: #999;
}
.search-form input[type=text]::placeholder,
.search-form input[type=search]::placeholder {
  color: #999;
}

.search-form button,
.search-form [type=button],
.search-form [type=reset],
.search-form [type=submit] {
  width: 50px;
  height: auto;
  border: 1px solid #e0e0e0;
  border-left: none;
  border-radius: 0 6px 6px 0;
  background: #eb1038;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-form button i,
.search-form [type=button] i,
.search-form [type=reset] i,
.search-form [type=submit] i {
  font-size: 16px;
}
.search-form button:hover,
.search-form [type=button]:hover,
.search-form [type=reset]:hover,
.search-form [type=submit]:hover {
  background: rgb(196.8007968127, 13.3992031873, 46.8972111554);
  box-shadow: 0 2px 8px rgba(235, 16, 56, 0.3);
}
.search-form button:active,
.search-form [type=button]:active,
.search-form [type=reset]:active,
.search-form [type=submit]:active {
  transform: scale(0.98);
}

section#copyright {
  position: relative;
  background: #fff;
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
}
section#copyright .copyright-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
}
section#copyright .copyright-content p {
  margin: 0;
  font-size: 0.9em;
  color: #666;
  font-family: "Open Sans", sans-serif;
}
section#copyright .copyright-content p.copyright-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
section#copyright .copyright-content p.copyright-logo span {
  color: #666;
}
section#copyright .copyright-content img {
  max-width: 65px;
  opacity: 1;
  transition: opacity 0.3s ease;
  vertical-align: middle;
}
section#copyright .copyright-content img:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  section#copyright .copyright-content {
    gap: 10px;
  }
  section#copyright .copyright-content .hide-mobile {
    display: none;
  }
  section#copyright .copyright-content img {
    max-width: 80px;
  }
}

.rso {
  display: block;
  padding: 30px 0;
  background-color: #fff;
}
.rso .card {
  transition: all 0.3s ease;
}
.rso .card-header button {
  font-family: "Dosis", sans-serif;
  display: block;
  width: 100%;
  position: relative;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  padding: 0;
  white-space: normal;
}
.rso .card-header button .text-wrapper {
  display: block;
  color: #595959;
  font-weight: 600;
  font-size: 1.2em;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.rso .card-header button .text-wrapper:before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: #eb1038;
  margin-right: 5px;
  transition: transform 0.3s ease;
}
.rso .card-header button .text-wrapper:hover {
  color: #eb1038;
}
.rso .card-header button .text-wrapper:hover:before {
  transform: scale(1.2);
}
.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: #eb1038;
}
.rso .card-body {
  font-size: 1.1em;
  line-height: 1.8;
  padding: 12px 15px 9px 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: justify;
  transition: all 0.3s ease;
}
.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 #e0e0e0;
  padding: 4px 0;
  transition: all 0.3s ease;
}
.rso ul li a {
  color: #333;
  transition: color 0.3s ease;
}
.rso ul li a:hover {
  color: #eb1038;
}
.rso ul li span {
  cursor: default;
  font-weight: bold;
}
.rso ul li span.normal {
  color: green;
}
.rso ul li span.warning {
  color: orange;
}
.rso ul li span.alarm {
  color: red;
}
.rso ul li:first-of-type {
  display: none;
}
.rso .info .info-title {
  margin-bottom: 10px;
  font-weight: bold;
}
.rso .info .info-title i {
  color: #fff;
  background: #eb1038;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.rso .info:first-of-type {
  display: none;
}

.rso-accordion-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .rso-accordion-wrapper {
    gap: 0;
  }
}

.right-column {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .rso-accordion-wrapper {
    grid-template-columns: 1fr;
  }
}
.rso-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 25px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .rso-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.rso-tiles .rso-tile {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}
.rso-tiles .rso-tile:hover:not(.disabled) {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(235, 16, 56, 0.15);
  border-color: #eb1038;
}
.rso-tiles .rso-tile:hover:not(.disabled) .tile-icon i {
  transform: scale(1.1);
  color: #eb1038;
}
.rso-tiles .rso-tile.active {
  border-color: #eb1038;
  box-shadow: 0 4px 12px rgba(235, 16, 56, 0.2);
}
.rso-tiles .rso-tile.active .tile-icon i {
  color: #eb1038;
}
.rso-tiles .rso-tile.active .tile-title {
  color: #eb1038;
  font-weight: 700;
}
.rso-tiles .rso-tile.active::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #eb1038;
  z-index: 10;
}
.rso-tiles .rso-tile.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f5f5f5;
}
.rso-tiles .rso-tile.disabled .tile-icon i {
  color: #999;
}
.rso-tiles .rso-tile.disabled .tile-title {
  color: #999;
}
.rso-tiles .rso-tile.disabled .tile-count {
  color: #999;
}
.rso-tiles .rso-tile .tile-icon {
  margin-bottom: 15px;
}
.rso-tiles .rso-tile .tile-icon i {
  font-size: 2.5em;
  color: #666;
  transition: all 0.3s ease;
}
.rso-tiles .rso-tile .tile-title {
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  color: #222;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.rso-tiles .rso-tile .tile-count {
  font-size: 0.9em;
  color: #666;
  font-weight: 500;
}

.rso-content-wrapper {
  position: relative;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rso-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.rso-content.active {
  display: block;
}
.rso-content.visible {
  opacity: 1;
  transform: translateY(0);
}
.rso-content .content-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.rso-content .content-body .no-data {
  text-align: center;
  color: #999;
  font-style: italic;
  margin: 20px 0;
}
.rso-content .water-levels {
  padding: 0;
  margin: 0;
  list-style: none;
}
.rso-content .water-levels li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.rso-content .water-levels li:last-child {
  border-bottom: none;
}
.rso-content .water-levels li a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.rso-content .water-levels li a::before {
  content: "\f08d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 6px;
  color: #eb1038;
  font-size: 0.9em;
}
.rso-content .water-levels li a:hover {
  color: #eb1038;
}
.rso-content .water-levels li span {
  font-weight: bold;
  font-size: 0.95em;
}
.rso-content .water-levels li span.normal {
  color: #2e7d32;
}
.rso-content .water-levels li span.warning {
  color: #f57c00;
}
.rso-content .water-levels li span.alarm {
  color: #c62828;
}
.rso-content .water-levels li span i {
  margin-right: 4px;
}

.source-badge {
  display: inline-block;
  font-size: 0.7em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  color: #fff;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.source-badge.badge-rso {
  background-color: #eb1038;
}
.source-badge.badge-imgw {
  background-color: #33bdff;
}

.count-pill {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  color: #fff;
  margin: 2px 2px;
}

.count-pill-imgw {
  background-color: #33bdff;
}

.count-pill-rso {
  background-color: #eb1038;
}

.imgw-hydro-list {
  max-height: 400px;
  overflow-y: auto;
}
.imgw-hydro-list .hydro-header {
  display: flex;
  padding: 8px 0;
  border-bottom: 2px solid #ddd;
  font-weight: 700;
  font-size: 0.9em;
  color: #555;
}
.imgw-hydro-list .hydro-header span:first-child {
  flex: 1;
  min-width: 0;
}
.imgw-hydro-list .hydro-header span:nth-child(2) {
  width: 130px;
  text-align: right;
}
.imgw-hydro-list .hydro-header span:last-child {
  width: 180px;
  text-align: right;
}
@media (max-width: 768px) {
  .imgw-hydro-list .hydro-header span:last-child {
    width: 140px;
  }
}
.imgw-hydro-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.imgw-hydro-list ul li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.imgw-hydro-list ul li:last-child {
  border-bottom: none;
}
.imgw-hydro-list .hydro-station {
  flex: 1;
  min-width: 0;
  font-weight: 500;
  color: #333;
}
.imgw-hydro-list .hydro-station a {
  color: #333;
  transition: color 0.3s ease;
}
.imgw-hydro-list .hydro-station a:hover {
  color: #eb1038;
}
.imgw-hydro-list .hydro-station a i {
  color: #eb1038;
  margin-right: 4px;
  font-size: 0.9em;
}
.imgw-hydro-list .hydro-temp {
  width: 130px;
  text-align: right;
  color: #33bdff;
  font-weight: 600;
  font-size: 0.9em;
  white-space: nowrap;
}
.imgw-hydro-list .hydro-temp i {
  margin-right: 2px;
}
.imgw-hydro-list .hydro-level {
  width: 180px;
  text-align: right;
  font-weight: 700;
  font-size: 0.9em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .imgw-hydro-list .hydro-level {
    width: 140px;
  }
}
.imgw-hydro-list .hydro-level.normal {
  color: #2e7d32;
}
.imgw-hydro-list .hydro-level.warning {
  color: #f57c00;
}
.imgw-hydro-list .hydro-level.alarm {
  color: #c62828;
}
.imgw-hydro-list .hydro-level i {
  margin-right: 4px;
}

.imgw-warning,
.rso-warning {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 10px;
  border-left: 4px solid #999;
  background: #f9f9f9;
}
.imgw-warning .warning-header,
.rso-warning .warning-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.imgw-warning .warning-header strong,
.rso-warning .warning-header strong {
  color: #333;
}
.imgw-warning .warning-level,
.rso-warning .warning-level {
  font-size: 0.8em;
  font-weight: 700;
  color: #666;
  background: #e0e0e0;
  padding: 2px 6px;
  border-radius: 3px;
}
.imgw-warning .warning-powiaty,
.rso-warning .warning-powiaty {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 8px 0;
}
.imgw-warning .warning-powiaty .powiat-badge,
.rso-warning .warning-powiaty .powiat-badge {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  color: #555;
  background: #e0e0e0;
  padding: 2px 8px;
  border-radius: 3px;
}
.imgw-warning .warning-desc,
.rso-warning .warning-desc {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 6px;
  line-height: 1.6;
}
.imgw-warning .warning-period,
.rso-warning .warning-period {
  font-size: 0.85em;
  color: #888;
}
.imgw-warning .warning-period i,
.rso-warning .warning-period i {
  margin-right: 4px;
}

.imgw-warning.level-1 {
  border-left-color: #ffc107;
  background: #fffde7;
}
.imgw-warning.level-2 {
  border-left-color: #ff9800;
  background: #fff3e0;
}
.imgw-warning.level-3 {
  border-left-color: #f44336;
  background: #ffebee;
}

.rso-warning {
  border-left-color: #eb1038;
  background: rgba(235, 16, 56, 0.05);
}

.sub-page-menu {
  margin-top: 15px;
  margin-bottom: 30px;
}
.sub-page-menu ul {
  list-style: none;
  margin-left: 0 !important;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.sub-page-menu ul li {
  flex: 0 0 calc(25% - 19px);
  display: flex;
  padding-left: 0 !important;
}
@media (max-width: 992px) {
  .sub-page-menu ul li {
    flex: 0 0 calc(50% - 13px);
  }
}
@media (max-width: 768px) {
  .sub-page-menu ul li {
    flex: 0 0 100%;
  }
}
.sub-page-menu ul li:before {
  display: none;
}
.sub-page-menu ul li a {
  width: 100%;
  padding: 30px 25px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 15px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sub-page-menu ul li a i {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
  color: #eb1038;
  transition: all 0.3s ease;
}
.sub-page-menu ul li a span {
  display: block;
  line-height: 1.3;
}
.sub-page-menu ul li a:hover {
  background: #fff;
  color: inherit;
  text-decoration: none;
  border-color: #eb1038;
  box-shadow: 0 4px 12px rgba(235, 16, 56, 0.15);
  transform: translateY(-2px);
}
.sub-page-menu ul li a:hover i {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .sub-page-menu ul li a {
    padding: 20px 15px;
  }
}

.logs {
  position: relative;
  display: block;
  margin-top: 30px;
  padding: 60px 0;
  background-color: #fafafa;
}
.logs .owl-logs .item {
  padding: 0 15px;
  text-align: center;
  height: 150px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin: 0 15px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.logs .owl-logs .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(235, 16, 56, 0.15);
  border-color: #eb1038;
}
.logs .owl-logs .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.logs .owl-logs .item img {
  width: auto;
  max-height: 130px;
  margin: 0 auto !important;
  transition: transform 0.3s ease;
}
.logs .owl-logs .item:hover img {
  transform: scale(1.05);
}
.logs .owl-logs .owl-controls {
  display: block !important;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.logs .owl-logs .owl-controls .owl-nav {
  display: flex;
  justify-content: space-between;
}
.logs .owl-logs .owl-controls .owl-nav .owl-prev, .logs .owl-logs .owl-controls .owl-nav .owl-next {
  color: #fff;
  font-weight: bold;
  background: #eb1038;
  padding: 20px 8px;
  display: inline;
  font-size: 1.5em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.logs .owl-logs .owl-controls .owl-nav .owl-prev:hover, .logs .owl-logs .owl-controls .owl-nav .owl-next:hover {
  background: rgb(196.8007968127, 13.3992031873, 46.8972111554);
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(235, 16, 56, 0.3);
}
.logs .owl-logs .owl-controls .owl-nav .owl-prev:active, .logs .owl-logs .owl-controls .owl-nav .owl-next:active {
  transform: scale(0.98);
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #eb1038;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(235, 16, 56, 0.3);
  transition: all 0.3s ease;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
@media (max-width: 768px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}
.scroll-to-top i {
  color: #fff;
  transition: transform 0.3s ease;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: rgb(196.8007968127, 13.3992031873, 46.8972111554);
  box-shadow: 0 6px 16px rgba(235, 16, 56, 0.4);
  transform: translateY(-4px);
}
.scroll-to-top:hover i {
  transform: translateY(-2px);
}
.scroll-to-top:active {
  transform: translateY(-2px);
}
.scroll-to-top:focus {
  outline: none;
}

/**
 * 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: 120%;
  line-height: 1.4;
  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;
}

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

::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: 120%;
  line-height: 1.4;
}

/**
 * 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: "Open Sans", sans-serif;
  width: 100%;
  background: linear-gradient(180deg, #000 0%, #111 100%);
  padding: 0 !important;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .navigation {
    border-radius: 0;
    box-shadow: none;
    background: #fff;
  }
}
.navigation .collapse {
  padding: 0;
}
.navigation .mega-sub-menu {
  box-shadow: 0 4px 12px rgba(235, 16, 56, 0.15) !important;
  transition: all 0.3s ease !important;
  border-radius: 6px !important;
}
@media (min-width: 768px) {
  .navigation .mega-sub-menu {
    max-height: 500px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    margin-bottom: 30px !important;
  }
  .navigation .mega-sub-menu::-webkit-scrollbar {
    width: 8px !important;
  }
  .navigation .mega-sub-menu::-webkit-scrollbar-thumb {
    background-color: #eb1038;
    border-radius: 4px !important;
  }
  .navigation .mega-sub-menu::-webkit-scrollbar-thumb:hover {
    background-color: rgb(196.8007968127, 13.3992031873, 46.8972111554);
  }
  .navigation .mega-sub-menu::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 4px !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;
  border-left: 1px solid #333 !important;
  transition: all 0.3s ease !important;
}
@media (max-width: 768px) {
  .navigation #mega-menu-header-menu .mega-menu-item {
    flex: 1 0 100%;
    border-left: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
  }
  .navigation #mega-menu-header-menu .mega-menu-item.mega-toggle-on > .mega-menu-link {
    background-color: #eb1038 !important;
    color: #fff !important;
  }
  .navigation #mega-menu-header-menu .mega-menu-item .mega-indicator {
    position: absolute !important;
    right: 15px;
    transition: transform 0.3s ease !important;
  }
  .navigation #mega-menu-header-menu .mega-menu-item.mega-toggle-on .mega-indicator {
    transform: rotate(180deg) !important;
  }
}
.navigation #mega-menu-header-menu .mega-menu-item .mega-menu-link {
  text-align: center !important;
  font-size: 1.2em !important;
  padding: 15px 10px !important;
  height: 100% !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}
@media (max-width: 768px) {
  .navigation #mega-menu-header-menu .mega-menu-item .mega-menu-link {
    color: #000 !important;
    padding: 5px 10px !important;
  }
  .navigation #mega-menu-header-menu .mega-menu-item .mega-menu-link:hover {
    background-color: #f5f5f5 !important;
  }
}
@media (min-width: 769px) {
  .navigation #mega-menu-header-menu .mega-menu-item .mega-menu-link:hover {
    color: #eb1038 !important;
    background-color: rgba(235, 16, 56, 0.1) !important;
  }
  .navigation #mega-menu-header-menu .mega-menu-item .mega-menu-link::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background-color: #eb1038;
    transition: transform 0.3s ease;
  }
  .navigation #mega-menu-header-menu .mega-menu-item .mega-menu-link:hover::after {
    transform: translateX(-50%) scaleX(1);
  }
}
.navigation #mega-menu-header-menu .mega-menu-item.mega-current-menu-item .mega-menu-link, .navigation #mega-menu-header-menu .mega-menu-item.mega-current-menu-ancestor .mega-menu-link, .navigation #mega-menu-header-menu .mega-menu-item.mega-current-menu-parent .mega-menu-link {
  background-color: #eb1038 !important;
  color: #fff !important;
}
.navigation #mega-menu-header-menu .mega-menu-item.mega-current-menu-item .mega-menu-link::after, .navigation #mega-menu-header-menu .mega-menu-item.mega-current-menu-ancestor .mega-menu-link::after, .navigation #mega-menu-header-menu .mega-menu-item.mega-current-menu-parent .mega-menu-link::after {
  display: none !important;
}
@media (min-width: 769px) {
  .navigation #mega-menu-header-menu .mega-menu-item.mega-current-menu-item .mega-menu-link:hover, .navigation #mega-menu-header-menu .mega-menu-item.mega-current-menu-ancestor .mega-menu-link:hover, .navigation #mega-menu-header-menu .mega-menu-item.mega-current-menu-parent .mega-menu-link:hover {
    background-color: rgb(196.8007968127, 13.3992031873, 46.8972111554) !important;
    color: #fff !important;
  }
}
.navigation #mega-menu-header-menu .mega-menu-item .mega-sub-menu {
  width: 100% !important;
}
.navigation #mega-menu-header-menu .mega-menu-item .mega-sub-menu .mega-menu-link {
  font-size: 1em !important;
  line-height: 2 !important;
  padding: 8px 15px !important;
}
.navigation #mega-menu-header-menu .mega-menu-item .mega-sub-menu .mega-menu-link:hover {
  color: #eb1038 !important;
  background-color: #f5f5f5 !important;
  padding-left: 20px !important;
}
.navigation #mega-menu-header-menu .mega-menu-item .mega-sub-menu .mega-menu-link::after {
  display: none !important;
}
@media (max-width: 768px) {
  .navigation #mega-menu-header-menu .mega-menu-item .mega-sub-menu {
    box-shadow: none !important;
    max-height: 400px !important;
    overflow-y: scroll !important;
  }
}
.navigation #mega-menu-header-menu .mega-menu-item:last-of-type {
  border-right: 1px solid #333 !important;
}
@media (max-width: 768px) {
  .navigation #mega-menu-header-menu .mega-menu-item:last-of-type {
    border-right: none !important;
    border-bottom: none !important;
  }
}
.navigation #mega-menu-header-menu .mega-menu-item.home, .navigation #mega-menu-header-menu .mega-menu-item.menu-item-home {
  flex: 0 0 80px !important;
  max-width: 80px !important;
}
.navigation #mega-menu-header-menu .mega-menu-item.home > a,
.navigation #mega-menu-header-menu .mega-menu-item.home .mega-menu-link, .navigation #mega-menu-header-menu .mega-menu-item.menu-item-home > a,
.navigation #mega-menu-header-menu .mega-menu-item.menu-item-home .mega-menu-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.navigation #mega-menu-header-menu .mega-menu-item.home > a::before,
.navigation #mega-menu-header-menu .mega-menu-item.home .mega-menu-link::before, .navigation #mega-menu-header-menu .mega-menu-item.menu-item-home > a::before,
.navigation #mega-menu-header-menu .mega-menu-item.menu-item-home .mega-menu-link::before {
  content: "\f015" !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-size: 22px !important;
  margin: 0 !important;
  -moz-osx-font-smoothing: grayscale !important;
  -webkit-font-smoothing: antialiased !important;
  font-style: normal !important;
  font-variant: normal !important;
  line-height: 1 !important;
}
.navigation #mega-menu-header-menu .mega-menu-item.home > a:hover::before,
.navigation #mega-menu-header-menu .mega-menu-item.home .mega-menu-link:hover::before, .navigation #mega-menu-header-menu .mega-menu-item.menu-item-home > a:hover::before,
.navigation #mega-menu-header-menu .mega-menu-item.menu-item-home .mega-menu-link:hover::before {
  color: #eb1038 !important;
}
.navigation #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-item .mega-menu-link::before,
.navigation #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-item > a::before, .navigation #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-ancestor .mega-menu-link::before,
.navigation #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-ancestor > a::before, .navigation #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-parent .mega-menu-link::before,
.navigation #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-parent > a::before, .navigation #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-item .mega-menu-link::before,
.navigation #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-item > a::before, .navigation #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-ancestor .mega-menu-link::before,
.navigation #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-ancestor > a::before, .navigation #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-parent .mega-menu-link::before,
.navigation #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-parent > a::before {
  color: #fff !important;
}

section#head.fixed-menu #mega-menu-wrap-header-menu,
.fixed-menu #mega-menu-wrap-header-menu {
  background: #fff !important;
  background-color: #fff !important;
  background-image: none !important;
}
section#head.fixed-menu .navigation,
.fixed-menu .navigation {
  background-color: #fff !important;
  background-image: none !important;
  background: #fff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
  border-radius: 8px !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item,
.fixed-menu #mega-menu-header-menu .mega-menu-item {
  border-left: 1px solid #e0e0e0 !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item .mega-menu-link,
.fixed-menu #mega-menu-header-menu .mega-menu-item .mega-menu-link {
  color: #000 !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item .mega-menu-link:hover,
.fixed-menu #mega-menu-header-menu .mega-menu-item .mega-menu-link:hover {
  color: #eb1038 !important;
  background-color: rgba(235, 16, 56, 0.05) !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item .mega-menu-link::after,
.fixed-menu #mega-menu-header-menu .mega-menu-item .mega-menu-link::after {
  background-color: #eb1038 !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-item .mega-menu-link, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-ancestor .mega-menu-link, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-parent .mega-menu-link,
.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-item .mega-menu-link,
.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-ancestor .mega-menu-link,
.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-parent .mega-menu-link {
  background-color: #eb1038 !important;
  color: #fff !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-item .mega-menu-link::after, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-ancestor .mega-menu-link::after, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-parent .mega-menu-link::after,
.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-item .mega-menu-link::after,
.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-ancestor .mega-menu-link::after,
.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-parent .mega-menu-link::after {
  display: none !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-item .mega-menu-link:hover, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-ancestor .mega-menu-link:hover, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-parent .mega-menu-link:hover,
.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-item .mega-menu-link:hover,
.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-ancestor .mega-menu-link:hover,
.fixed-menu #mega-menu-header-menu .mega-menu-item.mega-current-menu-parent .mega-menu-link:hover {
  background-color: rgb(196.8007968127, 13.3992031873, 46.8972111554) !important;
  color: #fff !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item:last-of-type,
.fixed-menu #mega-menu-header-menu .mega-menu-item:last-of-type {
  border-right: 1px solid #e0e0e0 !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home {
  flex: 0 0 80px !important;
  max-width: 80px !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home > a,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home .mega-menu-link, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home > a,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home .mega-menu-link,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home > a,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home .mega-menu-link,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home > a,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home .mega-menu-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home > a::before,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home .mega-menu-link::before, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home > a::before,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home .mega-menu-link::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home > a::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home .mega-menu-link::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home > a::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home .mega-menu-link::before {
  content: "\f015" !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-size: 22px !important;
  color: #000 !important;
  -moz-osx-font-smoothing: grayscale !important;
  -webkit-font-smoothing: antialiased !important;
  font-style: normal !important;
  font-variant: normal !important;
  line-height: 1 !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home > a:hover::before,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home .mega-menu-link:hover::before, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home > a:hover::before,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home .mega-menu-link:hover::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home > a:hover::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home .mega-menu-link:hover::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home > a:hover::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home .mega-menu-link:hover::before {
  color: #eb1038 !important;
}
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-item .mega-menu-link::before,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-item > a::before, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-ancestor .mega-menu-link::before,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-ancestor > a::before, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-parent .mega-menu-link::before,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-parent > a::before, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-item .mega-menu-link::before,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-item > a::before, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-ancestor .mega-menu-link::before,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-ancestor > a::before, section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-parent .mega-menu-link::before,
section#head.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-parent > a::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-item .mega-menu-link::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-item > a::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-ancestor .mega-menu-link::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-ancestor > a::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-parent .mega-menu-link::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.home.mega-current-menu-parent > a::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-item .mega-menu-link::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-item > a::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-ancestor .mega-menu-link::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-ancestor > a::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-parent .mega-menu-link::before,
.fixed-menu #mega-menu-header-menu .mega-menu-item.menu-item-home.mega-current-menu-parent > a::before {
  color: #fff !important;
}

/**
 * partials/sidebar
 * ---
 */
.sidebar {
  position: relative;
}
.sidebar .section-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 3px solid #eb1038;
  color: #eb1038;
}
.sidebar .section-title i {
  margin-right: 5px;
  color: #eb1038;
}
.sidebar .sidebar-widget-menu {
  font-family: "Dosis", 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 .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: #eb1038;
    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;
}

.events-calendar-wrapper {
  margin-top: 15px;
  background: #fff;
}

.events-calendar-wrapper .eventCalendar-wrap .eventCalendar-daysList li.eventCalendar-dayWithEvents a {
  color: #fff !important;
  border: none !important;
  background: #eb1038 !important;
  max-width: 38px !important;
  border-radius: 38px !important;
}

.events-calendar-wrapper .eventCalendar-wrap .eventCalendar-list-wrap .eventCalendar-list-content,
.events-calendar-wrapper .eventCalendar-wrap .eventCalendar-list-wrap .eventCalendar-list-content a {
  font-size: 14px;
}

.events-calendar-wrapper h4 {
  font-weight: bold;
}

.events-calendar-wrapper h4 a {
  color: #222 !important;
}

.eventCalendar-list li .content {
  margin-left: 25px !important;
}

.events-calendar-wrapper .article-button {
  padding: 3px 5px;
  background: #211d70;
  color: #fff !important;
}

.invest-btn {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #eee;
  width: 100%;
  margin-bottom: 30px;
  background: #fafafa;
}
.invest-btn img {
  width: 100%;
}

/**
 * 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;
  }
}
#post-404 {
  text-align: center;
  padding: 30px 15px;
  border: 1px solid #ddd;
  margin: 0 25px;
  border-radius: 12px;
}
#post-404 a {
  font-size: 0.8em;
  color: red;
}

* {
  margin: 0;
  padding: 0;
}

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

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

.main-page {
  background: #fff;
  position: relative;
}

a {
  text-decoration: none !important;
}

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

.main-container {
  padding-top: 15px;
}
@media (max-width: 768px) {
  .main-container {
    padding-top: 0;
  }
}

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

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

.color-second {
  display: inline !important;
  color: #eb1038;
}

.clear {
  clear: both;
}

.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Dosis", sans-serif;
  color: #000;
  margin-bottom: 15px;
}
.title h2 {
  font-family: "Dosis", sans-serif;
  font-style: normal;
  font-weight: 800;
  color: #000;
  font-size: 2em;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .title h2 {
    font-size: 1.6em;
  }
}
.title .show-more-news {
  font-size: 1.1em;
  color: #eb1038;
}
@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: "Open Sans", sans-serif;
  position: relative;
  background: #fff;
  display: table;
  font-size: 15px;
  width: 100% !important;
  margin: 30px 0;
  overflow-x: auto;
}
table tr:first-of-type {
  background-color: #f6f6f6;
}
table td {
  padding: 10px;
  border: 1px solid #ddd;
}
@media (max-width: 768px) {
  table td {
    padding: 2px;
  }
}

.show-more-cat {
  display: block;
  width: 100%;
  padding: 8px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #eb1038;
  color: #fff;
  transition: 0.1s linear all;
  border-radius: 12px;
}

.show-more-cat:hover {
  background: #eb1038;
  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: #eb1038;
  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: #fafafa;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.blank-image img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
  max-width: 100px;
}

#flags {
  width: 88px !important;
}

.lang {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.lang:hover {
  border-color: #eb1038;
  box-shadow: 0 2px 8px rgba(235, 16, 56, 0.15);
}

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

.lang ul li {
  float: left !important;
  margin-bottom: 0 !important;
  padding: 0 3px !important;
  border: none !important;
  list-style: none !important;
  content: none !important;
  transition: transform 0.3s ease !important;
}
.lang ul li:hover {
  transform: scale(1.1);
}
.lang ul li img {
  display: block;
  border-radius: 2px;
}

.mobile-wrapper .lang {
  display: flex;
  justify-content: center;
  border: none;
}

@media print {
  .head-static-wrapper,
  section#breadcrumb,
  .print-pdf-icons,
  #pojo-a11y-toolbar,
  #accept_cookie_wrapper,
  .footer {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */