:root {
  --primary: #f9f7f6;
  --primary-contrast: #000000;
  --secondary-contrast: #000000;
  --secondary: #ffffff;
  --padding-h: 0rem;

  --point-1: #e5ded3;
  --point-2: #f3e0d6;
  --point-3: #e2bcbb;
  --point-4: #deaaa9;
  --point-5: #f0d4af;
  --point-6: #ebc48f;
  --border-radius: 4rem;
  --border-radius-inner: 3rem;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scrollbar-width: thin; /* Can be "auto", "thin", or "none" */
  scrollbar-color: var(--secondary) #f1f1f1; /* Thumb and track color */
}

a {
  color: inherit;
  text-decoration: none;
}
a.underline {
  text-decoration: underline;
}
a.bold {
  font-weight: bold;
}
.color-primary {
  color: var(--primary-contrast);
}

body {
  font-size: 1.6rem;
}

html,
body {
  width: 100%;
  height: 100vh;
  color: var(--primary-contrast);
  background: var(--primary);
  margin: 0;
  font-family: "Comfortaa";
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

.lb_layout {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
h1,
h2 {
  font-family: "PlayfairDisplay";
  font-weight: 400;
}
h1 {
  font-size: 9rem;
  letter-spacing: 1.5rem;
}
h2 {
  font-size: 2.6rem;
}

#blazor-error-ui {
  display: none;
}

.responsive_container {
  width: 100%;
  margin: auto;
}

.hide {
  visibility: hidden;
}

/* MOBILE RULES*/
@media (max-width: 599px) {
  .mobile_hide {
    visibility: hidden;
  }
}
/* TABLET RULES*/
@media (min-width: 600px) and (max-width: 899px) {
}
/* DESKTOP RULES */
@media (min-width: 900px) {
}

@media (min-width: 1200px) {
  .desktop_hide {
    visibility: hidden;
  }
}

@media (max-width: 800px) {
  h1 {
    font-size: 7.5rem;
    letter-spacing: 0.8rem;
  }
}
@media (max-width: 575px) {
  .responsive_container {
    max-width: 100%;
  }
  :root {
    --padding-h: 2rem;
  }
  h1 {
    font-size: 6rem;
    letter-spacing: 0.6rem;
  }
}

@media (min-width: 576px) {
  .responsive_container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .responsive_container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .responsive_container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .responsive_container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .responsive_container {
    max-width: 1320px;
  }
}

.page {
  display: flex;
  flex-direction: column;
  width: 100%;
}

header {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

body.loaded header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/other/brush.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -2;
  transform: rotate(180deg);
}

.header__inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 0 var(--padding-h);
  padding-bottom: 2rem;
  gap: 2rem;
}

body.loaded header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/graphics/naslovna.webp");
  background-size: cover;
  background-position: top;
  background-position-x: 21rem;
  background-position-y: 1rem;
  background-repeat: no-repeat;
  /* opacity: 0.7; */
  z-index: -1;
  margin: auto;
}
@media (min-width: 1200px) {
  body.loaded header::after {
    max-width: 81rem;
    background-position-x: 0rem;
    background-position-y: 1rem;
    left: 43rem;
  }
}

.header__logo {
  max-width: 24rem;
}

.header__menu {
  display: flex;
  flex-direction: column;
}

.header__menu_item {
  max-width: 30rem;
  padding: 1rem 0;
  font-size: 2.4rem;
  letter-spacing: -0.1rem;
  font-weight: 300;
}
.header__menu_item:hover {
  text-decoration: underline;
}

section {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}
section {
  background: var(--primary);
}
section:nth-child(odd) {
  background: var(--secondary);
}

.section__header {
  display: flex;
  color: var(--primary-contrast);
}

.section__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 4rem var(--padding-h);
  padding-top: 2rem;
  position: relative;
}
.section__operations {
  order: 0;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 0.5rem;
  right: 0;
}
.section__operations > a {
  font-size: 1.2rem;
  padding: 0 2rem;
  color: var(--primary-contrast);
}
.section__title {
  font-size: 1.4rem;
  flex: 1;
  order: 1;
}
.top_padding {
  padding-top: 2rem;
}

.section__content {
  display: flex;
  flex-direction: column;
}
.section__content-offset {
  padding-left: 24rem;
}

section#ohranitev-sopka {
  background-image: url(/images/graphics/ohranitev.webp);
  background-size: 84rem;
  background-position: left;
  background-position-x: -61rem;
  background-position-y: -1rem;
  background-repeat: no-repeat;
}

ul.section__content_list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
}

li.list_item {
  display: flex;
  color: var(--secondary-contrast);
  min-height: 8rem;
  padding: 1rem 0;
}

.list_item__inner {
  display: flex;
  /* align-items: center; */
  gap: 4rem;
  padding: 0 var(--padding-h);
}

.list_item__bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  max-height: 5rem;
  min-width: 5rem;
  max-width: 5rem;
  border-radius: 50%;
}
.list_item__bullet > span {
  font-family: "PlayfairDisplay";
  font-size: 3.2rem;
  height: 5rem;
  line-height: 5rem;
}
.list_item-1 .list_item__bullet {
  background-color: var(--point-1);
}
.list_item-1 .list_item__bullet > span {
  line-height: 3.9rem;
}
.list_item-2 .list_item__bullet {
  background-color: var(--point-2);
}
.list_item-2 .list_item__bullet > span {
  line-height: 4rem;
}
.list_item-3 .list_item__bullet {
  background-color: var(--point-3);
}
.list_item-3 .list_item__bullet > span {
  line-height: 3.6rem;
}
.list_item-4 .list_item__bullet {
  background-color: var(--point-4);
}
.list_item-4 .list_item__bullet > span {
  line-height: 3.5rem;
}
.list_item-5 .list_item__bullet {
  background-color: var(--point-5);
}
.list_item-5 .list_item__bullet > span {
  line-height: 3.8rem;
}
.list_item-6 .list_item__bullet {
  background-color: var(--point-6);
}
.list_item-6 .list_item__bullet > span {
  line-height: 4.5rem;
}
.list_item__content {
  display: flex;
  flex-direction: column;
  max-width: 54rem;
}
.list_item__title {
  font-family: "PlayfairDisplay";
  font-size: 2rem;
  font-weight: bold;
}

.section__container {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.section__container-start {
  justify-content: flex-start;
}
.section__container-gapped {
  gap: 4rem;
}
.section__container-gapped .section__holder {
  gap: 4rem;
}
.section__container-gapped .section__card {
  max-width: 30rem;
}

.section__holder {
  display: flex;
  flex: 1;
  min-width: 54rem;
  justify-content: space-between;
}

.section__card {
  display: flex;
  max-width: 33rem;
  flex: 1;
  align-items: center;
}
.section__card-column {
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1200px) {
  section#mnenja-strank .section__holder {
    min-width: 56rem;
  }
}
.section__frame {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}
.section__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius);
  max-height: 45rem;
}
.section__image_cover_container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__image_cover {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-inner);
  margin: 2rem;
  padding: 2rem;
  height: 90%;
}
.section__image_cover > span {
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 1400px) {
  .section__container {
    gap: 4rem;
  }
}

@media (max-width: 769px) {
  .section__container {
    gap: 2rem;
  }
  .section__container-gapped {
    gap: 2rem;
  }
  .section__container-gapped .section__holder {
    gap: 2rem;
  }
  .section__image_cover > span {
    font-size: 1.4rem;
  }
  .section__content-offset {
    padding-left: initial;
  }
  section#ohranitev-sopka {
    background-image: none;
  }
}
@media (max-width: 550px) {
  .section__holder {
    min-width: 30rem;
  }
  .section__image_cover {
    padding: 1rem;
  }
  .section__image_cover > span {
    font-size: 1.4rem;
  }
}
@media (max-width: 525px) {
  .section__image_cover > span {
    font-size: 1.2rem;
  }
}
@media (max-width: 456px) {
  .section__image_cover > span {
    font-size: 1rem;
  }
}

@media (max-width: 769px) {
  .section__container-voucher {
    flex-wrap: wrap;

    & > .section__card {
      max-width: none;
      flex: 1 1 30rem;
    }
  }
}

.section__card-voucher {
  max-width: 66rem;
  /* max-height: 40rem; */
  overflow: hidden;
}

.section__text {
  flex: 2;
  margin: auto;
  padding: 4rem;
  line-height: 1.8;
  /* text-align: justify; */
  /* hyphens: auto; */
}
.section__text-start {
  padding-left: 0;
}
.section__text-end {
  padding-right: 0;
}
.section__text-min_20 {
  line-height: 2;
}

@media (max-width: 1000px) {
  .section__text {
    line-height: 1.5;
  }
}
@media (max-width: 540px) {
  .section__text {
    padding: 2rem;
    font-size: 1.6rem;
  }
}
.section__content-about .section__card {
  min-width: 32rem;
}
.section__content-about .section__text {
  min-width: 26rem;
}
.section__content-about .section__container {
  gap: 0;
}
.footer {
  display: flex;
  flex-direction: column;
  background-image: url(/images/graphics/kontakti.png);
  background-position-x: 64rem;
  background-position-y: -19rem;
  background-repeat: no-repeat;
  padding-bottom: 14rem;
}
.footer__header {
  padding: 1rem;
  padding-bottom: 2rem;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__image {
  width: 30rem;
}

.footer__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer__info_item {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  font-size: 2rem;
}
.footer__icon {
  background-color: var(--secondary-contrast);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__icon > i {
  font-size: 2rem;
  color: var(--secondary);
}
.footer__info_item:hover > span {
  text-decoration: underline;
}

@media (max-width: 769px) {
  .footer__content {
    justify-content: center;
  }
  .footer {
    background-image: none;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
    background-position-y: 29rem;
    background-position-x: -5rem;
  }
  .footer__logo {
    order: 2;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.modal__image {
  display: block;
  width: 90%;
  max-width: 700px;
  user-select: none;
}

.modal__caption {
  text-align: center;
  color: #ccc;
  padding: 1rem 0;
  height: 150px;
}

/* The Close Button */
.modal__close {
  user-select: none;
  position: absolute;
  top: 1.5rem;
  right: 3.5rem;
  color: #f1f1f1;
  font-size: 10rem;
  cursor: pointer;
}
