@charset "UTF-8";
/**
@author: Ján Priskin
@copyright www.priskin.sk
**/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
    --vh-offset: 0px;
    --vh: 1vh;
}

@-webkit-keyframes shrink {
    from {
        scale: 1.1;
    }
    to {
        scale: 1;
    }
}

@keyframes shrink {
    from {
        scale: 1.1;
    }
    to {
        scale: 1;
    }
}
@-webkit-keyframes bgShine {
    0% {
        background-position: 1% 0%;
        color: #12506a;
    }
    50% {
        background-position: 99% 100%;
        color: #FFF;
    }
    100% {
        background-position: 1% 0%;
        color: #12506a;
    }
}
@keyframes bgShine {
    0% {
        background-position: 1% 0%;
        color: #12506a;
    }
    50% {
        background-position: 99% 100%;
        color: #FFF;
    }
    100% {
        background-position: 1% 0%;
        color: #12506a;
    }
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        scale: 1.1;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        scale: 1.1;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(50px);
                transform: translateX(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(50px);
                transform: translateX(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-50px);
                transform: translateX(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-50px);
                transform: translateX(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@-webkit-keyframes loopScale {
    0% {
        -webkit-transform-origin: bottom left;
                transform-origin: bottom left;
        scale: 1;
    }
    50% {
        scale: 1.2;
    }
    100% {
        scale: 1;
    }
}
@keyframes loopScale {
    0% {
        -webkit-transform-origin: bottom left;
                transform-origin: bottom left;
        scale: 1;
    }
    50% {
        scale: 1.2;
    }
    100% {
        scale: 1;
    }
}
@-webkit-keyframes loopLtR {
    0% {
        -webkit-transform: translateX(-10%);
                transform: translateX(-10%);
    }
    50% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-10%);
                transform: translateX(-10%);
    }
}
@keyframes loopLtR {
    0% {
        -webkit-transform: translateX(-10%);
                transform: translateX(-10%);
    }
    50% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-10%);
                transform: translateX(-10%);
    }
}
@-webkit-keyframes fadeIn2 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn2 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes showName {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0);
    }
}
@keyframes showName {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0);
    }
}
* {
    scroll-margin-top: 175px;
}

html,
body {
    height: 100%;
    width: 100%;
    font: normal 300 15px "Outfit", sans-serif;
    letter-spacing: 1px;
    font-variant-numeric: lining-nums;
    font-optical-sizing: auto;
    color: #12506a;
}

body {
    margin: 0;
    overflow-x: hidden;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: break-word;
}

@media screen and (min-width: 3000px) {
    body {
        zoom: 166.6666666667%;
    }
}
/* ------ */
address {
    line-height: 1.6;
}

b, strong {
    font-weight: 600;
}

p {
    margin-bottom: 1.45rem;
    line-height: 1.55;
}
p a {
    text-decoration: underline;
}
p a:hover {
    text-decoration: none;
}

/* ------ */
hr {
    border: 0;
    background: #12506a;
    display: block;
    height: 1px;
    margin: 20px 0;
}

/* ------ */
/* CLICKABLES */
a, a:hover, a:focus,
button, button:hover, button:focus,
input[type=submit], input[type=submit]:hover, input[type=submit]:focus {
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

[href^="mailto:"] {
    white-space: nowrap;
}

a {
    color: inherit;
}
a:hover, a:focus {
    text-decoration: underline;
    color: inherit;
}

/* ------ */
/* HEADINGS */
.h1, h1,
.h2, h2,
.h3, h3 {
    margin: 0;
    line-height: 1.25;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

h1, h2 {
    margin-bottom: 23px;
    line-height: 1.225;
    font-size: 30px;
    color: #12506a;
}

h3 {
    line-height: 38px;
    font-weight: 200;
    font-size: 26px;
}

h4 {
    font-weight: 300;
    font-size: 18px;
}

@media screen and (min-width: 480px) {
    h1, h2 {
        font-size: 40px;
    }
    h3 {
        line-height: 42px;
        font-size: 32px;
    }
}
@media screen and (min-width: 768px) {
    .h1, h1,
    .h2, h2 {
        letter-spacing: 7px;
    }
    .h3, h3 {
        letter-spacing: 3px;
    }
    h1, h2 {
        font-size: 50px;
    }
    h3 {
        line-height: 1.25;
        font-size: 38px;
    }
}
/* ------ */
/* FORM ELEMENTS */
.form-control {
    border-radius: 0 !important;
    border: 0;
    border-bottom: 1px solid #CEAE50;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    background: none;
    height: auto;
    min-height: 30px;
    margin-bottom: 24px;
    padding: 0 0 16px;
    font-weight: 300;
    font-size: 18px;
    color: #12506a;
    resize: vertical;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.form-control::-webkit-input-placeholder {
    color: #12506a;
}
.form-control::-moz-placeholder {
    color: #12506a;
}
.form-control:-ms-input-placeholder {
    color: #12506a;
}
.form-control::-ms-input-placeholder {
    color: #12506a;
}
.form-control::placeholder {
    color: #12506a;
}
.form-control:-moz-placeholder-shown {
    text-overflow: ellipsis;
}
.form-control:-ms-input-placeholder {
    text-overflow: ellipsis;
}
.form-control:placeholder-shown {
    text-overflow: ellipsis;
}
.form-control:focus {
    border-bottom-color: #d0dce1;
    background: inherit;
    color: inherit;
}

textarea.form-control {
    min-height: 26px;
}

.btn {
    border-radius: 50px;
    border: 1px solid #12506a;
    padding: 6px 26px 8px;
    text-decoration: none !important;
    line-height: 1.4em;
    font-weight: 600;
    color: #12506a;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    cursor: pointer;
    outline: none !important;
}
.btn:first-letter {
    text-transform: capitalize;
}

.btn-default {
    border-color: #FFF;
    background: transparent;
    color: #FFF;
}
.btn-default.arrow {
    background: transparent url('data:image/svg+xml,<svg fill="%23FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2 2.6"><polygon points="7.7,0.3 8.5,1.1 0,1.1 0,1.5 8.5,1.5 7.7,2.3 8,2.6 9.2,1.3 8,0 "/></svg>') calc(100% - 18px) 50%/27px auto no-repeat;
    padding-right: 78px;
}
.btn-default:hover, .btn-default:focus, .btn-default:active {
    background-color: #FFF !important;
    color: #12506a !important;
}
.btn-default:hover.arrow, .btn-default:focus.arrow, .btn-default:active.arrow {
    background-image: url('data:image/svg+xml,<svg fill="%23736a56" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2 2.6"><polygon points="7.7,0.3 8.5,1.1 0,1.1 0,1.5 8.5,1.5 7.7,2.3 8,2.6 9.2,1.3 8,0 "/></svg>');
}

.btn-primary {
    border-color: #CEAE50;
    background: transparent;
}
.btn-primary.arrow {
    background: transparent url('data:image/svg+xml,<svg fill="%23ceae50" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2 2.6"><polygon points="7.7,0.3 8.5,1.1 0,1.1 0,1.5 8.5,1.5 7.7,2.3 8,2.6 9.2,1.3 8,0 "/></svg>') calc(100% - 18px) 50%/27px auto no-repeat;
    padding-right: 78px;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    border-color: #12506a;
    background-color: #12506a !important;
    color: #FFF !important;
}
.btn-primary:hover.arrow, .btn-primary:focus.arrow, .btn-primary:active.arrow {
    background-image: url('data:image/svg+xml,<svg fill="%23FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2 2.6"><polygon points="7.7,0.3 8.5,1.1 0,1.1 0,1.5 8.5,1.5 7.7,2.3 8,2.6 9.2,1.3 8,0 "/></svg>');
}

/* custom checkbox */
.ccheck {
    display: block;
    position: relative;
    padding-top: 0;
    padding-left: 37px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.ccheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.ccheck:hover input ~ .checkmark:after {
    border-color: #CEAE50;
    opacity: 1;
}
.ccheck input:checked ~ .checkmark:after {
    border-color: #12506a;
    opacity: 1;
}
.ccheck .checkmark {
    border: 1px solid #CEAE50;
    background-color: none;
    height: 21px;
    width: 21px;
    position: absolute;
    top: 0;
    left: 0;
}
.ccheck .checkmark:after {
    content: "";
    border: solid transparent;
    border-width: 0 2px 2px 0;
    width: 7px;
    height: 14px;
    position: absolute;
    top: 1px;
    left: 6px;
    opacity: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

/* ------ */
/* TABLES */
.table td {
    color: #12506a;
}

/* ------ */
/* BOOTSTRAP GRID */
.container {
    max-width: 379px;
    padding: 0;
    position: relative;
    z-index: 1;
}
@media screen and (min-width: 768px) {
    .container {
        max-width: 652px;
    }
}
@media screen and (min-width: 992px) {
    .container {
        max-width: 1280px;
    }
}

/* ------ */
.swiper-h {
    height: 100%;
    position: relative;
}
.swiper-h:before {
    content: "";
    background: -webkit-gradient(linear, left top, right top, from(rgba(29, 34, 49, 0.36)), color-stop(23%, transparent), color-stop(84%, transparent), to(rgba(29, 34, 49, 0.36)));
    background: linear-gradient(to right, rgba(29, 34, 49, 0.36) 0%, transparent 23%, transparent 84%, rgba(29, 34, 49, 0.36) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.swiper-h .swiper-container {
    height: 100%;
}
.swiper-h .swiper-slide {
    background: #CEAE50;
    width: 100% !important;
}

.swiper-gallery {
    height: 100%;
}
.swiper-gallery .swiper-container {
    height: 100%;
}
.swiper-gallery .swiper-slide {
    background: #CEAE50;
    width: 100%;
}

.swiper-slide img {
    max-width: none;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.swiper-pagination-bullets {
    bottom: 22px !important;
    left: 0;
    right: 0;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
    border-radius: 50%;
    background: #FFF;
    width: 11px;
    height: 11px;
    margin: 0 5px !important;
    display: inline-block;
    position: relative;
    opacity: 0.5;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
    opacity: 1;
}

.arrow-horizontal {
    border-radius: 50%;
    border: 1px solid #FFF;
    background: transparent url('data:image/svg+xml,<svg fill="%23FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2 2.6"><polygon points="7.7,0.3 8.5,1.1 0,1.1 0,1.5 8.5,1.5 7.7,2.3 8,2.6 9.2,1.3 8,0 "/></svg>') 50% 50%/35px 10px no-repeat;
    width: 49px;
    height: 49px;
    margin: 0;
    top: calc(50% - 24px);
    outline: none;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.arrow-horizontal:after {
    display: none;
}
.arrow-horizontal:hover {
    background-image: transparent url('data:image/svg+xml,<svg fill="%23FFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2 2.6"><polygon points="7.7,0.3 8.5,1.1 0,1.1 0,1.5 8.5,1.5 7.7,2.3 8,2.6 9.2,1.3 8,0 "/></svg>');
}

.swiper-button-next {
    right: 25px;
}

.swiper-button-prev {
    left: 25px;
    scale: -1;
}

/* ------ */
/* MENU - TOGGLE */
#menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 14px 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    font-size: 12px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    cursor: pointer;
    position: absolute;
    top: 13px;
    right: 15px;
}
#menu-toggle .nav-icon {
    width: 30px;
    padding: 10px;
    position: relative;
    top: 2px;
}
#menu-toggle span {
    border-radius: 15px;
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #CEAE50;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#menu-toggle span:nth-child(1) {
    top: 0;
}
#menu-toggle.open span:nth-child(1), #menu-toggle.open span:nth-child(4),
#menu-toggle span:nth-child(2),
#menu-toggle span:nth-child(3) {
    top: 7px;
}
#menu-toggle span:nth-child(4) {
    top: 14px;
}
#menu-toggle.open span:nth-child(1), #menu-toggle.open span:nth-child(4) {
    width: 0%;
    left: 50%;
}
#menu-toggle.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
#menu-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
    #menu-toggle {
        display: none;
    }
}

/* ------ */
#navbar {
    background: #FFF;
    width: 100%;
    padding: 15px;
    position: fixed;
    top: 0;
    z-index: 5;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#navbar .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
#navbar .logo {
    display: block;
    height: 35px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#navbar .logo img {
    width: auto;
    max-width: 100%;
    height: 100%;
}
#navbar .languages {
    margin: 0;
    font-size: 18px;
    position: absolute;
    top: 16px;
    right: 70px;
    z-index: 9;
}
#navbar .languages .dropdown-menu {
    -webkit-box-shadow: 0 0 7px 0 rgba(18, 80, 106, 0.75);
            box-shadow: 0 0 7px 0 rgba(18, 80, 106, 0.75);
    border-radius: 25px;
    border: 0;
    background: #FFF;
    min-width: auto;
    margin: -45px 0 0 -6px !important;
    padding: 44px 6px 2px;
    color: #FFF;
    z-index: -1;
    overflow: hidden;
}
#navbar .languages .dropdown-menu .active {
    display: none;
}
#navbar .languages .dropdown-menu a {
    margin: 5px 0 !important;
}
#navbar .languages .btn {
    margin: 0;
    padding: 8px !important;
}
#navbar .languages .dropdown-toggle {
    z-index: 1;
}
#navbar .languages .dropdown-toggle:after {
    display: none;
}
#navbar .btn {
    display: none;
    margin: 5px 10px;
    padding-top: 8px;
    font-size: 14px;
}
#navbar .btn.arrow {
    padding-right: 60px;
}
#navbar.fixed {
    -webkit-box-shadow: 0 0 5px #12506a;
            box-shadow: 0 0 5px #12506a;
}
@media screen and (min-width: 360px) {
    #navbar .languages .btn {
        display: block;
    }
}
@media screen and (min-width: 420px) {
    #navbar .logo {
        height: 40px;
    }
    #navbar .languages .btn {
        padding: 8px;
        top: 17px;
    }
}
@media screen and (min-width: 568px) {
    #navbar .btn {
        margin: 0;
    }
    #navbar .btn:last-of-type {
        margin-left: 5px;
    }
}
@media screen and (min-width: 768px) {
    #navbar {
        padding-bottom: 0;
    }
    #navbar .languages {
        display: inline-block;
        padding-right: 5px;
        position: relative;
        top: 0;
        right: 0;
    }
    #navbar .languages .dropdown-menu {
        padding-top: 47px;
    }
    #navbar .btn {
        display: inline-block !important;
    }
}
@media screen and (min-width: 992px) {
    #navbar {
        padding: 15px 30px 0;
    }
    #navbar .row {
        padding-bottom: 18px;
    }
    #navbar [class^=col] {
        padding: 0 24px;
    }
    #navbar .logo {
        height: 50px;
    }
    #navbar .languages {
        padding-right: 14px;
    }
    #navbar .btn:last-of-type {
        margin-left: 15px;
    }
}
@media screen and (min-width: 1180px) {
    #navbar .logo {
        height: 59px;
    }
    #navbar .btn.arrow {
        padding-right: 78px;
    }
}
@media screen and (min-width: 1600px) {
    #navbar [class^=col] {
        padding: 0 90px;
    }
    #navbar .languages {
        margin-right: 4px;
    }
}

/* ------ */
#main-menu {
    -webkit-box-shadow: 0 5px 5px -5px #12506a;
            box-shadow: 0 5px 5px -5px #12506a;
    background: #FFF;
    max-height: calc(100vh - 60px);
    margin: 0;
    padding: 0 24px 18px;
    line-height: 1.4em;
    list-style: none;
    color: #12506a;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1;
    overflow: auto;
    display: none;
}
#main-menu li {
    padding: 0;
}
#main-menu a {
    display: block;
    padding: 1px 0;
    text-decoration: none;
    color: inherit;
    position: relative;
}
#main-menu .active a,
#main-menu a:hover {
    font-weight: 600;
}
@media screen and (min-width: 768px) {
    #main-menu {
        -webkit-box-shadow: none;
                box-shadow: none;
        width: 100%;
        max-width: none;
        height: 59px;
        max-height: none;
        padding-bottom: 0;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        position: static;
        overflow: visible;
        opacity: 1 !important;
    }
    #main-menu li {
        border: 0;
        display: inline-block;
        padding: 0;
    }
    #main-menu a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media screen and (min-width: 1600px) {
    #main-menu {
        padding: 0 95px;
    }
}

/* ------ */
#top {
    position: absolute;
    top: 0;
}

/* HEADER */
#header {
    background: #FFF;
    height: calc(100vh - 60px);
    margin-top: 60px;
    margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
    #header {
        height: auto;
        margin-top: 114px;
        margin-bottom: 109px;
    }
}
@media screen and (min-width: 992px) {
    #header {
        margin-top: 152px;
    }
}

.sp #header {
    height: auto;
    margin-bottom: 0;
}
.sp #home {
    padding: 50px 0 0;
    text-align: center;
}
.sp #home h1 {
    margin: 0;
}
@media screen and (min-width: 768px) {
    .sp #header {
        margin-bottom: 261px;
    }
}

#home {
    height: 100%;
    position: relative;
}
#home .holder {
    width: 100%;
    padding: 30px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    color: #FFF;
    position: absolute;
    inset: 0;
    z-index: 2;
}
#home .holder h1 {
    margin: 0;
    display: block;
    font-weight: 200;
    color: inherit;
}
#home .holder .btn {
    color: inherit;
}
#home .holder .btn:hover {
    border-color: #FFF;
    background-color: #FFF !important;
    color: #12506a !important;
}
#home .holder .btn:hover.arrow {
    background: transparent url('data:image/svg+xml,<svg fill="%2312506a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2 2.6"><polygon points="7.7,0.3 8.5,1.1 0,1.1 0,1.5 8.5,1.5 7.7,2.3 8,2.6 9.2,1.3 8,0 "/></svg>') calc(100% - 18px) 50%/27px auto no-repeat;
}
#home .img-wrapper {
    background: #233429;
    height: 100%;
    position: relative;
    overflow: hidden;
}
#home .img-wrapper:before {
    content: "";
    background: rgba(8, 37, 49, 0.51);
    position: absolute;
    inset: 0;
}
#home .header-img {
    width: 100%;
    max-height: inherit;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
}
#home .bg-video {
    width: 100%;
    height: 100%;
    max-height: inherit;
    -o-object-fit: cover;
       object-fit: cover;
}
@media screen and (min-width: 576px) {
    #home .holder {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: wrap column;
                flex-flow: wrap column;
    }
    #home .holder .btn {
        margin-top: 50px;
    }
}
@media screen and (min-width: 768px) {
    #home .img-wrapper:has(.bg-video):after {
        content: "";
        background: #FFF;
        width: 100%;
        height: 4px;
        position: absolute;
        bottom: 0;
        left: 0;
    }
}
@media screen and (min-width: 992px) {
    #home .holder .btn {
        margin-top: 70px;
    }
}
@media screen and (min-width: 1500px) {
    #home .img-wrapper {
        max-height: 850px;
    }
    #home .img-wrapper:after {
        display: none;
    }
}

/* ------ */
.soldout {
    background: #d0dce1;
    max-width: 90%;
    margin: auto;
    padding: 30px 15px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 9;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.soldout .h1 {
    display: block;
    margin-bottom: 20px;
    padding: 0;
    font-size: 24px;
    text-transform: uppercase;
    color: inherit;
}
@media screen and (min-width: 560px) {
    .soldout {
        max-width: 75%;
    }
}
@media screen and (min-width: 768px) {
    .soldout {
        max-width: 625px;
        padding: 39px 30px;
    }
    .soldout .h1 {
        font-size: 30px;
    }
}

/* ------ */
/* PROJEKT */
#projekt {
    margin-bottom: 40px;
}
#projekt h2 {
    margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
    #projekt {
        margin-bottom: 80px;
    }
    #projekt h2 {
        margin-bottom: 93px;
        padding-left: calc((100vw - 60px - 1170px) / 2);
    }
}
@media screen and (min-width: 1340px) {
    #projekt {
        margin-bottom: 120px;
    }
    #projekt h2 {
        padding-left: 55px;
    }
}
@media screen and (min-width: 1600px) {
    #projekt {
        margin-bottom: 156px;
    }
}

/* ------ */
/* SEKCIE */
.section {
    margin-bottom: 80px;
}
.section .container > .img-wrapper {
    margin: 0 0 66px;
    text-align: center;
}
.section .container > .text-block {
    max-width: 800px;
    margin: auto;
    text-align: center;
}
.section .container > .text-block h2 {
    margin-bottom: 21px;
}
.section .container > .text-block p {
    max-width: 690px;
    margin: 0 auto 35px;
    line-height: 1.3;
}
@media screen and (min-width: 480px) {
    .section {
        margin-bottom: 96px;
    }
}
@media screen and (min-width: 768px) {
    .section {
        margin-bottom: 120px;
    }
    .section .container > .text-block p {
        font-size: 22px;
    }
}
@media screen and (min-width: 992px) {
    .section {
        margin-bottom: 145px;
    }
}

.columns {
    --padding-x: 0;
    display: grid;
    gap: 36px;
    margin: 0 auto 80px;
}
.columns .text-block {
    padding: 30px var(--padding-x) 0;
}
.columns .text-block p {
    letter-spacing: 0;
}
.columns .text-block p:last-of-type {
    margin: 0;
}
.columns .spacer {
    background: #CEAE50;
    width: 75px;
    height: 1px;
    margin-bottom: 30px;
    position: relative;
}
.columns ul {
    display: grid;
    gap: 12px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    letter-spacing: 0;
    line-height: 1.75;
}
.columns ul li {
    padding-left: 43px;
    position: relative;
}
.columns ul li:before {
    content: "";
    background: #CEAE50;
    width: 19px;
    height: 1px;
    position: absolute;
    top: 12px;
    left: 0;
}
.columns .img-wrapper {
    background: #736a56;
    position: relative;
}
.columns img {
    width: 100%;
    max-width: 100%;
}
.columns + .text-center {
    margin-top: -55px;
}
@media screen and (min-width: 768px) {
    .columns {
        gap: 80px;
    }
}
@media screen and (min-width: 992px) {
    .columns {
        --padding-x: calc(((100vw - 60px) - 1170px) / 2);
        grid-template-columns: repeat(2, 1fr);
    }
    .columns:nth-of-type(2n) .col:first-of-type {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    .columns:nth-of-type(2n) .col:last-of-type {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    .columns:nth-of-type(2n) .col:last-of-type .spacer {
        margin-left: 0;
    }
    .columns .text-block {
        margin-left: auto;
        padding-top: 53px;
    }
    .columns .spacer {
        width: 1px;
        height: 75px;
        margin: -49px 0 82px auto;
    }
    .columns h2, .columns h3 {
        padding-left: var(--padding-x);
    }
}
@media screen and (min-width: 1200px) {
    .columns {
        margin-bottom: 138px;
    }
}
@media screen and (min-width: 1230px) {
    .columns:nth-of-type(2n) .col:last-of-type .spacer {
        margin-left: var(--padding-x);
    }
    .columns .spacer {
        margin-right: var(--padding-x);
    }
}
@media screen and (min-width: 1340px) {
    .columns {
        --padding-x: 55px;
    }
    .columns .col-img {
        width: 700px;
    }
}

/* ------ */
h2 {
    margin: 0;
    text-align: inherit;
}
h2 span {
    display: block;
}
h2 span:nth-child(2) {
    margin-top: -5px;
    text-align: right;
}

/* ------ */
/* LOKALITA */
#lokalita {
    margin-bottom: 40px;
}
#lokalita h2 {
    margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
    #lokalita h2 {
        margin-bottom: 93px;
        padding-left: calc((100vw - 60px - 1170px) / 2);
    }
}
@media screen and (min-width: 1200px) {
    #lokalita {
        margin-bottom: 100px;
    }
    #lokalita .columns {
        margin-bottom: 67px;
    }
}
@media screen and (min-width: 1340px) {
    #lokalita h2 {
        padding-left: 55px;
    }
}
@media screen and (min-width: 1600px) {
    #lokalita {
        margin-bottom: 120px;
    }
}

.poi {
    --padding-x: 0;
    margin-bottom: 30px;
    padding: 9px var(--padding-x);
}
.poi .col {
    margin-bottom: 32px;
}
.poi strong {
    display: block;
    font-weight: 300;
}
.poi strong.time {
    margin-bottom: 10px;
    font-size: 52px;
    color: #CEAE50;
}
.poi strong.time span {
    font-size: 38px;
}
.poi strong.destination {
    line-height: 1.25;
    font-size: 18px;
}
@media screen and (min-width: 992px) {
    .poi {
        --padding-x: calc(((100vw - 60px) - 1170px) / 2);
        margin-bottom: 60px;
    }
    .poi .row {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .poi .col {
        width: auto;
        margin: 0;
    }
}
@media screen and (min-width: 1340px) {
    .poi {
        --padding-x: 55px;
        margin-bottom: 97px;
    }
}

/* ------ */
.map-wrapper {
    margin: 0 -30px 30px;
    position: relative;
}
.map-wrapper address {
    border-radius: 50px;
    background: #FFF;
    padding: 10px 24px;
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    z-index: 9;
    pointer-events: none;
}
@media screen and (min-width: 568px) {
    .map-wrapper address {
        right: auto;
    }
}
@media screen and (min-width: 992px) {
    .map-wrapper {
        margin-bottom: 68px;
    }
    .map-wrapper address {
        font-size: 18px;
        top: 48px;
    }
}
@media screen and (min-width: 1180px) {
    .map-wrapper address {
        left: calc((100vw - 30px - 1170px) / 2);
    }
}

#map {
    background: #12506a;
    height: 400px;
    max-height: calc(100vh - 60px);
    position: relative;
    z-index: 1;
}
@media screen and (min-width: 992px) {
    #map {
        height: 662px;
        max-height: calc(100vh - 116px);
    }
}
@media screen and (min-width: 1300px) {
    #map {
        max-height: none;
        height: 851px;
    }
}

/* ------ */
/* CENIK - TABULKA / DETAIL */
#showAll {
    display: none;
}
#showAll + .test table tbody tr:nth-child(n+7) {
    display: none;
}
#showAll:checked + .test table tbody tr {
    display: block;
}
#showAll:checked ~ ::after,
#showAll:checked ~ .btn {
    display: none;
}
@media screen and (min-width: 1024px) {
    #showAll:checked + .test table tbody tr {
        display: table-row;
    }
}

#byty {
    max-width: 600px;
    margin: auto;
    padding-bottom: 30px;
    position: relative;
}
#byty .grid {
    max-width: 379px;
    display: grid;
    gap: 36px;
    margin: 0 auto 84px;
}
#byty .grid .col {
    position: relative;
}
#byty .grid h2 span {
    display: inline-block;
    text-align: left;
}
#byty .grid p {
    max-width: none;
}
#byty .house {
    width: 100%;
    margin: 0 auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#byty .house .building-floor {
    mix-blend-mode: multiply;
    text-decoration: none;
    opacity: 0;
    -webkit-transition: none;
    transition: none;
}
#byty .house .building-floor polygon {
    fill: #CEAE50;
}
#byty .house .building-floor.disabled {
    pointer-events: none;
}
#byty .house .building-floor.active {
    opacity: 0.95;
}
#byty .floors {
    width: 100%;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#byty .floors .holder {
    height: 140px;
    max-height: calc(100vh - 116px);
    margin: 0;
    overflow: hidden;
}
#byty .floors .holder img {
    max-width: 100%;
}
#byty .floor-map {
    width: auto;
    height: 100%;
    position: relative;
    z-index: 1;
    display: none;
}
#byty .floor-map svg {
    width: 100%;
    display: block;
    position: absolute;
}
#byty .floor-map.active {
    display: block;
}
#byty .floor-map .flats * {
    fill: #ebdfb9;
}
#byty .floor-map .flats *:nth-child(2n) {
    fill: #f5efdc;
}
#byty .floor-map .overlays a {
    mix-blend-mode: multiply;
    fill: transparent;
    opacity: 1;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#byty .floor-map .overlays a.active {
    fill: #CEAE50;
    opacity: 0.95;
}
#byty .floor-map .overlays a.phase {
    cursor: default;
}
#byty svg {
    width: 100%;
    height: 100%;
}
#byty .quick-detail {
    display: none;
    height: 126px;
    margin-bottom: 84px;
    text-align: center;
    font-size: 20px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#byty .quick-detail p {
    margin: 0;
}
#byty .quick-detail .flat {
    display: inline-block;
    padding-bottom: 2px;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 26px;
}
#byty table {
    margin-bottom: 30px;
    color: #12506a;
}
#byty table thead tr:first-child th {
    border-bottom: 1px solid rgba(18, 80, 106, 0.2);
    position: sticky;
    top: 0;
    z-index: 1;
}
#byty table th, #byty table td {
    --padding-y: 14px;
    --padding-x: 10px;
    padding: var(--padding-y) var(--padding-x);
    font-size: 18px;
}
#byty table th {
    border: 0;
    vertical-align: top;
    word-break: normal;
    font-weight: 600 !important;
}
#byty table td {
    border-bottom: 1px solid rgba(18, 80, 106, 0.2);
    background: none;
}
#byty table td a {
    color: inherit;
}
#byty table td img {
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#byty table .sold {
    background: none;
    opacity: 0.4;
}
#byty table .sold td {
    background: none;
}
#byty table .phase {
    background: rgba(206, 174, 80, 0.1);
    pointer-events: none;
}
#byty table .phase td {
    background: none;
}
#byty .form-control,
#byty select {
    border: 1px solid #CEAE50;
    font-size: 14px;
}
@media (hover: hover) {
    #byty .house .building-floor:hover {
        opacity: 0.95;
    }
}
@media screen and (min-width: 480px) {
    #byty .grid {
        max-width: 491px;
        gap: 48px;
    }
    #byty .grid h2 span {
        display: block;
    }
    #byty .grid h2 span:nth-child(2) {
        padding-left: 40px;
    }
}
@media screen and (min-width: 768px) {
    #byty {
        padding-bottom: 84px;
    }
    #byty .grid {
        gap: 72px;
    }
    #byty .grid h2 span:nth-child(2) {
        padding-left: 50px;
    }
}
@media screen and (min-width: 992px) {
    #byty {
        max-width: 1280px;
        padding-bottom: 120px;
    }
    #byty .grid {
        max-width: none;
        grid-template-columns: 1fr 1fr;
        padding: 0 calc((100vw - 60px - 1170px) / 2);
    }
    #byty .grid .col p {
        max-width: 500px;
    }
    #byty .house {
        position: absolute;
        bottom: 0;
    }
    #byty .floors .holder {
        height: 200px;
    }
    #byty .quick-detail {
        display: block;
        margin-top: -30px;
    }
    #byty table {
        margin-bottom: 60px;
    }
    #byty table td, #byty table th {
        font-size: 15px;
    }
    #byty table td:last-of-type, #byty table th:last-of-type {
        text-align: right;
    }
    #byty .t-byty__name {
        font-weight: 600;
    }
}
@media screen and (min-width: 1180px) {
    #byty {
        padding-bottom: 140px;
    }
    #byty .grid {
        margin-bottom: 45px;
    }
    #byty .quick-detail {
        margin-top: -5px;
        margin-bottom: 114px;
    }
    #byty .quick-detail .flat {
        font-size: 40px;
    }
    #byty table th, #byty table td {
        --padding-y: 20px;
    }
}
@media screen and (min-width: 1300px) {
    #byty {
        padding-bottom: 186px;
    }
    #byty table th, #byty table td {
        --padding-y: 31px;
    }
}
@media screen and (min-width: 1340px) {
    #byty .grid {
        padding: 0 55px;
    }
    #byty table td:first-of-type, #byty table th:first-of-type {
        padding-left: 15px;
    }
    #byty table td:last-of-type, #byty table th:last-of-type {
        padding-right: 15px;
    }
}

/* ------ */
/* CENIK - MOBILE CSS */
.t-byty {
    border-collapse: inherit;
    border-spacing: 0;
    width: 100%;
    clear: both;
    margin: 0 0 16px;
    empty-cells: show;
}
.t-byty th, .t-byty td {
    padding: 10px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
@media screen and (min-width: 768px) {
    .t-byty tbody tr:hover td, .t-byty tbody tr.hover td {
        background: rgba(18, 80, 106, 0.2) !important;
        cursor: pointer;
        position: relative;
        z-index: 1;
    }
    .t-byty tbody tr:hover td:before, .t-byty tbody tr.hover td:before {
        background: #12506a;
    }
    .t-byty tbody tr:hover td a, .t-byty tbody tr.hover td a {
        color: inherit;
        -webkit-transition: none;
        transition: none;
    }
}
@media screen and (min-width: 1024px) {
    .t-byty .t-byty__size-unit {
        display: none;
    }
}
@media screen and (min-width: 1300px) {
    .t-byty {
        margin-bottom: 0;
    }
}

.t-byty__actions {
    text-align: right;
    font-size: 0;
    white-space: nowrap;
}

.t-byty__price {
    white-space: nowrap;
}

@media (max-width: 991px) {
    #byty table {
        text-align: center;
    }
    #byty td {
        border: 0 !important;
        background: none !important;
        font-size: 18px;
    }
    #byty td:last-of-type {
        text-align: center !important;
    }
    .t-byty__head {
        display: none;
    }
    .t-byty__body {
        display: block;
    }
    .t-byty__item {
        border-bottom: 1px solid #12506a;
        margin: 0;
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .t-byty__name {
        grid-column: span 3;
        display: block;
        padding: 0;
        text-align: center;
        font-weight: 600 !important;
    }
    .t-byty__name a {
        color: inherit !important;
    }
    .t-byty__name + td {
        font-weight: bold;
    }
    .t-byty__cell {
        display: inline-block;
        padding: 0;
        font-size: 15px;
        margin: 0;
    }
    .t-byty__cell-hidden {
        display: none;
    }
    .t-byty__price {
        grid-column: span 3;
        display: block;
        font-weight: bold;
        font-size: 1rem !important;
        text-align: center;
    }
    .t-byty__state {
        padding: 0;
        position: absolute;
        top: 4px;
        right: 0;
        text-transform: uppercase;
        font-size: 19px;
    }
    .t-byty__actions {
        padding: 0;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .t-byty__actions .btn {
        display: block;
    }
    .t-byty__actions .btn + .btn {
        margin-top: 5px;
    }
}
/* ------ */
body.detail #galerie h2 {
    margin-bottom: 23px;
}
@media screen and (min-width: 768px) {
    body.detail #galerie h2 {
        margin-bottom: 86px;
    }
}

/* DETAIL */
#detail {
    margin-bottom: 80px;
    text-align: center;
}
#detail .container {
    max-width: 844px;
    padding: 30px 0 0;
}
#detail h1 + strong {
    display: block;
    margin-bottom: 30px;
    line-height: 1.15;
    text-transform: none;
    font-weight: normal;
    font-size: 28px;
    color: #12506a;
}
#detail .text-block {
    max-width: 700px;
    margin: auto;
    padding-bottom: 60px;
}
#detail .text-block p {
    line-height: 1.2;
    font-size: 20px;
}
#detail .text-block .btn {
    margin-top: 28px;
}
#detail .table {
    border-bottom: 1px solid rgba(18, 80, 106, 0.2);
    max-width: 628px;
    margin: 63px auto 0;
    font-size: 24px;
    position: relative;
}
#detail .table tr:first-of-type {
    display: none;
}
#detail .table td {
    border-top: 1px solid rgba(18, 80, 106, 0.2);
    border-bottom: 0;
    background: none;
    padding: 34.5px 0;
    text-align: left;
    color: #12506a;
}
#detail .table td:last-of-type {
    text-align: right;
}
#detail .title {
    display: block;
    margin-bottom: 41px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
}
#detail .params {
    margin-top: 50px;
}
#detail .vyhled {
    padding: 0 15px 28px;
    font-size: 20px;
}
#detail .prop-images .lightgallery {
    padding-top: 60px;
    position: relative;
}
#detail .prop-images .row {
    padding-top: 30px;
}
#detail .prop-images .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: wrap column;
            flex-flow: wrap column;
}
#detail .prop-images .col .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
#detail .strelka {
    width: 50px;
    position: absolute;
    transform: rotate(150deg);
    top: 0;
    right: 0;
    z-index: 9;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#detail img.main-img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 100vh;
    margin: 0 auto 30px;
}
#detail img.house,
#detail img.floor {
    display: block;
    max-width: 100%;
    height: 175px;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#detail .arrow {
    background: url('data:image/svg+xml,<svg fill="%23CEAE50" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2 2.6"><polygon points="7.7,0.3 8.5,1.1 0,1.1 0,1.5 8.5,1.5 7.7,2.3 8,2.6 9.2,1.3 8,0 "/></svg>') 0 0/cover no-repeat;
    width: 53px;
    height: 14px;
    position: absolute;
    top: 0;
    z-index: 9;
}
#detail .arrow:hover {
    background-image: url('data:image/svg+xml,<svg fill="%23000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2 2.6"><polygon points="7.7,0.3 8.5,1.1 0,1.1 0,1.5 8.5,1.5 7.7,2.3 8,2.6 9.2,1.3 8,0 "/></svg>');
}
#detail .arrow.next {
    left: 54%;
}
#detail .arrow.prev {
    right: 54%;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
}
@media screen and (min-width: 480px) {
    #detail h1 + strong {
        font-size: 30px;
    }
}
@media screen and (min-width: 768px) {
    #detail {
        margin-bottom: 120px;
    }
    #detail h1 + strong {
        font-size: 36px;
    }
    #detail .text-block p {
        font-size: 26px;
    }
    #detail .params {
        margin-top: 100px;
    }
}
@media screen and (min-width: 992px) {
    #detail h1 {
        margin-bottom: 45px;
    }
    #detail h1 + strong {
        margin-bottom: 45px;
    }
    #detail .text-block {
        padding-bottom: 90px;
    }
    #detail .params {
        margin-top: 151px;
    }
    #detail .prop-images .lightgallery {
        padding: 0;
    }
    #detail .prop-images .row {
        padding-top: 64px;
    }
    #detail .strelka {
        left: calc(100% + 15px);
    }
    #detail img.house {
        height: 225px;
    }
}
@media screen and (min-width: 1180px) {
    #detail .strelka {
        width: 84px;
        left: calc(100% + 54px);
    }
}
@media screen and (min-width: 1280px) {
    #detail .container {
        padding: 0;
    }
    #detail .arrow {
        top: 32px;
    }
    #detail .arrow.next {
        left: 100%;
    }
    #detail .arrow.prev {
        right: 100%;
    }
}
@media screen and (min-width: 1300px) {
    #detail {
        margin-bottom: 168px;
    }
    #detail img.house {
        height: 281px;
    }
    #detail img.floor {
        height: 250px;
    }
    #detail .arrow.next {
        left: calc(100% + 50px);
    }
    #detail .arrow.prev {
        right: calc(100% + 50px);
    }
}
@media screen and (min-width: 1600px) {
    #detail .arrow.next {
        left: calc(100% + 100px);
    }
    #detail .arrow.prev {
        right: calc(100% + 100px);
    }
}

/* ------ */
.list-files {
    border: 1px solid rgba(18, 80, 106, 0.2);
    border-width: 1px 0;
    max-width: 844px;
    margin: 0 auto 50px;
    padding: 27px 13px 12px;
    list-style: none;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
}
.list-files li {
    background: url("../img/icons/file.svg") 0 0/auto 33px no-repeat;
    min-height: 33px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
    padding: 0 15px 0 45px;
    position: relative;
}
.list-files a {
    text-transform: uppercase;
    text-decoration: none;
    color: #12506a;
    position: relative;
}
.list-files a:hover {
    color: #12506a;
}
@media screen and (min-width: 576px) {
    .list-files {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .list-files li {
        width: auto;
    }
}
@media screen and (min-width: 992px) {
    .list-files {
        margin-bottom: 90px;
    }
}

/* ------ */
.lg-outer .lg-image {
    background: #FFF;
    max-height: 100% !important;
}

/* ------ */
/* GALERIE */
#galerie {
    margin: 0 -30px 60px;
    text-align: center;
    position: relative;
}
#galerie .test-holder {
    background: #FFF;
    width: 100%;
    max-height: calc(100vh - 60px);
    aspect-ratio: 3/2;
    position: relative;
    clear: both;
    overflow: hidden;
}
#galerie .test-holder + .btn {
    margin-top: 50px;
}
#galerie .swiper-container {
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: visible;
}
#galerie .swiper-h .swiper-slide {
    height: 100% !important;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#galerie .swiper-h .swiper-slide > div,
#galerie .swiper-h .swiper-slide > a {
    height: 100%;
    display: block;
}
#galerie .swiper-h .swiper-slide img {
    width: 100%;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
@media screen and (min-width: 576px) {
    .hp #galerie .arrow-horizontal {
        display: block;
    }
}
@media screen and (min-width: 992px) {
    #galerie .test-holder + .btn {
        margin-top: 68px;
    }
}
@media screen and (min-width: 1600px) {
    #galerie {
        margin-bottom: 96px;
    }
    #galerie .test-holder {
        max-height: 850px;
    }
}

/* ------ */
/* FINANCOVANI */
#financovani {
    margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
    #financovani {
        margin-bottom: 66px;
    }
    #financovani .columns {
        margin-bottom: 67px;
    }
}
/* ------ */
#postup {
    margin-bottom: 80px;
}
#postup .row {
    border-bottom: 1px solid rgba(18, 80, 106, 0.2);
}
#postup .row:first-of-type {
    border-top: 1px solid rgba(18, 80, 106, 0.2);
}
#postup .col {
    padding: 24px 0;
}
#postup .col:nth-child(2) {
    padding-top: 0;
}
#postup h3 {
    margin-bottom: 50px;
}
#postup h4 {
    max-width: 275px;
    line-height: 1.15;
    letter-spacing: 0px;
    text-transform: none;
}
#postup p {
    line-height: 1.75;
    letter-spacing: 0;
}
#postup p:last-of-type {
    margin-bottom: 0;
}
@media screen and (min-width: 768px) {
    #postup .col {
        padding: 23px 0 !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}
@media screen and (min-width: 992px) {
    #postup {
        margin-bottom: 130px;
    }
    #postup h3 {
        margin-bottom: 71px;
        padding-left: calc((100vw - 60px - 1170px) / 2);
    }
    #postup .row {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    #postup .col {
        width: auto;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        padding: 33px calc((100vw - 60px - 1170px) / 2) !important;
        text-align: left;
    }
    #postup .col:nth-child(2) {
        width: 65%;
        padding-left: 0 !important;
    }
    #postup p {
        max-width: 750px;
    }
}
@media screen and (min-width: 1340px) {
    #postup h3 {
        padding-left: 55px;
    }
    #postup .col {
        padding: 33px 55px !important;
    }
}

/* ------ */
/* CONTACT */
#kontakt {
    margin-bottom: 80px;
    text-align: center;
}
#kontakt .flash.info {
    margin-bottom: 20px;
    font-weight: 600;
}
#kontakt form {
    margin: 40px auto 0;
}
#kontakt a {
    text-decoration: underline;
    color: inherit;
    cursor: pointer;
}
#kontakt label:not(.ccheck) {
    display: none;
}
#kontakt textarea {
    min-height: 106px;
}
#kontakt .ccheck {
    display: inline-block;
    margin: 0 0 33px;
}
#kontakt .gdpr_info {
    margin: -10px 0 30px;
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    #kontakt {
        margin-bottom: 120px;
    }
}
@media screen and (min-width: 992px) {
    #kontakt {
        margin-bottom: 142px;
    }
    #kontakt form {
        max-width: 627px;
    }
}
@media screen and (min-width: 1300px) {
    #kontakt {
        margin-bottom: 190px;
    }
    #kontakt form {
        margin-top: 91px;
    }
    #kontakt .form-control {
        margin-bottom: 57px;
    }
    #kontakt .ccheck {
        margin-bottom: 50px;
    }
    #kontakt .text-center {
        margin-top: -29px;
    }
}

/* ------ */
#login {
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
}
#login .content {
    -webkit-box-shadow: 0 0 0px 3px #000;
            box-shadow: 0 0 0px 3px #000;
    border: 1px solid #12506a;
    border-width: 14px 13px;
    margin: 0 auto;
    padding: 30px;
}
#login table {
    border: 0;
    width: 100%;
}
#login label {
    padding-right: 10px;
}
@media screen and (min-width: 667px) {
    #login .content {
        padding: 60px;
    }
}

/* ------ */
/* FOOTER */
#footer {
    background: #12506a;
    padding: 0 30px;
    text-align: center;
    color: #FFF;
    position: relative;
    z-index: 8;
    overflow: hidden;
}
#footer .footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 49px;
    padding: 40px 0 30px;
}
#footer .footer-top .btn {
    margin-bottom: 21px;
    color: #FFF;
}
#footer .footer-top .btn:hover.arrow {
    background: transparent url('data:image/svg+xml,<svg fill="%2312506a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2 2.6"><polygon points="7.7,0.3 8.5,1.1 0,1.1 0,1.5 8.5,1.5 7.7,2.3 8,2.6 9.2,1.3 8,0 "/></svg>') calc(100% - 18px) 50%/27px auto no-repeat;
}
#footer .logo {
    display: inline-block;
    width: auto;
    height: 67px;
    margin-bottom: 39px;
    -webkit-filter: brightness(100);
            filter: brightness(100);
}
#footer .logo.psn {
    height: 30px;
    margin-bottom: 43px;
}
#footer .logo .svg {
    width: 100%;
    height: 100%;
}
#footer .logo img {
    max-width: 100%;
    height: 100%;
}
#footer .contacts a {
    display: block;
    margin-bottom: 5px;
}
#footer .col-left {
    text-align: left;
}
#footer .col-right {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0 20px 20px;
}
#footer .languages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: wrap row;
            flex-flow: wrap row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin: 30px 0 0;
}
#footer .languages a:hover, #footer .languages a.active {
    color: #d0dce1;
}
#footer .menu {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}
#footer .menu a {
    display: block;
    padding: 5px 0;
    text-decoration: none;
    -webkit-transition: none;
    transition: none;
}
#footer .menu .active a,
#footer .menu a:hover {
    color: #FFF;
}
#footer .social {
    height: 100%;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: wrap column;
            flex-flow: wrap column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
#footer .social a {
    display: block;
}
#footer .social a svg {
    width: 33px;
    height: 33px;
    fill: #FFF;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#footer .social a:hover svg {
    fill: #d0dce1;
}
#footer .newsletter {
    max-width: 437px;
    margin: 46px auto;
}
#footer .newsletter form {
    margin-top: 19px;
}
#footer .newsletter .input-group {
    margin-bottom: 40px;
    position: relative;
}
#footer .newsletter .form-control {
    border-color: #FFF;
    margin: 0;
    padding: 7px 35px 6px 0;
    color: #FFF;
}
#footer .newsletter .form-control::-webkit-input-placeholder {
    color: inherit;
}
#footer .newsletter .form-control::-moz-placeholder {
    color: inherit;
}
#footer .newsletter .form-control:-ms-input-placeholder {
    color: inherit;
}
#footer .newsletter .form-control::-ms-input-placeholder {
    color: inherit;
}
#footer .newsletter .form-control::placeholder {
    color: inherit;
}
#footer .newsletter .btn {
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: none;
    width: 30px;
    height: 100%;
    min-height: auto;
    padding: 0;
    text-align: right;
    line-height: 1;
    position: absolute;
    top: 0;
    right: 0;
}
#footer .newsletter .btn .svg {
    width: 7px;
    height: 11px;
    fill: #FFF;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#footer .newsletter .btn:hover .svg {
    fill: #d0dce1;
}
#footer .newsletter small {
    display: block;
    line-height: 1.2;
    font-size: 14px;
}
#footer .newsletter small a {
    text-decoration: underline;
    color: inherit;
}
@media screen and (min-width: 480px) {
    #footer .col-right {
        padding-left: 41px;
    }
}
@media screen and (min-width: 576px) {
    #footer .footer-top {
        padding: 85px 0 49px;
    }
}
@media screen and (min-width: 768px) {
    #footer .newsletter {
        margin: 46px auto 124px;
    }
}

/* ------ */
/* popup - banner */
#popup-banner {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
#popup-banner a {
    display: inline-block;
    position: relative;
    cursor: pointer;
}
#popup-banner img {
    max-width: 100%;
    max-height: 100vh;
    width: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
}

#popup-banner-image-wrapper {
    display: inline-block;
    text-align: center;
    position: relative;
}

#popup-banner-close-button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 32px;
    height: 32px;
    opacity: 0.75;
    line-height: 34px;
    text-align: center;
    font-size: 3.5rem;
    color: #FFF;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    cursor: pointer;
}
#popup-banner-close-button:hover {
    opacity: 1;
}

/* ----------- */
/* 404 */
#error {
    margin-bottom: 60px;
    padding-top: 60px;
    text-align: center;
    color: #2d4156;
}
#error .error-no {
    display: block;
    margin-bottom: 15px;
    font-size: 60px;
}
#error a {
    color: #2d4156;
}

/* ------ */
/* ------ */
main {
    padding: 0 30px;
    position: relative;
    overflow: hidden;
}
@media screen and (min-width: 992px) {
    main {
        overflow: visible;
    }
}

section {
    position: relative;
}

/* ------ */
.anim {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transition: all 0.75s ease;
    transition: all 0.75s ease;
}

.animated {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
}

/* ------ */
.line-through {
    text-decoration: line-through;
}

.action-price {
    color: #e20613;
}

@media screen and (min-width: 1280px) {
    .action-price {
        font-size: 1.2rem;
    }
}
.property-row.sold td {
    cursor: default !important;
}

/* ------ */
#projekty {
    margin-bottom: 60px;
}
#projekty h2 {
    margin-bottom: 20px;
}
#projekty p {
    line-height: 1.75;
}
#projekty p:last-of-type {
    margin-bottom: 0;
}
#projekty .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 27px;
    margin: 52px 0 57px;
    text-align: center;
}
#projekty .grid img {
    max-width: 100%;
}
#projekty .wrapper {
    aspect-ratio: 1/1;
    background: #736a56;
    margin-bottom: 17px;
}
@media screen and (min-width: 768px) {
    #projekty h2 {
        width: 375px;
    }
    #projekty p {
        max-width: 550px;
        margin-left: auto;
    }
    #projekty .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (min-width: 1024px) {
    #projekty {
        margin-bottom: 115px;
    }
    #projekty .container {
        max-width: 1170px;
    }
    #projekty p {
        max-width: 590px;
    }
}

/* ------ */
/*# sourceMappingURL=style.css.map */
