@charset "UTF-8";
/* Loading overlay — covers full screen until header, footer and SVGs load */
body.is-loading {
  overflow: hidden;
}

#loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FE491A;
  transition: opacity 0.3s ease-out;
}
#loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spinner-rotate 0.8s linear infinite;
}

@keyframes spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}
.site-header {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100px;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
}
.site-header .container {
  width: 1280px;
  justify-content: space-between;
}
.site-header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
}
.site-header .logo a {
  height: auto;
  color: #000000;
  text-decoration: none;
  align-items: center;
  display: flex;
}
.site-header .logo a .logo-image {
  height: 66px;
}
.site-header .logo a .logo-letters {
  height: 30px;
  margin-left: 45px;
}
.site-header .nav-desktop {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 400;
}
.site-header .nav-desktop a {
  text-decoration: none;
  color: #000000;
}
.site-header .nav-desktop a:hover {
  text-decoration: underline;
}
.site-header .burger-wrapper {
  display: none;
}

@media (max-width: 1600px) {
  .site-header .container {
    width: 80%;
    padding: 0 25px;
  }
}
/* Mobilni: burger + slide-in meni sa desne strane */
@media (max-width: 768px) {
  .site-header .container {
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
  }
  .site-header .logo a .logo-image {
    height: 50px;
  }
  .site-header .logo a .logo-letters {
    height: 20px;
    margin-left: 15px;
  }
  .site-header .nav-desktop {
    display: none;
  }
  .site-header .burger-wrapper {
    display: flex;
    align-items: center;
  }
  .site-header .burger-btn {
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .site-header .burger-btn img {
    display: block;
    height: 15px;
  }
  .site-header .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    padding: 100px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  .site-header .mobile-menu.is-open {
    transform: translateX(0);
  }
  .site-header .mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000000;
  }
  .site-header .mobile-menu-close svg {
    display: block;
  }
  .site-header .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .site-header .mobile-nav a {
    font-size: 1.125rem;
    text-decoration: none;
    color: #000000;
  }
  .site-header .mobile-nav a:hover {
    text-decoration: underline;
  }
}
/* Overlay kada je meni otvoren */
.site-header .mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.site-header .mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .site-header .mobile-menu-overlay {
    display: block;
  }
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  background: #FE491A;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: min(1010px, 90vw);
  max-width: 1010px;
  overflow: visible;
}
.hero .container .hero-title,
.hero .container .hero-image,
.hero .container .hero-description,
.hero .container .hero-button {
  will-change: transform, opacity;
}
.hero .container .hero-title {
  padding-bottom: clamp(1.5rem, 4vh, 3.125rem); /* 24px - 50px */
}
.hero .container .hero-title .hero-title-white,
.hero .container .hero-title .hero-title-black {
  /* Fluid typography: 370px → 1440px */
  font-size: clamp(1.5rem, 0.5rem + 3.5vw, 4rem);
  line-height: clamp(2rem, 0.6rem + 4.5vw, 5.4375rem);
}
.hero .container .hero-title .hero-title-white {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero .container .hero-title .hero-title-black {
  color: #000000;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.hero .container .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: visible;
}
.hero .container .hero-image svg .hero-left-sweep {
  transform-box: fill-box;
  transform-origin: center;
}
.hero .container .hero-image img,
.hero .container .hero-image .hero-svg,
.hero .container .hero-image svg {
  width: min(606px, 42.1vw); /* 606px at 1440px and up, proportional on smaller */
  height: auto;
  object-fit: contain;
  display: block;
  max-width: 100%;
  overflow: visible;
}
.hero .container .hero-description {
  max-width: 750px;
  width: 100%;
  padding: clamp(1.5rem, 3vh, 2.5rem) 0; /* 24px - 40px */
}
.hero .container .hero-description p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-style: light;
  /* Fluid typography: proporcionalno 320px → 1440px (14px → 24px) */
  font-size: clamp(0.875rem, 0.5rem + 1.2vw, 1.5rem);
  line-height: clamp(1.375rem, 0.6rem + 1.6vw, 2.1875rem);
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}
.hero .container .hero-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.hero .container .hero-button button {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-style: regular;
  font-size: clamp(0.875rem, 1.2vw + 0.5rem, 1rem); /* 14px - 16px */
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  white-space: nowrap;
  height: clamp(40px, 5vh, 46px);
  border-radius: 10px;
  border: 1px solid #ffffff;
  padding: clamp(10px, 1.5vh, 13px) clamp(20px, 2vw, 25px);
  cursor: pointer;
  background: #FE491A;
}

/* Media queries for larger screens - fixed image size */
@media (min-width: 1440px) {
  .hero .container .hero-image img,
  .hero .container .hero-image .hero-svg,
  .hero .container .hero-image svg {
    width: 606px; /* Fixed width at 1440px and up */
  }
}
/* Media queries za manje visine ekrana */
@media (max-height: 900px) {
  .hero .container .hero-title {
    padding-bottom: clamp(1rem, 2vh, 1.5rem);
  }
  .hero .container .hero-description {
    padding: clamp(1rem, 2vh, 1.5rem) 0;
  }
}
/* Responsive: 1440px → 1150px → tablet → mobile (min 370px) */
/* Ispod 1150px: manji naslov da ostane u jednom redu */
@media (max-width: 1150px) {
  .hero .container .hero-title .hero-title-white,
  .hero .container .hero-title .hero-title-black {
    font-size: clamp(1.5rem, 0.5rem + 2.2vw, 3rem);
    line-height: clamp(2rem, 0.6rem + 2.8vw, 4rem);
  }
}
/* Tablet i mobilni: standard 25px padding levo/desno */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding: 1.5rem 25px;
  }
  .hero .container {
    width: 100%;
    max-width: none;
  }
  .hero .container .hero-title .hero-title-white,
  .hero .container .hero-title .hero-title-black {
    font-weight: 600;
  }
  .hero .container .hero-description p {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    line-height: 1.5;
  }
  .hero .container .hero-image img,
  .hero .container .hero-image .hero-svg,
  .hero .container .hero-image svg {
    width: min(349px, 100vw - 50px);
  }
  .hero .container .hero-button {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .hero .container .hero-button button {
    flex: 0 1 calc(50% - 6px);
    min-width: 140px;
  }
}
/* Mali mobilni (Samsung Galaxy S24 ~370px) */
@media (max-width: 480px) {
  .hero {
    padding: 1rem 25px;
  }
}
/* Below 450px: title in two lines, each part full width */
@media (max-width: 450px) {
  .hero .container .hero-title {
    width: 100%;
  }
  .hero .container .hero-title h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
    width: 100%;
  }
  .hero .container .hero-title .hero-title-white,
  .hero .container .hero-title .hero-title-black {
    display: block;
    width: 100%;
    text-align: center;
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.2;
  }
}
/* Below 1000px: animations disabled — remove will-change */
@media (max-width: 999px) {
  .hero .container .hero-title,
  .hero .container .hero-image,
  .hero .container .hero-description,
  .hero .container .hero-button {
    will-change: auto;
  }
}
.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #292929;
}
.site-footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 1280px;
  padding-bottom: 90px;
}
.site-footer .container .upper-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.site-footer .container .upper-footer .upper-footer-left {
  width: 42.5%;
}
.site-footer .container .upper-footer .upper-footer-left .upper-footer-left-logo {
  width: 100%;
  margin-top: 50px;
}
.site-footer .container .upper-footer .upper-footer-right {
  display: flex;
  gap: 40px;
  width: 57.5%;
  height: 100%;
  margin-top: 90px;
}
.site-footer .container .upper-footer .upper-footer-right .upper-footer-documentation h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem; /* 16px */
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.43);
  padding-bottom: 40px;
}
.site-footer .container .upper-footer .upper-footer-right .upper-footer-documentation .upper-footer-documentation-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .container .upper-footer .upper-footer-right .upper-footer-documentation .upper-footer-documentation-links a {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem; /* 16px */
  line-height: 100%;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
.site-footer .container .upper-footer .upper-footer-right .upper-footer-contact {
  width: 230px;
}
.site-footer .container .upper-footer .upper-footer-right .upper-footer-contact h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem; /* 16px */
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.43);
  padding-bottom: 40px;
}
.site-footer .container .upper-footer .upper-footer-right .upper-footer-contact .upper-footer-contact-addresses {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .container .upper-footer .upper-footer-right .upper-footer-contact .upper-footer-contact-addresses p {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 1rem; /* 16px */
  line-height: 100%;
  letter-spacing: 0.05em;
}
.site-footer .container .upper-footer .upper-footer-right .upper-footer-contact .upper-footer-contact-addresses p span {
  font-weight: 700;
}
.site-footer .container .upper-footer .upper-footer-right .upper-footer-contact .upper-footer-contact-addresses a {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem; /* 16px */
  line-height: 100%;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.site-footer .container .upper-footer .upper-footer-right .upper-footer-contact .upper-footer-contact-addresses a.email-link {
  font-weight: 300;
  font-size: 1rem; /* 16px */
  line-height: 100%;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.site-footer .container .center-footer {
  margin-top: 65px;
  margin-bottom: 65px;
}
.site-footer .container .center-footer img {
  width: 100%;
}
.site-footer .container .bottom-footer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.site-footer .container .bottom-footer .bottom-footer-right {
  display: flex;
  justify-content: space-between;
  width: 57.5%;
}
.site-footer .container .bottom-footer .bottom-footer-right .copyright {
  width: 405px;
}
.site-footer .container .bottom-footer .bottom-footer-right .copyright p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .container .bottom-footer .bottom-footer-right .parner-logos {
  display: flex;
  gap: 35px;
}
.site-footer .container .bottom-footer .bottom-footer-right .parner-logos img {
  height: 82px;
}

@media (max-width: 1300px) {
  .site-footer .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .site-footer .container .bottom-footer .bottom-footer-right .copyright {
    padding-right: 40px;
  }
}
@media (max-width: 1100px) {
  .site-footer .container .bottom-footer .bottom-footer-right {
    flex-direction: column;
  }
  .site-footer .container .bottom-footer .bottom-footer-right .copyright {
    width: 100%;
    padding-right: 0;
  }
  .site-footer .container .bottom-footer .bottom-footer-right .parner-logos {
    justify-content: flex-end;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .site-footer .container .upper-footer .upper-footer-right {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .site-footer {
    background: #010101;
  }
  .site-footer .container {
    padding-bottom: 20px;
  }
  .site-footer .container .upper-footer {
    flex-direction: column;
  }
  .site-footer .container .upper-footer .upper-footer-left {
    width: 100%;
  }
  .site-footer .container .upper-footer .upper-footer-left .upper-footer-left-logo {
    margin-top: 20px;
  }
  .site-footer .container .upper-footer .upper-footer-right {
    width: 100%;
    margin-top: 50px;
    gap: 70px;
  }
  .site-footer .container .upper-footer .upper-footer-right .upper-footer-documentation {
    width: 100%;
  }
  .site-footer .container .upper-footer .upper-footer-right .upper-footer-documentation h3 {
    padding-bottom: 20px;
  }
  .site-footer .container .upper-footer .upper-footer-right .upper-footer-documentation .upper-footer-documentation-links a {
    line-height: 180%;
  }
  .site-footer .container .upper-footer .upper-footer-right .upper-footer-contact {
    width: 100%;
  }
  .site-footer .container .upper-footer .upper-footer-right .upper-footer-contact h3 {
    padding-bottom: 20px;
  }
  .site-footer .container .upper-footer .upper-footer-right .upper-footer-contact .upper-footer-contact-addresses p {
    line-height: 130%;
  }
  .site-footer .container .upper-footer .upper-footer-right .upper-footer-contact .upper-footer-contact-addresses a {
    line-height: 180%;
  }
  .site-footer .container .center-footer {
    margin-top: 55px;
    margin-bottom: 30px;
  }
  .site-footer .container .bottom-footer .bottom-footer-right {
    width: 100%;
  }
  .site-footer .container .bottom-footer .bottom-footer-right .copyright {
    width: 100%;
  }
  .site-footer .container .bottom-footer .bottom-footer-right .parner-logos {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .site-footer .container .bottom-footer .bottom-footer-right .parner-logos img {
    height: 124px;
  }
}
@media (max-width: 390px) {
  .site-footer .container .bottom-footer .bottom-footer-right .parner-logos img {
    height: 100px;
  }
}
.site-footer-2 {
  background: black;
  padding: 24px 0 24px 0;
}
.site-footer-2 .container {
  display: flex;
  flex-direction: column;
  width: 1600px;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 0 auto;
}
.site-footer-2 .container .footer-logos {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.site-footer-2 .container .footer-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 40px 0 40px 0;
}
.site-footer-2 .container .footer-links .footer-box {
  width: 20%;
}
.site-footer-2 .container .footer-links .footer-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.375rem; /* 22px */
  opacity: 43%;
  line-height: 100%;
  text-align: left;
  color: #ffffff;
  margin: 0 0 20px 0;
}
.site-footer-2 .container .footer-links .footer-box input[type=email] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  padding: 10px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem; /* 16px */
  color: #ffffff;
  outline: none;
  margin-bottom: 20px;
}
.site-footer-2 .container .footer-links .footer-box input[type=email]::placeholder {
  color: #ffffff;
  opacity: 1;
}
.site-footer-2 .container .footer-links .footer-box input[type=email]:focus {
  border-bottom: 1px solid #ffffff;
  outline: none;
}
.site-footer-2 .container .footer-links .footer-box input[type=email]:focus-visible {
  outline: none;
}
.site-footer-2 .container .footer-links .footer-box .social-media-icons {
  display: flex;
  justify-content: space-between;
}
.site-footer-2 .container .footer-links .footer-box .footer-box-links {
  margin-bottom: 20px;
}
.site-footer-2 .container .footer-links .footer-box .footer-box-links a {
  text-decoration: none;
  color: #ffffff;
}
.site-footer-2 .container .footer-links .footer-box .footer-box-links a h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.375rem; /* 22px */
  line-height: 100%;
  text-align: left;
  color: #ffffff;
}
.site-footer-2 .container .footer-links .footer-box .footer-box-links .footer-box-link-description p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 1rem; /* 16px */
  line-height: 120%;
  text-align: left;
  color: #ffffff;
}
.site-footer-2 .container .footer-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site-footer-2 .container .footer-bottom .footer-lorya img {
  width: 100%;
}
.site-footer-2 .container .footer-bottom .footer-copyright {
  text-align: center;
}
.site-footer-2 .container .footer-bottom .footer-copyright p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 1.75rem; /* 28px */
  line-height: 100%;
  opacity: 50%;
  color: #ffffff;
  margin-top: 25px;
}
@media (max-width: 1600px) {
  .site-footer-2 .container {
    width: 80%;
  }
}
.site-footer-2 {
  /* Ispod 900px: footer-box 2+2 — Sign up & Documentation, GitHub & Contact */
}
@media (max-width: 900px) {
  .site-footer-2 .container .footer-links {
    flex-wrap: wrap;
    gap: 30px 20px;
  }
  .site-footer-2 .container .footer-links .footer-box {
    flex: 0 1 calc(50% - 10px);
  }
}
.site-footer-2 {
  /* Ispod 550px: Sign up sam, Documentation+GitHub, Contact sam */
}
@media (max-width: 550px) {
  .site-footer-2 .container {
    width: 100%;
    box-sizing: border-box;
    padding-left: 25px;
    padding-right: 25px;
  }
  .site-footer-2 .container .footer-logos img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
  }
  .site-footer-2 .container .footer-bottom .footer-copyright p {
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 100%;
  }
  .site-footer-2 .container .footer-links .footer-box {
    flex: 0 1 100%;
  }
  .site-footer-2 .container .footer-links .footer-box h3, .site-footer-2 .container .footer-links .footer-box h4 {
    font-size: 16px;
  }
  .site-footer-2 .container .footer-links .footer-box:nth-child(2),
  .site-footer-2 .container .footer-links .footer-box:nth-child(3) {
    flex: 0 1 calc(50% - 10px);
  }
  .site-footer-2 .container .footer-links {
    /* Contact: UNDP i LORYA.COM jedan pored drugog, gap između */
  }
  .site-footer-2 .container .footer-links .footer-box:nth-child(4) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .site-footer-2 .container .footer-links .footer-box:nth-child(4) h3 {
    width: 100%;
  }
  .site-footer-2 .container .footer-links .footer-box:nth-child(4) .footer-box-links {
    flex: 0 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

.unlock {
  position: relative;
  z-index: 2;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #E8EFEE;
}
.unlock .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.unlock .container .unlock-title,
.unlock .container .hero-separator,
.unlock .container .unlock-description .left-side,
.unlock .container .unlock-description .right-side {
  will-change: transform, opacity;
}
.unlock .container .unlock-title {
  padding: 70px 0 15px 0;
}
.unlock .container .unlock-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: regular;
  font-size: clamp(2rem, 4vw + 1.5rem, 4rem);
  line-height: clamp(2.5rem, 5vw + 2rem, 5.4375rem);
  letter-spacing: -0.05em;
  text-align: center;
  color: #000000;
}
.unlock .container .unlock-title h2 span {
  color: #FE491A;
  font-style: italic;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}
.unlock .container .hero-separator {
  width: 1069px;
  height: 1px;
  background: #FE491A;
  opacity: 1;
}
.unlock .container .unlock-images-curosel {
  width: 100%;
  padding: 0 0 65px 0;
  overflow-x: clip;
  overflow-y: visible;
  cursor: grab;
  touch-action: none; /* mobilni: browser ne hvata touch — JS drag handler prima sve gesture-e za carousel */
  user-select: none;
  -webkit-user-select: none;
}
.unlock .container .unlock-images-curosel:active {
  cursor: grabbing;
}
.unlock .container .unlock-images-curosel .carousel {
  overflow: visible;
  width: max-content;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 50px;
  padding: 0 55px;
  will-change: transform;
}
.unlock .container .unlock-images-curosel .carousel .carousel-item {
  flex: 0 0 auto;
  height: 432px;
  overflow: visible;
}
.unlock .container .unlock-images-curosel .carousel .carousel-item .svg-inject {
  height: 100%;
  display: flex;
  align-items: center;
}
.unlock .container .unlock-images-curosel .carousel .carousel-item .svg-inject svg {
  height: 100%;
  width: auto;
  display: block;
  overflow: visible;
  overflow-y: visible;
}
.unlock .container .unlock-description {
  display: flex;
  flex-direction: row;
  padding-bottom: 50px;
  justify-content: space-between;
  gap: 24px;
  width: min(1055px, 90vw);
  max-width: 1055px;
}
.unlock .container .unlock-description .left-side,
.unlock .container .unlock-description .right-side {
  width: 50%;
}
.unlock .container .unlock-description .left-side p,
.unlock .container .unlock-description .right-side p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
}

/* Below 1000px: animations disabled — remove will-change */
@media (max-width: 999px) {
  .unlock .container .unlock-title,
  .unlock .container .hero-separator,
  .unlock .container .unlock-description .left-side,
  .unlock .container .unlock-description .right-side {
    will-change: auto;
  }
}
/* Ispod 1100px: tekst jedan ispod drugog */
@media (max-width: 1100px) {
  .unlock .container .unlock-description {
    flex-direction: column;
    width: min(90vw, 600px);
    align-items: center;
    text-align: center;
  }
  .unlock .container .unlock-description .left-side,
  .unlock .container .unlock-description .right-side {
    width: 100%;
  }
  .unlock .container .unlock-description .left-side p,
  .unlock .container .unlock-description .right-side p {
    text-align: left;
  }
}
/* Ispod 1069px: separator se prilagođava širini ekrana da ne pravi horizontalni scroll */
@media (max-width: 1069px) {
  .unlock .container .hero-separator {
    width: 100%;
  }
}
/* Below 600px: disable 100vh height */
@media (max-width: 600px) {
  .unlock {
    height: auto;
    min-height: auto;
  }
}
/* Ispod 650px: ukloni padding-bottom */
@media (max-width: 650px) {
  .unlock {
    padding-bottom: 60px;
  }
  .unlock .container .unlock-title {
    padding: 30px 0 30px 0;
  }
  .unlock .container .unlock-images-curosel {
    padding-bottom: 0;
  }
  .unlock .container .unlock-description {
    padding-bottom: 0;
  }
}
/* Ispod 450px: naslov u dva reda, Weight 500, 42px / 44px */
@media (max-width: 450px) {
  .unlock .container .unlock-title h2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 500;
    font-size: 42px;
    line-height: 44px;
  }
  .unlock .container .unlock-title h2 span {
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .unlock .container .unlock-images-curosel {
    padding: 0 0 55px 0;
  }
  .unlock .container .unlock-images-curosel .carousel {
    gap: 24px;
    padding: 0 25px;
  }
  .unlock .container .unlock-images-curosel .carousel .carousel-item {
    height: 260px;
  }
  .unlock .container .unlock-images-curosel .carousel .carousel-item .svg-inject {
    height: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
  }
  .unlock .container .unlock-images-curosel .carousel .carousel-item .svg-inject svg {
    height: 100%;
    max-height: 100%;
    width: auto;
  }
}
.lock {
  background: #FE491A;
  padding: 45px 0 0 0;
  overflow-x: clip;
}
.lock .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 1069px;
}
.lock .container .lock-title h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 3.75rem; /* 60px */
  font-style: italic;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.lock .container .lock-title span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 3.75rem; /* 60px */
  line-height: 100%;
  color: #000000;
  letter-spacing: -0.05em;
}
.lock .container .lock-title .lock-title-left,
.lock .container .lock-title .lock-title-right {
  display: inline-block;
  will-change: transform, opacity;
}
.lock .container .lock-title .lock-title-left {
  font-family: "Lato", sans-serif;
  font-style: italic;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.lock .container .lock-content .lock-image,
.lock .container .lock-content .lock-description {
  will-change: transform, opacity;
}
.lock .container .lock-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0 175px 0;
}
.lock .container .lock-content .lock-image {
  width: 50%;
  padding-right: 30px;
}
.lock .container .lock-content .lock-image .svg-inject,
.lock .container .lock-content .lock-image svg {
  width: 100%;
  height: 100%;
  display: block;
}
.lock .container .lock-content .lock-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lock .container .lock-content .lock-description {
  width: 50%;
}
.lock .container .lock-content .lock-description p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.5rem; /* 24px */
  line-height: 2.0625rem; /* 33px */
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 12px;
}
.lock .lock-humans-holder .lock-human-left,
.lock .lock-humans-holder .lock-human-right {
  will-change: transform, opacity;
}
.lock .lock-humans-holder {
  position: relative;
  height: 50px;
}
.lock .lock-humans-holder .lock-human-left {
  position: absolute;
  left: 50px;
  bottom: 0;
  display: flex;
  align-items: flex-end;
}
.lock .lock-humans-holder .lock-human-left img {
  display: block;
  width: auto;
  max-width: 78%;
  height: 100%;
  object-position: bottom;
}
.lock .lock-humans-holder .lock-human-right {
  position: absolute;
  right: 60px;
  bottom: -1px;
}
.lock .lock-humans-holder .lock-human-right img {
  display: block;
  width: auto;
  max-width: 85%;
  height: 100%;
  object-position: bottom;
}

/* Ispod 1400px: fluid naslov da ne pada u dva reda, slika procentualno manja */
@media (max-width: 1399px) {
  .lock .container {
    width: min(1069px, 90vw);
  }
  .lock .container .lock-title h2, .lock .container .lock-title span,
  .lock .container .lock-title .lock-title-left,
  .lock .container .lock-title .lock-title-right {
    font-size: clamp(2rem, 4vw + 0.25rem, 3.75rem);
    line-height: 100%;
  }
}
/* Ispod 768px: naslov → slika → tekst (kolona), 25px levo/desno kao hero/unlock */
@media (max-width: 768px) {
  .lock .container .lock-content {
    flex-direction: column;
    padding: 40px 0 20px 0;
  }
  .lock .container .lock-content .lock-image {
    width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
  }
  .lock .container .lock-content .lock-description {
    width: 100%;
  }
}
/* Ispod 1100px: sakrij lock-humans-holder */
@media (max-width: 1100px) {
  .lock .lock-humans-holder {
    display: none !important;
  }
}
/* Below 1000px: animations disabled — remove will-change */
@media (max-width: 999px) {
  .lock .container .lock-title .lock-title-left,
  .lock .container .lock-title .lock-title-right,
  .lock .container .lock-content .lock-image,
  .lock .container .lock-content .lock-description {
    will-change: auto;
  }
  .lock .lock-humans-holder .lock-human-left,
  .lock .lock-humans-holder .lock-human-right {
    will-change: auto;
  }
}
/* Ispod 600px: naslov mobilne dimenzije */
@media (max-width: 600px) {
  .lock .container .lock-title h2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .lock .container .lock-title .lock-title-left {
    font-weight: 600;
    font-style: italic;
    font-size: 41px;
    line-height: 46px;
    letter-spacing: -0.01em;
    display: block;
    width: 100%;
  }
  .lock .container .lock-title .lock-title-right {
    font-weight: 500;
    font-style: normal;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -0.07em;
    display: block;
    width: 100%;
  }
}
/* Below 400px: title even smaller for smallest phones */
@media (max-width: 400px) {
  .lock .container .lock-title .lock-title-left {
    font-size: 32px;
    line-height: 36px;
  }
  .lock .container .lock-title .lock-title-right {
    font-size: 32px;
    line-height: 36px;
  }
}
/* Ispod 500px: tekst mobilne dimenzije */
@media (max-width: 500px) {
  .lock .container .lock-content .lock-description p {
    font-weight: 400;
    font-style: normal;
    font-size: 1rem; /* 16px */
    line-height: 1.375rem; /* 22px */
  }
}
.how-lorya-works {
  padding: 50px 0 0 0;
  justify-content: center;
  align-items: center;
  background: #E8EFEE;
  overflow-x: clip;
}
.how-lorya-works .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.how-lorya-works .container .how-lorya-works-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 4rem; /* 64px */
  line-height: 100%;
  text-align: center;
  letter-spacing: -0.03em;
}
.how-lorya-works .container .how-lorya-works-title h2 span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 4rem; /* 64px */
  line-height: 100%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #FE491A;
}
.how-lorya-works .container .hero-separator {
  width: 800px;
  height: 1px;
  background: #FE491A;
  opacity: 1;
  margin-top: 15px;
}
.how-lorya-works .container .how-lorya-works-content {
  padding: 70px 0 80px 0;
  width: 1166px;
  max-width: 100%;
  /* Ispod 1315px: SVG se smanjuje na manjim rezolucijama */
}
@media (max-width: 1315px) {
  .how-lorya-works .container .how-lorya-works-content {
    width: min(1166px, 90vw - 40px);
  }
}
.how-lorya-works .container .how-lorya-works-content {
  /* Below 1200px: further reduction so person doesn't overlap */
}
@media (max-width: 1200px) {
  .how-lorya-works .container .how-lorya-works-content {
    width: min(1166px, 88vw - 50px);
  }
}
.how-lorya-works .container .how-lorya-works-content {
  /* Ispod 1100px */
}
@media (max-width: 1100px) {
  .how-lorya-works .container .how-lorya-works-content {
    width: min(1166px, 85vw - 60px);
  }
}
.how-lorya-works .container .how-lorya-works-content {
  /* Below 900px: expand — only 25px left/right */
}
@media (max-width: 900px) {
  .how-lorya-works .container .how-lorya-works-content {
    width: calc(100vw - 50px);
  }
}
.how-lorya-works .container .how-lorya-works-content {
  /* Ispod 650px: mobilni SVG + padding i width */
}
@media (max-width: 650px) {
  .how-lorya-works .container .how-lorya-works-content {
    padding: 70px 0 130px 0;
  }
  .how-lorya-works .container .how-lorya-works-content .how-works-desktop {
    display: none !important;
  }
  .how-lorya-works .container .how-lorya-works-content .how-works-mobile {
    display: flex !important;
  }
}
.how-lorya-works .container .how-lorya-works-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.how-lorya-works .container .how-lorya-works-content {
  /* Mobilni SVG sakriven iznad 650px */
}
@media (min-width: 651px) {
  .how-lorya-works .container .how-lorya-works-content .how-works-mobile {
    display: none !important;
  }
}
.how-lorya-works .container .how-lorya-works-content .svg-inject {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-lorya-works .container .how-lorya-works-content .svg-inject svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.how-lorya-works .container {
  /* Ispod 1000px: naslov se procentualno smanjuje */
}
@media (max-width: 999px) {
  .how-lorya-works .container .how-lorya-works-title h2,
  .how-lorya-works .container .how-lorya-works-title h2 span {
    font-size: clamp(2rem, 5vw + 0.5rem, 4rem);
    line-height: 100%;
  }
}
.how-lorya-works .container {
  /* Ispod 650px: naslov mobilne dimenzije, u dva reda */
}
@media (max-width: 650px) {
  .how-lorya-works .container .how-lorya-works-title h2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-style: normal;
    font-size: 42px;
    line-height: 44px;
  }
  .how-lorya-works .container .how-lorya-works-title h2 span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 42px;
    line-height: 44px;
  }
}
.how-lorya-works .container .how-lorya-works-image {
  position: relative;
  height: 20px;
  width: 100%;
  /* Below 1000px: hide person and holder */
}
@media (max-width: 999px) {
  .how-lorya-works .container .how-lorya-works-image {
    display: none !important;
  }
}
.how-lorya-works .container .how-lorya-works-image .how-lorya-works-image-right {
  position: absolute;
  right: 30px;
  bottom: -1px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1920px) {
  .how-lorya-works .container .how-lorya-works-image .how-lorya-works-image-right {
    right: 260px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .how-lorya-works .container .how-lorya-works-image .how-lorya-works-image-right {
    right: calc(30px + 230px * (100vw - 1440px) / 480px);
  }
}
@media (max-width: 1376px) {
  .how-lorya-works .container .how-lorya-works-image .how-lorya-works-image-right {
    right: 10px;
  }
}
@media (max-width: 1335px) {
  .how-lorya-works .container .how-lorya-works-image .how-lorya-works-image-right {
    right: 0;
  }
}
.how-lorya-works .container .how-lorya-works-image .how-lorya-works-image-right img {
  display: block;
  width: auto;
  max-width: 75%;
  height: 100%;
  object-position: bottom;
}

@media (max-width: 650px) {
  .how-lorya-works {
    padding-top: 30px;
  }
}
.built {
  background: #E8EFEE;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: clip;
}
.built .container {
  display: flex;
  width: 1350px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #FE491A;
  border-radius: 20px;
}
.built .container .built-title {
  will-change: transform, opacity;
  padding: 50px 0 80px 0;
}
.built .container .built-title h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 4rem; /* 64px */
  line-height: 87px;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #ffffff;
}
.built .container .built-title .built-title-first {
  font-family: "Lato", sans-serif;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.built .container .built-title .built-title-second,
.built .container .built-title span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem; /* 64px */
  line-height: 87px;
  color: #000000;
  letter-spacing: -0.05em;
}
.built .container .built-content {
  display: flex;
  justify-content: space-between;
}
.built .container .built-content .built-content-left {
  will-change: transform, opacity;
  width: 35%;
  margin-left: 35px;
}
.built .container .built-content .built-content-left p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 1.5rem; /* 24px */
  line-height: 2.0625rem; /* 33px */
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  padding-right: 30px;
}
.built .container .built-content .built-content-left p:last-child {
  margin-bottom: 0;
}
.built .container .built-content .built-content-right-imgs {
  width: 65%;
  margin-right: 35px;
}
.built .container .built-content .built-content-right-imgs .built-map-mobile {
  display: none;
}
.built .container .built-content .built-content-right-imgs .built-map-desktop {
  width: 100%;
}
.built .container .built-content .built-content-right-imgs .world-map-inject {
  will-change: transform, opacity;
  width: 100%;
  display: block;
}
.built .container .built-content .built-content-right-imgs .world-map-inject svg {
  width: 100%;
  height: auto;
  display: block;
}
.built .container .built-content .built-content-right-imgs .world-map-inject [id^=Line],
.built .container .built-content .built-content-right-imgs .world-map-inject line {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}
.built .container .built-content .built-content-right-imgs .world-map-inject [id^=Mask-group-] {
  cursor: pointer;
  transition: none;
}
.built .container .built-content .built-content-right-imgs .world-map-inject [id^=Mask-group-] rect[id^="Rectangle 6596"] {
  transition: fill 0.2s ease;
}
.built .container .built-content .built-content-right-imgs .world-map-inject #Mask-group-1:hover [id="Rectangle 6596"] {
  fill: #292929;
}
.built .container .built-content .built-content-right-imgs .world-map-inject #Mask-group-2:hover [id="Rectangle 6596_2"] {
  fill: #292929;
}
.built .container .built-content .built-content-right-imgs .world-map-inject #Mask-group-3:hover [id="Rectangle 6596_3"] {
  fill: #292929;
}
.built .container .built-content .built-content-right-imgs .world-map-inject #Mask-group-4:hover [id="Rectangle 6596_4"] {
  fill: #292929;
}
.built .container .built-content .built-content-right-imgs .world-map-inject #Mask-group-5:hover [id="Rectangle 6596_5"] {
  fill: #292929;
}
.built .container .built-content .built-content-right-imgs .human-holder {
  position: relative;
  height: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 5px;
  margin-top: 140px;
}
.built .container .built-content .built-content-right-imgs .human-holder img {
  will-change: transform, opacity;
}

/* Ispod 700px: naslov mobilne dimenzije + tekst 16px/22px + zameni world-map sa world-map-mob.svg */
@media (max-width: 700px) {
  .built .container {
    border-radius: 0;
  }
  .built .container .built-title {
    padding-bottom: 40px;
  }
  .built .container .built-title .built-title-first {
    font-weight: 600;
    font-size: 41px;
    line-height: 46px;
  }
  .built .container .built-title .built-title-second {
    font-weight: 500;
    font-style: normal;
    font-size: 40px;
    line-height: 46px;
  }
  .built .container .built-content .built-content-left p {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
  }
  .built .container .built-content .built-content-right-imgs .built-map-desktop {
    display: none !important;
  }
  .built .container .built-content .built-content-right-imgs .built-map-mobile {
    display: block !important;
    width: 100%;
  }
  .built .container .built-content .built-content-right-imgs .built-map-mobile svg {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* Ispod 1000px: slika ispod naslova, tekst ispod slike, sve centrirano */
@media (max-width: 1000px) {
  .built .container .built-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .built .container .built-content .built-content-right-imgs {
    order: 1;
    width: 90%;
    margin-right: 0;
    margin-left: 0;
  }
  .built .container .built-content .built-content-left {
    order: 2;
    width: 90%;
    margin-left: 0;
    padding-right: 0;
    padding-bottom: 40px;
    text-align: center;
  }
  .built .container .built-content .built-content-left p {
    text-align: left;
  }
}
/* Ispod 1220px: span ("Adaptable for the world.") padne ispod "Built for people." */
@media (max-width: 1220px) {
  .container {
    width: min(1350px, 100%);
  }
  .container .built-title h2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .container .built-title h2 .built-title-first,
  .container .built-title h2 .built-title-second {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.free {
  background: #E8EFEE;
  padding: 50px 0 0 0;
  overflow: hidden;
}
.free .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(1275px, 100%);
  margin: 0 auto;
}
.free .container .free-title {
  will-change: transform, opacity;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.free .container .free-title .free-br-mobile {
  display: none;
}
.free .container .free-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 4rem; /* 64px */
  line-height: 68px;
  width: 835px;
  letter-spacing: -0.06em;
  text-align: center;
}
.free .container .free-title span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 4rem; /* 64px */
  line-height: 68px;
  font-style: italic;
  color: #FE491A;
  letter-spacing: -0.05em;
}
.free .container .hero-separator {
  width: 760px;
  height: 1px;
  background: #FE491A;
  opacity: 1;
  margin: 16px 0 60px 0;
}
.free .container .free-content {
  will-change: transform, opacity;
  width: 50%;
  margin: 0 auto;
  padding-top: 40px;
}
.free .container .free-content P {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-style: light;
  font-size: 1.5rem; /* 24px */
  line-height: 2.1875rem; /* 35px */
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
}
.free .container .free-image-mobile {
  display: none;
  width: 400px;
}
.free .container .free-image-mobile img {
  width: 100%;
  height: auto;
  display: block;
}
.free .container .hero-button {
  will-change: transform, opacity;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 70px;
  margin-bottom: 192px;
}
.free .container .hero-button button {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-style: regular;
  font-size: 1.25rem; /* 20px */
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  height: 47px;
  border-radius: 10px;
  border: 1px solid #FE491A;
  padding: 13px 25px;
  cursor: pointer;
  background: #E8EFEE;
}
.free .container .free-image-holder {
  display: flex;
  justify-content: space-between;
  height: 10px;
  width: 100%;
  position: relative;
}
.free .container .free-image-holder .img-holder-left {
  position: absolute;
  bottom: 0;
}
.free .container .free-image-holder .img-holder-right {
  position: absolute;
  right: 0;
  bottom: 45px;
}
.free .container .free-image-holder img {
  bottom: 0;
  will-change: transform, opacity;
}

@media (max-width: 1280px) {
  .container {
    width: 98%;
  }
}
@media (max-width: 1200px) {
  .free-image-holder .img-holder-left img {
    transform: scale(0.9);
    transform-origin: left bottom;
  }
  .free-image-holder .img-holder-right img {
    transform: scale(0.65);
    transform-origin: right bottom;
  }
}
@media (max-width: 1000px) {
  .free-image-holder .img-holder-left img {
    transform: scale(0.8);
    transform-origin: left bottom;
  }
  .free-image-holder .img-holder-right img {
    transform: scale(0.5);
    transform-origin: right bottom;
  }
}
@media (max-width: 880px) {
  .free .container .free-title h2, .free .container .free-title span {
    font-size: 3.2rem; /* 20% manje od 4rem */
    line-height: 1.2;
  }
  .free .container .free-title h2 {
    width: 100%;
  }
  .free .container .free-image-mobile {
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .free .container .free-image-holder .img-holder-left {
    display: none;
  }
  .free .container .free-image-holder .img-holder-right {
    display: none;
  }
}
/* Isto kao hero: 2+1 dugmići od 768px */
@media (max-width: 768px) {
  .free .container .hero-button {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding-right: 25px;
    padding-left: 25px;
  }
  .free .container .hero-button button {
    flex: 0 1 calc(50% - 6px);
    min-width: 140px;
  }
}
@media (max-width: 650px) {
  .free .container .free-title {
    width: 90%;
  }
  .free .container .free-title .free-br-mobile {
    display: block;
  }
  .free .container .free-title h2, .free .container .free-title span {
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -0.06em;
  }
  .free .container .free-title h2 {
    width: 100%;
  }
  .free .container .free-content {
    width: 90%;
  }
  .free .container .free-content p {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
  }
  .free .container .hero-button {
    margin-top: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 530px) {
  .free .container .free-image-mobile {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    box-sizing: border-box;
  }
  .free .container .free-image-mobile img {
    width: 100%;
  }
  .free .container .hero-button button {
    font-weight: 400;
    font-style: normal;
    font-size: 15.4px;
    line-height: 100%;
  }
}
@media (max-width: 430px) {
  .free .container .hero-button button:nth-child(3) {
    flex: 0 1 calc(60% - 6px);
    min-width: 60%;
  }
}
@media (max-width: 364px) {
  .free .container .hero-button button {
    padding: 10px 12px;
    font-size: 14px;
  }
}
.what-is-lorya {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E8EFEE;
}
.what-is-lorya .container {
  display: flex;
  flex-direction: column;
  width: min(1070px, 100%);
  margin: 0 auto;
}
.what-is-lorya .container .what-is-lorya-title {
  margin-top: 95px;
}
.what-is-lorya .container .what-is-lorya-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem; /* 64px */
  line-height: 68px;
  letter-spacing: -0.05em;
  text-align: center;
}
.what-is-lorya .container .what-is-lorya-title h2 span {
  color: #FE491A;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 4rem; /* 64px */
  line-height: 87px;
  letter-spacing: -0.05em;
  text-align: center;
}
.what-is-lorya .container .hero-separator {
  width: 100%;
  height: 1px;
  background: #FE491A;
  opacity: 1;
  margin-top: 15px;
}
.what-is-lorya .container .what-is-lorya-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.what-is-lorya .container .what-is-lorya-content .up-content {
  margin-top: 60px;
  margin-bottom: 75px;
}
.what-is-lorya .container .what-is-lorya-content .up-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.what-is-lorya .container .what-is-lorya-content .down-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #292929;
  margin-bottom: 105px;
}
.what-is-lorya .container .what-is-lorya-content .down-content .what-is-lorya-content-left p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem; /* 18px */
  line-height: 33px;
  letter-spacing: 0;
  margin-bottom: 20px;
  padding-right: 35px;
}
.what-is-lorya .container .what-is-lorya-content .down-content .what-is-lorya-content-right p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem; /* 18px */
  line-height: 33px;
  letter-spacing: 0;
  margin-bottom: 20px;
  padding-right: 5px;
}

@media (max-width: 1100px) {
  .what-is-lorya .container {
    width: 100%;
    box-sizing: border-box;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 900px) {
  .what-is-lorya .container .what-is-lorya-title {
    margin-top: 40px;
  }
  .what-is-lorya .container .what-is-lorya-content .down-content {
    margin-bottom: 50px;
  }
}
@media (max-width: 650px) {
  .what-is-lorya .container .what-is-lorya-title h2 {
    font-weight: 500;
    font-style: normal;
    font-size: 40px;
    line-height: 46px;
  }
  .what-is-lorya .container .what-is-lorya-title h2 span {
    font-weight: 600;
    font-style: italic;
    font-size: 42px;
    line-height: 46px;
  }
  .what-is-lorya .container .what-is-lorya-content .up-content {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .what-is-lorya .container .what-is-lorya-content .down-content {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
@media (max-width: 550px) {
  .what-is-lorya .container .what-is-lorya-content .down-content .what-is-lorya-content-left p,
  .what-is-lorya .container .what-is-lorya-content .down-content .what-is-lorya-content-right p {
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
  }
}
.enables {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}
.enables .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1224px;
}
.enables .container .enables-title {
  margin-top: 60px;
}
.enables .container .enables-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 87px;
  letter-spacing: -0.05em;
}
.enables .container .enables-title h2 .enables-br-mobile {
  display: none;
}
.enables .container .enables-title h2 span {
  font-family: sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 64px;
  line-height: 87px;
  letter-spacing: -0.05em;
  color: #FE491A;
}
.enables .container .enables-subtitle h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 1.5rem; /* 24px */
  line-height: 2.1875rem; /* 35px */
  letter-spacing: 0%;
  margin-top: 20px;
}
.enables .container .enables-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 60px;
  width: 100%;
}
.enables .container .enables-content .enables-images .carousel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.enables .container .enables-content .enables-dots-and-text {
  width: 100%;
}
.enables .container .enables-content .enables-dots {
  margin-top: 75px;
  position: relative;
  width: 100%;
}
.enables .container .enables-content .enables-dots .enables-dots-svg {
  display: flex;
  justify-content: center;
  align-items: center;
}
.enables .container .enables-content .enables-vline {
  display: none;
}
.enables .container .enables-content .enables-dot-text {
  margin-top: 32px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  column-gap: 35px;
  margin-bottom: 50px;
}
.enables .container .enables-content .enables-dot-text p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: regular;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  width: 250px;
}

@media (max-width: 1150px) {
  .enables .container .enables-content .enables-images {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .enables .container .enables-content .enables-images::-webkit-scrollbar {
    display: none;
  }
  .enables .container .enables-content .enables-images .carousel {
    width: max-content;
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 0;
  }
  .enables .container .enables-content .enables-images .carousel .carousel-item {
    flex: 0 0 auto;
  }
}
@media (max-width: 1250px) {
  .enables .container {
    width: min(1224px, 100%);
    box-sizing: border-box;
  }
  .enables .container .enables-subtitle {
    padding-left: 25px;
    padding-right: 25px;
  }
  .enables .container .enables-content .enables-dots {
    margin-top: 50px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .enables .container .enables-content .enables-dots .enables-dots-svg img {
    max-width: 90%;
    height: auto;
  }
  .enables .container .enables-content .enables-dot-text {
    margin-top: 24px;
    column-gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 25px;
    padding-right: 25px;
  }
  .enables .container .enables-content .enables-dot-text p {
    flex: 0 1 calc(25% - 12px);
    min-width: 180px;
    max-width: 250px;
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 830px) {
  .enables .container .enables-content .enables-dots-and-text {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .enables .container .enables-content .enables-dots {
    display: none;
  }
  .enables .container .enables-content .enables-vline {
    display: block;
    flex-shrink: 0;
    margin-top: 10px;
  }
  .enables .container .enables-content .enables-vline img {
    height: auto;
    max-height: 100%;
  }
  .enables .container .enables-content .enables-dot-text {
    flex: 1;
    flex-direction: column;
    margin-top: 0;
    row-gap: 45px;
  }
  .enables .container .enables-content .enables-dot-text p {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}
@media (max-width: 720px) {
  .enables .container .enables-content .enables-dot-text {
    row-gap: 40px;
  }
}
@media (max-width: 670px) {
  .enables .container .enables-title {
    padding-left: 25px;
    padding-right: 25px;
  }
  .enables .container .enables-title h2 {
    font-size: clamp(2rem, 8vw, 52px);
    line-height: 1.15;
  }
  .enables .container .enables-title h2 span {
    font-size: clamp(2rem, 8vw, 52px);
    line-height: 44px;
  }
  .enables .container .enables-subtitle {
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
  }
  .enables .container .enables-subtitle h3 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.4;
  }
  .enables .container .enables-content .enables-dot-text {
    row-gap: 30px;
  }
}
@media (max-width: 550px) {
  .enables .container .enables-title {
    margin-top: 30px;
  }
  .enables .container .enables-title h2 {
    font-style: normal;
    font-size: 42px;
    line-height: 44px;
  }
  .enables .container .enables-title h2 span {
    font-style: normal;
    font-size: 42px;
    line-height: 44px;
  }
}
@media (max-width: 565px) {
  .enables .container .enables-content .enables-dots-and-text {
    margin-bottom: 40px;
    margin-top: 20px;
  }
  .enables .container .enables-content .enables-dots-and-text .enables-dot-text {
    row-gap: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 445px) {
  .enables .container .enables-content .enables-dot-text {
    row-gap: 20px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 445px) {
  .enables .container .enables-content .enables-dots-and-text {
    gap: 15px;
  }
  .enables .container .enables-content .enables-dots-and-text .enables-vline {
    margin-top: 15px;
  }
  .enables .container .enables-content .enables-dots-and-text .enables-dot-text {
    row-gap: 15px;
  }
}
@media (max-width: 430px) {
  .enables .container .enables-title h2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .enables .container .enables-title h2 .enables-br-mobile {
    display: block;
    width: 100%;
  }
}
.how-lorya-works-about {
  padding: 50px 0 0 0;
  justify-content: center;
  align-items: center;
  background: #E8EFEE;
  overflow-x: clip;
}
.how-lorya-works-about .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.how-lorya-works-about .container .how-lorya-works-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 4rem; /* 64px */
  line-height: 100%;
  text-align: center;
  letter-spacing: -0.03em;
}
.how-lorya-works-about .container .how-lorya-works-title h2 span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 4rem; /* 64px */
  line-height: 100%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #FE491A;
}
.how-lorya-works-about .container .how-lorya-works-subtitle h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 1.5rem; /* 24px */
  line-height: 2.1875rem; /* 35px */
  letter-spacing: 0%;
  margin-top: 20px;
  text-align: center;
}
.how-lorya-works-about .container .how-lorya-works-content {
  padding: 70px 0 80px 0;
  width: 1166px;
  max-width: 100%;
}
@media (max-width: 1315px) {
  .how-lorya-works-about .container .how-lorya-works-content {
    width: min(1166px, 90vw - 40px);
  }
}
@media (max-width: 1200px) {
  .how-lorya-works-about .container .how-lorya-works-content {
    width: min(1166px, 88vw - 50px);
  }
}
@media (max-width: 1100px) {
  .how-lorya-works-about .container .how-lorya-works-content {
    width: min(1166px, 85vw - 60px);
  }
}
@media (max-width: 900px) {
  .how-lorya-works-about .container .how-lorya-works-content {
    width: calc(100vw - 50px);
  }
}
@media (max-width: 650px) {
  .how-lorya-works-about .container .how-lorya-works-content {
    padding: 40px 0 60px 0;
  }
  .how-lorya-works-about .container .how-lorya-works-content .how-works-desktop {
    display: none !important;
  }
  .how-lorya-works-about .container .how-lorya-works-content .how-works-mobile {
    display: flex !important;
  }
}
.how-lorya-works-about .container .how-lorya-works-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 651px) {
  .how-lorya-works-about .container .how-lorya-works-content .how-works-mobile {
    display: none !important;
  }
}
.how-lorya-works-about .container .how-lorya-works-content .svg-inject {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-lorya-works-about .container .how-lorya-works-content .svg-inject svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.how-lorya-works-about .container .how-lorya-works-desription {
  padding: 0 25px 60px 25px;
  max-width: 900px;
  text-align: center;
}
.how-lorya-works-about .container .how-lorya-works-desription p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.75rem;
  letter-spacing: 0;
  color: #292929;
}
@media (max-width: 999px) {
  .how-lorya-works-about .container .how-lorya-works-title h2,
  .how-lorya-works-about .container .how-lorya-works-title h2 span {
    font-size: clamp(2rem, 5vw + 0.5rem, 4rem);
    line-height: 100%;
  }
}
@media (max-width: 650px) {
  .how-lorya-works-about .container .how-lorya-works-title h2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-style: normal;
    font-size: 42px;
    line-height: 44px;
  }
  .how-lorya-works-about .container .how-lorya-works-title h2 span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 42px;
    line-height: 44px;
  }
  .how-lorya-works-about .container .how-lorya-works-subtitle {
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
  }
  .how-lorya-works-about .container .how-lorya-works-subtitle h3 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.4;
  }
}

@media (max-width: 650px) {
  .how-lorya-works-about {
    padding-top: 30px;
  }
}
@media (max-width: 460px) {
  .how-lorya-works-about .container .how-lorya-works-desription {
    padding-bottom: 40px;
  }
}
.how-this-project-fits-within {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E8EFEE;
}
.how-this-project-fits-within .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  width: 95%;
}
.how-this-project-fits-within .container .container-inner {
  width: min(1063px, 80%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title {
  max-width: 1050px;
  margin-top: 60px;
}
.how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 4rem; /* 64px */
  line-height: 68.23px;
  text-align: center;
}
.how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title h2 .project-br-mobile {
  display: none;
}
.how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title h2 {
  letter-spacing: -0.03em;
}
.how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title span {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 4rem; /* 64px */
  line-height: 68.23px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #FE491A;
}
.how-this-project-fits-within .container .container-inner .how-this-project-fits-within-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.how-this-project-fits-within .container .container-inner .how-this-project-fits-within-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 100px;
}
.how-this-project-fits-within .container .container-inner .how-this-project-fits-within-content .how-this-project-fits-within-content-left,
.how-this-project-fits-within .container .container-inner .how-this-project-fits-within-content .how-this-project-fits-within-content-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.how-this-project-fits-within .container .container-inner .how-this-project-fits-within-content .how-this-project-fits-within-content-left p,
.how-this-project-fits-within .container .container-inner .how-this-project-fits-within-content .how-this-project-fits-within-content-right p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
}

@media (max-width: 1100px) {
  .how-this-project-fits-within .container .container-inner {
    width: 95%;
  }
}
@media (max-width: 922px) {
  .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title {
    max-width: 100%;
  }
  .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title h2, .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title span {
    font-size: clamp(1.75rem, 5vw + 0.5rem, 4rem);
    line-height: 1.2;
  }
}
@media (max-width: 800px) {
  .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title {
    margin-top: 40px;
  }
  .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-content {
    gap: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 650px) {
  .how-this-project-fits-within .container {
    width: 100%;
    border-radius: 0;
  }
  .how-this-project-fits-within .container .container-inner {
    width: 100%;
    box-sizing: border-box;
    padding-left: 25px;
    padding-right: 25px;
  }
  .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-content {
    flex-direction: column;
    gap: 24px;
  }
  .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-content .how-this-project-fits-within-content-left,
  .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-content .how-this-project-fits-within-content-right {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title {
    margin-bottom: 20px;
  }
  .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title h2, .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title h2 span {
    font-weight: 400;
    font-style: normal;
    font-size: 41px;
    line-height: 46px;
  }
  .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title h2 .project-br-mobile {
    display: block;
    width: 100%;
  }
}
@media (max-width: 397px) {
  .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title h2, .how-this-project-fits-within .container .container-inner .how-this-project-fits-within-title h2 span {
    font-size: 34px;
    line-height: 40px;
  }
}
.affiliations {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E8EFEE;
}
.affiliations .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(1063px, 80%);
}
.affiliations .container .affiliations-title {
  margin-top: 40px;
}
.affiliations .container .affiliations-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  line-height: 1.47;
  letter-spacing: -0.05em;
  text-align: center;
}
.affiliations .container .affiliations-subtitle h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 2rem;
  line-height: 2.8125rem;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}
.affiliations .container .affiliations-third {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  margin-top: 15px;
  margin-bottom: 35px;
}
.affiliations .container .affiliations-third .affiliations-third-item {
  flex: 1 1 0;
  text-align: center;
}
.affiliations .container .affiliations-third .affiliations-third-item p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.625rem;
  letter-spacing: -0.01em;
}
.affiliations .container .affiliations-third .affiliations-third-item:nth-child(1) {
  padding-right: 55px;
}
.affiliations .container .affiliations-third .affiliations-third-item:nth-child(2) {
  padding-left: 55px;
  padding-right: 55px;
  border-left: 1px solid #FE491A;
  border-right: 1px solid #FE491A;
}
.affiliations .container .affiliations-third .affiliations-third-item:nth-child(3) {
  padding-left: 55px;
}
.affiliations .container .affiliations-images {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}
.affiliations .container .affiliations-images .left-img,
.affiliations .container .affiliations-images .right-img {
  flex: 1 1 0;
  height: 327px;
  border-radius: 20px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.affiliations .container .affiliations-text {
  margin-top: 35px;
  margin-bottom: 45px;
  text-align: center;
  width: min(631px, 100%);
}
.affiliations .container .affiliations-text p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.3125rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

@media (max-width: 1100px) {
  .affiliations .container .affiliations-third .affiliations-third-item:nth-child(1) {
    padding-right: 40px;
  }
  .affiliations .container .affiliations-third .affiliations-third-item:nth-child(2) {
    padding-left: 40px;
    padding-right: 40px;
  }
  .affiliations .container .affiliations-third .affiliations-third-item:nth-child(3) {
    padding-left: 40px;
  }
}
@media (max-width: 950px) {
  .affiliations .container {
    width: min(1063px, 90%);
  }
}
@media (max-width: 750px) {
  .affiliations .container .affiliations-third {
    flex-direction: column;
    align-items: center;
  }
  .affiliations .container .affiliations-third .affiliations-third-item {
    width: 100%;
    padding: 30px 0 0 0 !important;
    border-left: none !important;
    border-right: none !important;
    position: relative;
  }
  .affiliations .container .affiliations-third .affiliations-third-item::before {
    content: "";
    display: block;
    width: 75px;
    height: 1px;
    background-color: #FE491A;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 550px) {
  .affiliations .container .affiliations-title h2 {
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    line-height: 44px;
  }
  .affiliations .container .affiliations-subtitle h3 {
    font-weight: 400;
    font-style: normal;
    font-size: 21px;
    line-height: 22px;
  }
  .affiliations .container .affiliations-images .left-img,
  .affiliations .container .affiliations-images .right-img {
    height: 270px;
  }
  .affiliations .container .affiliations-text p {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
  }
  .affiliations .container .affiliations-third {
    margin-top: 0;
  }
  .affiliations .container .affiliations-third .affiliations-third-item::before {
    margin: 0 auto 15px auto;
  }
  .affiliations .container .affiliations-third .affiliations-third-item p {
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 12px;
  }
}
.explore {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E8EFEE;
  padding: 45px 0 130px 0;
}
.explore .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(1063px, 85%);
}
.explore .container .explore-title {
  margin-bottom: 50px;
}
.explore .container .explore-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  line-height: 1.47;
  letter-spacing: -0.05em;
  text-align: center;
  color: #292929;
}
.explore .container .explore-title h2 .explore-title-highlight {
  font-family: "Lato", sans-serif;
  font-style: italic;
  color: #FE491A;
  letter-spacing: -0.03em;
}
.explore .container .explore-content {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
}
.explore .container .explore-content .explore-content-item {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 51px 30px 51px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-height: 416px;
}
.explore .container .explore-content .explore-content-item p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #292929;
  margin-bottom: 40px;
}
.explore .container .explore-content .explore-content-item .explore-btn {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: normal;
  color: #292929;
  text-decoration: none;
  border: 1px solid #FE491A;
  border-radius: 10px;
  padding: 12px 24px;
  transition: background 0.2s ease, color 0.2s ease;
}
.explore .container .explore-content .explore-content-item .explore-btn:hover {
  background: #FE491A;
  color: #ffffff;
}

@media (max-width: 1050px) {
  .explore .container .explore-content .explore-content-item {
    padding-left: 35px;
    padding-right: 35px;
    min-height: 350px;
  }
  .explore .container .explore-content .explore-content-item p {
    font-size: 1.3rem;
  }
}
@media (max-width: 850px) {
  .explore {
    padding: 30px 0 100px 0;
  }
  .explore .container .explore-title h2 {
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -0.06em;
  }
  .explore .container .explore-content {
    flex-direction: column;
  }
  .explore .container .explore-content .explore-content-item {
    min-height: 232px;
  }
}
/* global reset */
html {
  font-size: 16px; /* Base font size - 1rem = 16px */
}

html, body, h1, h2, h3, h4, h5, h6, p, a, button, input, textarea, select, option, label, span, div, section, article, main, footer, header, nav {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Spreči horizontalni scroll ako neki blok malo “iskače” u širinu */
html,
body {
  overflow-x: hidden;
}

.container {
  display: flex;
}

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