:root {
    --white-color: #fff;
    --black-color: #000;
    --text-color: #5E6168;
    --heading-color: #1F1E1E;
    --lines-color: #70707061;
    --dark-blue: #084E92;
    --light-blue: #8CB1D5;
    --bg-gray-color: #F1F1F1;
    --footer-last-color: #9C9C9C;
}

html {
    margin-top: 0 !important;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white-color);
    font-weight: 300;
    font-size: 16px;
    color: var(--text-color);
}

h1 {
    font-size: 52px;
    line-height: 53px;
    font-weight: bold;
    letter-spacing: 0;
    color: var(--heading-color);
}

h2 {
    font-size: 35px;
    line-height: 47px;
    font-weight: bold;
    letter-spacing: 0;
    color: var(--heading-color);
}

h3 {
    font-size: 24px;
    line-height: 29px;
    font-weight: bold;
    letter-spacing: 0;
    color: var(--dark-blue);
}

p {
    font-size: 16px;
    line-height: 25px;
}

:focus {
    outline: none;
}


b,
strong {
    font-weight: 700;
}


.fs-20 {
    font-size: 20px;
    line-height: 27px;
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 42px;
        line-height: 56px;
    }

    h2 {
        font-size: 28px;
        line-height: 32px;
    }

    h3 {
        font-size: 16px;
        line-height: 21px;
    }

}

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

.text-dark-blue {
    color: var(--dark-blue);
}

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

.text-underline {
    text-decoration: underline;
}

.text-no-decoration {
    text-decoration: none;
}

.text-no-decoration:hover {
    text-decoration: none;
}

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

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

.bg-white {
    background-color: var(--white-color);
}

.gap-50 {
    gap: 50px;
}


.border-bottom-grey {
    border-bottom: 1px solid var(--lines-color)
}

ul {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}

img {
    height: auto;
    max-width: 100%;
    ;
}

/* Buttons */

.btn {
    background-color: var(--dark-blue);
    color: var(--white-color);
    border: none;
    border-radius: 0 !important;
    padding: .75rem 1.75rem;
    font-size: 16px;
    font-weight: normal;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--light-blue);
    color: var(--white-color)
}

.btn:active {
    background-color: var(--light-blue) !important;
}

/* END : Buttons */

/* Header */
.company-logo {
    max-width: 284px;
    height: auto;
}

a.custom-logo {
    width: 50%;
}

.nav-link:focus-visible {
    outline: none;
    box-shadow: none;
}

#main-menu {
    background: var(--white-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--lines-color);
}

#main-menu nav {
    padding: 2rem 0;
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-menu.scrolled {
    background-color: var(--white-color);
}

#main-menu.scrolled nav {
    padding: 0.5rem 0;
}

#main-menu.scrolled img.custom-logo {
    transform: scale(0.9);
}

#mainMenuGeoprime a {
    font-weight: normal;
    font-size: 16px;
    color: var(--text-color);
    padding: 0.75rem 1.25rem !important;
}


#mainMenuGeoprime .dropdown-menu {
    background-color: var(--bg-gray-color);
    border: 0;
    margin: 0;
    padding: 0;
}


#mainMenuGeoprime .dropdown-menu a {
    font-size: 14px;
}

#mainMenuGeoprime .dropdown-menu a:hover,
.dropdown-item.active,
.dropdown-item:active {
    background: #d1d1d1;
}


/* Submenu styly - druhá a třetí úroveň */
#mainMenuGeoprime .dropdown-submenu {
    position: relative;
}

#mainMenuGeoprime .dropdown-submenu>.dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0;
    display: none;
    z-index: 1000;
}

#mainMenuGeoprime .dropdown-menu>a:first-child,
#mainMenuGeoprime .dropdown-submenu>a:first-child,
#mainMenuGeoprime .dropdown-submenu>.dropdown-menu a:first-child {
    border-radius: 6px 6px 0 0;
}

#mainMenuGeoprime .dropdown-menu>a:last-child,
#mainMenuGeoprime .dropdown-submenu>a:last-child,
#mainMenuGeoprime .dropdown-submenu>.dropdown-menu a:last-child {
    border-radius: 0 0 6px 6px;
}

/* Zobrazení submenu při hover/show */
#mainMenuGeoprime .dropdown-submenu:hover>.dropdown-menu,
#mainMenuGeoprime .dropdown-submenu.show>.dropdown-menu {
    display: block;
}

/* Styling pro submenu - zachování vašeho designu */
#mainMenuGeoprime .dropdown-submenu>.dropdown-menu {
    background-color: var(--bg-gray-color);
    border: 0;
    margin: 0;
    padding: 0;
}

/* Pro třetí úroveň - posun doleva pokud je málo místa */
#mainMenuGeoprime .dropdown-submenu .dropdown-submenu>.dropdown-menu {
    left: -100%;
    right: 100%;
}

/* Šipka pro submenu */
#mainMenuGeoprime .dropdown-submenu>.dropdown-toggle::after {
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
    margin-left: 10px;
    vertical-align: unset;
}

/* Mobile responsivita pro submenu */
@media (max-width: 991px) {
    #mainMenuGeoprime {
        max-width: 100%;
        overflow: scroll;

    }

    #main-menu.scrolled #mainMenuGeoprime {
        height: calc(100dvh - 130px);
    }

    #main-menu.scrolled #mainMenuGeoprime {
        height: calc(100dvh - 82px);
    }

    #mainMenuGeoprime a {
        white-space: normal !important;
    }

    #main-menu nav {
        overflow: hidden;
    }

    #mainMenuGeoprime .dropdown-submenu>.dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        padding-left: 0;
    }

    #mainMenuGeoprime .dropdown-submenu>.dropdown-menu a {
        padding-left: 2rem !important;
    }

    #mainMenuGeoprime .dropdown-submenu>.dropdown-menu a:first-child,
    #mainMenuGeoprime .dropdown-submenu>.dropdown-menu a:last-child {
        border-radius: 0;
    }

    #mainMenuGeoprime .dropdown-submenu>.dropdown-toggle::after {
        transform: rotate(-90deg);
        transition: transform 0.3s ease;
    }

    #mainMenuGeoprime .dropdown-submenu.show>.dropdown-toggle::after {
        transform: rotate(0deg);
    }
}


/* Pro lepší zobrazení na velkých obrazovkách */
@media (min-width: 1200px) {
    #mainMenuGeoprime .dropdown-submenu>.dropdown-menu {
        min-width: 200px;
    }
}



@media screen and (min-width: 991px) and (max-width: 1199px) {

    #mainMenuGeoprime a {
        padding: 0.8rem 1rem !important;
        line-height: 1.2;
        font-size: 14px;
    }


    #main-menu a svg {
        max-width: 200px !important;
    }
}


@media (min-width: 1200px) {
    #mainMenuGeoprime a {
        padding: .8rem 1rem !important;
        line-height: 1.2;
        font-size: 16px;
    }

    #mainMenuGeoprime a {
        padding: 1rem 1.5rem !important;
    }
}

/* Header -> Hamburger */

.visuallyHidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.hamburger {
    cursor: pointer;
    margin: 0 auto;
    width: 30px;
    height: 25px;
    position: relative;
}

.hamburger .bar {
    padding: 0;
    height: 4px;
    background-color: var(--dark-blue);
    display: block;
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
    position: absolute;
}

.bar1 {
    width: 30px;
    top: 0;
}

.bar2,
.bar3 {
    width: 25px;
    top: 10px;
    right: 0;
}


.bar3 {
    right: 0;
}

.bar4 {
    bottom: 0;
    width: 20px;
    right: 0;
}

.mob-navi:checked+label>.hamburger1>.bar1 {
    transform: rotate(45deg);
    transform-origin: 5%;
    width: 33px
}

.mob-navi:checked+label>.hamburger1>.bar2 {
    transform: translateX(-40px);
    background-color: transparent;
}

.mob-navi:checked+label>.hamburger1>.bar3 {
    transform: translateX(40px);
    background-color: transparent;
}

.mob-navi:checked+label>.hamburger1>.bar4 {
    transform-origin: 5%;
    transform: rotate(-45deg);
    width: 33px;
    right: unset;
}

@media (max-width: 450px) {
    .company-logo {
        max-width: 250px;
    }
}

/* END : Header -> Hamburger */

/* END : Header */

/* Footer */

/* Sekce před footerem s mapou */
.pusobeni-a-mapa-section {
    margin-bottom: 90px;
}

footer {
    background: var(--white-color);
    color: var(--text-color);
}

footer a {
    color: var(--text-color);
}

footer .last-footer .row {
    border-top: 1px solid var(--lines-color);
    padding-block: 50px 35px;
    margin-top: 70px;
    color: var(--footer-last-color);
}

.footer-info .col-12:not(:first-child, :last-child)::after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 7%;
    width: 1px;
    height: 158px;
    background-color: var(--lines-color);
}

.footer-info .col-12:nth-child(2)::after {
    right: -10%;
}

.footer-info .col-12:nth-child(3)::after {
    right: 10%;
}

footer .kontakty {
    max-width: 217px;
}

#map {
    filter: grayscale(100%)
}

@media screen and (max-width: 1199px) {
    .footer-logo-col {
        margin-right: 30px;
    }

    .footer-info .col-12:nth-child(2)::after {
        right: -12%;
    }

    .footer-info .col-12:nth-child(3)::after {
        right: -6%;
    }
}

@media screen and (min-width: 767px) and (max-width: 1199px) {
    .geoprime-info {
        max-width: 312px;
        flex-basis: 312px;
        margin-inline: 40px;
    }

}

@media screen and (max-width: 991px) {

    #map img {
        height: 287px !important;
        object-fit: cover;
    }

    .geoprime-info {
        margin-inline: 0;
    }

    .footer-info .col-12:nth-child(2)::after {
        right: 7%;
    }

    .footer-info .col-12:nth-child(3)::after {
        right: 2%;
    }

    footer .last-footer .row {
        margin-top: 40px;
        padding-top: 40px;
    }

}

@media screen and (max-width: 767px) {
    #map img {
        border-top: 2px solid var(--dark-blue);
    }

    .pusobeni-a-mapa-section {
        margin-bottom: 45px;
    }

    footer .kontakty {
        max-width: unset;
    }

    .footer-info .col-12::after {
        content: none !important;
    }
}

/* END : Footer */


/* -------------------------------------------------------------------------------- */
/*	Components
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*	Components - >Breadcrumbs
/* -------------------------------------------------------------------------------- */

.breadcrumbs {
    display: flex;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-block: 60px 15px;
}

.breadcrumbs a,
.breadcrumbs span {
    color: #99A7BD;
    position: relative;
    text-decoration: none;
    font: normal normal normal 14px / 20px 'Inter';
}

.breadcrumbs span {
    color: #455774;
    text-decoration: underline
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .icon-home {
    display: inline;
}

.breadcrumbs .icon-home svg {
    height: 24px;
    width: 24px;
}

.breadcrumbs a::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 10px;
    background-color: #99A7BD;
    top: 45%;
    right: -20px;
}

@media screen and (max-width: 991px) {
    .breadcrumbs {
        margin-block: 45px 35px;
    }

}

/* -------------------------------------------------------------------------------- */
/*	END : Breadcrumbs
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*	CF7
/* -------------------------------------------------------------------------------- */

form.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}

.form-control {
    padding: 16px 20px;
    border-radius: 0;
    border: 0;
}

.form-control,
.form-control::placeholder {
    font-size: 13px;
    color: var(--footer-last-color);
}

textarea.form-control {
    max-height: 90px;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.wpcf7-form-control-wrap[data-name="files"] {}

.codedropz-upload-handler {
    background-color: var(--bg-gray-color);
    margin-bottom: 0;
    border: 0;
}

.codedropz-upload-container {
    padding: 10px;
}

.codedropz-upload-inner {
    padding-block: 20px;
    border: 2px dashed #c5c5c5;
}

.codedropz-upload-inner h3,
.codedropz-upload-inner span {
    display: none;

}



/** Form upload files */
.codedropz-upload-inner h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.codedropz-upload-inner h3+span {
    display: none;
}

.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {
    color: var(--dark-blue);
    font-weight: 400;
}

.dnd-upload-status .dnd-upload-image {
    border: none;
}

.dnd-upload-status .dnd-upload-details .name span {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.dnd-upload-status .dnd-upload-details .name em {
    color: #444242;
    font-weight: 400;
    font-size: 12px;
}

.dnd-upload-status .dnd-upload-details .dnd-progress-bar {
    background-color: #D9D9D9;
}

.dnd-upload-status .dnd-upload-details .dnd-progress-bar span {
    background-color: #084F91;
    padding-right: 5px;
}

.codedropz-upload-inner:before {
    content: url('../images/svg/upload_files.svg');
    display: block;
    width: 78px;
    margin: 0 auto;
}


.dnd-upload-counter {
    position: absolute;
    right: 20px;
    bottom: 15px;
    font-size: 12px;
}

.wpcf7-submit {
    display: block;
    margin-top: 5px;
    max-width: 225px;
    font-weight: normal;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 1px rgba(13, 110, 253, .25) inset;
}

input.wpcf7-not-valid {
    border: 1px solid red;
}

span.wpcf7-not-valid-tip {
    display: none;
}

@media screen and (min-width: 992px) {
    .obecny-kontaktni-formular form {
        max-width: 80%;
    }

    .wpcf7-submit {
        margin-left: auto;
    }
}


/* -------------------------------------------------------------------------------- */
/*	END : CF7
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/* Custom list styles 
/* -------------------------------------------------------------------------------- */


#main-content ul.second-type {
    list-style: none;
    padding-left: 25px;
}

#main-content ul.second-type li {
    position: relative;
    line-height: 25px;
}

#main-content ul.second-type li:not(:last-child) {
    margin-bottom: 15px;
}

#main-content ul.second-type li::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='Group 2046' viewBox='0 0 12.888 8.624'%3E%3Cpath fill='%231a1818' d='M3.777 0 0 2.193l.033 2.463 5.851-3.417Z' data-name='Path 177'/%3E%3Cpath fill='%231a1818' d='m.09 5.225.04 1.3 1 .594 10.1-5.873L9.116.004Z' data-name='Path 178'/%3E%3Cpath fill='%231a1818' d='m7.004 7.388 2.107 1.235 3.777-2.189-.032-2.467Z' data-name='Path 179'/%3E%3Cpath fill='%231a1818' d='m1.66 7.385 2.11 1.239 9.027-5.221-.04-1.3-1-.594Z' data-name='Path 180'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 13px 9px;
    width: 13px;
    height: 9px;
    position: absolute;
    left: -20px;
    top: 7px;
}

/* -------------------------------------------------------------------------------- */
/* END : Custom list styles 
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Components - > Grid
/* -------------------------------------------------------------------------------- */
.grid-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
    column-gap: 85px;
}

.grid-three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px;
    column-gap: 85px;
}

.grid-four-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 15px;
    column-gap: 85px;
}


@media screen and (min-width: 991px) {
    .grid-three-columns li {
        max-width: 300px;
    }


}

@media screen and (max-width: 991px) {
    .grid-four-columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .grid-two-columns {
        grid-template-columns: 1fr;
        row-gap: 15px;
        column-gap: 0px;
    }

    .grid-three-columns {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        row-gap: 15px;
        column-gap: 0px;
    }

    .grid-four-columns {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        row-gap: 15px;
        column-gap: 0;
    }
}

/* -------------------------------------------------------------------------------- */
/*  Výpis referencí
/* -------------------------------------------------------------------------------- */

.vypis-referenci {
    margin-block: 60px 90px;
}

.grid__item-content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: flex-start;
    transition: opacity 321ms ease-in-out;
}

.masonry-wrap .grid-item {
    float: left;
}

.grid__item-content {
    padding-block: 12px;
}

.masonry-wrap .grid-item img {
    display: block;
    max-width: 100%;
}

.vypis-referenci {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    padding: 0;
    margin: 0;
}

.grid-item {
    display: block;
}

/* Responzivní breakpointy */
@media (max-width: 576px) {
    .vypis-referenci {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .vypis-referenci {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .vypis-referenci {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Optimalizace pro výkon */
.our__work-item {
    will-change: transform;
    contain: layout style paint;
    transition: transform 0.3s ease;
}


.vypis-referenci .arrow-right-darkblue {
    height: 14px;
    width: 14px;
}

.grid__item-content .text-more {
    margin-top: 1em;
    width: 100%;
}



/* -------------------------------------------------------------------------------- */
/*  END : Výpis referencí
/* -------------------------------------------------------------------------------- */

.slick-track {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* -------------------------------------------------------------------------------- */
/*  Paddings and Margins
/* -------------------------------------------------------------------------------- */

.pt-75 {
    padding-top: 75px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-100 {
    padding-bottom: 100px;
}

.py-60 {
    padding-block: 60px;
}


.py-80 {
    padding-block: 80px;
}

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

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

.mt-60 {
    margin-top: 60px;
}


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

.mt-75 {
    margin-top: 75px;
}

.my-75 {
    margin-block: 75px;
}

@media screen and (max-width: 767px) {
    .pt-75 {
        padding-top: 35px;
    }

    .pb-65 {
        padding-bottom: 30px;
    }

    .pb-75 {
        padding-bottom: 35px;
    }

    .pb-100 {
        padding-bottom: 50px;
    }

    .py-80 {
        padding-block: 40px;
    }

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

    .mt-75 {
        margin-top: 35px;
    }

    .my-75 {
        margin-block: 35px;
    }

}

/* -------------------------------------------------------------------------------- */
/* END : Paddings and Margins
/* -------------------------------------------------------------------------------- */

.border-top-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 12px;
    width: calc(100% - 24px);
    height: 1px;
    background-color: var(--lines-color);
}

.border-bottom-line::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 12px;
    width: calc(100% - 24px);
    height: 1px;
    background-color: var(--lines-color);
}


@media screen and (max-width: 567px) {
    .border-top-line::after {
        left: 12px;
        width: calc(100% - 24px);
    }
}


@media screen and (min-width: 992px) {

    .col-divider .col-6,
    .col-divider .col-12 {
        position: relative;
    }

    .col-divider .col-6:not(:last-child)::after,
    .col-divider .col-12:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 0px;
        bottom: 0;
        right: -20%;
        width: 1px;
        height: 135px;
        background-color: var(--lines-color);
    }


}

@media screen and (min-width: 992px) and (max-width: 1199px) {

    .col-divider .col-6:not(:last-child)::after,
    .col-divider .col-12:not(:last-child)::after {
        right: 4%;
    }
}

/* Specifický styl pro obecný rozcestník */

.obecny-rozcestnik .col-divider .col-6:not(:last-child)::after {
    right: 10%;
    top: 32px;
}

/* Subnavigation */


/* -------------------------------------------------------------------------------- */
/*	END : Components
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*	Home Page 
/* -------------------------------------------------------------------------------- */

#hp-hero {
    margin-block: 110px 90px;
}

.header-swiper>.swiper-wrapper>img {
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    width: calc(100% + 1px) !important;
    max-width: calc(100% + 1px) !important;
}

.header-swiper .swiper-slide img {
    width: calc(100% - 2px) !important;
}

.company-logos {
    margin-block: 90px;
}



#logosCarousel .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

#logosCarousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")
}

.carousel-control-next,
.carousel-control-prev {
    width: 55px;
}

.nase-prace-three-cols {
    margin-block: 60px 90px;
}

.nase-prace-three-cols .bg-dark-blue {
    padding: 20px 16px;
}

.nase-prace-three-cols .image-holder {
    min-height: 400px;
}


.nase-prace-three-cols .image-holder a img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.solution-section-main {
    gap: 15px;
    white-space: nowrap;
    cursor: pointer;
}

.solution-text {
    margin: 0;
    display: none;
    animation: slideDown 0.5s ease-out;
    padding-left: 41px;
}

.solution-line {
    width: 100%;
    background-color: var(--lines-color);
    height: 1px;
}

.cta-section {
    margin-block: 90px 45px;
    padding: 35px 70px;
}

.cta-section button {
    white-space: nowrap;
}

.cta-section h2,
.cta-section p {
    margin-bottom: 0;
}

.pusobeni-a-mapa-section span {
    letter-spacing: 6.8px;
}

@media screen and (min-width: 992px) {
    .home .col-divider .col-6 {
        max-width: 230px;
    }

    .company-logos img {
        max-height: 80px;
        max-width: 140px;
    }

}

@media screen and (max-width: 991px) {
    #hp-hero {
        margin-block: 0 55px;
    }

    .company-logos .swiper-wrapper {
        display: flex;
    }

    .company-logos .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .company-logos .swiper-slide img {
        max-height: 60px;
        width: auto;
    }

}

@media (max-width: 767px) {
    .company-logos img {
        max-height: 40px;
    }

    .nase-prace-three-cols {
        margin-block: 30px 40px;
    }

    .solution-text {
        padding-left: 0;
    }

    .cta-section {
        margin-block: 50px;
        padding: 35px 25px;
    }
}


@media screen and (max-width:567px) {
    .mobile-change img {
        position: absolute;
        left: 180px;
        top: -5px;
        width: 37px;
    }
}

/* -------------------------------------------------------------------------------- */
/*	END : Home Page 
/* -------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------- */
/* Kontakt
/* -------------------------------------------------------------------------------- */
@media screen and (min-width: 992px) {

    .konktakt-prvni-sekce .col-12:first-child:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--lines-color);
    }
}

.fakturacni-udaje-section {
    padding-bottom: 80px;
    margin-block: 80px;
}

.fakturacni-udaje-section strong,
.fakturacni-udaje-section span,
.fakturacni-udaje-section a,
.fakturacni-udaje-section p:not(.text-dark-blue),
.fakturacni-udaje-section h3 {
    color: var(--heading-color);
}

.fakturacni-udaje-section:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 24px);
    height: 1px;
    background-color: var(--lines-color);
    margin-inline: auto;
}

@media screen and (max-width: 767px) {
    .fakturacni-udaje-section {
        padding-bottom: 40px;
        margin-block: 60px 40px;
    }

    .fakturacni-udaje-section .col-12:not(:first-child, :last-child) {
        margin-bottom: 35px;
    }

    .fakturacni-udaje-section .kontakty {
        padding-top: 35px;
    }

    .fakturacni-udaje-section:after {
        left: 12px;
        right: unset;
        width: 50%;
    }

    .fakturacni-udaje-section .kontakty:after {
        content: "";
        position: absolute;
        top: 0;
        left: 12px;
        width: 50%;
        height: 1px;
        background-color: var(--lines-color);
        margin-inline: auto;
    }
}

@media screen and (max-width: 380px) {
    .vypis-kontaktu img {
        max-width: 120px;
        height: auto;
    }

}

@media screen and (min-width: 992px) {
    .fakturacni-udaje-section .col-xl-5:after {
        content: "";
        position: absolute;
        top: 0;
        right: -10%;
        width: 1px;
        height: 170px;
        background-color: var(--lines-color);
    }
}

@media screen and (min-width: 1200px) {
    .fakturacni-udaje-section .col-xl-5:after {
        content: "";
        position: absolute;
        top: 0;
        right: 25%;
        width: 1px;
        height: 170px;
        background-color: var(--lines-color);
    }
}


/* -------------------------------------------------------------------------------- */
/*	END : Kontakt
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Právní předpisy a užitečné odkazy
/* -------------------------------------------------------------------------------- */
.page-id-784 .fullwidth-section {
    margin-bottom: 80px;
}

.page-id-784 #main-content ul {
    list-style: none;
}

.page-id-784 #main-content ul li {
    position: relative;
    line-height: 25px;
}

.page-id-784 #main-content ul li:not(:last-child) {
    margin-bottom: 15px;
}

.page-id-784 #main-content ul li::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='Group 1978' viewBox='0 0 10.446 10.446'%3E%3Cpath fill='%230c73ed' d='M4.491 6.486a.527.527 0 0 1-.377-.155 2.493 2.493 0 0 1 0-3.521L6.073.851a2.49 2.49 0 0 1 3.522 3.521l-.9.894a.5303.5303 0 0 1-.749-.751l.894-.894a1.428 1.428 0 0 0-2.018-2.019l-1.956 1.96a1.429 1.429 0 0 0 0 2.02.532.532 0 0 1 0 .751.527.527 0 0 1-.377.155Z' data-name='Path 185'/%3E%3Cpath fill='%230c73ed' d='M2.612 10.325a2.49 2.49 0 0 1-1.761-4.25l.894-.894a.531.531 0 0 1 .751.751l-.894.894a1.4284 1.4284 0 0 0 2.02 2.02l1.959-1.959a1.429 1.429 0 0 0 0-2.02.531.531 0 0 1 .751-.751 2.493 2.493 0 0 1 0 3.521l-1.96 1.959a2.476 2.476 0 0 1-1.76.729Z' data-name='Path 186'/%3E%3Cpath fill='none' d='M0 0h10.446v10.446H0Z' data-name='Path 187'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 11px 11px;
    width: 11px;
    height: 11px;
    position: absolute;
    left: -16px;
    top: 7px;
}

@media screen and (max-width: 767px) {
    .page-id-784 .fullwidth-section {
        margin-bottom: 40px;
    }
}

/* -------------------------------------------------------------------------------- */
/*  END : Právní předpisy a užitečné odkazy
/* -------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------- */
/*	Kategorie Naše práce - UAV - Letecká fotogrammetrie
/* -------------------------------------------------------------------------------- */

.vypis-referenci .vypis-img-holder .podklad-pred-prevzetim-stavby {
    object-position: 56%;
}

.vypis-referenci .vypis-img-holder .digitalni-model-strechy-zamku-suchomasty {
    object-position: right;
}

.vypis-referenci .vypis-img-holder .inventarizace-materialu {
    object-position: right;
}

.vypis-referenci .vypis-img-holder .skenovani-lasske-brany {
    object-position: right;
}

.vypis-referenci .vypis-img-holder .podklad-pro-projekt {
    object-position: right;
}

.vypis-referenci .vypis-img-holder .zamereni-stresnich-prvku {
    object-position: 70%;
}

/* -------------------------------------------------------------------------------- */
/* END : Kategorie Naše práce - UAV - Letecká fotogrammetrie
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/* Kategorie Naše práce - UAV - Letecká fotogrammetrie - Detail projektu
/* -------------------------------------------------------------------------------- */

/* .post-template-page-3d-laser-reference #main-content ul {
    padding-left: 0;
} */

.post-template-page-3d-laser-reference .plocha {
    margin-top: 15px;
}

/* -------------------------------------------------------------------------------- */
/* END : Kategorie Naše práce - UAV - Letecká fotogrammetrie - Detail projektu
/* -------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------- */
/*	Kategorie Naše práce - 3D Laserové skenování
/* -------------------------------------------------------------------------------- */

@media screen and (min-width: 1200px) {

    .post-template-page-3d-laser-reference .reference-3d-banner-title {
        width: 80%;
    }

    .postid-458 .reference-3d-banner {
        background-position-x: 350px;
    }


    .text-more {
        font-weight: 700;
    }


    .vypis-referenci .vypis-img-holder .skenovani-rodinneho-domu {
        object-position: 89%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-monolitickych-konstrukci {
        object-position: 83%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-monolitickych-konstrukci {
        object-position: 83%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-tunelu {

        object-position: 71%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-tramvaje-m31 {
        object-position: 85%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-ocelovych-konstrukci {
        object-position: 70%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-zamku-bruntal {
        object-position: 95%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-energotunelu {
        object-position: 82%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-monolitickych-konstrukci-2 {
        object-position: 76%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-sedimentacni-nadrze {
        object-position: 100%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-energomostu {
        object-position: 100%;
    }

    .vypis-referenci .vypis-img-holder .kenovani-skladovaci-haly {
        object-position: 100%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-magistratu-mesta-ostravy {
        object-position: 92%;
    }

    .vypis-referenci .vypis-img-holder .skenovani-zamku-suchomasty {
        object-position: 91%;
    }

}


/* -------------------------------------------------------------------------------- */
/*	END : Naše práce - Kategorie 3D Laserové skenování
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše práce - Inženýrská geodézie
/* -------------------------------------------------------------------------------- */

.category-inzenyrska-geodezie .grid-item h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--lines-color);
}

/* -------------------------------------------------------------------------------- */
/*  END : Naše práce - Kategorie Inženýrská geodézie
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Inženýrská geodézie
/* -------------------------------------------------------------------------------- */
@media screen and (min-width: 991px) {
    .category-inzenyrska-geodezie-nase-sluzby .obecny-rozcestnik .col-divider .col-6:nth-child(4)::after {
        content: unset;
    }
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Inženýrská geodézie
/* -------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Inženýrská geodézie - Digitální model terénu (DMT)
/* -------------------------------------------------------------------------------- */

.postid-883 .col-divider .col-6:not(:last-child)::after {
    top: 70px;
    right: 8%;
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Inženýrská geodézie - Digitální model terénu (DMT)
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Inženýrská geodézie - Pasportizace stavby
/* -------------------------------------------------------------------------------- */

@media (min-width: 1200px) {
    .postid-826 .nase-specializace h2::after {
        content: "";
        position: absolute;
        top: -10px;
        right: 5px;
        width: 1px;
        height: 100%;
        background-color: var(--lines-color);
    }
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Inženýrská geodézie - Pasportizace stavby
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Inženýrská geodézie - Výpočet kubatur
/* -------------------------------------------------------------------------------- */

.postid-885 .col-divider .col-6:not(:last-child)::after {
    top: 65px;
    right: 4%;
}

.postid-885 ul.second-type {
    list-style: none;
    padding-left: 25px;
    max-width: 850px;
}

/* -------------------------------------------------------------------------------- */
/* END : Kategorie Naše služby - Inženýrská geodézie - Výpočet kubatur
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/* Kategorie Naše služby - Inženýrská geodézie - Polohopisné a výškopisné zaměření
/* -------------------------------------------------------------------------------- */

.postid-887 .col-divider .col-6:not(:last-child)::after {
    right: 4%;
}

/* -------------------------------------------------------------------------------- */
/* END : Kategorie Naše služby - Inženýrská geodézie - Polohopisné a výškopisné zaměření
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/* Kategorie Naše služby - Inženýrská geodézie - Vytyčení stavby
/* -------------------------------------------------------------------------------- */

.postid-889 .col-divider .col-6:not(:last-child)::after {
    top: 85px;
    right: 4%;
}

/* -------------------------------------------------------------------------------- */
/* END : Kategorie Naše služby - Inženýrská geodézie - Vytyčení stavby
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/* Kategorie Naše služby - Inženýrská geodézie - Dokumentace skutečného provedení
/* -------------------------------------------------------------------------------- */

.postid-891 .col-divider .col-6:not(:last-child)::after {
    top: 75px;
    right: 4%;
}

/* -------------------------------------------------------------------------------- */
/* END : Kategorie Naše služby - Inženýrská geodézie - Dokumentace skutečného provedení
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - UAV Letecká fotogrammetrie
/* -------------------------------------------------------------------------------- */

.nase-prace-three-cols .image-holder a img {
    object-position: right;
}

@media screen and (min-width: 992px) {
    .postid-913 .col-divider .col-6:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 80px;
        bottom: 0;
        right: 4%;
        width: 1px;
        height: 135px;
        background-color: var(--lines-color);
    }
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - UAV Letecká fotogrammetrie
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí
/* -------------------------------------------------------------------------------- */

.category-katastr-nemovitosti .obecny-rozcestnik .col-divider .col-6:nth-child(4)::after {
    content: unset;
}

/* -------------------------------------------------------------------------------- */
/*  END Kategorie Naše služby - Katastr nemovitostí
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí - Vytyčení hranic pozemku
/* -------------------------------------------------------------------------------- */

.postid-831 .grid-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 40px;
}

.postid-831 .col-divider .col-6::after {
    top: 35px;
    right: 21px;
}

@media screen and (min-width: 992px) {
    .postid-831 .col-divider .col-12:not(:last-child)::after {
        top: 35px;
        right: 5%;
    }
}

@media screen and (min-width: 1200px) {
    .zpreseni-hranic-pozemku .col-lg-4 p {
        max-width: 300px;
    }
}

@media screen and (max-width: 767px) {
    .postid-831 .grid-two-columns {
        grid-template-columns: 1fr;
        row-gap: 30px;
        column-gap: 0px;
    }
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Katastr nemovitostí - Vytyčení hranic pozemku
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí - Zaměření pozemku pro projekt domu
/* -------------------------------------------------------------------------------- */

.postid-898 .col-divider .col-6:not(:last-child)::after {
    content: unset;

}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Katastr nemovitostí - Zaměření pozemku pro projekt domu
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí - Vytyčení stavby
/* -------------------------------------------------------------------------------- */
.postid-896 .col-divider .col-6:not(:last-child)::after {
    right: 5%;
}

.postid-896 .prubeh-vytyceni-stavby .col-divider .col-6:not(:last-child)::after {
    content: unset;
}

@media screen and (min-width: 1200px) {
    .postid-896 .col-divider .col-6:not(:last-child)::after {
        height: 100px;
    }
}


/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Katastr nemovitostí - Vytyčení stavby
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí - Geometrický plán
/* -------------------------------------------------------------------------------- */

.category-geometricky-plan {}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Katastr nemovitostí - Geometrický plán
/* -------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí - Geometrický plán - Rozdělení pozemku
/* -------------------------------------------------------------------------------- */

.postid-843 .col-divider .col-6:not(:last-child)::after {
    top: 65px;
    right: 4%;
}

.postid-843 .row-gap-3.col-divider .col-12:not(:last-child)::after {
    top: 30px;
    right: 4%;
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Katastr nemovitostí - Geometrický plán - Rozdělení pozemku
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí - Geometrický plán - Zápis stavby do katastru nemovitostí
/* -------------------------------------------------------------------------------- */

.postid-845 .col-divider .col-6:not(:last-child)::after {
    top: 65px;
    right: 4%;
}

.postid-845 .row-gap-3.col-divider .col-12:not(:last-child)::after {
    top: 10px;
    right: 4%;
    height: 35px;
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Katastr nemovitostí - Geometrický plán - Zápis stavby do katastru nemovitostí
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí - Geometrický plán - Vyznačení věcného břemene
/* -------------------------------------------------------------------------------- */

.postid-847 .col-divider .col-12:not(:last-child)::after {
    top: 0px;
    right: 13%
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Katastr nemovitostí - Geometrický plán - Vyznačení věcného břemene
/* -------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí - Praktické informace
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Katastr nemovitostí - Praktické informace
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí - Praktické informace - Kupujete nebo prodáváte pozemek
/* -------------------------------------------------------------------------------- */

.postid-849 .col-divider .col-12:not(:last-child)::after {
    top: 40px;
    right: 4%;
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Katastr nemovitostí - Praktické informace - Kupujete nebo prodáváte pozemek
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí - Praktické informace - Zaměření pro úvěr a refinancování
/* -------------------------------------------------------------------------------- */

.postid-851 .col-divider .col-12:not(:last-child)::after {
    height: 115px;
    top: 15px;
    right: 4%;
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Katastr nemovitostí - Praktické informace - Zaměření pro úvěr a refinancování
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Katastr nemovitostí - Praktické informace - Kolaudace a geodetické zaměření stavby
/* -------------------------------------------------------------------------------- */

.postid-853 {}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Katastr nemovitostí - Praktické informace - Kolaudace a geodetické zaměření stavby
/* -------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - 3D Laserové skenování
/* -------------------------------------------------------------------------------- */

.postid-932 .fullwidth-section .col-divider .col-12:not(:last-child)::after {
    top: -3px;
    right: 15px;
    width: 1px;
    height: 60px;
}

.postid-932 .row.row-gap-3.col-divider .col-6:not(:last-child)::after {
    top: 72px;
    right: 11px;
    width: 1px;
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - 3D Laserové skenování
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Digitální technická mapa - DTM ČR
/* -------------------------------------------------------------------------------- */

.postid-935 .prubeh-tvorby-dtm .col-divider .col-6:not(:last-child)::after {
    top: 60px;
    right: 7%;
    width: 1px;
    height: 75px;
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Digitální technická mapa - DTM ČR
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Průmyslová metrologie
/* -------------------------------------------------------------------------------- */

.postid-927 .col-divider .col-6:not(:last-child)::after {
    top: 63px;
    bottom: 0;
    right: 4%;
}

.pouzite-technologie img {
    max-width: 100px;
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Průmyslová metrologie
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Konzultace a poradenství v oblasti katastru nemovitostí
/* -------------------------------------------------------------------------------- */



/* -------------------------------------------------------------------------------- */
/*   END : Kategorie Naše služby - Konzultace a poradenství v oblasti katastru nemovitostí
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Kategorie Naše služby - Zaměření inženýrských sítí
/* -------------------------------------------------------------------------------- */

.postid-900 .col-divider .col-6:not(:last-child)::after {
    top: 65px;
    right: 4%;
}

/* -------------------------------------------------------------------------------- */
/*  END : Kategorie Naše služby - Zaměření inženýrských sítí
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*  Detail referencí
/* -------------------------------------------------------------------------------- */

.ref-gallery strong {
    display: block;
    text-align: center;
}

.ref-gallery img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* -------------------------------------------------------------------------------- */
/*	END : Detail referencí
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*	O nás 
/* -------------------------------------------------------------------------------- */

.page-id-37 .timeline {
    margin-block: 75px 54px;
}

.page-id-37 .company-logos {
    margin-block: 0px;
}

.page-id-37 .cta-section {
    margin-top: 60px;
}

.page-id-37 .projekty-section .col-lg-4:first-child img {
    max-width: 155px;
}

@media (min-width: 991px) {
    .page-id-37 .col-divider .col-6:nth-child(3)::after {
        content: unset;
    }

}

@media (min-width: 1200px) {
    .page-id-37 .nase-specializace h2::after {
        content: "";
        position: absolute;
        top: 0;
        right: 35px;
        width: 1px;
        height: 100%;
        background-color: var(--lines-color);
    }

    .page-id-37 p {
        max-width: 840px;
        margin-inline: auto;
    }

    .page-id-37 div:not(#map)>iframe {
        top: -30px;
        max-width: 350px;
        height: 220px;
    }


    .page-id-37 .col-divider .col-6:not(:last-child)::after {
        right: 6%;
    }

    .ikony-sluzby {
        right: 0;
        top: 10px;
        bottom: inherit;
    }
}

@media screen and (max-width: 991px) {
    .projekty-section img {
        max-width: 250px;
    }
}



/* -------------------------------------------------------------------------------- */
/*	END : O nás 
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/* Kariéra 
/* -------------------------------------------------------------------------------- */

.post-type-archive-job .welcome-section h1 {
    max-width: 950px;
}

.post-type-archive-job .welcome-section p {
    max-width: 550px;
}

.kariera-pozice .col-12:not(:last-child) .position__item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--lines-color);
}

.kariera-pozice .col-12:last-child .position__item {
    margin-bottom: 0;
    padding-bottom: 0;
}

@media screen and (min-width: 992px) {

    .left-image img,
    .right-image img {
        object-fit: cover;
    }


    .position__item {
        padding-block: 60px 80px;
    }

    .position__item .position-excerpt {
        max-width: 700px;
    }

    .position__buttons a.btn svg {
        display: inline-block;
        margin-left: 22px !important;
    }

    .free__position .position__buttons {
        min-width: 25%;
        padding-inline: 1em 70px;
        text-align: right;
    }
}

@media screen and (max-width: 991px) {
    .position__item {
        padding-block: 30px 40px;
    }
}

.position__detail-content {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.position__detail-right {
    position: relative;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-position: center center;
    height: 100%;
    margin-left: -15px;
    margin-right: -15px;
}

.position__detail-right:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, .5);
}


/* -------------------------------------------------------------------------------- */
/*	END : Kariéra 
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*	: Kariéra -> Detail pozice
/* -------------------------------------------------------------------------------- */

.single-job form {
    max-width: 450px;
    margin-inline: auto;
}

/* -------------------------------------------------------------------------------- */
/*	END : Kariéra -> Detail pozice
/* -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*	Animations
/* -------------------------------------------------------------------------------- */


@keyframes slideDown {
    from {
        opacity: 0;
        margin-top: 0;
    }

    to {
        opacity: 1;
    }
}

/* -------------------------------------------------------------------------------- */
/*	END : Animations
/* -------------------------------------------------------------------------------- */


















.logo__item {
    text-align: center;
}


/* 3D Laserové skenování new */

.postid-424 #main-content {
    background: white;
}

.postid-424 .special {
    margin-top: -8px;
    font: normal normal normal 18px/35px 'Inter', sans-serif;
    letter-spacing: 0px;
    color: #2F2F2F;
}

.laser-banner {
    background-color: gray;
    background: linear-gradient(to top, #084e92e6, #084e92e6), url('../images/modry-podklad.jpg');
    background-size: cover;
    background-position: center;
    margin: 0px -71px;
}

.dtm-banners {
    margin: 0px -71px;
    background-size: cover;
    background-position: center;
}

.dtm-banners .hexagon .text-white {
    color: #fff !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 186px;
    text-align: center;
}

.dtm-banner-1 {
    background-image: url('../images/dtm/dtm-banner-1.jpg');
}

.dtm-banner-2 {
    background-image: url('../images/dtm/dtm-banner-2.jpg');
}

.dtm-banner-3 {
    background-image: url('../images/dtm/dtm-banner-3.jpg');
}

.gap-25 {
    gap: 25px;
}

.laser-banner-1 {
    height: 220px;
    margin: 0 -86px;
}

.laser-banner-2 {
    /* height: 480px;
    margin-bottom: 60px !important;
    margin-top: 180px; */
}

.laser-banner .img {
    width: 79px;
    background-color: white;
    border-radius: 49px;
    padding: 16px;
}

.laser-banner img {
    width: 48px;
}

.laser-banner .text {
    text-align: center;
    font: normal normal bold 16px/24px 'Inter', sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin-top: 25px;
}

.postid-424 h3 {
    margin-bottom: 34px;
}

.postid-424 #main-content ul {
    padding-left: 20px;
}

.postid-424 #main-content li {
    margin-bottom: 10px;
}

.postid-424 li::marker {
    color: #084F91;
}

.postid-424 .vyhody .right-image .our__work-item {
    transform-origin: left bottom;
    overflow: hidden;
}

.postid-424 .vyhody .left-image .our__work-item {
    transform-origin: top right;
    overflow: hidden;
}

.n1 {
    transform: scale(1.126);
    padding-bottom: 409px !important;
}

.n1 img {
    height: 409px;
}

.n2 {
    transform: scale(1.199);
    padding-bottom: 383px;
}

.n2 img {
    height: 383px;
    object-position: 100%;
}

.n3 {
    transform: scale(1.125);
    padding-bottom: 409px;
}

.n3 img {
    height: 409px;
}

.n4 {
    transform: scale(1.193);
    padding-bottom: 383px;
}

.n4 img {
    height: 383px;
}

.reference .grid-item {
    width: 369px;
}

body.postid-424 {
    background-color: #fff;
}

.postid-424 {
    margin-bottom: 17px;
}

.postid-424 .hexa {
    max-width: 100%;
}

.postid-424 .vyhody {
    margin-top: 84px !important;
    margin-bottom: 70px !important;
}

.postid-424 .vyhody.v2 {
    margin-top: 157px !important;
    margin-bottom: 10px !important;
}

/*.hexa-block {
    margin-top: 30px !important;
}*/

.demo-btn img {
    margin-left: 30px;
}

.custom-headline-2 {
    text-align: left;
    font: normal normal 300 50px/61px 'Inter', sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    margin: 80px 0 45px;
}

.custom-headline-1 {
    text-align: left;
    font: normal normal bold 40px/100px 'Inter', sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.custom-headline-reference {
    text-align: center;
    color: #084E92;
    margin-bottom: 30px;
}

.dynamic-tabs-menu img {
    width: 60px;
    height: 60px;
}

.dynamic-tabs-menu a {
    cursor: pointer;
}

.dynamic-tabs-menu a:hover {
    text-decoration: none;
}

.custom-tab {
    padding-left: 8px;
}

.custom-headline-dynamic-tabs {
    text-align: left;
    font: normal normal bold 34px/42px 'Inter', sans-serif;
    letter-spacing: 0px;
    color: #084F91;
    margin-bottom: 35px;
}

.dynamic-tabs-menu {
    /*height: 95px;
    padding-bottom: 20px;*/
}

.dynamic-tabs-menu::after {
    content: '';
    position: absolute;
    width: calc(95.8% - 20px);
    border-bottom: 1px solid #D8D8D8;
    top: 142px;
    left: 33px;
    display: none;
}

.dynamic-tabs-menu a.active::after {
    content: '';
    position: absolute;
    padding-bottom: 20px;
    width: 100%;
    border-bottom: 7px solid #084E92;
    top: 68px;
    left: 0;
    display: none;
}

.dynamic-tabs-menu a {
    cursor: unset;
}

.dynamic-tabs-menu a.active {
    /*font-weight: bold;*/
    letter-spacing: 0px;
    color: #084E92;
}

/* Reference pro 3D laser */

.reference-3d-banner {
    height: 500px;
    background-size: cover;
    background-position: center;
}

.reference-3d-banner-title {
    width: 100%;
    text-align: left;
    font: normal normal bold 60px/70px 'Inter', sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.reference-3d-banner li,
.reference-3d-banner .plocha {
    font: normal normal 300 17px/19px 'Inter', sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.reference-3d-banner ul {
    padding-left: 20px;
}

.reference-3d-banner li {
    margin-bottom: 25px;
}

.reference-3d-banner .plocha {
    font-weight: bold;
    margin-top: 50px;
    position: absolute;
}

.cil-projektu-headline {
    text-align: left;
    font: normal normal bold 60px/73px 'Inter', sans-serif;
    letter-spacing: 0px;
    color: #084F91;
}

.post-template-page-3d-laser-reference {
    background: #fff;
}

.zajem-3d-banner {
    height: 450px;
    background: #084E92 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    gap: 50px;
}

.zajem-3d-banner .custom-zajem-headline {
    text-align: center;
    font: normal normal bold 80px/97px 'Inter', sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.zajem-3d-banner .btn {
    width: 213px;
}

.konzultace-headline {
    text-align: left;
    font: normal normal bold 33px/42px 'Inter', sans-serif;
    letter-spacing: 0px;
    color: #172D32;
}

.lpopis {
    font: normal normal bold 16px/19px 'Inter', sans-serif;
}





/* Slick styles edit */
.slick-dots {
    position: absolute;
    bottom: -46px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 13px;
    height: 13px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: #33488e;
    border-radius: 10px;
    opacity: 0.6;
}

.slick-dots .slick-active button {
    opacity: 1;
}

.wrapper .slick-dots li button:before {
    font-size: 20px;
    color: white;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.postid-478 .reference-3d-banner-title {
    font: normal normal bold 49px/70px 'Inter', sans-serif;
}

.vyhody .grid__item-content {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 78, 146, .9);
    color: #ffffff;
    padding: 3.5em 3em;
}

.vyhody .our__work-item:hover .grid__item-content {
    opacity: 1;
}


/* Letecká fotogrammetrie */

.page-id-688 {
    background-color: #fff;
}

.page-id-688 h3 {
    margin-bottom: 34px;
}

.page-id-688 #main-content ul {
    padding-left: 20px;
}

.page-id-688 #main-content li {
    margin-bottom: 10px;
}

.page-id-688 li::marker {
    color: #084F91;
}

.page-id-688 .vyhody .right-image .our__work-item {
    transform-origin: left bottom;
    overflow: hidden;
}

.page-id-688 .vyhody .left-image .our__work-item {
    transform-origin: top right;
    overflow: hidden;
}

.page-id-688 .col-stredovy .row {
    height: 510px;
}

.page-id-688 .n4 {
    transform: scale(1.125);
    padding-bottom: 409px;
}

.page-id-688 .n4 img {
    height: 409px;
}

.page-id-688 .n5 {
    transform: scale(1.193);
    padding-bottom: 383px;
}

.page-id-688 .n5 img {
    height: 383px;
}

.page-id-688 .col-dron1 h3 {
    margin-top: -70px;
}

.page-id-688 .col-dron2 h3 {
    margin-top: 70px;
}

.page-id-688 .vyhody {
    margin-bottom: 120px;
}

/*.page-id-688 .n1, .page-id-688 .n2, .page-id-688 .n3 {
    padding-bottom: 0;
}*/

/* Reference - Podklad před převzetím stavby */
.postid-733 .pravy_text h2 {
    font: normal normal bold 34px/42px 'Inter', sans-serif;
    letter-spacing: 0px;
    color: #084F91;
    margin-bottom: 20px;
}

.postid-733 .pravy_text ul {
    margin-left: 0;
    padding-left: 20px;
}

.postid-733 .pravy_text ul span {
    color: #084F91;
    font-weight: bold;
}

.postid-733 .pravy_text ul li::marker {
    color: #084F91;
}

/* Reference - Zaměření střešních prvků */
.postid-690 .reference-3d-banner-title,
.postid-715 .reference-3d-banner-title {
    width: 70%;
}

/* Stránka DTM */
.page-id-748 {
    background-color: #fff;
}

.page-id-748 .right-image .our__work-item {
    transform-origin: left bottom;
}

.page-id-748 .left-image .our__work-item {
    transform-origin: top right;
}

.page-id-748 .n2 iframe {
    width: 100%;
}

.page-id-748 .vyhody.v1 {
    margin-top: 100px !important;
    margin-bottom: 75px !important;
}

.page-id-748 .vyhody.v2 {
    margin-block: 80px !important;
}

@media screen and (max-width: 1490px) {

    .custom-apg {
        left: -58px !important;
        width: 187px !important;
    }

    /*.kontakty {
        flex: 0 0 41.333333%;
        max-width: 41.333333%;
    }

    .socialni-site .d-flex {
        flex-direction: unset !important;
    }

    .socialni-site .d-flex {
        margin: 0 5px;
    }*/
}

@media screen and (min-width: 1400px) {
    /* #main-menu {
        padding-inline: 48px;
    } */
}

@media screen and (max-width: 1320px) {
    .vyhody.v1>div:nth-child(1)>div>div.col-12.col-lg-6.pt-5 {
        padding-top: 30px !important;
    }

    .vyhody .our__work-item {
        /*padding-bottom: 0 !important;*/
        overflow: visible !important;
    }

    .n1 {
        transform: scale(1.127) !important;
        padding-bottom: 362px !important;
    }

    .n1 img {
        height: 362px;
    }

    .n2 {
        transform: scale(1.202) !important;
        padding-bottom: 417px;
    }

    .n2 img {
        height: 417px;
    }

    .n3 {
        transform: scale(1.128) !important;
        padding-bottom: 404px;
    }

    .page-id-688 .n3 {
        margin-top: 42px;
        padding-bottom: 409px;
    }

    .n4 {
        transform: scale(1.2) !important;
        padding-bottom: 429px;
    }

    .page-id-688 .n4 {
        transform: scale(1.128) !important;
        padding-bottom: 400px
    }

    .page-id-688 .n4 img {
        height: 400px;
    }

    .n4 img {
        height: 429px;
    }

    .page-id-688 .n5 {
        transform: scale(1.204);
        padding-bottom: 383px;
    }

    #main-content>div>div:nth-child(9)>div {
        margin-top: 60px !important;
    }
}

@media screen and (max-width: 1300px) {
    .n1 {
        transform: scale(1.056) !important;
    }

    .n2 {
        transform: scale(1.12) !important;
    }

    .n2 img {
        height: 417px;
    }

    .n3 {
        transform: scale(1.055) !important;
        padding-bottom: 409px;
    }

    .page-id-688 .n3 {
        margin-top: -20px;
    }

    .n4 {
        transform: scale(1.12) !important;
        padding-bottom: 429px;
    }

    .page-id-688 .n4 {
        transform: scale(1.06) !important;
        padding-bottom: 401px;
    }

    .n4 img {
        height: 429px;
    }

    .page-id-688 .n5 {
        transform: scale(1.14) !important;
    }

    .laser-banner,
    .dtm-banners {
        margin: 0px -30px;
    }

    .hexagon .tvar {
        width: 222px;
    }

    /*.postid-424 .right-image img {
        transform: scale(1.12);
    }

    .postid-424 .vyhody .left-image img {
        transform: scale(1.071);
    }*/
}

@media screen and (max-width: 1250px) {
    .custom-apg {
        left: -65px !important;
        width: 151px !important;
    }

    .custom-apg div {
        width: 180px !important;
        text-align: center;
    }
}

@media screen and (max-width: 1200px) {
    .custom-apg {
        bottom: 0;
        left: -6px !important;
    }

    .laser-banner-2 .row>div {
        font-size: 30px;
        margin-bottom: 0;
    }

    .n2 {
        transform: scale(1.15) !important;
    }

    .postid-424 .v1 {
        margin-top: 60px !important;
        margin-bottom: 120px !important;
    }

    .postid-424 .v2 {
        margin-top: 120px !important;
        margin-bottom: 80px !important;
    }

    .n1 {
        transform: scale(1.065) !important;
    }

    .n3 {
        transform: scale(1.065) !important;
    }

    .n3 img {
        height: 359px;
    }

    .n2 {
        transform: scale(1.142) !important;
    }

    .n2 img {
        height: 377px;
    }

    .n4 {
        transform: scale(1.143) !important;
    }

    .n4 img {
        height: 385px;
    }

    .page-id-688 .col-stredovy {
        margin-bottom: -36px;
    }

    .vyhody .our__work-item {
        padding-bottom: 0 !important;
    }

    .reference .grid-item {
        width: 309px;
    }

    .dynamic-tabs {
        height: 200px;
    }

    .dynamic-tabs .slick-dots {
        bottom: -90px;
    }

    .masonry-wrap svg path {
        fill: black !important;
    }

    .zajem-3d-banner {
        height: auto;
    }

    .zajem-3d-banner .custom-zajem-headline {
        font-size: 6vw;
        line-height: 9vw;
    }

    .dynamic-tabs-menu::after {
        display: none;
    }

    .postid-424 #main-content li {
        margin-bottom: 0px;
        line-height: 1.7em;
    }

    .postid-424 #main-content .slick-dots ul {
        padding-left: 0;
    }

    .postid-424 #main-content .slick-dots li {
        margin-bottom: 10px;
    }

    .laser-banner-2 {
        height: auto;

    }

    .custom-headline-2 {
        margin: 4vw 0 4vw;
    }

    .laser-banner-2 {
        margin-bottom: 80px !important;
    }
}

@media screen and (max-width: 1140px) {
    .custom-apg {
        bottom: 0;
        left: -38px !important;
    }
}

@media screen and (max-width: 1080px) {
    .custom-apg {
        bottom: 25% !important;
        left: -75px !important;
    }

}

@media screen and (min-width: 991px) {
    .reference-3d-banner>.container {
        padding: 40px 40px !important;
    }

    .postid-458 .reference-3d-banner {
        background-position-x: 274px;
    }

    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    .reference-3d-banner-title {
        font: normal normal bold 40px/50px 'Inter', sans-serif;

    }

    .reference-3d-banner .plocha {
        margin-top: 25px;
    }

    .page-id-688 .n1,
    .page-id-688 .n3,
    .page-id-688 .n2,
    .page-id-688 .n4 {
        transform: none;
        transform-origin: unset;
    }

    .page-id-688 .n5 {
        transform: scale(1.06) !important;
    }

    .page-id-688 .vyhody .right-image .our__work-item,
    .page-id-688 .vyhody .left-image .our__work-item {
        transform-origin: unset;
    }

    .page-id-688 .col-stredovy {
        margin-bottom: 0;
    }

    .page-id-688 .col-stredovy .row {
        height: auto;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .custom-apg {
        bottom: 0% !important;
        left: 100px !important;
    }

    .linka_bezpeci_logo {
        max-width: 380px !important;
        width: 100%;
    }

    .postid-512 .reference-3d-banner {
        background-position-x: 100%;
    }

    .laser-banner-2 {
        margin-bottom: 50px !important;
    }

    .laser-banner-2 .row>div {
        font-size: 25px;
    }

    .reference-3d-banner {
        box-shadow: inset 0 0 0 2000px rgb(50 71 142 / 57%);
    }

    .postid-458 .reference-3d-banner {
        background-position-x: 0px;
    }

    .postid-424 #main-content .vyhody img {
        height: auto;

    }

    .dynamic-tabs {
        height: 170px;
    }

    .postid-424 .v1 {
        margin-top: 0px !important;
        margin-bottom: 104px !important;
    }

    .postid-424 .vyhody.v2 {
        margin-top: 52px !important;
    }

    .dynamic-tabs {
        height: 170px;
    }

    .reference .grid-item {
        width: 352px;
    }

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

    .laser-banner {
        margin: 0px -70px;
    }

    .laser-banner-1 {
        height: auto;
    }

    .postid-424 .vyhody .our__work-item {
        transform-origin: unset !important;
        /* transform: scale(1) !important; */
        margin: 0 -48px;
    }

    .postid-424 #main-content .vyhody img {
        /* transform: scale(1.24); */
        transform: unset;
        margin: 0 !important;
    }

    .postid-424 .vyhody .col:nth-child(2) {
        margin-top: 40px;
    }

    .custom-tab {
        padding-left: 0;
    }

    .custom-headline-dynamic-tabs {
        text-align: center;
    }

    .n1,
    .n3,
    .n2,
    .n4 {
        transform: scale(1.058) !important;
    }

    .page-id-688 .vyhody {
        margin-bottom: 60px;
    }

    .page-id-688 .n1,
    .page-id-688 .n3,
    .page-id-688 .n2,
    .page-id-688 .n4,
    .page-id-688 .n5,
    .page-id-688 .n1 img,
    .page-id-688 .n3 img,
    .page-id-688 .n2 img,
    .page-id-688 .n4 img,
    .page-id-688 .n5 img,
    .page-id-748 .n1,
    .page-id-748 .n1 img,
    .page-id-748 .n2,
    .page-id-748 .n2 img {
        height: auto;
    }

    .page-id-748 .left-image .our__work-item,
    .page-id-748 .right-image .our__work-item {
        transform-origin: unset;
    }

    .page-id-748 .vyhody.v1 {
        margin-block: 0 !important;
    }

    .page-id-748 .vyhody.v2 {
        margin-block: 50px !important;
    }

    .page-id-748 .vyhody.v1 .right-image .col-12:nth-child(2) {
        margin-block: -80px !important;
        z-index: -1;
    }
}

@media screen and (max-width: 850px) {
    .laser-banner-2 .row>div {
        font-size: 19px;
    }

    .postid-424 .vyhody .our__work-item {
        margin: 0;
        transform: scale(1) !important;
    }

    .laser-banner {
        margin: 0 -30px;
    }

    .laser-banner .img {
        padding: 17px;
        width: auto;
    }

    .laser-banner img {
        width: 36px;
    }

    .laser-banner .text {
        font: normal normal bold 13px/18px 'Inter', sans-serif;

        margin-top: 12px;
    }

}

@media screen and (max-width: 767px) {
    .page-id-748 .patvary {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .dtm-banners {
        margin: 0;
    }

    .page-id-688 .col-dron1 h3,
    .page-id-688 .col-dron2 h3 {
        margin: 0;
    }

    .page-id-688 .n4,
    .page-id-688 .n5 {
        transform: unset !important;
        transform-origin: unset !important;
    }

    .postid-427 .reference-3d-banner,
    .postid-504 .reference-3d-banner {
        background-position-x: 100%;
    }

    .postid-458 .reference-3d-banner {
        background-position-x: -200px;
    }

    .reference .grid-item {
        width: 100%;
    }

    .reference-3d-banner-title,
    .cil-projektu-headline,
    .postid-478 .reference-3d-banner-title {
        font: normal normal bold 42px/57px 'Inter', sans-serif;

    }

    .reference-3d-banner li {
        margin-bottom: 15px;
    }

    .plocha {
        margin-top: 30px;
        width: 470px;
    }

}

@media screen and (max-width: 576px) {
    .postid-504 .reference-3d-banner {
        background-position-x: 75%;
    }

    .postid-427 .reference-3d-banner {
        background-position-x: 85%;
    }

    .postid-458 .reference-3d-banner {
        background-position-x: -301px;
    }

    .postid-424 h3 {
        font-size: 24px;
    }

    #main-content>div>div:nth-child(9)>div {
        margin-top: 35px !important;
    }

    .laser-banner-2 .row>div {
        font-size: 3.2vw;
    }

    .hexa-block {
        margin-top: 60px !important;
    }

    .vyhody.v1 {
        margin: 0 !important;
    }

    .vyhody.v2 {
        margin-top: 50px !important;
    }

    .postid-424 .vyhody .our__work-item {
        margin: 0px -24px;
    }


    .plocha {
        width: auto;
    }

    .postid-424 #main-content .vyhody img {
        transform: scale(1);
    }

    .postid-424 .vyhody,
    .laser-banner-2,
    .postid-424 .row:not(.row:first-child, .laser-banner) {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    #wpadminbar {
        display: none;
    }

    .slick-track .col-2 {
        padding: 0 !important;
    }

    .laser-banner {
        margin: 0 -15px;
    }

    .dtm-banners {
        margin: 0;
    }

    .laser-banner-1 .col-3 {
        width: 130px;
    }

    .laser-banner-1 .slick-dots {
        bottom: -87px
    }

    .custom-headline-1 {
        margin-bottom: 5%;
    }

    .postid-424 #main-content>.container>.row:not(.laser-banner) {
        margin-left: 0;
        margin-right: 0px;
    }

    .custom-headline-dynamic-tabs {
        font-size: 25px;
    }

    .custom-headline-reference {
        font-size: 38px;
    }

    .postid-424 .vyhody .col:nth-child(2) {
        margin-top: 30px;
    }

    .page-id-688 .vyhody {
        margin-bottom: 10px;
    }
}

@media screen and (max-width:500px) {

    .page-id-688 .n4,
    .page-id-688 .n5 {
        transform: none !important;
        transform-origin: unset !important
    }

    .konzultace-headline {
        font: normal normal bold 28px/36px 'Inter', sans-serif;

    }

    .reference-3d-banner>.container {
        padding-top: 28px !important;
    }

    .reference-3d-banner .plocha {
        margin-top: 40px;
    }

    .reference-3d-banner-title,
    .cil-projektu-headline {
        font: normal normal bold 36px/50px 'Inter', sans-serif;

    }

    .reference-3d-banner-title,
    .cil-projektu-headline,
    .postid-478 .reference-3d-banner-title {
        font: normal normal bold 36px/50px 'Inter', sans-serif;

    }
}

@media screen and (max-width:400px) {
    .vyhody .grid__item-content {
        padding: 15px 3em;
    }

    .custom-tab {
        font-size: 10px;
    }
}

@media screen and (max-height:920px) {
    .carousel-item.active .btn-blue {
        display: none;
    }
}

@media screen and (max-height:767px) {}

.dynamic-tabs-content,
.mayby-btn {
    display: none !important;
}


.postid-579 .predmet-dodavky {
    display: none;
}

.grecaptcha-badge {
    transform: translateX(990px) !important;
}