@import url(https://fonts.bunny.net/css?family=poetsen-one:400|ubuntu:400,500,700&display=swap);
.dropbtn {
  cursor: pointer;
}
.dropdown {
  position: relative;
  display: inline-block;
}
#dropdown_menu {
  display: flex;
  height: 100%;
}
#dropdown_menu > ul {
  margin: 0;
  padding: 0;
}
.dropdown_content {
  --indicatorWidth: 40px;
  display: none;
  position: absolute;
  top: 90px;
  min-width: 160px;
  min-height: 160px;
  background-color: var(--bg-color);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
  z-index: 1;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  transition: all 300ms ease;
}
.dropdown_content::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  display: block;
  width: var(--indicatorWidth);
  height: 4px;
  background-color: var(--blue-color);
}
.dropdown_content .dropdown_inner {
  opacity: 0;
  transform: translateX(30px);
  transition: 250ms all ease;
  padding: 2.5rem;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 2.5rem;
  z-index: 1;
}
.dropdown_content .dropdown_inner b {
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.5;
  display: block;
}
.dropdown_content .dropdown_inner ul {
  margin: 0;
  margin-top: 1rem;
  padding: 0;
}
.dropdown_content .dropdown_inner ul li {
  min-width: 160px;
  padding: 0.5rem 0;
}
.dropdown_content .dropdown_inner ul li a:hover {
  font-weight: bold;
}
.dropdown_content .dropdown_inner.open {
  opacity: 1;
  z-index: 3;
  transform: translateX(0);
  transition: 250ms all ease 100ms;
}
.dropdown_content.open {
  display: block;
}
.dropdown_content li {
  color: var(--text-color);
  padding: 1rem 1.15rem;
  text-decoration: none;
  display: block;
}
.dropdown_content li:last-of-type {
  border-bottom: 0;
}
.dropdown_content li:hover {
  background-color: var(--secondary-color-10);
}
.dropdown:hover .dropdown_content {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: var(--secondary-color-10);
}
.post_listing {
  margin: 3rem auto;
}
.post_listing .pagination {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post_listing .pagination li {
  list-style-type: none;
}
.post_listing .pagination li a {
  display: grid;
  place-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border-color-10);
  border-radius: 5px;
  color: var(--text-color);
  text-decoration: none;
}
.post_listing .pagination li a svg {
  height: 21px;
  width: 21px;
}
.post_listing .pagination li a:hover {
  color: var(--blue-color);
}
.post_listing .pagination li.active a {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
  color: var(--text-color-white);
  font-weight: bold;
}
.post_listing .pagination li.active a:hover {
  color: var(--text-color-white);
}
.post_listing_container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 0;
}
.post_listing_container .button {
  margin: 1rem 0;
  display: block;
  width: fit-content;
}
.post_listing_container ul {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  align-self: flex-start;
}
.post_listing_container ul li {
  list-style-type: none;
  border-bottom: 1px dashed var(--border-color-10);
}
.post_listing_container ul li:last-of-type {
  border-bottom: 0;
}
.post_listing_container ul li article {
  padding-bottom: 1rem;
  margin-top: 2rem;
}
.post_listing_container ul li article span {
  font-family: "Ubuntu", sans-serif;
  color: var(--text-color-50);
}
.post_listing_container ul li article .info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post_listing_container ul li article .category {
  background-color: var(--blue-color-75);
  padding: 0.25rem 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  color: var(--text-color-white);
  font-family: "Ubuntu", sans-serif;
}
.post_listing_container ul li article h3 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-family: "Ubuntu", sans-serif;
  margin: 0.5rem 0 0.5rem 0;
  font-weight: 600;
}
.post_listing_container ul li article h3 a {
  text-decoration: none;
  color: var(--text-color);
}
.post_listing_container ul li article h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--blue-color-25);
  text-decoration-thickness: 5px;
  text-decoration-skip-ink: none;
}
.post_listing_container ul li article p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Ubuntu", sans-serif;
  margin: 0rem 0 1rem 0;
}
.post_listing_container ul li article img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: none;
}
@media only screen and (max-width: 900px) {
  .post_listing_container {
    max-width: 640px;
    padding: 1rem;
    margin: auto;
  }
  .post_listing_main {
    border-right: 0px dashed var(--border-color-10);
    padding-right: 0rem;
    margin-bottom: 2rem;
  }
}
:root[data-theme="theme-light"] {
  --text-color: #1F2937;
  --text-color-10: rgba(31, 41, 55, 0.1);
  --text-color-50: rgba(31, 41, 55, 0.5);
  --text-color-75:rgba(31, 41, 55, 0.75);
  --text-color-light: #6e82a3;
  --text-color-light-10: rgba(110, 130, 163, 0.1);
  --text-color-light-50: rgba(110, 130, 163, 0.5);
  --text-color-light-75:rgba(110, 130, 163, 0.75);
  --text-color-green: #1B6C53;
  --text-color-green-10: rgba(27, 108, 83, 0.1);
  --text-color-green-50: rgba(27, 108, 83, 0.5);
  --text-color-green-75:rgba(27, 108, 83, 0.75);
  --text-color-invert: #fff;
  --text-color-invert-10: rgba(255, 255, 255, 0.1);
  --text-color-invert-50: rgba(255, 255, 255, 0.5);
  --text-color-invert-75: rgba(255, 255, 255, 0.75);
  --section-color-light: #FEFDFA;
  --section-color-light-dark: darken(#CDCAC3, 5%);
  --section-color-light-10: rgba(254, 253, 250, 0.1);
  --section-color-light-50: rgba(254, 253, 250, 0.5);
  --section-color-light-75: rgba(254, 253, 250, 0.75);
  --section-color: #EEEEEE;
  --section-color-dark: darken(#CDCAC3, 5%);
  --section-color-10: rgba(238, 238, 238, 0.1);
  --section-color-50: rgba(238, 238, 238, 0.5);
  --section-color-75: rgba(238, 238, 238, 0.75);
  --bg-color: #fff;
  --border-color: #EEEEEE;
  --border-color-10: #EEEEEE;
  --border-color-30: #BDBDBD;
  --grey-color-dark: #CDCAC3;
  --grey-color: #FDFAF3;
  --black-color: #0F172A;
  --green-color: #A5E3C6;
  --green-color-05: rgba(165, 227, 198, 0.05);
  --green-color-50: rgba(165, 227, 198, 0.5);
  --green-color-75:rgba(165, 227, 198, 0.75);
  --blue-color: #5396FF;
  --blue-color-light: #F2F7FE;
  --blue-color-05: rgba(83, 150, 255, 0.05);
  --blue-color-25: rgba(83, 150, 255, 0.25);
  --blue-color-50: rgba(83, 150, 255, 0.5);
  --blue-color-75:rgba(83, 150, 255, 0.75);
  --red-color: #e14a4c;
  --red-color-05: rgba(225, 74, 76, 0.05);
  --red-color-50: rgba(225, 74, 76, 0.5);
  --red-color-75:rgba(225, 74, 76, 0.75);
  --back-color-blue: #F2F7FE;
  --back-color-black: #202020;
  --back-color-white: #fff;
  --text-color-white: #fff;
  --text-color-white-10: rgba(255, 255, 255, 0.1);
  --text-color-white-30: rgba(255, 255, 255, 0.3);
  --text-color-white-50: rgba(255, 255, 255, 0.4);
  --backdrop-color: rgba(0, 0, 0, 0.5);
  --shadow-color: 0deg 0% 0%;
  --shadow-elevation-low:
        1px 0px 1.4px hsl(var(--shadow-color) / 0.02),
        1.6px 0px 2.2px -0.4px hsl(var(--shadow-color) / 0.05),
        3.2px 0px 4.4px -0.7px hsl(var(--shadow-color) / 0.08);
  --shadow-elevation-medium:
        1px 0px 1.4px hsl(var(--shadow-color) / 0.02),
        3px 0px 4.2px -0.2px hsl(var(--shadow-color) / 0.03),
        5.2px 0px 7.2px -0.4px hsl(var(--shadow-color) / 0.05),
        9px 0px 12.5px -0.6px hsl(var(--shadow-color) / 0.06),
        15.8px 0px 21.9px -0.7px hsl(var(--shadow-color) / 0.07);
  --shadow-elevation-high:
        1px 0px 1.4px hsl(var(--shadow-color) / 0.02),
        5.3px 0px 7.4px -0.1px hsl(var(--shadow-color) / 0.02),
        9px 0px 12.5px -0.2px hsl(var(--shadow-color) / 0.03),
        13px 0px 18px -0.3px hsl(var(--shadow-color) / 0.04),
        17.9px 0.1px 24.8px -0.4px hsl(var(--shadow-color) / 0.05),
        24.4px 0.1px 33.9px -0.5px hsl(var(--shadow-color) / 0.06),
        33.3px 0.1px 46.2px -0.6px hsl(var(--shadow-color) / 0.07),
        45.1px 0.1px 62.6px -0.7px hsl(var(--shadow-color) / 0.08),
        60.6px 0.2px 84.1px -0.7px hsl(var(--shadow-color) / 0.08);
}
.backdrop {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--backdrop-color);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 900;
}
.backdrop.open {
  opacity: 1;
  width: 100%;
  height: 100%;
  z-index: 9997;
  transition: opacity 0.3s;
}
.sidenav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: var(--shadow-elevation-medium);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.2s;
  display: flex;
  flex-direction: column;
  background-color: var(--text-color-light);
}
.sidenav.open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 0.3s;
}
.sidenav_logo {
  margin: 2rem auto;
  opacity: 0.5;
}
.sidenav_header {
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(100% - 2rem);
  opacity: 0;
  transition: opacity 350ms ease 300ms;
}
.sidenav_header .close {
  background-color: transparent;
  border: 0;
  margin-left: auto;
  color: var(--text-color-white-50);
  border-radius: 3px;
  padding: 1rem 0;
  cursor: pointer;
}
.sidenav_header a {
  font-family: "Ubuntu", sans-serif;
  text-decoration: none;
  color: var(--text-color-white-50);
}
.sidenav_header a span {
  display: block;
}
.sidenav_header span {
  text-transform: uppercase;
  color: var(--text-color-white-50);
  font-family: "Ubuntu", sans-serif;
  padding: 1rem 0;
}
.sidenav_search {
  position: relative;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--text-color-invert-10);
}
.sidenav_search input {
  position: relative;
  z-index: 5;
  background-color: transparent;
  width: calc(100% - 2rem);
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 0;
}
.sidenav_search input::placeholder {
  color: var(--border-color-30);
}
.sidenav_search input:focus {
  border: 0;
  outline: 1px solid var(--secondary-color-25);
  box-shadow: 0px 4px 8px var(--secondary-color-10);
}
.sidenav_search input:focus ~ button {
  display: none;
}
.sidenav_search button {
  background-color: transparent;
  border: 0;
  color: var(--text-white-color);
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
}
.sidenav_body {
  flex: 1;
  padding-bottom: 2rem;
}
.sidenav_body ul {
  margin: 0;
  padding: 0;
}
.sidenav_body ul > li {
  list-style-type: none;
  transform: translateX(100px);
  opacity: 0;
  transition: all 500ms ease;
}
.sidenav_body ul > li a, .sidenav_body ul > li summary {
  display: block;
  width: calc(100% - 2rem);
  text-decoration: none;
  color: var(--text-color-white);
  padding: 1.5rem 1rem;
  border-bottom: 1px dashed var(--text-color-white-10);
  font-size: 2rem;
}
.sidenav_body ul > li summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0;
  list-style: none;
}
.sidenav_body ul > li summary::-webkit-details-marker {
  display: none;
}
.sidenav_body ul > li details {
  border-bottom: 1px dashed var(--text-color-white-10);
}
.sidenav_body ul > li details[open] summary svg {
  transition: transform 150ms ease;
  transform: rotate(180deg);
}
.sidenav_body ul > li ul {
  display: block;
  background-color: transparent;
  width: 100%;
  position: relative;
  box-shadow: none;
}
.sidenav_body ul > li ul li {
  border-bottom: 0;
  padding: 0;
}
.sidenav_body ul > li ul li a {
  display: block;
  width: calc(100% - 4rem);
  text-decoration: none;
  color: var(--text-color-invert-75);
  padding: 1rem 1rem;
  padding-left: 3rem;
  font-size: 1.3rem;
  font-family: "Ubuntu", sans-serif;
  border-bottom: 0;
}
.sidenav_body ul > li:last-of-type a, .sidenav_body ul > li:last-of-type summary {
  border-bottom: 0;
}
.sidenav_body ul > li:nth-child(1) {
  transition: all 500ms ease calc(1 * 50ms);
}
.sidenav_body ul > li:nth-child(2) {
  transition: all 500ms ease calc(2 * 50ms);
}
.sidenav_body ul > li:nth-child(3) {
  transition: all 500ms ease calc(3 * 50ms);
}
.sidenav_body ul > li:nth-child(4) {
  transition: all 500ms ease calc(4 * 50ms);
}
.sidenav_body ul > li:nth-child(5) {
  transition: all 500ms ease calc(5 * 50ms);
}
.sidenav_footer {
  margin-top: auto;
}
.sidenav_footer ul {
  margin: 0;
  padding: 0;
}
.sidenav_footer ul li {
  list-style-type: none;
}
.sidenav_footer ul li a, .sidenav_footer ul li button {
  width: calc(100% - 2rem);
  text-decoration: none;
  color: var(--text-white-color);
  padding: 1rem;
  border: 0;
  box-sizing: border-box;
  background-color: transparent;
  border-top: 1px solid var(--border-color-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
}
.sidenav_footer ul li a svg, .sidenav_footer ul li button svg {
  stroke: var(--border-color-30);
}
.sidenav_footer ul li.icon a svg, .sidenav_footer ul li.icon button svg {
  stroke: var(--text-white-color);
}
.sidenav_footer_socials {
  display: grid;
  text-align: center;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--border-color-10);
}
.sidenav_footer_socials div {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}
.sidenav_footer_socials div a {
  text-decoration: none;
  padding: 0.25rem;
}
.sidenav_footer_socials div a svg {
  color: var(--text-white-color);
}
.open .sidenav_header {
  opacity: 1;
}
.open .sidenav_body ul li {
  opacity: 1;
  transform: translateX(0);
}
@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}
#themeSwitch.theme_light .get_light {
  display: none;
}
#themeSwitch.theme_light .get_dark {
  display: flex;
}
#themeSwitch.theme_dark .get_light {
  display: flex;
}
#themeSwitch.theme_dark .get_dark {
  display: none;
}
header {
  --headerBack: rgb(0, 0, 0);
  --headerColor: var(--text-color);
  --headerShadow: 0 7px 15px rgba(0, 0, 0, 0.15);
  background: var(--headerBack);
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  box-shadow: var(--headerShadow);
  padding: 0;
  transition: all 250ms ease;
}
header[data-page="home"].invert {
  --headerBack: rgba(0, 0, 0, 0.45);
  --headerColor: white;
  --headerShadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
header[data-page="home"].white {
  --headerBack: rgba(255, 255, 255, 0.45);
  --headerColor: rgb(0, 0, 0);
  --headerShadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
header[data-page="home"].red {
  --headerBack: --red-color;
  --headerColor: white;
  --headerShadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header_container {
  margin: auto;
  display: flex;
  align-items: center;
  height: 90px;
}
.header_wrap {
  margin: auto;
  display: grid;
}
.header_menu--open {
  align-self: stretch;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: grid;
  place-content: center;
  height: 90px;
  width: 90px;
}
.header_menu--open svg {
  color: var(--text-color-invert);
}
.header_menu--open:hover {
  background-color: var(--secondary-color-10);
}
.header_menu--open:hover svg {
  color: var(--text-color-50);
}
.white .header_menu--open svg {
  color: var(--text-color-50);
}
.white .header_menu--open:hover svg {
  color: var(--red-color);
}
.header_logo {
  margin-top: 0.5rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.header_logo img {
  height: 2.2rem;
  position: relative;
}
.header_actions {
  margin-left: auto;
  display: flex;
  align-self: stretch;
  gap: 1rem;
}
.header_eshop {
  background-color: var(--text-color-invert);
  color: var(--red-color);
  display: block;
  width: fit-content;
  padding: 0.75rem 1.35rem;
  border-radius: 5px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  text-decoration: none;
  margin-right: 2rem;
}
.white .header_eshop {
  background-color: var(--red-color);
  color: var(--text-color-invert);
}
.header_search {
  align-self: stretch;
  background-color: transparent;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--border-color-30);
  cursor: pointer;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  height: 90px;
  width: 90px;
}
.header_search svg {
  color: var(--border-color-30);
}
.header_search:hover {
  background-color: var(--secondary-color-10);
}
.header_search:hover svg {
  color: var(--text-color-50);
}
header[data-page="home"].invert .header_menu--open svg, header[data-page="home"].invert .header_search svg {
  color: var(--text-color-white);
}
header[data-page="home"].invert .header_menu--open:hover, header[data-page="home"].invert .header_search:hover {
  background-color: transparent;
}
header[data-page="home"].invert .header_menu--open:hover svg, header[data-page="home"].invert .header_search:hover svg {
  color: var(--text-color-white);
}
@keyframes jump {
  0% {
    top: 0;
  }
  100% {
    top: -10px;
  }
}
@keyframes scrollShow {
  0% {
    bottom: -5rem;
    transform: translateX(-50%) scale(1);
  }
  100% {
    bottom: 1rem;
    transform: translateX(-50%) scale(1.05);
  }
}
nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex: 1;
}
nav .menu_link {
  text-decoration: none;
  display: flex;
  height: 100%;
  align-items: center;
  color: var(--headerColor);
  font-family: "Ubuntu", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 0 1rem;
  text-transform: uppercase;
}
nav .menu_link:hover {
  background-color: var(--secondary-color-10);
}
nav > ul {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
nav > ul li {
  list-style-type: none;
  display: flex;
  height: 100%;
  place-content: center;
}
nav > ul li a {
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
  color: var(--headerColor);
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 0 1rem;
  display: flex;
  align-self: stretch;
  align-items: center;
  text-transform: uppercase;
}
nav > ul li a:hover {
  background-color: var(--secondary-color-10);
}
nav .dropdown {
  height: 100%;
}
nav .dropbtn {
  letter-spacing: 1px;
  height: 100%;
  padding: 1rem;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  color: var(--headerColor);
  gap: 0.5rem;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
nav .dropbtn svg {
  color: var(--headerColor);
  opacity: 0.5;
}
nav .dropdown_content {
  border: 1px solid var(--border-color-10);
  font-family: "Ubuntu", sans-serif;
}
nav .dropdown_content a {
  text-decoration: none;
  display: block;
  width: 100%;
  color: var(--text-color);
}
nav .dropdown_content a:hover {
  background-color: transparent;
}
@media only screen and (max-width: 1024px) {
  nav {
    display: none;
  }
  .header_menu--open {
    display: block;
    height: 65px;
    width: 65px;
  }
  .header_search {
    height: 65px;
    width: 65px;
  }
  .header_container {
    height: 65px;
  }
  .header_logo {
    margin-top: 0;
  }
}
@media only screen and (max-width: 640px) {
  .header_phone {
    display: none;
  }
  header {
    padding: 0;
    width: 100%;
  }
  .header_menu--open {
    margin-right: 0.5rem;
  }
  .header_logo {
    margin-left: 1rem;
  }
  .header_logo_image {
    width: 3rem;
  }
  .header_logo_image img {
    height: 50px;
    top: 5px;
  }
  .header_eshop {
    margin-right: 1rem;
    border: 1px solid var(--text-color-invert-10);
    padding: 0.35rem 0.85rem;
    font-size: 0.875rem;
    background-color: transparent;
    color: var(--text-color-invert);
  }
}
@media screen and (max-width: 375px) {
  .header_actions {
    gap: 0;
  }
  .header_search {
    padding-right: 0;
  }
}
.megamenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: var(--shadow-elevation-medium);
  transition: clip-path 0.2s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  display: none;
}
.megamenu.open {
  display: block;
}
.megamenu_cont {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 250ms ease-in;
}
.megamenu_cont.open {
  opacity: 1;
  transition: opacity 150ms ease-out;
}
.megamenu_back {
  background-color: #333333;
  top: -2vw;
  left: -2vw;
  width: 1vw;
  height: 1vw;
  border-radius: 250vw;
  display: block;
  transform-origin: center center;
  position: absolute;
  z-index: 1;
  transition: transform 300ms ease-in;
}
.megamenu_back.open {
  transform: scale(250);
  transition: transform 300ms ease-out;
}
.megamenu_header {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.megamenu_header_close {
  height: 90px;
  padding-left: 33px;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  color: var(--text-color-invert);
  gap: 0.5rem;
}
.megamenu_header_close span {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  opacity: 0.5;
}
.megamenu_header_search {
  height: 90px;
  padding-right: 33px;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 0;
  color: var(--text-color-invert);
  gap: 0.5rem;
  text-decoration: none;
}
.megamenu_header_search span {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  opacity: 0.5;
}
.megamenu_list {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
}
.megamenu_list_grid {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 3rem 4.1rem;
}
.megamenu_list_item {
  color: var(--text-color-invert);
  padding: 3rem 4.1rem;
  border-bottom: 1px solid var(--text-color-invert-10);
}
.megamenu_list_item_title {
  font-size: 2rem;
  color: var(--text-color-invert);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Ubuntu", sans-serif;
  margin-bottom: 1rem;
}
.megamenu_list_item_title:is(span) svg {
  display: none;
}
.megamenu_list_item_title svg {
  color: var(--text-color-invert-50);
}
.megamenu_list_item ul {
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}
.megamenu_list_item ul li {
  list-style-type: none;
}
.megamenu_list_item ul li a {
  font-size: 1rem;
  color: var(--text-color-invert);
  text-decoration: none;
  height: 36px;
  display: flex;
  align-items: center;
  font-family: "Ubuntu", sans-serif;
}
.megamenu_list_item ul li.jablko a {
  padding-left: 42px;
  background-image: url("../themes/farskecms/assets/images/icons/jablko.png");
  background-repeat: no-repeat;
  background-size: 36px 36px;
}
.megamenu_list_item ul li.jahoda a {
  padding-left: 42px;
  background-image: url("../themes/farskecms/assets/images/icons/jahoda.png");
  background-repeat: no-repeat;
  background-size: 36px 36px;
}
.megamenu_list_item ul li.hruska a {
  padding-left: 42px;
  background-image: url("../themes/farskecms/assets/images/icons/hruska.png");
  background-repeat: no-repeat;
  background-size: 36px 36px;
}
.megamenu_list_item ul li.malina a {
  padding-left: 42px;
  background-image: url("../themes/farskecms/assets/images/icons/malina.png");
  background-repeat: no-repeat;
  background-size: 36px 36px;
}
.megamenu_list_item ul li.cernica a {
  padding-left: 42px;
  background-image: url("../themes/farskecms/assets/images/icons/cernica.png");
  background-repeat: no-repeat;
  background-size: 36px 36px;
}
.megamenu_list_item ul li.slivka a {
  padding-left: 42px;
  background-image: url("../themes/farskecms/assets/images/icons/slivka.png");
  background-repeat: no-repeat;
  background-size: 36px 36px;
}
.megamenu_list_item ul li.hrach a {
  padding-left: 42px;
  background-image: url("../themes/farskecms/assets/images/icons/hrach.png");
  background-repeat: no-repeat;
  background-size: 36px 36px;
}
.megamenu_list_item ul li.skola a {
  padding-left: 42px;
  background-image: url("../themes/farskecms/assets/images/icons/skola.png");
  background-repeat: no-repeat;
  background-size: 36px 36px;
}
@media (orientation: landscape) {
  .megamenu_back {
    width: 1vw;
    height: 1vw;
    border-radius: 250vw;
  }
}
@media (orientation: portrait) {
  .megamenu_back {
    width: 1vh;
    height: 1vh;
    border-radius: 250vh;
  }
}
@media only screen and (max-width: 1024px) {
  .megamenu_header {
    height: 65px;
  }
  .megamenu_header_close {
    height: 65px;
    padding-left: 20px;
  }
  .megamenu_header_search {
    height: 65px;
    padding-right: 20px;
  }
  .megamenu_list_grid {
    padding: 2.3rem 20px;
  }
  .megamenu_list_item {
    padding: 2.3rem 20px;
  }
  .megamenu_list_item_title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .megamenu_list_grid {
    display: grid;
    padding: 0;
    gap: 0;
  }
  .megamenu_list_grid .megamenu_list_item_title {
    padding: 1.5rem 33px;
    border-bottom: 1px solid var(--text-color-invert-10);
  }
  .megamenu_list_item {
    padding: 0;
  }
  .megamenu_list_item_title {
    padding: 1.5rem 33px;
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .megamenu_list_item_title svg {
    display: none;
  }
  .megamenu_list_item_title:is(span) svg {
    height: 1.5rem;
    width: 1.5rem;
    margin-left: auto;
    display: block;
  }
  .megamenu_list_item ul {
    display: none;
  }
  .megamenu_list_item.open .megamenu_list_item_title svg {
    transform: rotate(180deg);
  }
  .megamenu_list_item.open ul {
    display: grid;
    gap: 0;
  }
  .megamenu_list_item.open ul li a {
    background-size: 30px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 45px;
    background-position: 40px center;
    padding-left: 75px;
    position: relative;
  }
  .megamenu_list_item.open ul li a::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #252525;
    z-index: -1;
  }
}
.button {
  background-color: transparent;
  border: 0;
  padding: 0.85rem 1.7rem;
  font-size: 1rem;
  color: var(--text-color);
  border-radius: 10px;
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
}
.button--arrow {
  background-color: transparent;
  padding: 1rem 0rem;
  font-size: 1rem;
  color: var(--blue-color);
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
  display: flex;
  align-items: center;
}
.button--arrow .arrow_icon {
  display: flex;
  align-items: center;
  position: relative;
}
.button--arrow .arrow_icon::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: var(--blue-color);
  position: relative;
  left: 12px;
  clip-path: inset(0 0 0 0);
  transition: width 200ms ease;
}
.button--arrow:hover .arrow_icon::before {
  width: 40px;
}
.button--main {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  background: #1e992c;
  background: linear-gradient(0deg, #1e992c 0%, #17d32d 100%);
  box-shadow: 0 5px 0 0 #26682E, 0 10px 20px 0 rgba(0, 0, 0, 0.15);
  color: var(--text-color-white);
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  min-width: 120px;
  transition: all 250ms ease-in;
}
.button--main:hover {
  background: linear-gradient(0deg, #21a530 0%, #17d32d 100%);
  box-shadow: 0 5px 0 0 #26682E, 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  transition: all 150ms ease-out;
}
.button--red {
  min-width: 120px;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  background: #f1795a;
  background: linear-gradient(0deg, #e14a4c 0%, #f1795a 100%);
  box-shadow: 0 5px 0 0 #a0383a, 0 10px 20px 0 rgba(0, 0, 0, 0.15);
  color: var(--text-color-white);
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  transition: all 250ms ease-in;
}
.button--red:hover {
  background: linear-gradient(0deg, #e24e51 0%, #f1795a 100%);
  box-shadow: 0 5px 0 0 #a0383a, 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  transition: all 150ms ease-out;
}
@media screen and (max-width: 640px) {
  .button--main {
    font-size: 1.2rem;
    min-width: 90px;
  }
  .button--red {
    font-size: 1.2rem;
    min-width: 70px;
  }
  .button {
    border-radius: 8px;
    padding: 0.65rem 1.4rem;
  }
}
.divider {
  width: 100%;
  height: 70px;
  background-image: url("../themes/farskecms/assets/images/dividers/divider_red.svg");
  background-repeat: repeat-x;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
}
.divider span {
  background-color: var(--bg-color);
  border-radius: 50%;
  height: 2.5rem;
  width: 2.5rem;
}
.divider svg {
  height: 2.5rem;
  width: 2.5rem;
}
.divider.red {
  background-image: url("../themes/farskecms/assets/images/dividers/divider_red.svg");
}
.divider.blue {
  background-image: url("../themes/farskecms/assets/images/dividers/divider_blue.svg");
}
.divider.green {
  background-image: url("../themes/farskecms/assets/images/dividers/divider_green.svg");
}
.divider.white {
  background-image: url("../themes/farskecms/assets/images/dividers/divider_white.svg");
}
.divider.grey {
  background-image: url("../themes/farskecms/assets/images/dividers/divider_grey.svg");
}
.divider_vertical {
  height: 100%;
  width: 1px;
  position: relative;
  display: block;
  border-left: 1px solid var(--border-color);
}
.divider_vertical::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  height: 0.5rem;
  width: 0.5rem;
  background-color: var(--border-color);
  transform: rotate(45deg) translateX(-50%);
}
.divider_vertical::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1px;
  height: 0.5rem;
  width: 0.5rem;
  background-color: var(--border-color);
  transform: rotate(45deg) translateX(-50%);
}
footer {
  position: sticky;
  top: 100vh;
  z-index: 99;
  font-family: "Ubuntu", sans-serif;
}
footer .footer-top {
  background-color: #141414;
  text-align: center;
}
footer .footer-top a {
  color: white;
}
footer .footer-top .wide-container {
  padding: 2rem 1rem;
  color: white;
  display: flex;
  justify-content: space-between;
}
footer .footer-bottom {
  text-align: center;
  background-color: black;
}
footer .footer-bottom .wide-container {
  padding: 2rem 0;
  color: var(--text-color-white-50);
  justify-content: center;
}
footer b {
  color: white;
}
footer i {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
  font-style: normal;
}
@media only screen and (max-width: 1400px) {
  .footer-top, .footer-bottom {
    padding: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  footer.marginBottom {
    padding-bottom: 95px;
  }
  footer .wide-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .wide-container * {
    width: 100%;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  footer .wide-container span {
    order: 2;
  }
}
gmp-map {
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
}
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html, body {
  font-size: 15px;
  line-height: 1.4;
  font-family: "Ubuntu", sans-serif;
  background-color: var(--bg-color);
  padding: 0;
  margin: 0;
  min-height: 100vh;
}
html {
  overflow-y: scroll;
}
.container {
  max-width: 1200px;
  width: calc(100% - 2rem);
  padding: 1rem;
  margin: auto;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
/*
      * A better looking default horizontal rule
      */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/*
      * Remove the gap between audio, canvas, iframes,
      * images, videos and the bottom of their containers:
      * https://github.com/h5bp/html5-boilerplate/issues/440
      */
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}
img {
  border-radius: 3px;
}
/*
      * Remove default fieldset styles.
      */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*
      * Allow only vertical resizing of textareas.
      */
textarea {
  resize: vertical;
}
/* ==========================================================================
        Author's custom styles
        ========================================================================== */
/* ==========================================================================
        Helper classes
        ========================================================================== */
/*
      * Hide visually and from screen readers
      */
.hidden, [hidden] {
  display: none !important;
}
/*
      * Hide only visually, but have it available for screen readers:
      * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
      *
      * 1. For long content, line feeds are not interpreted as spaces and small width
      *    causes content to wrap 1 word per line:
      *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
      */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}
/*
      * Extends the .sr-only class to allow the element
      * to be focusable when navigated to via the keyboard:
      * https://www.drupal.org/node/897638
      */
.sr-only.focusable:active, .sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}
/*
      * Hide visually and from screen readers, but maintain layout
      */
.invisible {
  visibility: hidden;
}
/*
      * Clearfix: contain floats
      *
      * For modern browsers
      * 1. The space content is one way to avoid an Opera bug when the
      *    `contenteditable` attribute is included anywhere else in the document.
      *    Otherwise it causes space to appear at the top and bottom of elements
      *    that receive the `clearfix` class.
      * 2. The use of `table` rather than `block` is only necessary if using
      *    `:before` to contain the top-margins of child elements.
      */
.clearfix::before, .clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}
/* ==========================================================================
        EXAMPLE Media Queries for Responsive Design.
        These examples override the primary ('mobile first') styles.
        Modify as content requires.
        ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
        Print styles.
        Inlined to avoid the additional HTTP request:
        https://www.phpied.com/delay-loading-your-print-css/
        ========================================================================== */
@media print {
  /*
        * Don't show links that are fragment identifiers,
        * or use the `javascript:` pseudo protocol
        */
  /*
        * Printing Tables:
        * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
        */
  *, *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    /* Black prints faster */
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]::after, a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
@media only screen and (min-width: 768px) {
  html, body {
    font-size: 15px;
  }
}
.section_headline h2 {
  position: relative;
  width: 100%;
  color: var(--secondary-color);
  font-family: "Poetsen One", display;
  margin: 0 0 1rem 0;
  font-weight: 500;
  font-size: 2.2rem;
}
.article_container {
  max-width: 640px;
  margin: 2rem auto;
  margin-top: 8rem;
  width: calc(100% - 2rem);
  padding: 1rem;
  font-family: "Ubuntu", sans-serif;
  color: var(--text-color);
}
.article_container img {
  max-width: 100%;
  border-radius: 3px;
}
.article_container h1 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
}
.article_container p {
  line-height: 1.6rem;
  font-size: 1.1rem;
}
.article_container b, .article_container strong, .article_container h2, .article_container h3 {
  font-weight: 700;
}
.article_container div > h2 {
  margin-top: 1.3rem;
}
.article_container ul li, .article_container ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6rem;
  font-size: 1.1rem;
}
.article_container u {
  background-color: var(--blue-color-25);
  text-decoration: none;
  padding: 2px 1px;
}
.article_container a {
  color: var(--blue-color);
  text-decoration-color: var(--blue-color-50);
}
.article_container sub {
  font-size: inherit;
  line-height: inherit;
  bottom: auto;
  position: static;
  vertical-align: inherit;
  white-space: nowrap;
}
.article_container hr {
  border-top: 1px solid var(--border-color);
  margin: 2rem auto;
  margin-bottom: 2rem;
}
.article_container table, .article_container th, .article_container tr, .article_container td {
  border-collapse: collapse;
  border: 1px solid var(--border-color-10);
}
.article_container table {
  border-radius: 10px;
  width: 100%;
}
.article_container td, .article_container th {
  padding: 0.5rem;
}
.article_container .oc-text-boxFull {
  background-color: var(--blue-color-25);
  width: 100%;
  padding: 1.2rem;
  border-radius: 3px;
}
.article_container .oc-text-boxBorder {
  border: 2px solid var(--blue-color-25);
  width: 100%;
  padding: 1.2rem;
  border-radius: 3px;
}
.article_container .oc-text-small {
  font-size: 0.85rem;
}
.article_container .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.article_container .video-embed iframe, .article_container .video-embed object, .article_container .video-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article_container .photogallery_cta {
  position: relative;
  display: flex;
  border-radius: 3px;
  padding: 0;
  overflow: hidden;
}
.article_container .photogallery_cta_overlay {
  position: absolute;
  z-index: 2;
  display: block;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
  opacity: 0.5;
}
.article_container .photogallery_cta_content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  top: auto;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  width: calc(100% - 2rem);
  justify-content: space-between;
  height: fit-content;
  background-color: transparent;
}
.article_container .photogallery_cta_content:hover {
  background-color: transparent;
}
.article_container .photogallery_cta_name {
  position: static;
  flex: 1;
  margin-right: 10px;
  text-align: left;
  justify-content: flex-start;
  background-color: transparent;
}
.article_container .photogallery_cta_name:hover {
  background-color: transparent;
}
.article_container .photogallery_cta_name small {
  color: var(--text-color-white);
  opacity: 0.75;
  font-size: 14px;
  font-weight: 300;
}
.article_container .photogallery_cta_name b {
  display: block;
  color: var(--text-color-white);
  font-size: 21px;
  line-height: 28px;
  padding-top: 5px;
  text-align: left;
}
.article_container .photogallery_cta_button {
  position: static;
  flex-shrink: 0;
  background-color: var(--red-color);
  color: var(--text-color-white);
  padding: 10px 15px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  width: fit-content;
  height: fit-content;
  font-size: 1rem;
}
.article_container .photogallery_cta_button:hover {
  background-color: var(--red-color);
}
.article_container .photogallery_cta_button span {
  position: static;
  font-weight: normal;
  opacity: 0.75;
  width: fit-content;
  background-color: transparent;
  font-size: 1rem;
}
.article_container .photogallery_cta_icon {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-color-white);
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.article_container .photogallery_cta_icon svg {
  height: 24px;
  width: 24px;
  margin-bottom: 0;
}
.article_container .photogallery_cta img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.post_listing {
  margin-top: 0;
}
.post_listing h2 {
  font-size: 2rem;
  color: var(--text-color-light);
  margin: 4rem 0 0 0;
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
}
.post_listing_container {
  padding: 0 !important;
}
