@charset "UTF-8";
:root {
  --primary: #1f1528;
  --accent: #40e0d0;
  --text-body: #d0d0d0;
  --gray: #79737d;
  --stroke: #432f55;
  --stroke-dark: #24364e;
  --background: #1f1528;
  --background-light: #2d2039;
  --background-light-hover: #402e52;
  --white: #ffffff;
  --black: #000000;
  --cc-btn-primary-bg: #40e0d0;
  --cc-btn-primary-hover-bg: #19d3c1;
  --cc-btn-secondary-text: black;
  --cc-btn-primary-text: black;
}

/* CSS Reset */
/* -------------------------------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Set body defaults */
html,
body {
  hanging-punctuation: first last;
}

body {
  min-height: 100svh;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

/* Margins */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

header,
footer,
main,
section,
article {
  container-type: inline-size;
}

/* Images and other content */
svg,
video {
  display: block;
  max-width: 100%;
}

img,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1rem;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Base animations and transitions for people without any preferences */
@media (prefers-reduced-motion: no-preference) {
  :has(:target) {
    scroll-behavior: smooth;
    scroll-padding-top: 2.5rem;
  }
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: initial;
  }
}
/* Typography */
/* -------------------------------------------------------------------- */
::-moz-selection {
  background: #40e0d0;
  color: #000000;
}
::selection {
  background: #40e0d0;
  color: #000000;
}

body {
  font-family: "Martel Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #d0d0d0;
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  line-height: 1.2;
  color: #ffffff;
}

h2,
h3 {
  margin-bottom: 1.5rem;
}

h2:has(+ p) {
  margin-bottom: 1rem;
}

.subheader {
  margin-bottom: 1.5rem;
  max-width: 48rem;
}

h1,
.h1 {
  font-family: "Martel Sans", serif;
  font-size: clamp(2.5rem, 1.3rem + 4.8vw, 4rem);
  font-weight: 600;
}

h2,
.h2 {
  font-family: "Martel Sans", serif;
  font-size: clamp(2.5rem, 1.875rem + 2vw, 3rem);
  font-weight: 600;
}

h3,
.h3 {
  font-family: "Martel Sans", serif;
  font-size: clamp(1.75rem, 1.125rem + 2vw, 2.25rem);
  font-weight: 600;
}

h4,
.h4 {
  font-family: "Martel Sans", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.fs-small {
  font-size: 0.85rem;
}

a {
  color: #40e0d0;
  text-decoration: underline;
  text-decoration-thickness: max(0.08em, 1px);
  text-underline-offset: 0.15em;
}

a:is(:hover, :focus) {
  text-decoration: underline;
  text-decoration-thickness: max(0.08em, 1px);
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.fs-medium {
  font-size: 1.25rem;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

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

.fc--accent {
  color: #40e0d0;
}

.fc--text-body {
  color: #d0d0d0;
}

.fc--white {
  color: #ffffff;
}

.grid-even-col {
  --grid-min-width: 360px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(var(--grid-min-width), 100%), 1fr));
  row-gap: 1rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.grid-even-col.even-gap-4 {
  row-gap: 1rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.grid-even-col.even-gap-6 {
  row-gap: 1.5rem;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media (max-width: 30rem) {
  .grid-even-col.even-gap-6 {
    row-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.grid-even-col.col-2-homepage {
  --grid-min-width: 460px;
  row-gap: 1.5rem;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  place-items: center;
}
.grid-even-col.col-2-form {
  --grid-min-width: 450px;
  row-gap: 2.5rem;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
.grid-even-col.col-3 {
  --grid-min-width: 420px;
}
.grid-even-col.col-3.footer-cols {
  row-gap: 3rem;
}
.grid-even-col.col-4 {
  --grid-min-width: 260px;
}

.grid-offer-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 1.5rem;
}
.grid-offer-cards > :last-child {
  grid-column: 2;
}
@media (max-width: 1000px) {
  .grid-offer-cards > :last-child {
    grid-column: auto;
  }
}

.grid-our-story-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 800px) {
  .grid-our-story-videos {
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  }
}

.grid-prace-v-cislech {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 800px) {
  .grid-prace-v-cislech {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 478px) {
  .grid-prace-v-cislech {
    grid-template-columns: 1fr;
  }
}
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #40e0d0;
  color: #000000;
  font-family: "Martel Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 1.5rem 2.5rem 1.25rem 2.5rem;
  border: none;
  border-radius: 10rem;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.button:is(:hover, :focus) {
  background-color: #ffffff;
  text-decoration: none;
}
.button.secondary {
  background-color: #1f1528;
}
.button.secondary:is(:hover, :focus) {
  background-color: #40e0d0;
}
.button.outlined {
  background-color: transparent;
  color: #40e0d0;
  border: 1px solid #40e0d0;
}
.button.outlined:is(:hover, :focus) {
  background-color: #40e0d0;
  color: #ffffff;
}
footer,
.footer {
  padding: 5rem 0 2.5rem 0;
  border-top: solid 1px #432f55;
}
footer .divider-line,
.footer .divider-line {
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3137254902);
}

.footer-cols {
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  row-gap: 3.5rem;
}
.footer-cols > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 320px;
      flex-basis: 320px;
}
@media (max-width: 479px) {
  .footer-cols > * {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.form,
form {
  display: grid;
  gap: 2rem;
  background: #2d2039;
  padding: 2.5rem clamp(1rem, -0.875rem + 6vw, 2.5rem);
  border-radius: 1rem;
}
.form .button,
form .button {
  -ms-flex-item-align: start;
      align-self: start;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

label,
.form-label {
  font-size: 1rem;
  font-family: "Martel Sans", serif;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

input:not(.button, select),
textarea {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 1rem;
  color: #d0d0d0;
  background-color: #1f1528;
  padding: 0.75rem 1rem;
  border: solid 1px #1f1528;
  outline: solid 1px #1f1528;
  resize: none;
  caret-color: #40e0d0;
}
input:not(.button, select):is(:focus, :focus-visible),
textarea:is(:focus, :focus-visible) {
  outline: 1px solid #432f55;
}

/* input:not(:placeholder-shown):valid {
  outline-color: $accent;
}

input:not(:placeholder-shown):invalid {
  outline-color: rgb(211, 55, 55);
}

input:focus:invalid,
textarea:focus:invalid {
  outline-color: $stroke;
} */
::-webkit-input-placeholder {
  color: hsla(0, 0%, 100%, 0.4);
}
::-moz-placeholder {
  color: hsla(0, 0%, 100%, 0.4);
}
:-ms-input-placeholder {
  color: hsla(0, 0%, 100%, 0.4);
}
::-ms-input-placeholder {
  color: hsla(0, 0%, 100%, 0.4);
}
::placeholder {
  color: hsla(0, 0%, 100%, 0.4);
}

.select {
  display: grid;
  grid-template-areas: "select";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  background: #1f1528;
  border: 1px solid #1f1528;
  padding: 0.75rem 1rem;
  cursor: pointer;
  /* &::after {
    content: '';
    justify-self: end;
    width: 0.6em;
    height: 0.45em;
    background-color: $text-body;
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  } */
}
.select select, .select::after {
  grid-area: select;
}

select {
  background: #1f1528;
  color: #d0d0d0;
  border: none;
  outline: none;
  resize: none;
}

/* select option[disabled] {
  color: hsla(0, 0%, 100%, 0.4);
}

select option:not([disabled]) {
  outline-color: $accent;
}

input:focus-within,
textarea:focus-within {
  border: 1px solid $primary;
} */
input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.custom-checkbox {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: #ffffff;
  border: 2px solid #40e0d0;
  border-radius: 0.5rem;
  position: relative;
}

/* Show the checkmark when the checkbox is checked */
input[type=checkbox]:checked {
  background-color: #40e0d0;
}

/* Change background color when the checkbox is checked */
input[type=checkbox]:checked + .custom-checkbox {
  background-color: #40e0d0;
}

/* Style the label */
.checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.checkbox-label span {
  margin-left: 0.5rem;
  font-family: "Martel Sans", system-ui, sans-serif;
  font-size: 1rem;
}
header {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: #1f1528;
  overflow-x: clip;
}

.main-nav {
  --main-nav-height: 72px;
  width: 100%;
  height: var(--main-nav-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}

.nav-logo {
  height: 40px;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  gap: 1rem;
  padding-left: 0;
}
.nav-menu-list img {
  display: none;
}
.nav-menu-list a {
  background: #1f1528;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
}
.nav-menu-list a:is(:hover, :focus) {
  color: #40e0d0;
}

/* Menu button */
.menu-btn {
  position: relative;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.menu-btn-burger {
  width: 24px;
  height: 2px;
  background: #ffffff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.menu-btn-burger::before,
.menu-btn-burger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.menu-btn-burger::before {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.menu-btn-burger::after {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

/* Animation */
.menu-btn.open .menu-btn-burger {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  background: transparent;
}

.menu-btn.open .menu-btn-burger::before {
  -webkit-transform: rotate(45deg) translate(35px, -35px);
          transform: rotate(45deg) translate(35px, -35px);
  background: #ffffff;
}

.menu-btn.open .menu-btn-burger::after {
  -webkit-transform: rotate(-45deg) translate(35px, 35px);
          transform: rotate(-45deg) translate(35px, 35px);
  background: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: calc(100vh - 72px);
    padding-inline: clamp(1rem, 0.7653rem + 0.8163vw, 1.5rem);
    background-color: #1f1528;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    z-index: 100;
    overflow: auto;
  }
  .nav-menu .nav-menu-list {
    padding: 1rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5rem;
    width: 100%;
  }
  .nav-menu .nav-menu-list img {
    display: block;
    max-height: 24px;
    padding-bottom: 2rem;
  }
  .nav-menu-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.25rem;
  }
}
@media (max-width: 1024px) and (max-width: 479px) {
  .nav-menu-list li {
    padding-inline: clamp(1rem, -1.88rem + 12.8vw, 5rem);
    border-radius: 0;
  }
}
@media (max-width: 1024px) {
  .nav-menu-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.5rem;
    background: transparent;
    text-transform: none;
  }
  .nav-menu-list a:is(:hover, :focus) {
    background: transparent;
  }
  .nav-menu.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 479px) {
  .nav-menu {
    padding-inline: 0;
  }
}
.tabs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  list-style: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-column-gap: clamp(1.5rem, 0.8333rem + 2.2222vw, 2.5rem);
     -moz-column-gap: clamp(1.5rem, 0.8333rem + 2.2222vw, 2.5rem);
          column-gap: clamp(1.5rem, 0.8333rem + 2.2222vw, 2.5rem);
  row-gap: 0.5rem;
  margin: 0;
  margin-bottom: 1rem;
}

.tab-button {
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
}
.tab-button:is(:hover, :focus, [aria-selected=true]) {
  color: #40e0d0;
  text-decoration: underline;
  text-decoration-thickness: max(0.08em, 1px);
  text-underline-offset: 0.25em;
}

article,
.article {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
article > img,
article video,
.article > img,
.article video {
  width: 100%;
}
article > *,
.article > * {
  margin-top: 1.5em;
}
article > p,
.article > p {
  margin-top: 1.5em;
}
article > :first-child,
.article > :first-child {
  margin-top: 0;
}
article h1,
article h2,
article h3,
article h4,
article h5,
.article h1,
.article h2,
.article h3,
.article h4,
.article h5 {
  text-align: start;
  margin-bottom: 0;
}
article h3,
.article h3 {
  font-size: 1.5rem;
}
article img,
.article img {
  width: 100%;
}
article ul,
.article ul {
  margin: 0;
  margin-top: 1em !important;
  padding: 0;
  list-style-position: outside;
  padding-left: 1rem;
}
article ul li:not(:first-child),
.article ul li:not(:first-child) {
  margin-top: 0.25rem;
}
article ul li::marker,
.article ul li::marker {
  color: #40e0d0;
}
article .article-card,
.article .article-card {
  background-color: #2d2039;
  padding: clamp(1rem, -0.875rem + 6vw, 2.5rem);
}
article a,
.article a {
  color: #40e0d0;
  text-decoration: none;
}
article a:is(:hover, :focus),
.article a:is(:hover, :focus) {
  text-decoration: underline;
  text-decoration-thickness: max(0.08em, 1px);
  text-underline-offset: 0.15em;
  cursor: pointer;
}
article a:has(img),
.article a:has(img) {
  width: 100%;
}
.label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #40e0d0;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
}
.card {
  background-color: #2d2039;
  padding: 2.5rem clamp(1rem, -0.875rem + 6vw, 2.5rem);
}

.card-oceneni .card-oceneni-logo-wrapper {
  padding: 1.5rem;
}
.card-oceneni .card-oceneni-logo-wrapper img {
  width: 100%;
  max-width: 10rem;
}
.card-oceneni .card-oceneni-footer {
  background-color: #2d2039;
  padding: 1rem;
  border-radius: 1rem;
}

.card-team .card-team-photo {
  margin-bottom: 1.5rem;
}
.card-team .card-team-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-team .card-team-footer .h4 {
  margin-bottom: 0.25rem;
}
.card-team .card-team-footer p:is(:nth-child(2)) {
  margin-bottom: 0.25rem;
  color: #40e0d0;
}
.card-team .card-team-footer p:is(:nth-child(3)) {
  margin-bottom: 1rem;
}

.card-portfolio {
  text-decoration: none;
}
.card-portfolio .card-portfolio-head img {
  display: block;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.card-portfolio .card-portfolio-footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
  color: white;
  font-weight: 600;
  text-align: center;
  background-color: #2d2039;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  height: 100%;
}
.card-portfolio .card-portfolio-footer img {
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.card-portfolio .card-portfolio-footer:has(img) {
  padding: 0.75rem 1rem;
}
.card-portfolio:is(:hover, :focus) {
  text-decoration: none;
}
.card-portfolio:is(:hover, :focus) .card-portfolio-footer {
  background-color: #402e52;
}

.card-napsali-o-nas {
  text-decoration: none;
  color: #1f1528;
  background-color: #ffffff;
  padding: 1.5rem 1.5rem;
  border-radius: 2.5rem;
}
.card-napsali-o-nas .media-logo {
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: auto;
}

.card-nabidka {
  text-decoration: none;
}
.card-nabidka .card-nabidka-head img,
.card-nabidka .card-nabidka-head video {
  display: block;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.card-nabidka .card-nabidka-footer {
  padding-inline: clamp(1rem, 0.375rem + 2vw, 1.5rem);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
  background-color: #2d2039;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  height: 100%;
}
.card-nabidka .card-nabidka-footer > *:is(:not(:last-child)) {
  margin-bottom: 1.5rem;
}
.card-nabidka .card-nabidka-footer .h3 {
  margin-bottom: 0.5rem;
}
.card-nabidka .card-nabidka-footer .button {
  margin-top: auto;
}
.card-nabidka .card-nabidka-footer ul {
  width: 100%;
}

.card-featured-work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #2d2039;
}
.card-featured-work .card-featured-work-thumb {
  -webkit-box-flex: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
  -ms-flex-preferred-size: 15rem;
      flex-basis: 15rem;
}
.card-featured-work .card-featured-work-thumb img {
  width: 100%;
}
.card-featured-work .card-featured-content {
  -ms-flex-preferred-size: 20rem;
      flex-basis: 20rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: clamp(1.5rem, 0.6667rem + 2.6667vw, 2.5rem);
}
.card-featured-work .card-featured-content img {
  max-height: 4rem;
  height: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 62rem) {
  .card-featured-work {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-featured-work .card-featured-content {
    -ms-flex-preferred-size: 0rem;
        flex-basis: 0rem;
  }
  .card-featured-work .card-featured-work-thumb {
    -ms-flex-preferred-size: 0rem;
        flex-basis: 0rem;
  }
}

.card-pripadova-studie {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: #2d2039;
}
.card-pripadova-studie .card-pripadova-studie-thumb img {
  width: 100%;
}
.card-pripadova-studie .card-pripadova-studie-content {
  -ms-flex-preferred-size: 20rem;
      flex-basis: 20rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: clamp(1.5rem, 0.6667rem + 2.6667vw, 2.5rem);
}
.card-pripadova-studie .card-pripadova-studie-content img {
  max-height: 3rem;
  margin-bottom: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 62rem) {
  .card-pripadova-studie {
    grid-template-columns: 1fr;
  }
}

.card-prace-v-cislech {
  border-radius: 2.5rem;
  text-align: center;
}
.container {
  --container-max-width: 1400px;
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 0.7653rem + 0.8163vw, 1.5rem);
}

.container.article {
  --container-max-width: 1050px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fj-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.fj-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.fj-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fj-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fa-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.fa-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.fa-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-x-8 {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}

.gap-x-10 {
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.gap-y-6 {
  row-gap: 1.5rem;
}

.section.padding-both,
section.padding-both {
  padding: clamp(4rem, 1.0833rem + 9.3333vw, 7.5rem) 0;
}
.section.padding-top,
section.padding-top {
  padding-top: clamp(4rem, 1.0833rem + 9.3333vw, 7.5rem);
}
.section.padding-bottom,
section.padding-bottom {
  padding-bottom: clamp(4rem, 1.0833rem + 9.3333vw, 7.5rem);
}
.section.padding-top-article,
section.padding-top-article {
  padding-top: calc(clamp(4rem, 1.0833rem + 9.3333vw, 7.5rem) * 0.5);
}
.section.padding-header,
section.padding-header {
  padding-top: clamp(5rem, -1rem + 16vw, 10rem);
}

.relative {
  position: relative;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

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

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.w-full {
  width: 100%;
}

/* Custom CSS */
/* -------------------------------------------------------------------- */
body {
  background-color: #1f1528;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #432f55;
}
.divider.secondary {
  background-color: #1f1528;
}

.section-404 {
  min-height: 100dvh;
}

.section-hero {
  min-height: calc(100vh - 72px);
  padding: clamp(2.5rem, 0.625rem + 6vw, 4rem) 0;
  padding-top: max(clamp(2.5rem, 0.625rem + 6vw, 4rem), 160px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-hero::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(31, 21, 40);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(31, 21, 40, 0.7959558824)), color-stop(50%, rgba(31, 21, 40, 0.300157563)), to(rgba(31, 21, 40, 0.0480567227)));
  background: linear-gradient(0deg, rgba(31, 21, 40, 0.7959558824) 0%, rgba(31, 21, 40, 0.300157563) 50%, rgba(31, 21, 40, 0.0480567227) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f1528",endColorstr="#1f1528",GradientType=1);
  z-index: -1;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  z-index: -1;
}

.hero-content-wrapper {
  row-gap: 1.5rem;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
.hero-content-wrapper > :first-child {
  -ms-flex-preferred-size: 850px;
      flex-basis: 850px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

.hero-client-logo {
  max-height: clamp(2rem, 0.8rem + 3.2vw, 3rem);
  -o-object-fit: contain;
     object-fit: contain;
}

.page-header {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
.page-header p {
  max-width: 48rem;
}

.article-header {
  margin-bottom: 2.5rem;
}

.text-limited-width {
  max-width: 48rem;
}

.visible-lines-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

ul:not(.nav-menu-list, .tabs-list) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  margin-top: 0;
  padding: 0;
  list-style-position: outside;
  padding-left: 1.25rem;
}
ul:not(.nav-menu-list, .tabs-list) li {
  text-align: start;
}
ul:not(.nav-menu-list, .tabs-list) li::marker {
  color: #40e0d0;
}

.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-bottom: 2.5rem;
  inset: 0;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 1rem;
  background-color: #d0d0d0;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #40e0d0;
}

.social-icon {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  color: #40e0d0;
}
.social-icon:hover {
  color: #ffffff;
}

.shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.youtube-iframe {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 2.5rem;
}

.swiper .youtube-iframe {
  margin-bottom: 1rem;
}

.swiper-pagination {
  margin-bottom: 2.5rem;
}

.client-logo {
  height: max(4rem, 100%);
  max-width: 20rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 2.5rem;
}

.fondy-grid {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.5rem;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
.fondy-grid img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 80px;
}

@media (max-width: 400px) {
  .our-story-total-views {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.prace-v-cislech-icon {
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}