.menu-full {
  background-color: #F1F2F2;
}

.menu-transparent {
  background-color: white;
}

.naslov {
  background-color: #F1F2F2;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 108px;
}
.naslov h1 {
  text-align: center;
}

.left-side {
  grid-column: 2/span 3;
  position: relative;
}

.right-side {
  grid-column: 5/span 7;
  display: flex;
  flex-direction: column;
  gap: 46px;
}
.right-side h3 {
  text-align: start;
}
.right-side p {
  margin-top: 12px;
}

/* Sticky TOC */
.sticky {
  top: 108px;
  left: 0;
  position: sticky;
  width: 100%;
}

.toc {
  margin: 0;
  padding-left: 22px;
  list-style: decimal;
}

.toc li {
  margin: 8px 0;
  opacity: 0.6;
  /* default dimmed for both text + number */
  transition: opacity 0.2s ease;
}

.toc li.active {
  opacity: 1;
  /* brighten number + text together */
}

.toc a {
  font-size: 16px;
  line-height: 1.35;
  text-decoration: none;
  display: inline-block;
  color: inherit;
}

.toc li::marker {
  opacity: inherit;
  /* sync marker opacity with li */
}

.simple-picture {
  grid-column: span 6;
}
.simple-picture img {
  transition: 0.5s;
}

.simple-picture:hover img {
  scale: 1.05;
}

.simple-picture-holder {
  padding-top: 60%;
  position: relative;
}

.simple-picture-holder::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.4;
  z-index: 2;
}

.simple-picture-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.simple-picture-text h3 {
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.simple-picture-text h2 {
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
  width: 70%;
}

.main-button {
  letter-spacing: 16%;
}

/*Acordation*/
.acordation {
  padding-top: 0px;
}

.acordation-text-1 {
  grid-column: 3/span 8;
  text-align: start;
  margin-top: 70px;
}

.acordation-text-2 {
  grid-column: 3/span 8;
  color: #1B1E2B;
  font-size: 15px;
}

.faq-text {
  grid-column: 2/span 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-text h2 {
  margin-top: 12px;
}

.faq-text p {
  color: #001034;
  margin-top: 18px;
}

.faq-text a {
  color: #001034;
  -webkit-text-decoration: solid;
  text-decoration: solid;
  text-decoration-color: #001034;
  width: -moz-fit-content;
  width: fit-content;
}

.acordation-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-column: 3/span 8;
  margin-top: 36px;
  gap:8px;
}

.acordation-grid h5 {
  color: #000;
  text-align: start;
  font-weight: 700;
  font-style: Medium;
  font-size: 32px;
  leading-trim: NONE;
  line-height: 161%;
  letter-spacing: -2%;
}

.faq {
  padding: 20px 0px;
  position: relative;
  overflow: clip;
  cursor: pointer;
  border-bottom: 1px solid #D6D6D6;
}

.faq-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
    gap:8px;
}

.faq-heading .pbold {
  padding-right: 10px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
  font-size: 18px;
}

.arrow-a::before,
.arrow-a::after {
  content: "";
  display: block;
  width: 21px;
  border-radius: 0px;
  height: 2px;
  background: black;
  transition: 0.3s ease-in-out;
  position: relative;
  display: block;
}

.arrow-a::before {
  transform: rotate(0deg);
}

.arrow-a::after {
  margin-top: -1px;
  margin-left: 1px;
  transform: rotate(-90deg);
}

.active .arrow-a::after {
  transform: rotate(0deg);
  margin-top: -2px;
  margin-left: 0px;
}

.active .faq-content {
  max-height: 500px;
  margin-top: 18px;
  line-height: 1.6;
}

.simple-picture-faq {
  grid-column: span 12;
}
.simple-picture-faq .simple-picture-holder {
  padding-top: 45%;
}

@media (max-width: 992px) {
  .acordation-text-1,
  .acordation-text-2,
  .acordation-grid {
    grid-column: span 12;
  }
  .simple-picture-faq .simple-picture-holder {
    padding-top: 60%;
  }
  .simple-picture-text {
    width: 90%;
  }
  .simple-picture-text h2 {
    width: 100%;
  }
  .left-side {
    grid-column: span 4;
    position: relative;
  }
  .right-side {
    grid-column: span 8;
  }.acordation-grid h5 {
  font-size: 28px;
  line-height: 141%;
}
}
@media (max-width: 768px) {
  h1 {
    font-size: 52px;
    padding: 0 24px;
  }
  .acordation-text-1 {
    margin-top: 55px;
    font-size: 32px;
    font-weight:900;
  }
  .naslov {
    padding-top: 80px;
  }
  .simple-picture-faq .simple-picture-holder {
    padding-top: 90%;
  }
  .left-side {
    grid-column: span 4;
    position: relative;
    display: none;
  }
  .right-side {
    grid-column: span 12;
  }
  .simple-picture {
    grid-column: span 12;
  }
  .section-simple-picture .grid {
    row-gap: 32px;
  }
  .simple-picture-text h3 {
    font-size: 30px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 42px;
    padding: 0 24px;
    line-height: 1.3;
  }
  .acordation-text-2 {
    font-size: 16px;
  }
  .acordation-grid {
    margin-top: 16px;
  }
  .faq {
    padding: 20px 0px;
    position: relative;
    overflow: clip;
    cursor: pointer;
    border: 0px;
    border-bottom: 1px solid #D6D6D6;
  }

  .simple-picture-faq .simple-picture-holder {
    padding-top: 140%;
  }
  h2 {
    font-size: 34px;
  }
  .main-button {
    font-size: 16px;
  }
  .simple-picture .simple-picture-holder {
    padding-top: 140%;
  }
  .right-side p {
    font-size: 15px;
  }
  h3 {
    font-size: 26px;
    line-height: 141%;
  }
  .faq-content {
    font-size: 16px;
  }
  .acordation-grid h5 {
    font-size: 24px;
  }
}
footer .main-button {
  letter-spacing: 0;
}/*# sourceMappingURL=privacy.css.map */