@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  --primary-black: #000;
  --primary-white: #fff;
  --primary-red: #B40000;
  --primary-red--hover: #810b0b;
  --primary-gray: #F7F7F7;
  --primary-gray-dark: #3C3C3C;
  --primary-gray-dark--hover: #292929;
  --container-width: 1280px;
  --default-border-radisu: 18px;
}

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

.mb-20 {
  margin-bottom: 1.25rem !important;
}

.mb-30 {
  margin-bottom: 1.875rem !important;
}

.mb-40 {
  margin-bottom: 2.5rem !important;
}

.button {
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease-in-out;
  border-radius: 18px;
  text-decoration: none;
  width: fit-content;
}
.button--red {
  background-color: var(--primary-red);
  color: var(--primary-white);
}
.button--red:hover {
  background-color: var(--primary-red--hover);
  color: var(--primary-white);
}
.button--white {
  background-color: var(--primary-white);
  color: var(--primary-black);
}
.button--white:hover {
  background-color: var(--primary-gray);
  color: var(--primary-black);
}
.button--dark-gray {
  background-color: var(--primary-gray-dark);
  color: var(--primary-white);
}
.button--dark-gray:hover {
  background-color: var(--primary-gray-dark--hover);
  color: var(--primary-white);
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

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

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Remove ul style */
ul {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}

/* Remove input border */
input:focus-visible {
  outline: unset;
}

/* Remove input autocomplete */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  /* Revert text color */
  -webkit-text-fill-color: unset !important;
  color: unset !important;
  caret-color: unset !important;
  /* Revert background color */
  transition: background-color 5000s ease-in-out 0s;
}

hr {
  margin-block-start: 0;
  margin-block-end: 0;
}

button {
  padding-block: 0;
  padding-inline: 0;
  border-width: 0;
  text-rendering: auto;
  color: unset;
  letter-spacing: unset;
  word-spacing: unset;
  text-align: unset;
  background-color: unset;
  text-transform: unset;
  text-indent: 0;
  text-shadow: none;
  display: unset;
}

textarea {
  /* Reset basic styling */
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  /* Reset typography */
  font: inherit;
  color: inherit;
  line-height: inherit;
  /* Reset size */
  width: auto;
  height: auto;
  resize: none;
  /* Optional: Remove scrollbars if not needed */
  overflow: hidden;
}

/* Optional: Reset user agent styles for other states (focus, hover, etc.) */
textarea:focus,
textarea:hover,
textarea:active {
  outline: none;
  box-shadow: none;
}

.typography--center {
  text-align: center;
}
.typography--left {
  text-align: left;
}
.typography--right {
  text-align: right;
}
.typography--red {
  color: var(--primary-red);
}
.typography--small {
  font-size: 0.8rem;
  font-weight: 200;
}
.typography--header-gray {
  color: var(--primary-dark-gray);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.1rem;
}
@media (min-width: 700px) {
  .typography--header-gray {
    font-size: 1.3rem;
  }
}
.typography--header-gray::before {
  content: "";
  display: block;
  width: 150px;
  height: 4px;
  background-color: var(--primary-red);
  margin-bottom: 1rem;
}
@media (min-width: 700px) {
  .typography--header-gray::before {
    width: 200px;
  }
}
.typography--h1-size {
  font-size: 2rem;
}
@media (min-width: 700px) {
  .typography--h1-size {
    font-size: 2.5rem;
  }
}
@media (min-width: 1075px) {
  .typography--h1-size {
    font-size: 3.75rem;
  }
}

h1 {
  font-size: 2rem;
}
@media (min-width: 700px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1075px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.7rem;
}
@media (min-width: 700px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1075px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 700px) {
  h3 {
    font-size: 2rem;
  }
}

a {
  color: var(--primary-red);
}

ul {
  list-style-type: disc;
  margin-left: 1.5rem;
}
@media (min-width: 700px) {
  ul {
    margin-left: 2rem;
  }
}

p + p {
  margin-top: 1rem;
}
@media (min-width: 700px) {
  p + p {
    margin-top: 1.5rem;
  }
}
p + ul {
  margin-top: 1rem;
}
@media (min-width: 700px) {
  p + ul {
    margin-top: 1.5rem;
  }
}

ul + p {
  margin-top: 1rem;
}
@media (min-width: 700px) {
  ul + p {
    margin-top: 1.5rem;
  }
}

.no-scroll {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 var(--container-gutter);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 20px;
}
@media (min-width: 700px) {
  .container {
    gap: 1.8rem;
  }
}
@media (min-width: 1075px) {
  .container {
    gap: 2.5rem;
  }
}

.section {
  width: 100%;
  margin: auto;
  padding: 2.5rem 0;
}
@media (min-width: 700px) {
  .section {
    padding: 3rem 0;
  }
}
@media (min-width: 1075px) {
  .section {
    padding: 4rem 0;
  }
}
.section--light {
  background-color: var(--color-white);
  color: var(--color-black);
}
.section--dark {
  background-color: var(--color-black);
  color: var(--color-white);
}
.section--header-default {
  padding-bottom: 0rem;
}

.navbar {
  width: 100%;
  background-color: var(--primary-white);
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
@media (min-width: 700px) {
  .navbar {
    height: 84px;
  }
}
.navbar img {
  width: auto;
  height: 100%;
  max-width: none;
}

.navbar__container {
  max-width: var(--container-width);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  padding: 10px 20px;
  z-index: 100;
  position: relative;
}
.navbar__container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; /* stín bude na spodku navbaru */
  height: 3px; /* tenká "linka", na kterou se stín hodí */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  pointer-events: none; /* aby to neblokovalo kliknutí */
}
@media (min-width: 1075px) {
  .navbar__container::after {
    display: none;
  }
}

.navbar__column {
  height: 100%;
}

.navbar__column--mobile {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar__toggle {
  cursor: pointer;
}
@media (min-width: 1075px) {
  .navbar__toggle {
    display: none !important;
  }
}
.navbar__toggle--open {
  display: none;
  height: 13px !important;
  width: auto;
}
.navbar__toggle--open--active {
  display: block;
}
.navbar__toggle--close {
  display: none;
  width: 44px !important;
  height: auto;
  width: auto;
  padding: 5px;
}
.navbar__toggle--close--active {
  display: block;
}

.navbar__certified {
  height: 100%;
  width: auto;
}
@media (min-width: 1075px) {
  .navbar__certified {
    order: 3;
  }
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1075px) {
  .navbar__inner {
    order: 3;
  }
}

.navigation {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding: 0 1.5rem 2rem 1.5rem;
  background-color: var(--primary-white);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: max-height 0.4s ease, opacity 0.2s ease, visibility 0.4s ease;
}
.navigation--active {
  max-height: 100vh;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 700px) {
  .navigation {
    top: 84px;
    height: calc(100dvh - 84px);
    gap: 1rem;
  }
}
@media (min-width: 1075px) {
  .navigation {
    position: relative;
    top: auto;
    left: auto;
    height: 100%;
    max-height: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
  }
}

.navigation__menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 1.5rem;
}
@media (min-width: 1075px) {
  .navigation__menu ul {
    flex-direction: row;
    align-items: center;
    gap: 0rem;
    margin-left: 0;
  }
}
@media (min-width: 1440px) {
  .navigation__menu ul {
    gap: 0.5rem;
  }
}
.navigation__menu a {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s ease;
}
.navigation__menu a:hover {
  color: var(--primary-red--hover);
}
@media (min-width: 1075px) {
  .navigation__menu a {
    font-size: 1rem;
    font-weight: 400;
    padding: 8px 16px;
  }
}
.navigation__menu li.current-menu-item a {
  color: var(--primary-red) !important;
}
@media (min-width: 1075px) {
  .navigation__menu li.current-menu-item a {
    color: var(--primary-white) !important;
    background-color: var(--primary-red);
    border-radius: 19px;
  }
}
@media (min-width: 1075px) {
  .navigation__menu {
    display: flex;
    align-items: center;
    padding: 0;
  }
}

.lang-selector {
  display: flex;
  gap: 3px;
  width: fit-content;
  margin: 0 auto;
  padding: 1.5px;
  border: 1px solid var(--primary-red);
  border-radius: 34px;
}
@media (min-width: 1075px) {
  .lang-selector {
    margin: 0;
    height: fit-content;
  }
}

.lang-selector__lang {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px 15px;
  border-radius: 29px;
  font-size: 1.3rem;
}
@media (min-width: 1075px) {
  .lang-selector__lang {
    font-size: 1rem;
  }
}
.lang-selector__lang a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--primary-black);
  transition: color 0.3s ease;
}
.lang-selector__lang a:hover {
  color: var(--primary-red);
  font-weight: 600;
}
.lang-selector__lang a:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}
.lang-selector__lang--active {
  background-color: var(--primary-red);
  color: var(--primary-white);
}
.lang-selector__lang--active a {
  color: var(--primary-white);
}
.lang-selector__lang img {
  width: auto;
  height: 1.2rem;
}

.header {
  margin-top: 60px;
  width: 100%;
}
@media (min-width: 700px) {
  .header {
    margin-top: 84px;
  }
}
.header--100 {
  position: relative;
  height: calc(100dvh - 60px);
}
@media (min-width: 700px) {
  .header--100 {
    height: calc(100dvh - 84px);
  }
}

.header__overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 98;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.header__content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 98;
  justify-content: center;
  padding: 20px;
}

.header__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1075px) {
  .header__inner {
    align-items: flex-start;
    text-align: left;
    gap: 30px;
  }
}

.header__subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-white);
  text-transform: uppercase;
}
@media (min-width: 1075px) {
  .header__subtitle {
    font-size: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .header__subtitle {
    font-size: 1.8rem;
  }
}

.header__title {
  font-weight: 700;
  color: var(--primary-white);
  line-height: 1.2;
}

.header__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 1075px) {
  .header__buttons {
    flex-direction: row;
    gap: 20px;
  }
}

.footer {
  width: 100%;
  background-color: var(--primary-gray);
  padding: 0.5rem 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 48px;
}

.footer__box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 700px) {
  .footer__box {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.footer__box-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
  width: fit-content;
}
.footer__box-item__box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__box-item__box--top {
  align-items: flex-start;
}
.footer__box-item a {
  color: var(--primary-black);
  text-decoration: none;
}
.footer__box-item span {
  width: max-content;
}

.footer__rows {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer__rows span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__copyright {
  padding-top: 3rem;
  color: var(--primary-black);
  font-size: 0.9rem;
  text-align: center;
}
.footer__copyright a {
  color: var(--primary-black);
  text-decoration: none;
}

#slider-homepage-cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  /* jen aktivní slide */
}
#slider-homepage-cover .splide__gallery,
#slider-homepage-cover .splide__track {
  height: 100%;
}
#slider-homepage-cover .splide__slide {
  overflow: hidden;
}
#slider-homepage-cover .splide__slide img {
  width: 110%;
  height: 100%;
  object-fit: cover;
  display: block;
  overflow: hidden;
  transition: transform 10s ease;
}
#slider-homepage-cover .splide__slide.is-active img {
  transform: scale(1.2);
}

.two-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 700px) {
  .two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* dva sloupce */
    gap: 1rem;
  }
}
@media (min-width: 1075px) {
  .two-columns {
    gap: 2.5rem;
  }
}
.two-columns img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: var(--default-border-radisu);
}
.two-columns--certificates .two-columns__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--primary-gray);
  border-radius: var(--default-border-radisu);
  padding: 20px;
}
.two-columns--certificates img {
  width: auto;
  margin: auto;
  max-height: 419px;
}

.two-columns__item--space-b {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.two-columns__item p + a {
  margin-top: 1rem;
}

.three-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 700px) {
  .three-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* dva sloupce */
    gap: 1rem;
  }
}
@media (min-width: 1075px) {
  .three-columns {
    gap: 2.5rem;
    grid-template-columns: repeat(3, 1fr); /* dva sloupce */
  }
}

.three-columns__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--primary-gray);
  border-radius: var(--default-border-radisu);
  padding: 2rem;
}
.three-columns__item img {
  height: 60px;
  width: fit-content;
}

.three-columns__galery {
  width: 100%;
  height: 300px;
  max-height: 300px;
  border-radius: var(--default-border-radisu);
  position: relative;
  overflow: hidden;
}
.three-columns__galery img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: var(--default-border-radisu);
  transition: 0.3s ease-in-out;
}
.three-columns__galery img:hover {
  transform: scale(1.1);
}

.two-columns-gray {
  flex-direction: column-reverse;
  gap: 1rem;
  display: flex;
  /* ŠEDÝ BOX (text) – ten určuje výslednou výšku */
  /* OBRÁZEK – absolutní pozicování, aby neurčoval výšku */
}
@media (min-width: 1075px) {
  .two-columns-gray {
    flex-direction: row;
    gap: 2.5rem;
  }
}
.two-columns-gray h3 {
  margin-bottom: 1rem;
  width: 100%;
  padding: 8px 15px;
  background-color: var(--primary-white);
  border-radius: var(--default-border-radisu);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (min-width: 1075px) {
  .two-columns-gray--right {
    flex-direction: row-reverse;
  }
}
.two-columns-gray__item {
  flex: 1;
  min-width: 0;
  display: flex;
}
.two-columns-gray__text {
  background: var(--primary-gray);
  border-radius: var(--default-border-radisu);
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1.5rem;
}
@media (min-width: 1075px) {
  .two-columns-gray__text {
    padding: 2rem;
  }
}
.two-columns-gray__text--version-2 {
  gap: 1rem;
}
.two-columns-gray__text--version-2 h3 {
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.two-columns-gray__text--version-2 p + p {
  margin-top: 0.5rem;
}
.two-columns-gray__image {
  height: 350px;
  position: relative;
  border-radius: var(--default-border-radius);
  overflow: hidden;
  width: 100%;
  flex: 1;
}
@media (min-width: 1075px) {
  .two-columns-gray__image {
    height: auto;
    min-height: 272px;
  }
}
.two-columns-gray__image img {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover; /* vyplní a případně ořízne */
  display: block;
  border-radius: var(--default-border-radisu);
}

.two-columns-gray-box {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
  padding: 1rem;
  background-color: var(--primary-gray);
  border-radius: var(--default-border-radisu);
}
@media (min-width: 1075px) {
  .two-columns-gray-box {
    padding: 2rem;
    gap: 2.5rem;
    flex-direction: row;
  }
}
.two-columns-gray-box__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1920px) {
  .two-columns-gray-box__item {
    gap: 2rem;
  }
}
.two-columns-gray-box img {
  width: 100%;
  border-radius: var(--default-border-radisu);
  height: auto;
  display: block;
}

.gray-box {
  width: 100%;
  background-color: var(--primary-gray);
  border-radius: var(--default-border-radisu);
  padding: 1rem 20px;
  text-align: center;
}
@media (min-width: 700px) {
  .gray-box {
    padding: 2rem 2rem;
  }
}

.slider {
  width: 100%;
  height: 100%;
}
.slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  overflow: hidden;
  border-radius: var(--default-border-radisu);
}
.slider .splide__pagination {
  position: relative;
  margin-top: 2rem;
}
.slider .splide__pagination__page {
  background: var(--primary-red);
  opacity: 1;
}
.slider .splide__pagination__page.is-active {
  background: var(--primary-black);
}

.logos .splide__pagination {
  position: relative;
  margin-top: 1rem;
}
.logos .splide__pagination__page {
  background: var(--primary-red);
  opacity: 1;
}
.logos .splide__pagination__page.is-active {
  background: var(--primary-black);
}
.logos .splide__list {
  display: flex !important;
  flex-wrap: nowrap;
}
@media (min-width: 700px) {
  .logos .splide__list {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.logos .splide__list li {
  width: 100%;
}
@media (min-width: 700px) {
  .logos .splide__list li {
    width: fit-content;
  }
}
.logos img {
  height: 50px;
  width: auto;
  padding: 10px 0px;
}
@media (min-width: 700px) {
  .logos img {
    padding: 10px 20px;
    height: 60px;
  }
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 700px) {
  .contact-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* dva sloupce */
    gap: 1rem;
  }
}
@media (min-width: 1075px) {
  .contact-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* dva sloupce */
    gap: 2.5rem;
  }
}

.contact-box__item {
  padding: 20px;
  background-color: var(--primary-gray);
  border-radius: var(--default-border-radisu);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-box__name p + p {
  margin-top: 0rem;
}
.contact-box__name .title {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: var(--primary-black);
}

.contact-box__contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-box__contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--primary-red);
  text-decoration: none;
}
.contact-box__contact a:hover {
  color: var(--primary-red--hover);
}

.services-portfolio {
  padding: 20px;
  background-color: var(--primary-gray);
  border-radius: var(--default-border-radisu);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1075px) {
  .services-portfolio {
    padding: 32px;
  }
}

.services-portfolio__box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.services-portfolio__box img {
  height: 50px;
  width: auto;
  border-radius: unset;
}

.map-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .map-block {
    gap: 2rem;
  }
}
@media (min-width: 1075px) {
  .map-block {
    gap: 2.5rem;
  }
}

.map-block__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 700px) {
  .map-block__inner {
    flex-direction: row;
    gap: 1rem;
  }
}
@media (min-width: 1075px) {
  .map-block__inner {
    gap: 5.5rem;
  }
}

.maps {
  width: 100%;
  height: 300px;
}
.maps iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}
@media (min-width: 700px) {
  .maps {
    min-width: 300px;
    width: 300px;
    height: 300px;
  }
}
@media (min-width: 1075px) {
  .maps {
    min-width: 400px;
    width: 400px;
    height: 300px;
  }
}

.where-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .where-box {
    gap: 2rem;
  }
}
@media (min-width: 1075px) {
  .where-box {
    gap: 3rem;
  }
}

.download-files {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.download-files__box {
  display: flex;
  flex-direction: column;
  column-gap: 2rem;
  row-gap: 1rem;
}
@media (min-width: 700px) {
  .download-files__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* dva sloupce */
    column-gap: 1rem;
  }
}
@media (min-width: 1075px) {
  .download-files__box {
    column-gap: 2.5rem;
  }
}

.download-files__item {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}
.download-files__item:hover {
  color: var(--primary-red--hover);
}

.breadcrumbs {
  display: flex;
  margin-top: 0.7rem;
}

.breadcrumbs__list {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}

.img-item {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: var(--default-border-radisu);
}
.img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--default-border-radisu);
}

.img-item__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}

.img-item__title {
  background-color: var(--primary-gray);
  padding: 10px 20px;
  border-radius: var(--default-border-radisu);
  width: 100%;
}
.img-item__title h3 {
  font-size: 1.3rem;
  color: var(--primary-red);
}
.img-item__title p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-black);
}

body {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  background-color: var(--color-black);
}

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