@font-face {
  font-family: Unicons;
  src: url('../fonts/unicons-line.woff2') format("woff2"), url('../fonts/unicons-line.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Space Grotesk;
  src: url('../fonts/SpaceGrotesk-SemiBold.woff2') format("woff2"), url('../fonts/SpaceGrotesk-SemiBold.woff') format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Space Grotesk;
  src: url('../fonts/SpaceGrotesk-Bold.woff2') format("woff2"), url('../fonts/SpaceGrotesk-Bold.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Space Grotesk;
  src: url('../fonts/SpaceGrotesk-Light.woff2') format("woff2"), url('../fonts/SpaceGrotesk-Light.woff') format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Space Grotesk;
  src: url('../fonts/SpaceGrotesk-Medium.woff2') format("woff2"), url('../fonts/SpaceGrotesk-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Space Grotesk;
  src: url('../fonts/SpaceGrotesk-Regular.woff2') format("woff2"), url('../fonts/SpaceGrotesk-Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: MATERIAL ICONS;
  src: url('../fonts/MaterialIconsRound-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --dark: #191919;
  --primary: #605dba;
  --body: #60697b;
  --border: #ebedf3;
  --primary-soft: #f0f0f8;
  --secondary: #aab0bc;
  --white: white;
  --blue: #3f78e0;
  --primary-pale: #e6e5f4;
  --light: #fcfcfd;
  --yellow: #fcc032;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

h1 {
  color: var(--dark);
  letter-spacing: -.01rem;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
}

h2 {
  color: var(--dark);
  letter-spacing: -.01rem;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
}

h3 {
  color: var(--dark);
  letter-spacing: -.01rem;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  color: var(--dark);
  letter-spacing: -.01rem;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
}

h5 {
  color: var(--dark);
  letter-spacing: -.01rem;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

h6 {
  color: var(--dark);
  letter-spacing: -.01rem;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

p {
  margin-bottom: 25px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--primary);
  border-bottom-color: #ccf2df;
}

ul {
  margin-top: 0;
  margin-bottom: 25px;
}

ol {
  margin-top: 0;
  margin-bottom: 25px;
  padding-left: 40px;
}

li {
  color: var(--body);
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 1px #000;
  margin-bottom: 25px;
  padding: 0;
  font-size: 17px;
  line-height: 1.7;
}

figure {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 0;
}

figcaption {
  color: #b8b9b9;
  margin-top: 15px;
  font-size: 16px;
}

.body {
  color: var(--body);
  font-family: Space Grotesk, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

.section {
  overflow: hidden;
}

.container {
  z-index: 2;
  width: 100%;
  max-width: 1290px;
  height: 100%;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  transition: background-color .2s, color .2s;
  position: relative;
}

.sg-section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--border);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 150px;
  display: grid;
}

.sg-block {
  margin-bottom: 40px;
  display: block;
}

.sg-button-block {
  margin-right: 60px;
  display: inline-block;
}

.sg-color-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.sg-color-block {
  height: 80px;
  margin-bottom: 10px;
  display: block;
}

.sg-margin-block {
  background-color: var(--primary-soft);
  width: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.utility-page-form {
  grid-row-gap: 30px;
  flex-direction: column;
  align-self: center;
  align-items: flex-start;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
}

.margin-bottom-none {
  margin-bottom: 0;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-45 {
  margin-bottom: 45px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-55 {
  margin-bottom: 55px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-65 {
  margin-bottom: 65px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-bottom-75 {
  margin-bottom: 75px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.background-primary {
  background-color: var(--primary);
}

.body-color {
  color: var(--body);
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-white, .link-white {
  color: var(--white);
}

.text-emphasize {
  font-family: IBM Plex Serif, sans-serif;
  font-style: italic;
}

.text-gradient {
  background-image: linear-gradient(100deg, var(--primary) 20%, var(--blue));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.text-gradient.text-emphasize {
  padding-left: 2px;
  padding-right: 2px;
}

.display-1 {
  letter-spacing: -.01rem;
  flex: none;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.15;
}

.display-1.margin-bottom-20 {
  margin-bottom: 20px;
}

.display-2 {
  letter-spacing: -.01rem;
  margin-bottom: 15px;
  font-size: 44px;
  line-height: 1.2;
}

.display-2.margin-bottom-none {
  margin-bottom: 0;
}

.display-2.margin-bottom-25 {
  margin-bottom: 25px;
}

.display-2.margin-bottom-30 {
  margin-bottom: 30px;
}

.display-3 {
  letter-spacing: -.01rem;
  margin-bottom: 15px;
  font-size: 36px;
  line-height: 1.25;
}

.paragraph-large {
  margin-bottom: 35px;
  font-size: 25px;
  line-height: 1.5;
}

.label {
  letter-spacing: .02rem;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.label.text-secondary {
  color: #191919;
  text-transform: none;
  text-transform: none;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
}

.unicon {
  font-family: Unicons, sans-serif;
  line-height: 1;
}

.material-icon {
  font-family: Material Icons, sans-serif;
  line-height: 1;
}

.button {
  background-color: var(--dark);
  color: var(--white);
  text-align: center;
  object-fit: fill;
  border-radius: 8px;
  flex: none;
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  transition: all .2s ease-in-out;
}

.button:hover {
  border-color: var(--primary);
  color: var(--white);
  transform: translate(0, -3px);
  box-shadow: 0 5px 15px #1e222826;
}

.button.cc-small {
  padding: 10px 22px;
}

.button.cc-small.cc-form {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.button.cc-small.cc-form:hover {
  transform: none;
}

.button.cc-large {
  padding: 16px 28px 15px;
  font-size: 18px;
}

.image-link {
  cursor: none;
  width: 100%;
  transition: color .2s;
}

.link-hover {
  border-bottom: 1px solid #0000;
  transition: border-color .2s, color .2s;
}

.link-hover:hover {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

.link-hover.link-white:hover {
  border-bottom-color: var(--white);
  color: var(--white);
}

.shadow {
  box-shadow: 0 5px 35px #1e222812;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
}

.card.shadow {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  display: flex;
  box-shadow: 0 5px 35px #1e222812;
}

.background-primary-pale {
  background-color: var(--primary-pale);
}

.background-primary-soft {
  background-color: var(--primary-soft);
}

.background-light {
  background-color: var(--light);
}

.background-dark {
  background-color: var(--dark);
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.navbar {
  z-index: 1999;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fff0;
  width: 100%;
  position: sticky;
  top: 0;
}

.navbar-space {
  height: 10px;
}

.navbar-inner {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.nav-menu-wrapper {
  width: 100%;
}

.nav-menu-flex {
  align-items: center;
  display: flex;
}

.nav-menu {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: var(--dark);
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 25px 0;
  font-weight: 600;
  transition: color .2s;
  display: flex;
}

.nav-link.w--current {
  color: var(--primary);
}

.burger-line {
  background-color: var(--dark);
  width: 25px;
  height: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.nav-menu-flex-mobile {
  display: flex;
}

.navbar-wrapper-mobile {
  justify-content: space-between;
  align-items: center;
  display: none;
}

.navbar-inner-mobile {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  display: none;
  position: relative;
  inset: 0% 0% auto;
}

.navbar-brand-mobile {
  display: none;
}

.nav-link-mobile {
  color: #303030;
  align-items: center;
  height: 143px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  display: flex;
}

.nav-link-mobile:hover {
  color: var(--primary);
}

.nav-link-mobile:focus-visible, .nav-link-mobile[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.navbar-button-wrapper {
  flex: none;
}

.hero-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 160px;
  padding-bottom: 170px;
  display: grid;
}

.hero {
  align-items: center;
  min-height: 60vh;
  display: flex;
  position: relative;
}

.hero-image-wrapper {
  object-fit: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.hero-content {
  height: 100%;
  padding-right: 100px;
  position: relative;
}

.play {
  z-index: 3;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.play-button {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  display: flex;
}

.play-button:hover {
  color: var(--white);
}

.doodle-arrow {
  position: absolute;
  bottom: 3%;
  right: 7%;
}

.doodle-shine {
  position: absolute;
  top: -7%;
  left: -6%;
}

.reasons {
  padding-top: 140px;
  padding-bottom: 140px;
}

.tabs-menu {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.tab {
  background-color: #0000;
}

.tab.card {
  grid-column-gap: 20px;
  flex-direction: row;
  flex: 1;
  padding: 30px;
  transition: box-shadow .2s, background-color .2s, color .2s;
  display: flex;
}

.tab.card:hover {
  background-color: var(--white);
  color: var(--dark);
  box-shadow: 0 5px 35px #1e222812;
}

.tab.card.w--current {
  background-color: #0000;
  box-shadow: 0 5px 35px #1e222812;
}

.tab-pane-grid {
  grid-column-gap: 70px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tabs-content {
  margin-top: 60px;
}

.step {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
}

.bullet-list {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  display: flex;
}

.bullet-list-item {
  grid-column-gap: 10px;
  display: flex;
}

.bullet {
  background-color: var(--primary-pale);
  width: 20px;
  height: 20px;
  color: var(--primary);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  font-size: 15px;
  line-height: 1;
  display: flex;
}

.rounded {
  border-radius: 8px;
  width: 100%;
}

.headline-reasons {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 660px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.headline-customers {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 750px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.testimonial {
  display: flex;
}

.testimonial-card-footer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.block-quote-with-icon {
  position: relative;
}

.quote-icon {
  position: absolute;
  inset: 0% auto auto -10px;
}

.avatar {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.rating {
  color: var(--yellow);
  letter-spacing: -3px;
  margin-bottom: 20px;
  margin-left: -3px;
  font-size: 25px;
  line-height: 1;
  display: flex;
}

.customers {
  flex-direction: column;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 140px;
  display: inline-block;
}

.services-grid {
  grid-column-gap: 0px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  position: relative;
}

.sticky {
  position: sticky;
  top: 140px;
}

.card-inner {
  grid-column-gap: 30px;
  display: flex;
}

.service-icon {
  flex: none;
  width: 80px;
}

.facts {
  align-items: center;
  min-height: 60vh;
  display: flex;
  position: relative;
}

.facts-image {
  object-fit: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
}

.facts-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 160px;
  padding-bottom: 160px;
  display: grid;
}

.facts-content {
  height: 100%;
  padding-left: 100px;
  position: relative;
}

.numbers-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.numbers-grid.cc-margin-top {
  margin-top: 20px;
}

.image-grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.solutions-grid {
  grid-column-gap: 70px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
}

.image-padding {
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}

.features-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing {
  flex-direction: column;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 140px;
  display: inline-block;
}

.headline-pricing {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 850px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.prices-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: center;
  width: 100%;
  margin-bottom: 100px;
  display: grid;
}

.bold-text {
  font-weight: 600;
}

.price-currency {
  padding-top: 8px;
  padding-right: 5px;
  font-size: 20px;
  font-weight: 400;
}

.pricing-card-inner {
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}

.price-duration {
  align-self: flex-end;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}

.pricing-card {
  padding-bottom: 50px;
  display: flex;
}

.pricing-card.card.shadow {
  padding-top: 50px;
  padding-bottom: 60px;
}

.pricing-card.card.shadow.cc-larger {
  padding-top: 70px;
  padding-bottom: 80px;
}

.faq-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.faq-item {
  margin-bottom: 30px;
  display: inline-block;
}

.faq-icon {
  background-color: var(--primary);
  width: 42px;
  height: 42px;
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  display: flex;
}

.faq {
  flex: 1;
}

.faq-item-inner {
  grid-column-gap: 30px;
  display: flex;
}

.footer {
  padding-top: 100px;
  padding-bottom: 70px;
}

.footer.background-dark {
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding: 20px 20px 0;
  display: flex;
}

.footer-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.address {
  max-width: 90%;
}

.unordered-list {
  padding-left: 0;
  list-style-type: none;
}

.hero-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.price {
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.divider {
  background-color: #a4aec633;
  width: 100%;
  height: 1px;
  margin-top: 50px;
  margin-bottom: 70px;
}

.input-group {
  display: flex;
}

.text-field {
  height: 48px;
  color: var(--white);
  border: 1px solid #343f5233;
  border-radius: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.text-field:focus {
  border-width: 1px;
  border-color: var(--primary);
}

.text-field::placeholder {
  color: var(--secondary);
}

.text-field-dark {
  height: 48.8px;
  color: var(--white);
  background-color: #ffffff08;
  border: 1px solid #ffffff1a;
  border-right-width: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.text-field-dark:focus {
  border-width: 1px;
  border-color: var(--primary);
}

.text-field-dark::placeholder {
  color: var(--secondary);
}

.field-label {
  display: none;
}

.footer-cta {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.join {
  max-width: 600px;
}

.play-button-pulse {
  z-index: -1;
  background-color: #605dba80;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  position: absolute;
  inset: 50% 0% 0% 50%;
  transform: translate(0, -50%)translate(-50%);
}

.navbar-shadow {
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
  box-shadow: 0 0 25px #1e22280f;
}

.social-links {
  grid-column-gap: 20px;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.social-link-item {
  line-height: 1;
}

.social-link {
  color: var(--white);
  font-size: 20px;
  transition: transform .2s;
  display: flex;
}

.social-link:hover {
  color: var(--white);
  transform: translate(0, -3px);
}

.page-headline {
  width: 80%;
  padding-top: 100px;
}

.page-title {
  letter-spacing: -.03em;
  flex: none;
  font-size: 200px;
  font-weight: 400;
  line-height: 208px;
}

.inner-wrapper {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.wrapper-narrow {
  width: 65%;
}

.wrapper-narrow.cc-center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.brand {
  flex: none;
}

.nav-menu-flex-2 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-link-2 {
  color: #191919;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 25px 0;
  font-weight: 600;
  transition: color .2s;
  display: flex;
}

.nav-link-2:hover {
  color: #000;
}

.nav-link-2.w--current {
  color: #191919;
}

.nav-menu-2 {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.container-2 {
  z-index: 2;
  width: 100%;
  max-width: 1290px;
  height: auto;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  transition: background-color .2s, color .2s;
  position: relative;
}

.container-2.hero {
  max-width: 1600px;
  padding-left: 0;
  padding-right: 0;
}

.container-2.services {
  padding-top: 10px;
  padding-bottom: 0;
}

.container-2.about {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 60px;
  padding-left: 50px;
}

.container-2.letstalk {
  background-color: #f3f2f7;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 50px 10px;
}

.logotext {
  color: var(--dark);
  word-break: normal;
  font-size: 24px;
  font-weight: 700;
}

.logotext:active {
  color: #191919;
}

.button-2 {
  color: #fff;
  text-align: center;
  object-fit: fill;
  background-color: #1e5242;
  border-radius: 8px;
  flex: none;
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  transition: all .2s ease-in-out;
}

.button-2:hover {
  color: #fff;
  border-color: #1e5242;
  transform: translate(0, -3px);
  box-shadow: 0 5px 15px #1e222826;
}

.button-2.cc-small {
  padding: 10px 40px;
}

.logo-2 {
  border-radius: 5px;
}

.brand-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.burger-line-2 {
  background-color: #191919;
  width: 25px;
  height: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.nav-link-mobile-2 {
  color: #303030;
  align-items: center;
  height: 143px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  display: flex;
}

.nav-link-mobile-2:hover {
  color: #1e5242;
}

.nav-link-mobile-2:focus-visible, .nav-link-mobile-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-menu-flex-mobile-2 {
  display: flex;
}

.navbar-wrapper-mobile-2 {
  justify-content: space-between;
  align-items: center;
  display: none;
}

.navbar-inner-mobile-2 {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  display: none;
  position: relative;
  inset: 0% 0% auto;
}

.nav-menu-3 {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.brand-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-logo {
  display: block;
  overflow: hidden;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.div-block {
  margin-top: 14px;
}

.paragraph-large-2 {
  color: #aab0bc;
  max-width: 1100px;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 1.5;
}

.paragraph-large-2.paragraph-small {
  font-size: 15px;
}

.display-4 {
  letter-spacing: -.01rem;
  flex: none;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.15;
}

.display-4.margin-bottom-20 {
  color: #f0f0f8;
  text-transform: none;
  margin-bottom: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 400;
}

.logo_component-slider {
  grid-column-gap: 67px;
  grid-row-gap: 67px;
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: max-content 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 2200px;
  margin-left: 0;
  display: flex;
}

.logo-slide_section {
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.hero-content-2 {
  background-image: url('../images/image_2026-07-05_001006841.avif');
  background-position: 0 0;
  background-size: cover;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 100px 140px 60px 40px;
  position: relative;
}

.button-3 {
  color: #fff;
  text-align: center;
  object-fit: fill;
  background-color: #1e5242;
  border-radius: 8px;
  flex: none;
  align-self: flex-start;
  padding: 12px 60px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  transition: all .2s ease-in-out;
}

.button-3:hover {
  color: #fff;
  border-color: #1e5242;
  transform: translate(0, -3px);
  box-shadow: 0 5px 15px #1e222826;
}

.button-3.cbtn {
  background-color: #79683d;
  padding: 6px 100px;
}

.button-3.pogledajsve {
  background-color: #b59d61;
  margin-top: 10px;
  padding: 8px 80px;
}

.button-3.kontakt {
  text-transform: capitalize;
  background-color: #b59d61;
  margin-top: 10px;
  padding: 8px 40px;
}

.button-3.cc-small {
  padding: 10px 40px;
}

.section-2 {
  overflow: hidden;
}

.section-2.background-primary-soft {
  background-image: linear-gradient(#f7f7f796, #f7f7f796), url('../images/image_2026-07-06_164337589.avif');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 100px;
}

.section-2.background-primary-soft.about {
  background-image: radial-gradient(circle at 50% 100%, #000, #fff);
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}

.section-2.background-light {
  background-color: #f0f0f8;
}

.section-2.background-light.services {
  background-image: linear-gradient(#f7f7f796, #f7f7f796), url('../images/image_2026-07-06_164337589.avif');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
}

.hero-2 {
  mix-blend-mode: normal;
  background-color: #f3f3f700;
  flex-flow: column;
  align-items: center;
  min-height: 60vh;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  display: flex;
  position: relative;
}

.text-span {
  color: #f0f0f8;
  max-width: 1600px;
}

.logo-slider-img {
  width: auto;
  height: 67px;
  margin-left: 0;
}

.logo-slider-img.radius {
  border-radius: 12px;
  margin-left: 0;
}

.page-padding {
  padding: 5em 5%;
}

.page-padding.s0 {
  margin-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xxlarge {
  padding: 0;
}

.services_img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  flex: 0 auto;
  width: auto;
  height: auto;
}

.marquee-text-3 {
  color: #fff;
  text-transform: uppercase;
  flex: none;
  margin-right: 5vw;
  font-size: 24px;
  font-weight: 700;
}

.text-block {
  border: 1px #000;
  text-decoration: none;
}

.text-block.underline {
  color: var(--dark);
  border-bottom-style: solid;
}

.headline-reasons-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 660px;
  margin: 40px 0 20px;
}

.track-horizontal-alt {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.services_card {
  border-radius: 0;
  flex-flow: column;
  align-items: stretch;
  display: flex;
}

.services_card.home-services-card {
  justify-content: flex-start;
  align-items: stretch;
}

.services_card.dekorativnecard {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: stretch;
  width: auto;
  margin-left: 0;
  padding-left: 0;
  overflow: hidden;
}

.marqeueesection {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.services_grid {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 0;
  margin-bottom: 40px;
}

.services_grid.service_grid_bottom {
  margin-bottom: 40px;
}

.marquee-horizontal-3 {
  z-index: 200;
  background-color: #000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.display-5 {
  letter-spacing: -.01rem;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 38px;
  line-height: 1.2;
}

.reasons-2 {
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

.reasons-2.dekorativneh1 {
  margin-bottom: 10px;
}

.reasons-2.homer {
  margin-bottom: 60px;
}

.services_title {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 30px;
}

.image-2 {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.text-gradient-2 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(100deg, #1e5242 20%, #79683d);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-gradient-2.text-emphasize {
  padding-left: 2px;
  padding-right: 2px;
}

.services_link-wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  padding-bottom: 0;
  display: flex;
}

.div-block-5 {
  border: 1px solid #000;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  overflow: hidden;
}

.div-block-5.rightimg {
  height: 150px;
  margin-left: -71px;
}

.about-text-wrapper {
  flex-flow: column;
  flex: 0 auto;
  width: auto;
  max-width: none;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.about-text-wrapper.images {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
}

.heading {
  font-size: 45px;
}

.grid {
  grid-column-gap: 44px;
  grid-row-gap: 44px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
}

.text-block-3 {
  margin-bottom: 20px;
}

.div-block-6 {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.about_card {
  background-color: #d9d9d9;
  border-radius: 16px;
  padding: 32px 32px 24px;
}

.about-intro-flex {
  justify-content: flex-start;
  align-items: center;
  max-width: 1600px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.image-7 {
  object-fit: cover;
  width: 100%;
}

.text-gradient-3 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(100deg, #1e5242 20%, #79683d);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-gradient-3.text-emphasize {
  padding-left: 2px;
  padding-right: 2px;
}

.headline-reasons-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 660px;
  margin: 40px 0 20px;
}

.image-3 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.display-6 {
  letter-spacing: -.01rem;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 38px;
  line-height: 1.2;
}

.slide {
  width: 33.3%;
  margin-right: 20px;
}

.faq-wrapper-2 {
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.section-faq {
  background-color: #f8f8f8;
  background-image: linear-gradient(#f7f7f796, #f7f7f796), url('../images/image_2026-07-06_164337589.avif');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  padding: 40px 50px 100px;
}

.icon.accordion-icon {
  color: #fff9;
  cursor: pointer;
  font-family: MATERIAL ICONS, sans-serif;
  font-size: 32px;
  line-height: 30px;
}

.accordion-item-content {
  color: #fcfcfd;
  width: 100%;
  margin-top: 10px;
  margin-right: 30px;
  overflow: hidden;
}

.accordion-item-trigger {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.header-center-box {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.header-center-box._75 {
  text-align: left;
  width: 75%;
  margin-left: 0;
  margin-right: 0;
}

.accordion-wrapper {
  width: 80%;
  margin-top: 20px;
}

.accordion-item {
  background-color: #042b49;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px #00000008;
}

.accordion-item.kljucuruke {
  background-color: #19191991;
}

.accordion-heading {
  color: #ebedf3;
  text-transform: uppercase;
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 30px;
}

.text-gradient-4 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(100deg, #1e5242 20%, #79683d);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-gradient-4.text-emphasize {
  padding-left: 2px;
  padding-right: 2px;
}

.heading-4 {
  font-size: 40px;
}

.floatincall-btn {
  z-index: 9999;
  background-color: #1e5242;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: none;
  position: fixed;
  inset: auto 20px 20px auto;
}

.nav-menu-flex-3 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-link-3 {
  color: #191919;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 25px 0;
  font-weight: 600;
  transition: color .2s;
  display: flex;
}

.nav-link-3:hover {
  color: #000;
}

.nav-link-3.w--current {
  color: #191919;
}

.nav-menu-4 {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.brand-4 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.burger-line-3 {
  background-color: #191919;
  width: 25px;
  height: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.nav-link-mobile-3 {
  color: #303030;
  align-items: center;
  height: 143px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  display: flex;
}

.nav-link-mobile-3:hover {
  color: #1e5242;
}

.nav-link-mobile-3:focus-visible, .nav-link-mobile-3[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-menu-flex-mobile-3 {
  display: flex;
}

.navbar-wrapper-mobile-3 {
  justify-content: space-between;
  align-items: center;
  display: none;
}

.nav-menu-5 {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.brand-5 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-7 {
  margin-top: 14px;
}

.paragraph-large-3 {
  color: #aab0bc;
  max-width: 1100px;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 1.5;
}

.paragraph-large-3.paragraph-small {
  font-size: 15px;
  text-decoration: none;
}

.display-7 {
  letter-spacing: -.01rem;
  flex: none;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.15;
}

.display-7.margin-bottom-20 {
  color: #f0f0f8;
  margin-bottom: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 400;
}

.hero-content-3 {
  background-image: url('../images/image_2026-07-05_001006841.avif');
  background-position: 0 0;
  background-size: cover;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 100px 140px 60px 40px;
  position: relative;
}

.display-8 {
  letter-spacing: -.01rem;
  flex: none;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.15;
}

.display-8.margin-bottom-20 {
  color: #f0f0f8;
  margin-bottom: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 400;
}

.hero-content-4 {
  background-image: url('../images/image_2026-07-05_001006841.avif');
  background-position: 0 0;
  background-size: cover;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 100px 140px 60px 40px;
  position: relative;
}

.text-block-4 {
  color: var(--dark);
  border: 1px #000;
  text-decoration: none;
}

.linktext {
  margin-bottom: 20px;
  margin-left: 36px;
  margin-right: 46px;
}

.linktext.dekorativnelink {
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.display-9, .display-10 {
  letter-spacing: -.01rem;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 38px;
  line-height: 1.2;
}

.card-content {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  margin-left: 0;
  padding: 48px;
  display: flex;
}

.left {
  color: #e6e5f4;
  width: 46%;
}

.adaptacija-title {
  margin-bottom: 40px;
  font-size: 30px;
}

.right {
  color: #e6e5f4;
  width: 46%;
}

.servicetitle {
  font-size: 38px;
}

.paragraph-7 {
  margin-bottom: 20px;
}

.paragraph-6 {
  margin-top: 20px;
}

.service-steps {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
}

.adaptacije-card {
  background-color: #042b4900;
  background-image: linear-gradient(#000000cf, #000000cf), url('../images/image_2026-07-07_002717453.avif');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border: 2px solid #b59d61;
  border-radius: 32px;
  padding: 48px 48px 60px;
}

.heading-5 {
  color: #ebedf3;
}

.image-6 {
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.bold-text-3 {
  color: #ebedf3;
}

.text-block-5 {
  margin-right: 10px;
  display: block;
}

.service-card {
  color: #191919;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 32px;
  justify-content: space-between;
  height: 400px;
  margin-bottom: 40px;
  display: flex;
  overflow: hidden;
}

.bold-text-4 {
  color: #ebedf3;
}

.adaptacije-columns-wrapper {
  justify-content: space-between;
  display: flex;
}

.list-item {
  display: flex;
}

.card_image_wrapper {
  border: 1px #000;
  width: 40%;
  height: 100%;
}

.heading-7 {
  font-size: 40px;
}

.grid-footer-4-columns-v14 {
  grid-column-gap: 70px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  place-items: stretch end;
}

.container-default {
  max-width: 1600px;
  padding-left: 24px;
  padding-right: 24px;
}

.div-block-4 {
  text-align: right;
  width: 60%;
  margin-left: 0;
}

.text-300 {
  font-size: 22px;
  line-height: 22px;
}

.text-300.bold {
  font-weight: 700;
}

.text-300.bold.footer-title {
  color: #211f54;
  margin-bottom: 40px;
}

.text-300.bold.footer-title.longtext {
  color: #fff;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  font-size: 15px;
  font-weight: 400;
  display: block;
}

.footer-list-item {
  margin-bottom: 18px;
  padding-left: 0;
}

.footer-link {
  color: #ebedf3;
  text-decoration: none;
}

.footer-link:hover {
  color: #4a3aff;
}

.footer-link.bold-text {
  color: #ebedf3;
}

.footer-top {
  padding-top: 120px;
  padding-bottom: 120px;
}

.footer-top.border-bottom {
  border-bottom: 1px solid #eff0f6;
  margin-top: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

.mg-bottom-0 {
  color: #fff;
  margin-bottom: 0;
}

.footer-bottom {
  color: #191919;
  text-align: center;
  border-top: 1px solid #eff0f6;
  padding-top: 32px;
  padding-bottom: 32px;
}

.footer-list-wrapper {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.footer-wrapper {
  background-color: #fff0;
  border-top: 1px solid #f7f7fc;
  max-width: 1600px;
  margin-top: 0;
  padding-top: 20px;
}

.card-subtitle {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
}

._w-cards-list {
  padding-bottom: 100px;
  padding-left: 0;
  padding-right: 0;
  position: sticky;
  top: 1px;
}

.card-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5em;
  line-height: 1em;
}

.c-cards-list {
  transition: all .2s;
  position: relative;
}

.c-card {
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  transition: all .25s;
  position: relative;
}

.c-card._2 {
  max-width: none;
  position: sticky;
  top: 100px;
}

.c-card._5 {
  max-width: none;
  position: sticky;
  top: 340px;
}

.c-card._1 {
  max-width: none;
  position: sticky;
  top: 20px;
}

.c-card._3 {
  max-width: none;
  position: sticky;
  top: 180px;
}

.c-card._4 {
  max-width: none;
  position: sticky;
  top: 260px;
}

.c-card-title {
  margin-bottom: 10px;
}

._w-card {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 100px;
  padding: 30px;
  position: relative;
  box-shadow: 1px 1px 15px #13131380;
}

.card-details {
  margin-bottom: 0;
}

.c-card-content-divider {
  border-bottom: 1px dashed #bbb;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.c-card-details {
  margin-bottom: 20px;
}

.c-cloneable {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.c-intro {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding: 140px 20px;
  display: flex;
  position: relative;
}

._w-content {
  background-color: #0000;
  background-image: linear-gradient(180deg, var(--light), #3d3d3d 98%, black 100%, black 100%, black);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}

.header {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 4em;
  font-weight: 900;
  line-height: 1.3em;
}

.c-content {
  z-index: 5;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.yellow {
  color: #fff080;
}

.c-header {
  margin-bottom: 30px;
}

.menuconatiner {
  justify-content: flex-start;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.link {
  color: var(--dark);
  text-transform: uppercase;
  border: 1px #000;
  border-radius: 0;
  padding-right: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-property: none;
}

.link:hover {
  color: var(--dark);
  text-decoration: none;
}

.link:active {
  text-decoration: none;
}

.link:visited {
  border: 1px solid #000;
}

.link:lang(en) {
  border: 1px #000;
  text-decoration: none;
}

.div-block-8 {
  flex-flow: row;
  flex: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  text-decoration: none;
  display: flex;
}

.section-3 {
  color: var(--dark);
  overflow: hidden;
}

.container-3 {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.grid-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.section-4 {
  background-image: linear-gradient(#f7f7f796, #f7f7f796), url('../images/image_2026-07-06_164337589.avif');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  margin-top: 0;
  margin-bottom: 100px;
  margin-right: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.outer, .image-8 {
  margin-top: 0%;
}

.macy-container {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  transition: all;
  display: grid;
}

.col {
  background-color: #fa8f8f;
  justify-content: center;
  align-items: center;
  width: 28vw;
  height: 400px;
  display: flex;
}

.col._2 {
  background-color: #8ffaa1;
  height: 350px;
}

.heading-8 {
  color: #fff;
}

.col--2x {
  background-color: #5a74da;
  justify-content: center;
  align-items: center;
  width: 28vw;
  height: 250px;
  display: flex;
}

.image-9 {
  width: 100%;
  max-width: none;
  height: 100%;
}

.galerija-omotac {
  column-count: 3;
  column-rule-style: none;
  column-gap: 16px;
}

.div-block-9 {
  width: 33.3%;
}

.gallery-wrap {
  flex-flow: column;
  width: 25%;
  display: flex;
}

.gallery-wrap.middle {
  margin-top: 220px;
}

.div-block-10 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1290px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.imgwrap {
  margin-bottom: 16px;
}

.div-block-11 {
  flex-flow: row;
  flex: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  text-decoration: none;
  display: flex;
}

.link-2 {
  color: #191919;
  text-transform: uppercase;
  border: 1px #000;
  border-radius: 0;
  padding-right: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-property: none;
}

.link-2:hover {
  color: #191919;
  text-decoration: none;
}

.link-2:active {
  text-decoration: none;
}

.link-2:visited {
  border: 1px solid #000;
}

.link-2:lang(en) {
  border: 1px #000;
  text-decoration: none;
}

.div-block-12 {
  flex-flow: row;
  flex: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  text-decoration: none;
  display: flex;
}

.brand-6 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logotext-2 {
  color: #191919;
  word-break: normal;
  font-size: 24px;
  font-weight: 700;
}

.logotext-2:active {
  color: #191919;
}

.nav-menu-flex-4 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-menu-6 {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link-4 {
  color: #191919;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 25px 0;
  font-weight: 600;
  transition: color .2s;
  display: flex;
}

.nav-link-4:hover {
  color: #000;
}

.nav-link-4.w--current {
  color: #191919;
}

.navbar-wrapper-mobile-4 {
  justify-content: space-between;
  align-items: center;
  display: none;
}

.brand-7 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logotext-3 {
  color: #191919;
  word-break: normal;
  font-size: 24px;
  font-weight: 700;
}

.logotext-3:active {
  color: #191919;
}

.nav-menu-7 {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-menu-flex-mobile-4 {
  display: flex;
}

.burger-line-4 {
  background-color: #191919;
  width: 25px;
  height: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1350px;
  }

  .sg-section {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .utility-page-content {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
  }

  .label.text-secondary {
    color: #191919;
    text-transform: none;
    text-transform: none;
    font-weight: 400;
  }

  .solutions-grid {
    align-items: center;
  }

  .features-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .page-headline {
    width: 75%;
  }

  .wrapper-narrow {
    width: 55%;
  }

  .wrapper-narrow.cc-center {
    width: 63%;
  }

  .container-2 {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-left: 50px;
    padding-right: 50px;
  }

  .container-2.services {
    padding-bottom: 0;
  }

  .container-2.about {
    background-color: #0000;
    margin-left: auto;
    margin-right: auto;
    padding: 0 50px 60px;
  }

  .container-2.letstalk {
    padding-top: 0;
  }

  .container-large {
    max-width: 80%;
  }

  .display-4.margin-bottom-20 {
    width: auto;
    min-width: auto;
    max-width: 1100px;
  }

  .logo-slide_section {
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
  }

  .hero-content-2 {
    height: auto;
    padding-top: 140px;
    padding-bottom: 60px;
    padding-right: 100px;
  }

  .button-3.cbtn {
    padding: 6px 100px;
  }

  .button-3.pogledajsve {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .button-3.kontakt {
    background-color: #b59d61;
    padding: 6px 60px;
  }

  .section-2.background-primary-soft {
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
  }

  .section-2.background-primary-soft.about {
    background-image: radial-gradient(circle at 50% 100%, #000, #fff);
  }

  .section-2.background-light.services {
    background-image: linear-gradient(#f7f7f796, #f7f7f796), url('../images/image_2026-07-06_164337589.avif');
    background-position: 0 0, 0 0;
    background-size: auto, auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-2.background-light.idea {
    padding-top: 60px;
  }

  .hero-2 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
  }

  .headline-reasons-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: auto;
  }

  .services_grid {
    padding-bottom: 40px;
  }

  .display-5 {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .reasons-2 {
    margin: 0 auto 60px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-5, .div-block-5.rightimg {
    width: 200px;
    height: 200px;
  }

  .about-text-wrapper {
    flex-flow: column;
    flex: 1;
    justify-content: center;
    align-items: stretch;
    width: auto;
    margin-bottom: 0;
    display: flex;
  }

  .heading {
    font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    font-size: 40px;
  }

  .grid {
    grid-column-gap: 53px;
    grid-row-gap: 53px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }

  .text-block-3 {
    color: #191919;
  }

  .about_card {
    background-color: #d9d9d9;
    border-radius: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 32px 40px;
  }

  .heading-2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 32px;
  }

  .about-intro-flex {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .headline-reasons-3 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: auto;
  }

  .image-3 {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .display-6 {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .slider {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #f0f0f8;
    border-radius: 0;
    height: 432px;
    margin-top: 40px;
    padding-top: 0;
    display: block;
  }

  .slide {
    width: 33.3%;
    margin-left: 0;
    margin-right: 40px;
  }

  .faq-wrapper-2 {
    grid-row-gap: 50px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
  }

  .section-faq {
    background-image: linear-gradient(#f7f7f796, #f7f7f796), url('../images/image_2026-07-06_164337589.avif');
    background-position: 0 0, 0 0;
    background-size: auto, auto;
    padding: 0 0 100px;
  }

  .icon.accordion-icon {
    color: #fff9;
    font-family: MATERIAL ICONS, sans-serif;
    font-weight: 400;
  }

  .accordion-item-content {
    color: #fcfcfd;
  }

  .header-center-box._75 {
    text-align: left;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .accordion-wrapper {
    color: #fff;
    margin-top: 0;
  }

  .accordion-item {
    background-color: #042b49;
    width: auto;
    margin-bottom: 20px;
    padding: 24px 30px 14px;
  }

  .accordion-heading {
    color: #ebedf3;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
  }

  .heading-4 {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 10px;
    font-size: 40px;
  }

  .display-7.margin-bottom-20 {
    width: auto;
    min-width: auto;
    max-width: 1100px;
  }

  .hero-content-3 {
    height: auto;
    padding-top: 140px;
    padding-bottom: 60px;
    padding-right: 100px;
  }

  .display-8.margin-bottom-20 {
    width: auto;
    min-width: auto;
    max-width: 1100px;
  }

  .hero-content-4 {
    height: auto;
    padding-top: 140px;
    padding-bottom: 60px;
    padding-right: 100px;
  }

  .display-9, .display-10 {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .heading-7 {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 10px;
    font-size: 40px;
  }

  .container-default {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .label.text-secondary {
    text-transform: none;
    text-transform: none;
    margin-bottom: 40px;
  }

  .container-2.hero {
    max-width: 1600px;
  }

  .container-2.about {
    margin-left: auto;
    margin-right: auto;
    padding: 0 50px 100px;
  }

  .container-2.letstalk {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .logo_component-slider {
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
  }

  .logo-slide_section {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .hero-content-2 {
    padding-top: 160px;
    padding-bottom: 60px;
  }

  .button-3.kontakt {
    margin-top: 0;
    padding: 6px 60px;
  }

  .section-2.background-light.idea {
    padding-top: 0;
  }

  .hero-2 {
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .padding-vertical.padding-xxlarge {
    display: block;
  }

  .headline-reasons-2 {
    margin: 60px 0 0;
  }

  .services_title {
    margin-bottom: 0;
  }

  .services_link-wrapper {
    margin-top: 0;
    padding-bottom: 0;
  }

  .text-block-3 {
    width: 70%;
  }

  .about-intro-flex {
    justify-content: center;
    align-items: center;
    max-width: 1600px;
    display: flex;
  }

  .headline-reasons-3 {
    margin: 60px 0 0;
  }

  .hero-content-3 {
    padding-top: 160px;
    padding-bottom: 60px;
  }

  .hero-content-4 {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .grid-footer-4-columns-v14 {
    grid-column-gap: 80px;
    grid-template-columns: auto auto auto;
  }

  .div-block-4 {
    color: #ebedf3;
  }

  .text-300.bold.footer-title {
    text-align: left;
    width: 394px;
    margin-bottom: 10px;
  }

  .text-300.bold.footer-title.longtext {
    color: #ebedf3;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
    font-size: 15px;
    font-weight: 400;
  }

  .footer-list-item {
    color: #ebedf3;
  }

  .footer-link {
    color: #e6e5f4;
    text-transform: uppercase;
  }

  .footer-link:hover {
    color: #ae9451;
  }

  .footer-link.bold-text {
    color: #ebedf3;
  }

  .footer-top.border-bottom {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-wrapper {
    background-color: #19191900;
    padding-top: 60px;
  }

  .c-cloneable {
    max-width: 1600px;
  }

  ._w-content {
    flex-flow: column;
    display: flex;
  }

  .menuconatiner {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .div-block-8 {
    padding-left: 0;
  }

  .section-4 {
    background-image: linear-gradient(#f7f7f796, #f7f7f796), url('../images/image_2026-07-06_164337589.avif');
    background-position: 0 0, 0 0;
    background-size: auto, auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 100px;
  }

  .div-block-10 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-11 {
    margin-top: 60px;
    margin-bottom: 10px;
    padding-left: 0;
  }

  .div-block-12 {
    padding-left: 0;
  }
}

@media screen and (max-width: 991px) {
  .sg-block {
    margin-bottom: 40px;
  }

  .display-1 {
    font-size: 45px;
    line-height: 52px;
  }

  .display-2 {
    font-size: 37px;
    line-height: 44px;
  }

  .display-3 {
    font-size: 34px;
    line-height: 44px;
  }

  .paragraph-large {
    margin-bottom: 30px;
  }

  .label.text-secondary {
    font-size: 15px;
  }

  .button {
    position: relative;
  }

  .logo {
    flex: none;
  }

  .navbar-space {
    display: none;
  }

  .navbar-inner {
    display: none;
    position: relative;
  }

  .nav-menu-wrapper {
    z-index: 999;
    background-color: #fff;
    width: 100%;
    height: auto;
    position: absolute;
  }

  .nav-menu-flex {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-menu {
    grid-row-gap: 0px;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 0;
    display: flex;
  }

  .nav-link {
    height: auto;
    padding: 6px 0;
  }

  .menu-button {
    margin-left: 10px;
    padding: 0;
  }

  .menu-button.w--open {
    color: #60697b;
    background-color: #0000;
  }

  .nav-menu-flex-mobile {
    flex-direction: column;
    padding: 30px 40px;
  }

  .nav-menu-wrapper-mobile {
    background-color: var(--dark);
    margin-left: 50px;
    margin-right: 50px;
    transform: translate(0, 10px);
  }

  .navbar-wrapper-mobile {
    display: flex;
  }

  .navbar-inner-mobile {
    align-items: center;
    display: flex;
  }

  .navbar-brand-mobile {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
  }

  .nav-link-mobile {
    height: auto;
    color: var(--white);
    padding: 6px 0;
    font-size: 16px;
  }

  .nav-link-mobile.w--current {
    color: var(--primary);
  }

  .hero-grid {
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
  }

  .hero {
    display: block;
  }

  .hero-image-wrapper {
    width: 100%;
    position: relative;
  }

  .hero-content {
    padding-right: 0;
  }

  .play {
    left: 50%;
  }

  .doodle-arrow {
    display: none;
  }

  .doodle-shine {
    top: -10%;
  }

  .reasons {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .tabs-menu {
    flex-direction: column;
  }

  .tab-pane-grid {
    flex-direction: column;
    display: flex;
  }

  .headline-customers {
    margin-top: 0;
  }

  .testimonials {
    column-count: 2;
    grid-template-columns: 1fr 1fr;
  }

  .customers {
    padding-top: 120px;
    padding-bottom: 110px;
  }

  .services-grid {
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
  }

  .sticky {
    position: relative;
    top: auto;
  }

  .facts {
    display: block;
  }

  .facts-image {
    width: 100%;
    position: relative;
  }

  .facts-grid {
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
  }

  .facts-content {
    padding-left: 0;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .image-padding {
    width: 100%;
  }

  .features-grid {
    grid-column-gap: 50px;
  }

  .pricing {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .headline-pricing {
    margin-top: 0;
  }

  .prices-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: center;
  }

  .pricing-card.card.shadow.cc-larger {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .faq-wrapper {
    column-count: auto;
  }

  .footer.background-dark {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
  }

  .footer-cta {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .join {
    max-width: none;
  }

  .page-title {
    font-size: 140px;
    line-height: 148px;
  }

  .wrapper-narrow {
    width: 100%;
  }

  .nav-menu-flex-2 {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-link-2 {
    height: auto;
    padding: 6px 0;
  }

  .nav-menu-2 {
    grid-row-gap: 0px;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 0;
    display: flex;
  }

  .container-2 {
    margin-left: auto;
    margin-right: auto;
    padding-left: 42px;
    padding-right: 40px;
  }

  .container-2.hero {
    min-height: auto;
  }

  .container-2.services {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
    position: relative;
  }

  .container-2.about {
    padding-top: 40px;
  }

  .container-2.letstalk {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .logotext {
    color: #191919;
  }

  .button-2 {
    position: relative;
  }

  .logo-2 {
    flex: none;
    height: 40px;
  }

  .nav-link-mobile-2 {
    color: #191919;
    height: auto;
    padding: 6px 0;
    font-size: 16px;
  }

  .nav-link-mobile-2.w--current {
    color: #b59d61;
  }

  .nav-menu-flex-mobile-2 {
    flex-direction: column;
    padding: 10px 0;
  }

  .navbar-wrapper-mobile-2 {
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
  }

  .list-item-2 {
    color: #191919;
    border: 1px #000;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .list-item-2.bootmlist {
    border-bottom-style: none;
  }

  .navbar-inner-mobile-2 {
    align-items: center;
    display: flex;
  }

  .nav-menu-3 {
    grid-row-gap: 0px;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 0;
    display: flex;
  }

  .nav-menu-wrapper-mobile-2 {
    background-color: #fcfcfd;
    border-radius: 20px;
    margin-left: 50px;
    margin-right: 50px;
    overflow: visible;
    transform: translate(0, 10px);
  }

  .section-logo {
    overflow: hidden;
  }

  .paragraph-large-2 {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .paragraph-large-2.paragraph-small {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .display-4 {
    font-size: 45px;
    line-height: 52px;
  }

  .display-4.margin-bottom-20 {
    font-size: 42px;
  }

  .logo_component-slider {
    grid-column-gap: 3rem;
  }

  .hero-content-2 {
    background-image: url('../images/image_2026-07-05_001006841.avif');
    background-position: 0 0;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 40px;
    padding-right: 0;
  }

  .button-3 {
    position: relative;
  }

  .button-3.cbtn, .button-3.pogledajsve, .button-3.kontakt {
    font-size: 16px;
  }

  .section-2.background-primary-soft.about {
    padding-top: 0;
  }

  .section-2.background-light.services {
    padding-bottom: 0;
  }

  .hero-2 {
    margin-top: 10px;
    display: block;
  }

  .image-4 {
    height: 10%;
  }

  .text-span {
    font-size: 42px;
  }

  .logo-slider-img {
    width: auto;
    height: 62px;
  }

  .page-padding.s0 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .services_img {
    border: 1px solid #000;
    border-radius: 20px;
  }

  .services_card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 85%;
  }

  .services_card.kljucuruke.home-services-card {
    background-color: #fff;
  }

  .services_card.home-services-card {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 20px;
    flex-shrink: 0;
    width: 50%;
    padding: 20px;
    overflow: hidden;
  }

  .services_card.dekorativnecard {
    width: 50%;
  }

  .services_grid {
    grid-column-gap: 26px;
    grid-row-gap: 26px;
    scroll-snap-type: x mandatory;
    gap: 14px;
    display: flex;
    overflow: auto hidden;
  }

  .services_grid.service_grid_bottom {
    grid-column-gap: 26px;
    grid-row-gap: 26px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .services_grid.home-services-grid {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
    scroll-snap-type: x mandatory;
    gap: 14px;
    display: flex;
    overflow: auto hidden;
  }

  .display-5 {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 44px;
  }

  .reasons-2 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .services_title {
    margin-top: 20px;
    font-size: 24px;
  }

  .services_link-wrapper {
    margin-top: 2px;
  }

  .div-block-5 {
    width: 100px;
    height: 100px;
  }

  .div-block-5.rightimg {
    height: 100px;
    margin-left: -26px;
  }

  .about-text-wrapper {
    max-width: none;
  }

  .about-text-wrapper.images {
    justify-content: center;
    align-items: center;
  }

  .paragraph-5, .paragraph-2 {
    font-size: 16px;
  }

  .heading {
    font-size: 32px;
  }

  .paragraph-4 {
    font-size: 16px;
  }

  .grid {
    flex-flow: column;
    display: flex;
  }

  .paragraph-3, .text-block-3 {
    font-size: 16px;
  }

  .about_card {
    z-index: auto;
    margin-bottom: 400px;
    position: sticky;
    top: 100px;
    bottom: 0;
  }

  .about_card.apotekarska {
    z-index: 1;
  }

  .about_card.dizajnu {
    z-index: 2;
  }

  .about_card.vrhunskimaterijali {
    z-index: 3;
  }

  .about_card.rokovi {
    z-index: 4;
  }

  .about-intro-flex {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .display-6 {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 44px;
  }

  .header-center-box._75 {
    width: 100%;
  }

  .accordion-wrapper {
    margin-top: 0;
  }

  .accordion-item.kljucuruke {
    padding-bottom: 24px;
  }

  .heading-4 {
    font-size: 32px;
  }

  .floatincall-btn {
    z-index: 99999;
    display: flex;
    right: 16px;
  }

  .nav-menu-flex-3 {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-link-3 {
    height: auto;
    padding: 6px 0;
  }

  .nav-menu-4 {
    grid-row-gap: 0px;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 0;
    display: flex;
  }

  .nav-link-mobile-3 {
    color: #191919;
    height: auto;
    padding: 6px 0;
    font-size: 16px;
  }

  .nav-link-mobile-3.w--current {
    color: #b59d61;
  }

  .nav-menu-flex-mobile-3 {
    flex-direction: column;
    padding: 10px 0;
  }

  .navbar-wrapper-mobile-3 {
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
  }

  .nav-menu-5 {
    grid-row-gap: 0px;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 0;
    display: flex;
  }

  .nav-menu-wrapper-mobile-3 {
    background-color: #fcfcfd;
    border-radius: 20px;
    margin-left: 50px;
    margin-right: 50px;
    overflow: visible;
    transform: translate(0, 10px);
  }

  .paragraph-large-3 {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .paragraph-large-3.paragraph-small {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .display-7 {
    font-size: 45px;
    line-height: 52px;
  }

  .display-7.margin-bottom-20 {
    font-size: 42px;
  }

  .hero-content-3 {
    background-image: url('../images/image_2026-07-05_001006841.avif');
    background-position: 0 0;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 40px;
    padding-right: 0;
  }

  .display-8 {
    font-size: 45px;
    line-height: 52px;
  }

  .display-8.margin-bottom-20 {
    font-size: 42px;
  }

  .hero-content-4 {
    background-image: url('../images/image_2026-07-05_001006841.avif');
    background-position: 0 0;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 40px;
    padding-right: 0;
  }

  .display-9, .display-10 {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 44px;
  }

  .card-content {
    flex-shrink: 0;
    width: 480px;
    padding-bottom: 10px;
  }

  .left {
    width: 100%;
  }

  .right {
    width: 100%;
    margin-top: 20px;
  }

  .servicetitle {
    font-size: 28px;
  }

  .paragraph-7, .paragraph-6 {
    font-size: 16px;
  }

  .service-steps {
    text-transform: uppercase;
    font-size: 13px;
  }

  .adaptacije-card {
    background-image: linear-gradient(#000000cf, #000000cf), url('../images/image_2026-07-07_002717453.avif');
    background-size: auto, auto;
  }

  .service-paragraph {
    font-size: 15px;
  }

  .service-card {
    overflow: auto hidden;
  }

  .adaptacije-columns-wrapper {
    flex-flow: column;
  }

  .list-item {
    font-size: 15px;
  }

  .card_image_wrapper {
    flex-shrink: 0;
    width: 369px;
  }

  .heading-7 {
    font-size: 32px;
  }

  .grid-footer-4-columns-v14 {
    grid-column-gap: 60px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr 1fr 3.5fr;
    place-items: stretch center;
  }

  .div-block-4 {
    width: 100%;
  }

  .text-300.bold.footer-title {
    margin-bottom: 24px;
  }

  .text-300.bold.footer-title.longtext {
    font-size: 15px;
  }

  .footer-top {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .footer-bottom {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer-wrapper {
    margin-top: 10px;
  }

  ._w-cards-list {
    padding-left: 0;
    padding-right: 0;
  }

  .card-title {
    font-size: 55px;
  }

  ._w-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .link {
    padding-right: 26px;
    overflow: visible;
  }

  .div-block-8 {
    overflow: auto;
  }

  .macy-container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-10 {
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .div-block-11 {
    overflow: auto;
  }

  .link-2 {
    padding-right: 26px;
    overflow: visible;
  }

  .div-block-12 {
    overflow: auto;
  }

  .logotext-2 {
    color: #191919;
  }

  .nav-menu-flex-4 {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-menu-6 {
    grid-row-gap: 0px;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 0;
    display: flex;
  }

  .nav-link-4 {
    height: auto;
    padding: 6px 0;
  }

  .navbar-wrapper-mobile-4 {
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
  }

  .logotext-3 {
    color: #191919;
  }

  .nav-menu-7 {
    grid-row-gap: 0px;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 0;
    display: flex;
  }

  .nav-menu-flex-mobile-4 {
    flex-direction: column;
    padding: 10px 0;
  }

  .nav-menu-wrapper-mobile-4 {
    background-color: #fcfcfd;
    border-radius: 20px;
    margin-left: 50px;
    margin-right: 50px;
    overflow: visible;
    transform: translate(0, 10px);
  }
}

@media screen and (max-width: 767px) {
  .sg-section {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .sg-color-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .sg-color-block {
    width: 25%;
  }

  .paragraph-large {
    font-size: 22px;
    line-height: 34px;
  }

  .nav-menu {
    flex-direction: column;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .navbar-brand-mobile {
    padding-left: 0;
  }

  .doodle-shine {
    top: -9%;
    left: -8%;
  }

  .testimonials {
    column-count: 1;
    flex-direction: column;
    display: flex;
  }

  .numbers-grid.cc-margin-top {
    grid-template-rows: auto auto;
  }

  .features-grid {
    flex-direction: column;
    display: flex;
  }

  .prices-grid {
    grid-template-rows: auto auto;
  }

  .footer-grid {
    flex-direction: column;
    display: flex;
  }

  .page-title {
    font-size: 50px;
    line-height: 58px;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-menu-2 {
    flex-direction: column;
    padding-left: 0;
  }

  .container-2.hero {
    width: 100%;
    height: auto;
    margin: 20px auto 0;
    padding: 0;
  }

  .nav-menu-3 {
    flex-direction: column;
    padding-left: 0;
  }

  .paragraph-large-2 {
    width: 100%;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 24px;
  }

  .display-4.margin-bottom-20 {
    width: 100%;
    font-size: 38px;
    line-height: 36px;
    overflow: visible;
  }

  .logo_component-slider {
    grid-row-gap: 2rem;
    flex-direction: row;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
  }

  .hero-content-2 {
    background-color: #000;
    background-image: linear-gradient(87deg, #000000b8 56%, #1717176b 93%, #fff0 99%), url('../images/mobile.avif');
    background-position: 0 0, 0 0;
    background-size: auto, 100% 100%;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 10px 40px 40px;
  }

  .text-span {
    letter-spacing: -.01rem;
    word-break: normal;
    font-size: 37px;
    line-height: 48px;
  }

  .logo-slider-img {
    width: auto;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .services_img {
    border: 1px solid #000;
  }

  .marquee-text-3 {
    font-size: 23px;
  }

  .services_card {
    border: 1px #000;
    padding-top: 0;
  }

  .services_card.home-services-card {
    width: 58%;
    padding: 12px 12px 16px;
  }

  .services_card.dekorativnecard {
    width: 58%;
  }

  .display-5 {
    margin-bottom: 0;
  }

  .services_link-wrapper {
    margin-top: auto;
  }

  .paragraph-2, .paragraph-4 {
    font-size: 15px;
  }

  .grid {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .paragraph-3 {
    font-size: 15px;
  }

  .display-6 {
    margin-bottom: 0;
  }

  .accordion-item-content {
    width: 100%;
    margin-right: 0;
  }

  .accordion-item-trigger, .header-center-box._75 {
    width: 100%;
  }

  .heading-4 {
    font-size: 32px;
  }

  .floatincall-btn {
    width: 50px;
    height: 50px;
  }

  .nav-link-3 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-menu-4, .nav-menu-5 {
    flex-direction: column;
    padding-left: 0;
  }

  .paragraph-large-3 {
    width: 100%;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 24px;
  }

  .display-7.margin-bottom-20 {
    width: 100%;
    font-size: 38px;
    line-height: 36px;
    overflow: visible;
  }

  .hero-content-3 {
    background-color: #000;
    background-image: linear-gradient(87deg, #000000b8 56%, #1717176b 93%, #fff0 99%), url('../images/mobile.avif');
    background-position: 0 0, 0 0;
    background-size: auto, 100% 100%;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 10px 40px 40px;
  }

  .display-8.margin-bottom-20 {
    width: 100%;
    font-size: 38px;
    line-height: 36px;
    overflow: visible;
  }

  .hero-content-4 {
    background-color: #000;
    background-image: linear-gradient(87deg, #000000b8 56%, #1717176b 93%, #fff0 99%), url('../images/mobile.avif');
    background-position: 0 0, 0 0;
    background-size: auto, 100% 100%;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 10px 40px 40px;
  }

  .display-9, .display-10 {
    margin-bottom: 0;
  }

  .paragraph-7, .paragraph-6 {
    font-size: 16px;
  }

  .adaptacije-card {
    background-image: linear-gradient(#000000cf, #000000cf), url('../images/image_2026-07-07_002717453.avif');
    background-position: 0 0, 0 0;
    background-size: auto, auto;
  }

  .bold-text-3 {
    font-size: 30px;
    display: block;
  }

  .list-item {
    font-size: 15px;
  }

  .heading-7 {
    font-size: 32px;
  }

  .grid-footer-4-columns-v14 {
    grid-template-columns: 1fr;
    place-items: stretch start;
  }

  .text-300 {
    font-size: 18px;
    line-height: 20px;
  }

  .text-300.bold.footer-title {
    margin-bottom: 24px;
  }

  .text-300.bold.footer-title.longtext {
    text-align: left;
  }

  .footer-list-item {
    margin-bottom: 10px;
  }

  .footer-top {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .card-subtitle {
    font-size: 32px;
  }

  ._w-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-10 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .nav-menu-6 {
    flex-direction: column;
    padding-left: 0;
  }

  .nav-link-4 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-menu-7 {
    flex-direction: column;
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sg-button-block {
    margin-bottom: 20px;
  }

  .sg-color-grid {
    grid-template-columns: 1fr 1fr;
  }

  .label.text-secondary {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2px;
    padding-right: 2px;
  }

  .button {
    width: auto;
    font-size: 16px;
  }

  .nav-menu-wrapper {
    width: 80%;
  }

  .nav-menu {
    flex-direction: column;
  }

  .nav-menu-wrapper-mobile {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  .doodle-shine {
    display: none;
  }

  .tab.card {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .card-inner {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .image-grid {
    flex-direction: column;
    display: flex;
  }

  .image-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .text-field, .text-field-dark {
    height: 47px;
  }

  .nav-menu-2 {
    flex-direction: column;
  }

  .container-2 {
    flex: 0 auto;
    height: 100%;
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-2.hero {
    width: 100%;
    height: 100%;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .container-2.services {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-2.about {
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .container-2.letstalk {
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px 40px;
  }

  .logotext {
    font-size: 18px;
  }

  .button-2 {
    width: auto;
    font-size: 16px;
  }

  .logo-2 {
    width: 64px;
    height: 32px;
  }

  .brand-2 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .navbar-wrapper-mobile-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .list-item-2 {
    border-style: none;
    border-color: #60697b;
  }

  .navbar-inner-mobile-2 {
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    top: 0%;
  }

  .nav-menu-3 {
    flex-direction: column;
  }

  .nav-menu-wrapper-mobile-2 {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  .brand-3 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .container-large {
    overflow: visible;
  }

  .paragraph-large-2 {
    margin-top: 0;
    margin-bottom: 28px;
    font-size: 14px;
  }

  .bold-text-2 {
    font-size: 30px;
    line-height: 100%;
  }

  .display-4.margin-bottom-20 {
    font-size: 36px;
    line-height: 100%;
  }

  .logo_component-slider {
    grid-column-gap: 1.8rem;
    grid-row-gap: 1.8rem;
    overflow: hidden;
  }

  .hero-content-2 {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 20px 32px 24px;
  }

  .button-3 {
    width: auto;
    font-size: 16px;
  }

  .button-3.cbtn {
    text-align: center;
    width: auto;
    padding: 3px 20px;
    font-size: 14px;
  }

  .button-3.pogledajsve {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .button-3.kontakt {
    font-size: 14px;
  }

  .section-2.background-primary-soft, .section-2.background-light.services {
    padding-bottom: 0;
  }

  .hero-2 {
    min-height: auto;
    margin: 0 auto;
    padding: 10px 10px 20px;
  }

  .text-span {
    font-size: 30px;
    line-height: 100%;
  }

  .logo-slider-img {
    width: auto;
    height: 58px;
  }

  .page-padding.s0 {
    margin-bottom: 0;
    padding-top: 1em;
    padding-bottom: 1em;
    overflow: visible;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical.padding-xxlarge {
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow: visible;
  }

  .services_img {
    border-style: solid;
    border-width: 1px;
  }

  .services_img.dekorativneimg {
    border-bottom-left-radius: 0%;
  }

  .marquee-text-3 {
    font-size: 22px;
  }

  .text-block {
    color: #191919;
    font-size: 15px;
  }

  .services_card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 70%;
  }

  .services_card.kljucuruke {
    background-color: #b59d61;
  }

  .services_card.kljucuruke.home-services-card {
    background-color: var(--yellow);
    background-image: linear-gradient(#b59d61, #b59d61);
  }

  .services_card.home-services-card {
    background-color: #fff;
    border-width: 2px;
    width: 67%;
    padding-bottom: 16px;
  }

  .services_card.dekorativnecard {
    width: 67%;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .services_grid {
    scroll-snap-type: x mandatory;
    gap: 14px;
    display: flex;
    overflow: auto hidden;
  }

  .display-5 {
    margin-bottom: 0;
    font-size: 28px;
  }

  .services_title {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 24px;
  }

  .text-gradient-2.text-emphasize {
    padding-left: 0;
  }

  .services_link-wrapper {
    margin-top: auto;
  }

  .div-block-5 {
    width: 60px;
    height: 60px;
  }

  .div-block-5.rightimg {
    width: 70px;
    height: 70px;
  }

  .about-text-wrapper.images {
    padding-left: 0;
    padding-right: 0;
  }

  .heading {
    font-size: 28px;
  }

  .grid {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .text-block-3 {
    font-size: 15px;
  }

  .text-gradient-3.text-emphasize {
    padding-left: 0;
  }

  .display-6 {
    margin-bottom: 0;
    font-size: 28px;
  }

  .slider {
    background-color: #ddd0;
  }

  .slide {
    width: 70%;
  }

  .section-faq {
    padding: 100px 15px;
  }

  .header-center-box._75 {
    width: 90%;
  }

  .accordion-wrapper {
    width: 100%;
    margin-top: 0;
  }

  .accordion-heading {
    font-size: 17px;
  }

  .text-gradient-4.text-emphasize {
    padding-left: 0;
  }

  .heading-4 {
    margin-bottom: 0;
    font-size: 28px;
  }

  .nav-menu-4 {
    flex-direction: column;
  }

  .brand-4 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .nav-menu-flex-mobile-3 {
    background-color: #fff;
  }

  .navbar-wrapper-mobile-3 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav-menu-5 {
    background-color: #fff;
    flex-direction: column;
  }

  .nav-menu-wrapper-mobile-3 {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  .brand-5 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .paragraph-large-3 {
    margin-top: 0;
    margin-bottom: 28px;
    font-size: 14px;
  }

  .display-7.margin-bottom-20 {
    font-size: 36px;
    line-height: 100%;
  }

  .hero-content-3 {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 20px 32px 24px;
  }

  .display-8.margin-bottom-20 {
    font-size: 36px;
    line-height: 100%;
  }

  .hero-content-4 {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 20px 32px 24px;
  }

  .text-block-4 {
    color: #191919;
    font-size: 15px;
  }

  .linktext.dekorativnelink {
    margin-bottom: 0;
    margin-left: 12px;
    margin-right: 12px;
  }

  .display-9, .display-10 {
    margin-bottom: 0;
    font-size: 28px;
  }

  .card-content {
    width: 98%;
    padding: 32px 32px 10px;
  }

  .paragraph-7 {
    font-size: 16px;
  }

  .service-steps {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .heading-6 {
    font-size: 20px;
  }

  .bold-text-3 {
    font-size: 28px;
  }

  .card_image_wrapper {
    width: 80%;
  }

  .heading-7 {
    margin-bottom: 0;
    font-size: 28px;
  }

  .grid-footer-4-columns-v14 {
    grid-column-gap: 33px;
    grid-row-gap: 33px;
    grid-template-columns: 1fr;
    place-items: stretch start;
  }

  .container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-top {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .bold-text-5 {
    font-size: 30px;
    line-height: 100%;
  }

  .card-subtitle {
    font-size: 27px;
    line-height: 1em;
  }

  ._w-cards-list {
    padding-left: 0;
    padding-right: 0;
  }

  .card-title {
    font-size: 2.5em;
  }

  .c-card._2 {
    top: 80px;
  }

  .c-card._5 {
    top: 260px;
  }

  .c-card._3 {
    top: 140px;
  }

  .c-card._4 {
    top: 200px;
  }

  ._w-card {
    margin-bottom: 40px;
    padding: 20px;
  }

  .card-details {
    font-size: 16px;
    line-height: 1.2em;
  }

  .c-card-content-divider {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .c-intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  ._w-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header {
    font-size: 3em;
    line-height: 1.2em;
  }

  .menuconatiner {
    overflow: auto;
  }

  .link {
    overflow: visible;
  }

  .macy-container {
    grid-template-columns: 1fr;
  }

  .div-block-10 {
    grid-template-columns: 1fr 1fr;
  }

  .link-2 {
    overflow: visible;
  }

  .brand-6 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .logotext-2 {
    font-size: 18px;
  }

  .nav-menu-6 {
    flex-direction: column;
  }

  .navbar-wrapper-mobile-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand-7 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .logotext-3 {
    font-size: 18px;
  }

  .nav-menu-7 {
    flex-direction: column;
  }

  .nav-menu-wrapper-mobile-4 {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
}

#w-node-c0dbd1ac-6ecc-0d27-e1d4-76d2692e830c-28bd3a59, #w-node-c0dbd1ac-6ecc-0d27-e1d4-76d2692e832d-28bd3a59 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2dbc92e1-f640-1dc3-f27e-e52bbea09c40-28bd3a5b {
  grid-area: 1 / 3 / 2 / 11;
  justify-self: center;
}


@font-face {
  font-family: 'Unicons';
  src: url('../fonts/unicons-line.woff2') format('woff2'), url('../fonts/unicons-line.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-SemiBold.woff2') format('woff2'), url('../fonts/SpaceGrotesk-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-Bold.woff2') format('woff2'), url('../fonts/SpaceGrotesk-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-Light.woff2') format('woff2'), url('../fonts/SpaceGrotesk-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-Medium.woff2') format('woff2'), url('../fonts/SpaceGrotesk-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-Regular.woff2') format('woff2'), url('../fonts/SpaceGrotesk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'MATERIAL ICONS';
  src: url('../fonts/MaterialIconsRound-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}