@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Urbanist:ital,wght@0,100..900;1,100..900&family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap');

/*@font-face {
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-regular.woff2") format("woff2");
  font-family: "Plus-Jakarta-Sans-Regular";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/plus-jakarta-sans-v12-latin-500.woff2") format("woff2");
  font-family: "Plus-Jakarta-Sans-Medium";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-700.woff2") format("woff2");
  font-family: "Plus-Jakarta-Sans-Bold";
  font-display: swap;
}
  
'Wix Madefor Text'

"Inter'
'Nunito Sans'

'Urbanist'
'DM Sans'



*/
:root {
  --font-size-default: 14px;
  --font-size-big: 16px;
  --font-size-small: 13px;
  --font-headline: 'Inter', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;  
  --font-family-regular: 'Nunito Sans', sans-serif;;
  --font-family-medium: 'Nunito Sans', sans-serif;;
  --font-family-bold: 'Nunito Sans', sans-serif;;
  --text-line-height-default: 1.6;
  --text-line-height-variant-10: 1.45;
  --text-line-height-variant-20: 1.35;
  --text-line-height-variant-30: 1.15;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.125rem;
  --paragraph-mb: 1.125rem;
}
@media (min-width: 576px) {
  :root {
    --font-size-default: 16px;
    --font-size-big: 18px;
    --font-size-small: 14px;
  }
}
@media (min-width: 992px) {
  :root {
    --font-size-h1: 3rem;
    --font-size-h2: 2.25rem;
    --font-size-h3: 1.625rem;
    --font-size-h4: 1.25rem;
  }
}
html,
body {
  background-color: var(--color-dynamic-background-primary);
  color: var(--color-dynamic-on-background-variant-10);
  color-scheme: light;
  font-weight: 400;
  font-size: var(--font-size-default);
  line-height: 1em;
  font-family: var(--font-family-regular), "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

p,
a,
span,
figcaption,
button,
input,
optgroup,
select,
textarea {
  line-height: var(--text-line-height-default);
}

p {
  margin-bottom: 1.85rem;
}
p + .btn-row {
  margin-top: 3rem;
}
p a {
  text-decoration: underline;
}
p a:hover {
  color: var(--color-key-primary);
}
.has-legal-links p a {
  font-family: var(--font-family-bold);
}

p:last-of-type {
  margin-bottom: 0;
}

a {
  color: var(--color-on-background);
  text-decoration: inherit;
  cursor: pointer;
}
a:focus:not(:focus-visible) {
  outline: none;
}
a:focus-visible:not(:hover) {
  outline: var(--focus-default);
  outline-offset: var(--focus-offset);
  transition: unset;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  margin-bottom: 1.25rem;
  color: var(--color-dynamic-on-background-primary);
  line-height: var(--text-line-height-variant-20);
  font-family: var(--font-headline);
  font-weight: 600;
}
h1 b,
h1 strong,
.h1 b,
.h1 strong,
h2 b,
h2 strong,
.h2 b,
.h2 strong,
h3 b,
h3 strong,
.h3 b,
.h3 strong,
h4 b,
h4 strong,
.h4 b,
.h4 strong {
  font-family: var(--font-headline);
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a {
  line-height: var(--text-line-height-variant-20);
}

h1,
.h1 {
  margin-bottom: 1.3rem;
  font-size: var(--font-size-h1);
  line-height: 115%;
  letter-spacing: -0.02em;
}
h1.headline-small,
.h1.headline-small {
  font-size: calc(var(--font-size-h1) * 0.8);
}

.h1 {
  font-size: var(--font-size-h1) !important;
}

h2,
.h2 {
  position: relative;
  font-size: var(--font-size-h2);
  letter-spacing: -0.015em;
}
h2.has-line-before,
.h2.has-line-before {
  position: relative;
}
h2.has-line-before::before,
.h2.has-line-before::before {
  display: flex;
  position: absolute;
  top: calc(0.5em - var(--headline-line-before-h) * 0.5);
  width: calc((100vw - var(--container-width)) * 0.5 - var(--bs-gutter-x) * 0.5);
  height: var(--headline-line-before-h);
  transform: translateX(calc(-100% - var(--bs-gutter-x) * 0.5));
  background: var(--color-secondary);
  content: "";
}
@media (min-width: 576px) {
  h2.has-line-before::before,
  .h2.has-line-before::before {
    transform: translateX(calc(-100% - var(--bs-gutter-x) * 1));
  }
}
h2.dynamic-size,
.h2.dynamic-size {
  font-size: clamp(20px, 3.5vw, var(--font-size-h2));
}

.h2 {
  font-size: var(--font-size-h2) !important;
}

h3,
.h3 {
  margin-top: 1.85rem;
  font-size: var(--font-size-h3);
  font-family: var(--font-family-regular);
  letter-spacing: -0.015em;
}

.h3 {
  font-size: var(--font-size-h3) !important;
}

h4,
.h4 {
  margin-top: 1rem;
  font-size: var(--font-size-h4);
  line-height: var(--text-line-height-variant-20);
  font-family: var(--font-family-medium);
}

.h4 {
  font-size: var(--font-size-h4) !important;
}

b,
strong,
.text-bold {
  font-size: inherit;
  line-height: inherit;
  font-family: var(--font-family-bold) !important;
}
h3.text-bold {
  font-family: var(--font-headline) !important;
}

.text-small {
  font-size: var(--font-size-small) !important;
}

.text-big {
  font-size: var(--font-size-big);
  line-height: var(--text-line-height-variant-10);
}

.text-primary {
  color: var(--color-static-on-background-light-primary) !important;
}

.text-muted {
  color: var(--color-static-on-background-light-variant-10);
}

.text-white {
  color: var(--color-static-on-background-dark-primary);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}
@media (min-width: 768px) {
  .text-left--md {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left;
  }
}

.tagline {
  display: inline-block;
  padding-bottom: 0.15rem;
  font-size: var(--font-size-small);
  font-family: var(--font-family-bold);
  letter-spacing: 7.2px;
  text-transform: uppercase;
}
.tagline.has-border-bottom {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-on-background-alt);
}

.no-break {
  hyphens: none;
  white-space: nowrap;
}

.no-margin {
  margin: 0;
}

.btn-like {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  background: var(--gradient-background-green-right);
  color: var(--color-on-primary);
  font-size: var(--button-font-size);
  font-family: var(--font-family-bold);
  letter-spacing: 0.35px;
}

#artikel-name h2 {
  font-size: var(--font-size-h3);
  line-height: 130%;
}
#artikel-name h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: var(--text-line-height-default);
}
