* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Zajistí výšku přes celé okno */
}

:root {
  --hlavni-barva: #B08654;
  --text-barva: #222222;
  --text-barva-80: rgba(34,34,34,0.8);
  --text-barva-15: rgba(34,34,34,0.15);
  --hlavni-barva-10: rgba(176,134,84,0.1);
  --hlavni-barva-80: rgba(176,134,84,0.8);
    color: var(--text-barva);
    font-size: 16px;
    line-height: 1.8;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

*+address, *+dl, *+fieldset, *+figure, *+ol, *+p, *+pre, *+ul {
    margin-top: 25px;
}
address, dl, fieldset, figure, ol, p, pre, ul {
    margin: 0 0 25px 0;
}

p {
    color: var(--text-barva);
    font-size: 16px;
    line-height: 1.8;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

a {
    color: var(--hlavni-barva);
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
    color: var(--hlavni-barva);
}

h1 {
    font-family: "Oswald", sans-serif;
    line-height: 1.4;
    font-weight: 500;
    font-size: 48px;
}

h2 {
    font-family: "Oswald", sans-serif;
    line-height: 1.4;
    font-weight: 500;
    font-size: 32px;
}

h3 {
    font-family: "Oswald", sans-serif;
    line-height: 1.4;
    font-weight: 500;
    font-size: 24px;
}

ul {
    padding: 0;
    list-style: none;
}

ul li {
    padding-left: 40px;
    position: relative;
    margin: 0px 0px 10px 0px;
}

ul li:last-of-type {
    margin-bottom: 0;
}

ul li::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background: url("../img/hydrant-ikonka.svg") no-repeat;
    left: 0;
    top: 3px;
}

ol li {
    position: relative;
    margin: 0px 0px 10px 0px;
    padding-left: 11px;
}

a.button {
    background: var(--hlavni-barva);
    color: white;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 18px;
    outline: none;
    border: none;
    cursor: pointer;
    line-height: 1.8;
    font-family: "Open Sans", sans-serif;
    border: 2px solid var(--hlavni-barva);
    transition: all .5s;
    text-decoration: none;
}

a.button:hover {
    background: transparent;
}


a.secondary {
    background: transparent;
    color: var(--hlavni-barva);
    font-weight: 700;
    padding: 10px 15px;
}

a.secondary:hover {
    background: var(--hlavni-barva);
    color: white;
}


.hlavni-wrapper {
    max-width: 1200px;
    margin: 0px auto;
}



.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 15px 0;
    position: relative;
    z-index: 1;
}

.logo-text {
    margin-left: 12px;
}

.logo p:first-of-type {
    font-family: "Oswald", sans-serif;
    line-height: 1.5;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
    color: var(--hlavni-barva);
}

.logo p:last-of-type {
    font-family: "Open Sans", sans-serif;
    line-height: 1.8;
    font-weight: 400;
    font-size: 20px;
    margin: 0;
}

.hlavni-menu ul li::after {
    display: none;
}


.hlavni-menu ul li.current-menu-item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 3px;
    background: var(--hlavni-barva);
    opacity: 1;
    transition: all .8s;
}

.hlavni-menu ul li.current-menu-item a[uk-scroll]::after {
    opacity: 0;
}

.hlavni-menu ul li.current-menu-item a:hover::after {
    opacity: 1;
}

.obal-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hlavni-menu {
    display: flex;
    align-items: center;
    margin-left: -53px;
    flex: 1;
    justify-content: flex-end;
    padding-left: 20px;
}

.hlavni-menu ul {
    display: flex;
    align-items: center;
    margin: 0;
    margin-left: -40px;
    padding-left: 53px;
    flex-wrap: wrap;
    justify-content: center;
}

.logo > img {
    width: 80px;
}

.hlavni-menu ul li {
    margin: 0;
    padding-left: 40px;
}

.hlavni-menu ul li a {
    text-decoration: none;
    color: var(--text-barva);
    font-size: 16px;
    display: block;
    position: relative;
}

.hlavni-menu ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 3px;
    background: var(--hlavni-barva);
    opacity: 0;
    transition: all .8s;
}

.hlavni-menu ul li a:hover::after{
    opacity: 1;
}

.menu-kontakt .ikonka-telefon {
    background: var(--hlavni-barva);
    padding: 8px;
}

.menu-kontakt {
    display: flex;
    align-items: center;
    padding-left: 53px;
    flex: none;
}

.menu-kontakt p {
    margin: 0;
}

.menu-kontakt p {
    font-size: 14px;
    line-height: 1;
    color: rgba(34,34,34,79);
}

.menu-kontakt a {
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    color: var(--text-barva);
    font-weight: 700;
}

.menu-kontakt a:hover {
    text-decoration: underline;
}

.kontakt-text {
    margin-left: 12px;
}


.hero-sekce {
    clip-path: polygon(100% calc(100% - 120px), 64% 100%, 0 calc(100% - 120px), 0 0, 100% 0);
    background: white;
    position: relative;
}

.hero-sekce img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-sekce::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
}

.post-categories {
    margin: 0px;
}

.post-categories li {
    padding: 0px;
}

.post-categories li::after {
    display: none;
}

.hero-text {
    max-width: 700px;
    position: relative;
    z-index: 1;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0px 135px 0px;
    top: -30px;
    margin: 0px auto;
    text-align: center;
}

.hero-text p, .hero-text h1 {
    color: white;
}

.hero-text p {
    margin-bottom: 43px;
}

.onas-sekce {
    margin: 147px 0px 48px -50px;
}

.onas-sekce > * {
    padding-left: 50px;
}

.neco-malo {
    font-size: 20px;
    color: var(--hlavni-barva);
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
}

.onas h2 {
    margin-top: 16px;
    margin-bottom: 24px;
}

.onas-ikonka-leva {
    display: flex;
    align-items: baseline;
    margin-left: -14px;
}

.onas-ikonka-leva > * {
    padding-left: 14px;
}

.onas-ikonka-leva > img {
    position: relative;
    top: 7px;
}

.onas-ikonka-leva > p {
    margin: 0;
    font-size: 20px;
    font-family: "Oswald", sans-serif;
    line-height: 1.4;
}

.onas-pod {
    opacity: 0.7;
    line-height: 1.8;
    margin-top: 12px;
}

.vice-sekce {
    margin-top: 64px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.onas-leva {
    position: relative;
    min-height: 530px;
}

.onas-leva > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.onas-mala {
    position: absolute;
    right: -12px;
    width: 295px;
    height: 196px;
    bottom: -12px;
    padding: 12px;
    background: white;
    box-shadow: 8px 12px 20px rgba(0, 0, 0, 0.14);
}

.onas-mala > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nasi-hasici {
    background: var(--hlavni-barva-10);
    
}

.mensi-wrapper {
    max-width: 920px;
    margin: 0px auto;
}

.nasi-hasici {
    clip-path: polygon(65% 0%, 100% calc(0% + 120px), 100% 100%, 0 100%, 0% calc(0% + 120px));
    position: relative;
}

.nasi-hasici h2, .aktuality-clanky-uvnitr h2, .kontakt h2, .galerie h2 {
    position: relative;
    text-align: center;
    padding-bottom: 10px;
}

.nasi-hasici h2::after, .aktuality-clanky-uvnitr h2::after, .kontakt h2::after, .galerie h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 3px;
    background: var(--hlavni-barva);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.nasi-hasici-sekce {
    padding: 130px 0px 60px 0;
}

.nasi-hasici-sekce > p, .aktuality-clanky-uvnitr .mensi-wrapper > p, .galerie p {
    opacity: 0.8;
    margin: 23px 0px 44px 0px;
    text-align: center;
}

.hasic {
    width: 100%;
    height: 337px;
    position: relative;
}

.hasic-informace {
    position: absolute;
    bottom: 35px;
    width: 100%;
    left: 0;
    opacity: 0;
    transition: all .4s;
    z-index: 1;
}

.hasic::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--hlavni-barva-80);
    opacity: 0;
    transition: all .4s;
}

.hasic:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--hlavni-barva-80);
    opacity: 1;
}

.hasic:hover .hasic-informace {
    opacity: 1;
}

.hasic img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.hasic-informace p {
    margin: 0 20px;
}

.hasic-informace p:first-of-type {
    font-size: 20px;
    text-align: center;
    font-family: "Oswald", sans-serif;
    color: white;
    line-height: 1.4;
}

.hasic-informace p:last-of-type {
    color: white;
    text-align: center;
    line-height: 1.8;
    margin-top: 4px;
}

.hasici-vice-sekce {
    margin-top: 55px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.nasi-hasici-fotky {
    position: relative;
    z-index: 1;
}

.plameny {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}

.plameny svg {
    max-width: none;
    width: 100%;
}

.aktualita svg {
    fill: rgba(34,34,34,0.56);
}

.aktuality-clanky .obrazek {
    width: 240px;
    flex: none;
    min-height: 250px;
    height: 250px;
}

.aktuality-clanky .obrazek img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.aktualita {
    display: flex;
    margin-left: -36px;
}

.aktualita > * {
    padding-left: 36px;
}

.aktualita .text h3 {
    font-weight: 400;
    color: var(--text-barva);
    margin-bottom: 12px;
}

.aktualita .text-datum {
    display: flex;
    align-items: center;
    margin-bottom: 9px;
}

.aktualita .text-datum svg {
    flex: none;
}

.aktualita .text-datum p {
    color: rgba(34,34,34,0.56);
    margin: 0;
    padding-left: 12px;
}

.aktualita .text-aktuality {
    opacity: 0.8;
    margin-bottom: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aktuality-clanky .uk-grid > * {
    margin-bottom: 80px;
}

.aktuality-clanky .uk-grid {
    margin-top: 70px;
}

.aktuality-clanky .vice-sekce {
    margin-top: 0;
}

.aktuality-clanky {
    margin: 132px 0px 70px 0px;
}

.aktuality-clanky-archiv {
    margin: 80px 0px 0px 0px;
}

.kontakt {
    background-color: var(--hlavni-barva-10);
    padding: 50px 0 140px 0px;
    clip-path: polygon(100% calc(100% - 120px), 36% 100%, 0 calc(100% - 120px), 0 0, 100% 0);
    position: relative;
    
}

.kontakt .mensi-wrapper {
    position: relative;
    z-index: 1;
}

.kontakt h2 {
    margin: 0;
    text-align: left;
}

.kontakt h2::after {
    left: 0;
    transform: none;
}

.kontakt .pole-formulare svg {
    fill: var(--text-barva);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 10px;
    right: 24px;
}

.kontakt .pole-formulare svg.mensi {
    width: 22px;
    height: 22px;
}

.kontakt .pole-formulare label {
    display: block;
    font-size: 15px;
    color: var(--text-barva-80);
}

.kontakt .pole-formulare span {
    color: #DF1818;
}

.kontakt .pole-formulare input {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    padding: 8px 64px 8px 20px;
    border: 1px solid var(--text-barva-15);
    margin-top: 3px;
    margin-bottom: 32px;
}

.kontakt .pole-formulare textarea {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    padding: 8px 64px 8px 20px;
    border: 1px solid var(--text-barva-15);
    margin-top: 3px;
    max-width: 100%;
    min-height: 130px;
}

.kontakt .pole-formulare .pole-uvnitr {
    position: relative;
}

.kontakt h3 {
    margin-bottom: 26px;
    font-weight: 400;
}

.kontakt .formular {
    padding: 34px 40px;
    background: white;
    margin-top: 38px;
    border: 1px solid var(--text-barva-15);
    box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.05);
}

.kontakt input[type="submit"] {
    background: var(--hlavni-barva);
    color: white;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 18px;
    outline: none;
    border: none;
    cursor: pointer;
    line-height: 1.8;
    font-family: "Open Sans", sans-serif;
    border: 2px solid var(--hlavni-barva);
    transition: all .5s;
    text-decoration: none;
    margin-top: 22px;
    display: block;
    width: 100%;
}

.kontakt input[type="submit"]:hover {
    background: transparent;
    color: var(--hlavni-barva)
}

.mapka svg {
    fill: white;
    width: 25px;
}

.mapka .pozadi {
    background: var(--hlavni-barva);
    padding: 10px;
    display: inline-block;
}

.mapka .mapka-text {
    padding-left: 22px;
}

.mapka {
    margin-top: 38px;
    padding: 34px 40px;
    background: white;
    border: 1px solid var(--text-barva-15);
    box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.05);
}

.mapka .mapka-sektor {
    display: flex;
    align-items: center;
    margin-bottom: 45px;
}

.mapka .mapka-sektor p {
    margin: 0;
    font-family: "Oswald", sans-serif;
    line-height: 1.4;
    font-weight: 400;
    font-size: 20px;
    color: var(--text-barva);
}

.mapka .mapka-sektor a {
    color: var(--text-barva);
    opacity: 0.56;
    text-decoration: none;
}

.mapka .mapka-sektor a:hover {
    text-decoration: underline;
}

.mapa-dole iframe {
    width: 100%;
    height: 336px;
}

.galerie {
    clip-path: polygon(65% 0%, 100% calc(0% + 120px), 100% 100%, 0 100%, 0% calc(0% + 120px));
    background: var(--hlavni-barva-10);
    padding: 100px 0px 30px 0px;
}

.galerie-lightbox > div {
    aspect-ratio: 1 / 1;
}

.galerie-lightbox a {
    display: block;
    width: 100%;
    height: 100%;
}

.galerie-lightbox {
    margin-top: 60px;
}

.galerie-podstranka {
    clip-path: none;
    background: none;
    padding: 0;
}

.podstranka-galeroska {
    margin-top: 50px;
}

.podstranka-galeroska h2 {
    margin-top: 70px;
}

.podstranka-galeroska .galerie-lightbox {
    margin-top: 30px;
}

.galerie .lightbox-prvek {
    height: 100%;
}

.galerie .lightbox-prvek a {
    position: relative;
}

.galerie .lightbox-prvek a:hover::after {
    opacity: 1;
}

.galerie .lightbox-prvek a::after {
    transition: all .7s;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background: rgba(176,134,84,0.8);
}

.galerie-lightbox a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.paticka .separator-obalovac {
    display: flex;
    justify-content: center;
}

.paticka {
    margin-top: 60px;
    background-color: var(--hlavni-barva-10);
}

.galerie ~ .paticka {
  margin-top: 0px;
}

.paticka .hlavni-wrapper {
    padding: 50px 0px;
}

.galerie .paticka {
    background: none;
}

.paticka-uvnitr-prava .blabla ul {
    margin-bottom: 0px;
}

.paticka .separator {
    margin: 55px 0px;
    width: 422px;
    height: 1px;
    background: rgba(0,0,0,0.11);
}

.paticka img {
    width: 72px;
}

.paticka .logo p:first-of-type {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    opacity: 1;
}

.paticka .logo p:last-of-type {
    font-size: 16px;
    line-height: 1.8;
}

.paticka .ikonky a {
    text-decoration: none;
}

.paticka-uvnitr {
    display: flex;
    margin-left: -40px;
    align-items: center;
}

.paticka-uvnitr > * {
    padding-left: 40px;
    width: 50%;
}

.paticka-uvnitr .paticka-uvnitr-leva > p {
    font-size: 14px;
    opacity: 0.8;
    text-align: left;
    margin: 18px 0px 23px 0px;
    font-weight: 500;
}

.paticka-uvnitr-prava {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.paticka .paticka-uvnitr-prava p {
    font-family: "Oswald", sans-serif;
    line-height: 1.5;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
    color: var(--hlavni-barva);
    margin-bottom: 13px;
    text-align: initial;
    opacity: 1;
}

.paticka svg {
    fill: var(--text-barva);
    opacity: 0.8;
    width: 22px;
}

.paticka .ikonky {
    display: flex;
    margin-left: -12px;
}

.paticka .ikonky a {
    display: block;
    padding-left: 12px;
}

.paticka-uvnitr-prava a {
    text-decoration: none;
    color: var(--text-barva);
}

.paticka-uvnitr-prava a:hover {
    text-decoration: underline;
}

.paticka-uvnitr-prava ul li::after {
    display: none;
}


.paticka-uvnitr-prava ul li {
    padding: 0;
    margin-bottom: 5px;
}

.paticka .logo {
    margin: 0;
}

.faq {
    margin: 124px 0px 100px 0px;
}

.faq .faq-vrch {
    display: flex;
    align-items: center;
    margin-left: -30px;
}

.faq .faq-vrch > * { 
    padding-left: 30px;
}

.faq .faq-vrch p {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--hlavni-barva);
    margin: 0;
}

.faq .faq-vrch h2 {
    margin: 0;
    margin-top: 16px;
}

.faq .faq-vrch .vice-sekce {
    margin: 0;
    width: 100%;
}

.faq-vrchleva {
    width: 45%;
    flex: none;
}

.faq-spodek {
    margin-top: 40px;
}

.faq-spodek .ikonka svg {
    fill: white;
    width: 25px;
}

.faq-spodek .ikonka {
    padding: 8px;
    background: var(--hlavni-barva);
}

.faq-spodek-posledni {
    display: flex;
    align-items: center;
    margin-left: -15px;
}

.faq-spodek-posledni > div {
    padding-left: 15px;
}

.faq-spodek-posledni .ikonka-pravo p {
    font-weight: 500;
}

.faq-spodek-posledni .ikonka-pravo a {
    color: var(--text-barva);
    opacity: .56;
    text-decoration: none;
}

.faq-spodek-posledni .ikonka-pravo a:hover {
    text-decoration: underline;
}

.faq-spodek-posledni .ikonka-pravo > * {
    margin: 0;
}

.faq-spodek-obrazek {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.faq-spodek-obrazek2 {
    width: 100%;
    aspect-ratio: 1 / 1.6;
}

.faq-spodek-obrazek img, .faq-spodek-obrazek2 img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.faq-spodek .faq-faq a {
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    line-height: 1.4;
    font-weight: 400;
    font-size: 20px;
    color: var(--text-barva);
    align-items: center;
    column-gap: 0;
    padding-left: 25px;
    position: relative;
    padding-right: 130px;
}

.faq-faq li.uk-open a svg{
    transform: translateY(-50%) rotate(180deg);
}

.faq-spodek .faq-faq a svg {
    fill: var(--hlavni-barva);
    width: 20px;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    transition: all .3s;
}

.faq-spodek .faq-faq span {
    position: absolute;
    left: 0;
    top: 0;
}

.faq-faq {
    margin-left: 35px;
}

.faq-spodek .faq-faq .uk-accordion-content {
    margin-top: 11px;
    padding-left: 25px;
}

.faq-spodek ol li {
    margin: 0;
    padding: 0;
    margin-top: 18px !important;
    padding-bottom: 19px;
    position: relative;
}

.faq-spodek ol li::after {
    position: absolute;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #D9D9D9;
    bottom: 0;
    left: 0;
}

.faq-spodek ol li:last-of-type:after {
    display: none;
}

.horni-menu a.burgeros {
    display: none;
}

.podstranka-nadpis h1 {
    color: white;
    text-align: center;
}

.podstranka-obrazek {
    position: relative;
    padding: 40px 0;
}

.podstranka-obrazek::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    left: 0;
    top: 0;
}

.podstranka-nadpis .breadcrumbs {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.podstranka-nadpis .breadcrumbs span, .podstranka-nadpis .breadcrumbs a {
    color: white;
    font-style: italic;
        
    opacity: 0.9;
}

.podstranka .mensi-wrapper {
    margin-top: 70px;
}


.podstranka-obrazek > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
}

.podstranka-obrazek h1 {
    position: relative;
    z-index: 1;
    padding-bottom: 17px;
}

.podstranka-obrazek h1::after {
    content: "";
    width: 100px;
    height: 3px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: var(--hlavni-barva);
}

.podstranka {
  flex: 1; /* Roztáhne hlavní obsah a odtlačí patičku dolů */
}



@media screen and (max-width: 1345px) {
    .horni-menu .logo img {
        width: 80px;
    }
    .logo p:last-of-type {
        font-size: 18px;
    }
    .hlavni-menu .menu-kontakt img {
        width: 25px;
    }
    .hlavni-wrapper {
        padding: 0px 20px;
    }
    .paticka .hlavni-wrapper {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 1120px) {
    h1 {
        font-size: 42px;
        line-height: 1.3;
    }
    h2 {
        font-size: 28px;
    }
    .onas-sekce {
        margin: 100px 0px 48px -50px;
    }
    .faq {
        margin: 74px 0px 100px 0px;
    }
}

@media screen and (max-width: 1035px) {
    .horni-menu .logo img {
        width: 72px;
    }
    .hlavni-menu ul li a {
        font-size: 16px;
    }
    .hlavni-menu ul li {
        padding-left: 43px;
    }
    .hlavni-menu ul {
        margin-left: -43px;
    }
    .hlavni-menu ul {
        display: none;
    }
    .menu-kontakt {
        display: none;
    }
    .horni-menu a.burgeros {
        display: initial;
    }
    .horni-menu a.burgeros > svg {
        width: 40px;
    }
    .hlavni-menu ul.menu-male {
        display: initial;
        margin-left: 0px;
        padding: 0;
    }
    .hlavni-menu ul.menu-male li {
        padding-left: 0;
    }
    .hlavni-menu ul.menu-male a {
        color: white;
        padding: 10px 0px;
    }
    .hero-sekce, .hero-text {
        
    }
    .hero-text {
        padding: 100px 0 150px 0;
    }
}

@media screen and (max-width: 959px) { 
    .kontakt .mensi-wrapper {
        padding: 0px 20px;
    }
    .kontakt .formular, .mapka  {
        padding: 34px 20px;
    }
    .mensi-wrapper {
        padding: 0px 20px;
    }
    .faq-spodek-smazat {
        display: none;
    }
    .faq-faq {
        margin-left: 0px;
    }
    a.button {
        font-size: 15px;
    }
    .faq .faq-vrch {
        flex-direction: column;
    }
    .faq-vrchleva {
        width: 100%;
        text-align: center;
    }
    .vice-sekce {
        justify-content: center;
    }
    .faq .faq-vrch .vice-sekce{
        margin-top: 30px;
    }
    .faq-spodek .faq-faq a {
        padding-right: 30px;
    }
}

@media screen and (max-width: 745px) { 
    h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 639px) { 
    .onas-1 {
        order: 2;
        margin-top: 50px;
    }

    .onas-leva {
        min-height: 400px;
    }

    .onas-mala {
        width: 270px;
    }

    .onas-2 {
        order: 1;
    }
    .onas-sekce .vice-sekce {
        order: 3;
    }
    .aktualita {
        flex-direction: column;
    }
    .aktuality-clanky .obrazek {
        width: 100%;
        min-height: initial;
        height: 220px;
    }
    .aktualita > * {
        margin-top: 25px;
    }
    .aktuality-clanky .uk-grid > * {
        margin-bottom: 40px;
    }
    .hasic {
        height: 217px;
    }
    .mapka .pozadi {
        flex: none;
    }
    .mapka .mapka-sektor {
        flex-direction: column;
    }
    .mapka .mapka-text {
        padding-left: 0px;
        text-align: center;
    }
    .paticka-uvnitr {
        flex-direction: column;
    }
    .paticka-uvnitr > * {
        width: 100%;
    }
    .paticka-uvnitr-prava {
        display: none;
    }
}

@media (max-width: 600px) {
    .wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content {
        margin-top: 25px;
    }
}




/* WP uprava stylu */

.wp-block-media-text {
    margin-left: -30px;
    margin-bottom: 25px;
}

.wp-block-media-text > * {
    padding: 0 !important;
    padding-left: 30px  !important;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
    position: absolute;
    top: 100%;
}

.wpcf7 form .wpcf7-response-output {
    margin-top: 0px;
}