/*
Theme Name: royalvalley
Text Domain: royalvalley
*/

:root {
    --color-green: #003830;
    --color-cream: #FBFFD2;
    --color-accent: #7987AA;
    --color-text-light: #F9FCDA;
    --white: #ffffff;
    --black: #000000;
}

@font-face {
  font-family: 'Gestura Display TRIAL';
  src: url('/wp-content/themes/royalvalley/fonts/GesturaDisplayTRIAL-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'royalicon';
  src:  url('/wp-content/themes/royalvalley/fonts/royalicon.eot?bugxiz');
  src:  url('/wp-content/themes/royalvalley/fonts/royalicon.eot?bugxiz#iefix') format('embedded-opentype'),
    url('/wp-content/themes/royalvalley/fonts/royalicon.ttf?bugxiz') format('truetype'),
    url('/wp-content/themes/royalvalley/fonts/royalicon.woff?bugxiz') format('woff'),
    url('/wp-content/themes/royalvalley/fonts/royalicon.svg?bugxiz#royalicon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'royalicon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-icon-arrow:before {
  content: "\e900";
}
.icon-icon-facebook:before {
  content: "\e901";
}
.icon-icon-instagram:before {
  content: "\e902";
}
.icon-icon-share:before {
  content: "\e903";
}


html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--accent);
}

button {
outline: 0;
}

ol,ul {
list-style: none;
}

blockquote,q {
quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
content: '';
content: none;
}

q {
display: inline;
font-style: italic;
}

q:before {
content: '"';
font-style: normal;
}

q:after {
content: '"';
font-style: normal;
}

textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"] {
-webkit-appearance: none;
appearance: none;
border-radius: 0;
}

input[type="search"] {
-webkit-appearance: textfield;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

th,td {
padding: 2px;
}

big {
font-size: 120%;
}

small,sup,sub {
font-size: 80%;
}

sup {
vertical-align: super;
}

sub {
vertical-align: sub;
}

dd {
margin-left: 20px;
}

kbd,tt {
font-family: courier;
font-size: 12px;
}

ins {
text-decoration: underline;
}

del,strike,s {
text-decoration: line-through;
}

dt {
font-weight: bold;
}

address,cite,var {
font-style: italic;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
display: block;
}

* {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}

html {
    max-width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    background: var(--color-cream);
    color: var(--color-green);
}

p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gestura Display TRIAL';
    line-height: 1.2;
    font-weight: 400;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 60px;
}

h2.large {
    font-size: 80px;
    line-height: 1;
}

h3 {
    font-size: 46px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 12px; 
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2.4px;
    font-family: "Montserrat", sans-serif;
}

.light h1, .light h2, .light h3, .light h4, .light h5, .light h6, .light p, .light li {
    color: var(--color-text-light);
}

strong {
    font-weight: 600;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.center {
    text-align: center;
}

.section.dark-bgr {
    background-color: var(--color-green);
}

main {
    margin-top: -80px;
}

.rv-button {
    padding: 22px 90px 22px 30px;
    border-radius: 80px;
    background: var(--color-accent);
    position: relative;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
}

span.rv-button__icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translate(0,-50%);
    font-size: 10px;
    transition: all 0.45s ease-in-out;
}

.rv-button:before {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    background: #617096;
    border-radius: 80px;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.45s ease-in-out;
}

.rv-button:hover:before {
    width: calc(100% - 6px);
}

.rv-button:hover span.rv-button__icon {
    transform: translate(10px,-50%);
}

span.rv-button__text {
    position: relative;
}

a.rv-button.outline {
    background: transparent;
    border: 1px solid rgb(255 255 255 / 40%);
    padding: 21px 80px 21px 25px;
    color: #F9FCDA;
}

a.rv-button.outline:before {
    background: rgb(255 255 255 / 20%);
}

a.rv-button.outline.inv {
    border: 1px solid #003830;
    color: #003830;
}

a.rv-button.outline.inv:before {
    background: rgb(0 56 48 / 15%);
}

.upper {
    text-transform: uppercase;
}

.light h5 {
    opacity: 0.4;
}

/*layout*/
section {
    width: 100%;
}

.row.in-grid {
    max-width: 1500px;
    padding-left: 30px;
    padding-right: 30px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.columns-wrapper {
    display: flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    float: none;
    width: 100%;
}

.columns-wrapper.middle {
    align-items: center;
}

.col-12 {
    flex: 0 0 100%;
    width: 100%;
}

.col-11 {
    flex: 0 0 91.66666667%;
    width: 91.66666667%;
}

.col-10 {
    flex: 0 0 83.33333333%;
    width: 83.33333333%;
}

.col-9 {
    flex: 0 0 75%;
    width: 75%;
}

.col-8 {
    flex: 0 0 66.66666667%;
    width: 66.66666667%;
}

.col-7 {
    flex: 0 0 58.33333333%;
    width: 58.33333333%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
}

.col-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
}

.col-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
}

.col-4-5 {
    width: 80%;
}

.col-3-5 {
    width: 60%;
}

.col-2-5 {
    width: 40%;
}

.col-1-5 {
    width: 20%;
}

.col-3-0 {
    width: 30%;
}

.col-7-0 {
    width: 70%;
}

@media (max-width: 1000px) {
    .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1, .col-4-5, .col-3-5, .col-2-5, .col-1-5, .col-3-0, .col-7-0 {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        padding-left: 0%;
        padding-right: 0%;
    }
}


/*HEADER*/
@media (min-width: 1000px) {
    button.drawer-toggle.drawer-hamburger, a.main-btn.yellow.mobile {
        display: none;
    }
}

#header {
    display: flex;
    padding: 0 30px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 3;
}

.logo {
    margin-right: auto;
    margin-left: auto;
    z-index: 3;
    flex: 0 0 198px;
}

#header .logo a {
    display: flex;
    position: absolute;
    top: 16px;
}

.logo img {
    width: 100% !important;
    display: block;
}

.header-left,
.header-right {
    display: flex;
    flex: 0 0 calc(50% - 100px);
    align-items: center;
    gap: 2.5vw;
    position: relative;
}

.header-left:after,
.header-right:after {
    content: '';
    width: calc(100% + 50px);
    position: absolute;
    bottom: 0;
    height: 1px;
    background: rgb(251 255 210 / 19%);
}

.header-left:after {
    left: -30px;
}

.header-right:after {
    right: -30px;
}

.header-left ul, .header-right ul {
    display: flex;
    gap: clamp(20px, 2.5vw, 40px);
    align-items: center;
}

.header-right {
    justify-content: flex-end;
}

ul.menu>li>a {
    color: #F5F0EB;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 32px 0 33px 0;
    display: flex;
}

ul.menu>li>a:hover {
    color: #F5F0EB;
}

ul.menu>li>a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #FBFFD2;
    left: 0;
    bottom: -0.5px;
    transition: all 0.3s ease;
}

ul.menu>li>a:hover:after {
    width: 100%;
}

li.menu-item-has-children {
    position: relative;
}

li.menu-item-has-children > a {
    display: flex;
    position: relative;
    align-items: baseline;
}

li.menu-item-has-children > a:before {
    content: '';
    display: block;
    order: 2;
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-right: 1px solid #F5F0EB;
    border-bottom: 1px solid #F5F0EB;
    transform: rotate(45deg);
    position: relative;
    top: -2px;
    flex: 0 0 auto;
}

ul.sub-menu {
    position: absolute;
    padding: 15px;
    min-width: 250px;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    transform: translateY(10px);
    visibility: hidden;
    left: 0;
    top: 98%;
    z-index: 9;
    background: var(--color-cream);
    border-radius: 0px;
    flex-direction: column;
    gap: 1px;
    box-shadow: 0px 9px 18px 5px rgb(5 20 50 / 20%);
    justify-content: flex-start;
    align-items: flex-start;
}

ul.sub-menu:before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    background: var(--color-cream);
    top: -6px;
    left: 25px;
    transform: rotate(45deg);
    border-radius: 0px;
}

li.menu-item-has-children:hover ul.sub-menu,
li.menu-item-has-children:focus-within ul.sub-menu { 
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
    pointer-events: auto;
}

ul.sub-menu li {
    margin-bottom: 2px;
    display: inline-block;
    width: 100%;
}

ul.sub-menu li a {
    padding: 12px;
    display: block;
    white-space: nowrap;
    color: var(--color-green);
    position: relative;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
}

ul.sub-menu li a:hover {
    color: var(--color-green);
    background: rgb(0 56 48 / 10%);
}



/*Homepage*/

.section.home-1 {
    position: relative;
    overflow: hidden;
}

.main-bgr {
    position: absolute;
    inset: 0;
    background-image: url('/wp-content/uploads/2026/05/main-img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    animation: kenBurns 8s ease-out forwards;
    z-index: 1;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.section.home-1 .col-12 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-title {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 180px;
}

.main-title h1 {
    position: relative;
    display: inline-block;
    font-size: clamp(50px,10.1vw,160px);
    line-height: 1;
}

.main-title h1 span {
    font-family: 'Montserrat';
    font-size: clamp(22px,2vw,30px);
    display: block;
    line-height: 1;
    letter-spacing: 0.4em;
}

.main-title img {
    position: absolute;
    width: clamp(90px, 11vw, 180px);
    right: 0;
    top: 0;
    transform: translate(55%, -40%);
    z-index: -1;
    pointer-events: none;
}

.bottom-text {
    align-self: flex-end;
    max-width: 400px;
    margin-left: auto;
    margin-right: 0;
    padding-bottom: 50px;
}

.bottom-text p {
    margin-bottom: 30px;
}

/*slider*/
.home-gallery-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.home-gallery-slider .home-gallery-swiper {
    width: 100%;
    overflow: visible !important;
}

.home-gallery-slider .swiper-wrapper {
    align-items: center;
}

.home-gallery-slider .swiper-slide {
    width: 63vw !important;
    aspect-ratio: 1.5 / 1;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

.home-gallery-slider .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(0.7);
    transition: transform .6s ease, filter .4s ease;
}

.home-gallery-slider .swiper-slide-active .slide-img {
    transform: scale(1);
}

.section.home-2 {
    padding-top: 132px;
    position: relative;
}

.section.home-2 .bgr {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 500px;
    background: url(/wp-content/uploads/2026/05/symbol-bgr.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
}

.home-gallery-title {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    margin-bottom: -13%;
    align-items: flex-start;
}

.home-gallery-title h2 {
    font-size: clamp(40px, 9vw, 140px);
    line-height: 0.95;
    letter-spacing: -1%;
}

.home-gallery-title p {
    font-size: 16px;
    letter-spacing: 6px;
    margin-top: 10px;
    min-width: 120px;
}

.home-gallery-title p.left {
    text-align: right;
}

.home-gallery-text {
    padding-top: 100px;
    padding-bottom: 80px;
}

.home-gallery-text h3 {
    font-size: 46px;
    line-height: 1.2;
    max-width: 1013px;
    margin: 0 auto 25px;
}

.home-gallery-text p {
    max-width: 590px;
    margin: 0 auto;
}

.cb-tagreel {
	position: relative;
    z-index: 2;
    position: relative;
}

.cb-tagreel-content {
	padding: 36px 0;
    border-top: 1px solid rgb(251 255 210 / 20%);
}

.cb-tagreel-row {
	display: flex;
    align-items: center;
	position: relative;
	text-align: center;
	white-space: nowrap;
}

.cb-tagreel-item {
	position: relative;
    line-height: 1.2;
	padding: 0px 13px;
}

.cb-tagreel-item span {
	position: relative;
	display: inline-block;
	z-index: 1;
    color: #FBFFD2;
    text-transform: uppercase;
    font-size: 16px;
	line-height: 1;
    letter-spacing: 4px;
}

.cb-tagreel-items {
	overflow: hidden;
	cursor: default;
}

.cb-tagreel-items span.divider {
	width: 6px;
	height: 6px;
	background: #FBFFD2;
	display: block
}


.section.home-3 {
    padding-top: 80px;
}

.home-3 h5,
.home-3 h2 {
    text-align: center;
}

.home-3 h2 {
    text-transform: uppercase;
    font-size: 90px;
    line-height: 1;
    letter-spacing: -0.01em;
}


/*selector Homepage*/

.rv-map__filters {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: -50px;
    position: relative;
    gap: 8px;
    z-index: 100;
}

button.rv-map__filter {
    text-transform: uppercase;
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 500;
    letter-spacing: 2.4px;
    font-size: 12px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid rgb(0 56 48 / 30%);
    background: transparent;
    color: var(--color-green);
    cursor: pointer;
    transition: all .35s ease;
}

.rv-map__filter:hover,
.rv-map__filter.is-active {
    background: var(--color-green);
    color: var(--color-cream);
}

.rv-map {
    position: relative;
    width: 100%;
}

.rv-map__stage {
    position: relative;
}

.rv-map__svg {
    position: relative;
    z-index: 1;
}

.rv-map__svg svg {
    display: block;
    width: 100%;
    height: auto;
}


[id^="point-"] {
    cursor: pointer;
    transition: opacity .35s ease;
}

[id^="point-"].is-active {
    opacity: 1;
}

[id^="highlight-"] {
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

[id^="highlight-"].is-active {
    opacity: 1;
}

path.point-large, path.point-medium {
    transition: all 0.35s ease;
}

[id^="point-"].is-active path.point-large {
    opacity: 0.4;
}

[id^="point-"] .point-medium {
    transform-box: fill-box;
    transform-origin: center center;
}

[id^="point-"]:hover .point-medium,
[id^="point-"].is-active .point-medium {
    transform: scale(1.35);
}

.rv-map__popups {
    position: absolute;
    inset: 0;
    z-index: 300;
    pointer-events: none;
}

.rv-popup {
    position: absolute;
    transform: translate(-50%, 20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .35s ease;
}

.rv-popup.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -20px);
    pointer-events: auto;
}

.rv-map__popup-content {
    display: flex;
    height: 160px;
    background: var(--color-green);
    width: 450px;
}

.rv-map__popup-left, .rv-map__popup-image {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.rv-map__popup-left {
    padding: 20px 30px 15px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

span.rv-map__popup-label {
    color: var(--color-cream);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 17px;
    font-weight: 500;
}

span.rv-map__popup-count {
    color: var(--color-cream);
    display: flex;
    align-items: center;
    gap: 10px;
}

span.rv-map__popup-count strong {
    font-size: 60px;
    line-height: 1;
    font-family: 'Gestura Display TRIAL';
    font-weight: 400;
}

span.rv-map__popup-count span {
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-size: 12px;
}

.rv-map__popup-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

a.rv-button.small {
    background: transparent;
    padding: 0px;
    height: 50px;
    width: 70px;
}

.rv-map__popup-image a.rv-button.small {
    position: absolute;
    bottom: 12px;
    right: 9px;
}

p.rv-map__text-right {
    position: absolute;
    max-width: 400px;
    width: 25vw;
    font-size: 15px;
    padding-left: 20px;
    border-left: 4px solid var(--color-accent);
    right: 0;
    top: 120px;
}

p.rv-types-text {
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 12px;
}

.columns-wrapper.rv-types {
    max-width: 1304px;
    margin: 0 auto;
}

.rv-types .col-4 {
    height: auto;
    padding: 0 12px;
}

.rv-types-item {
    height: 100%;
    display: block;
    border: 1px solid var(--color-green);
    position: relative;
    height: 230px;
    padding: 35px 25px 25px 25px;
    overflow: hidden;
}

.rv-types-item .bgr {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.8s ease;
}

.rv-types-item:hover .bgr {
    opacity: 1;
    transform: scale(1.05);
}

.rv-types-item h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'Montserrat';
    transition: all 0.35s ease;
}

.rv-types-item-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

span.rv-button.small.dark {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0;
    width: 80px;
    height: 50px;
    background: transparent;
    bottom: 5px;
    right: 0;
}

span.rv-button.small.dark:before {
    background: rgb(121 135 170 / 20%);
     transition: all 0.35s ease;
}

span.rv-button.small.dark span.rv-button__icon {
  color: var(--color-green);  
    transition: all 0.35s ease;
}

.rv-types-count {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rv-types strong {
    font-size: 60px;
    line-height: 1;
    font-family: 'Gestura Display TRIAL';
    font-weight: 400;
    letter-spacing: 0px;
    transition: all 0.35s ease;
}

.rv-types span {
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.35s ease;
}

.rv-types-item:hover .rv-types-item-content,
.rv-types-item:hover span.rv-button.small.dark span.rv-button__icon {
  color: var(--color-cream);  
}

.rv-types-item:hover span.rv-button.small.dark:before {
    background: rgb(121 135 170 / 100%);
}

.section.home-4 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-4 .col-7 {
    padding-right: 50px;
}

.home-4 .col-7 img {
    max-width: 734px;
    margin-left: auto;
    margin-right: auto;
}

.home-4 h2 {
   padding: 20px 0 30px; 
}

.home-4 p {
    max-width: 480px;
}

.line-divider {
    display: block;
    height: 1px;
    width: 100%;
    background: var(--color-accent);
}

.home-4 .line-divider {
    margin: 30px 0 40px 0;
    max-width: 480px;
}

.home-4-vizia {
    max-width: 480px;
}

.home-4-vizia p {
    max-width: 240px;
    margin-bottom: 20px;
}

.home-4-vizia img {
  max-width: 232px;
    margin-left: auto;
    margin-right: 0;
    padding-left: 20px;
}

/*section tatry*/
.section.tatry {
    padding-top: 100px;
    padding-bottom: 45px;
    position: relative;
    overflow: hidden;
    min-height: 900px;
    display: flex;
    flex-direction: column;
}

.parallax-image {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    height: 115%;
    top: 0;
    left: 0;
    z-index: -1;
}

.section.tatry .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    opacity: 0.6;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%), #000 50%);
}

.section.tatry .large-title h3 {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.section.tatry .large-title h3 {
    font-size: clamp(60px, 10.5vw, 175px);
}

.section.tatry .large-title h3 span.small {
    font-size: 18px;
    font-family: 'Montserrat';
}

.section.tatry .row.in-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.section.tatry p.text-border {
    width: 25vw;
    margin-left: auto;
    max-width: 300px;
    padding-left: 20px;
    border-left: 4px solid var(--color-accent);
    margin-top: 20px;
}

.section.tatry .columns-wrapper.bottom .col-3 {
    padding-right: 25px;
}

.section.tatry .columns-wrapper.bottom p {
    border-top: 1px solid #fff;
    display: block;
    padding-top: 20px;
}

.section.home-5 {
    padding-top: 100px;
    padding-bottom: 120px;
}

.section.home-5 .col-8 {
    display: flex;
    padding-right: 80px;
}

.section.home-5 .col-8 .left {
    flex: 0 0 40%;
    max-width: 40%;
    padding-right: 20px;
    padding-top: 20px;
}

.section.home-5 .col-8 .left h2 {
    padding-top: 30px;
    padding-bottom: 100px;
}

.right-image {
    flex: 0 0 60%;
    max-width: 60%;
    z-index: -1;
    background-size: cover !important;
    background-position: center !important;
}

img.rv-stamp {
    max-width: 200px;
    width: 15vw;
    position: absolute;
    top: -4vw;
    right: 0;
}

.section.home-5 .col-4 {
    position: relative;
}

.section.home-5 .col-4 h2.large {
    font-size: 160px;
    line-height: 1;
    display: flex;
}

.section.home-5 .col-4 h2.large span {
    font-size: 90px;
    top: 5px;
    position: relative;
}

.light .line-divider {
    background: var(--color-cream);
    opacity: 0.2;
}

.section.home-5 .line-divider {
    margin: 50px 0 35px;
    max-width: 400px;
}

.section.home-5 ul {
    margin-top: 10px;
    margin-bottom: 25px;
}

.section.home-5 ul li {
    position: relative;
    padding-left: 15px;
    padding-bottom: 5px;
}

.section.home-5 ul li:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-cream);
    border-radius: 50%;
    left: 0;
    top: 9px
}

.section.home-6 {
    padding-top: 50px;
    padding-bottom: 80px;
}

.section.home-6 h3 {
    padding: 20px 0 40px;
    max-width: 610px;
}

.section.home-6 .col-6.left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 28px;
    padding-bottom: 70px;
}

.home-developer {
    margin-top: 100px;
}

.home-developer .dev-right {
    flex: 0 0 55%;
    max-width: 320px;
}

.home-developer .dev-left {
    flex: 0 0 45%;
    padding: 0 20px;
}

.home-developer .dev-left img.dev-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.section.home-6 .col-6.right {
    position: relative;
}

.section.home-6 .col-6.right img {
    height: 100%;
    width: 50vw;
    object-fit: cover;
    max-width: 800px;
}


/*PAGE tOP*/
.section.page-default-top {
    position: relative;
    min-height: 530px;
    overflow: hidden;
    display: flex;
}

.section.page-default-top .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 85%), rgb(0 0 0 / 25%));
}

.page-default-top .row {
    height: auto;
}

.page-default-top .columns-wrapper {
    height: 100%;
}

.page-default-top .col-12 {
    height: 100%;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
}

.page-default-top .uvodny-text {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    min-height: 110px;
    margin-top: 70px;
    border-top: 1px solid rgb(251 255 210 / 20%);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-default-top .uvodny-text p {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
}

.page-default-top h1 {
    font-size: clamp(45px, 9vw, 140px);
    line-height: 1;
}


/*contact*/

.section.contact .col-6.bgr {
    position: relative;
    z-index: 1;
}

.section.contact .bgr-inner {
    position: absolute;
    right: 0;
    top: 0;
    width: 50vw;
    height: 100%;
    overflow: hidden;
}

.section.contact .col-6.form {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 150px;
    padding-left: 5vw;
}

img.contact-stamp {
    max-width: 220px;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: -20px;
}

.section.contact .col-6.form h3 {
    padding-bottom: 30px;
}

.section.contact .col-6.form p a {
    text-decoration: underline;
}

/*CONTACT FORM*/

.wpcf7-form textarea, .wpcf7-form input[type="text"], .wpcf7-form input[type="email"] {
    border: 1px solid rgb(249 252 218 / 35%);
    width: 100%;
    background: rgb(249 252 218 / 15%);
    margin-bottom: 15px;
    height: 65px;
    font-size: 15px;
    color: var(--color-text-light);
    padding: 10px 20px 10px 20px;
    border-radius: 4px;
    box-shadow: none;
    font-weight: 400;
    font-family: 'Montserrat';
    transition: all 0.3s ease;
}

.wpcf7-form textarea {
    height: 140px;
}

.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus {
    outline: none;
    border: 1px solid rgb(249 252 218 / 100%);
    background: rgb(249 252 218 / 10%);
}

.wpcf7 input::placeholder, .wpcf7 textarea::placeholder, .wpcf7 select::placeholder {
    color: var(--color-text-light);
    opacity: 0.7
}

.gdpr-wrapper {
    margin-top: 30px;
    text-align: left;
    justify-content: space-between;
}

.wpcf7 input[type="checkbox"] {
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    -webkit-appearance: none;
    width: 0px !important;
    border: none !important;
}

span.wpcf7-list-item label {
    display: flex;
    opacity: 1;
}

.wpcf7-list-item {
    margin: 0;
}

span.wpcf7-list-item-label {
    position: relative;
    padding-left: 70px;
    font-size: 15px;
    line-height: 1.3;
    color: #F9FCDA;
    cursor: pointer;
    text-transform: none;
    text-align: left;
    margin-left: -5px;
    max-width: 300px;
}

span.wpcf7-list-item-label a {
    text-decoration: underline;
    color: #F9FCDA;
}

span.wpcf7-list-item-label:before {
    content: '';
    width: 42px;
    height: 42px;
    position: absolute;
    border: 1px solid rgb(249 252 218 / 35%);
    border-radius: 4px;
    background: rgb(249 252 218 /15%);
    display: block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

span.wpcf7-list-item-label:after {
    content: '';
    width: 42px;
    height: 42px;
    position: absolute;
    border: 1px solid rgb(249 252 218 / 100%);
    display: block;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(249 252 218 / 100%);
    transition: all 0.2s ease;
    background-image: url(/wp-content/uploads/2026/05/icon-check-1.svg);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    border-radius: 4px;
}

input[type="checkbox"]:checked + span.wpcf7-list-item-label:after {
    transform: translateY(-50%);
    opacity: 1;
}

span.wpcf7-not-valid-tip {
    top: auto !important;
    padding: 0 !important;
    background: transparent;
    box-shadow: none !important;
    color: #ff1111 !important;
    font-size: 12px;
    bottom: -15px !important;
    position: absolute;
    left: auto;
    right: 10px;
    height: auto;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    background: rgb(213 57 75 / 20%);
    border-color: #ff1111;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    padding: 15px;
    border-radius: 4px;
}

.wpcf7 form.sent .wpcf7-response-output {
	color:white
}

.gdpr span.wpcf7-not-valid-tip {
    top:auto !important;
    bottom: -17px !important;
    position: absolute;
}

button.rv-button {
    outline: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat';
}

.contact .wpcf7 {
    margin-top: 80px;
}


/*SINGLE*/

/*SHARE*/
.share-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    max-width: 93px;
    margin-left: auto;
    margin-right: 0;
    margin-top: -30px;
}

.share-main-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    color: var(--color-text-light);
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 12%;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Montserrat';
    padding: 0;
}

.share-main-btn span {
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-text-light);
}

.share-main-btn i {
    font-size: 18px;
    position: relative;
    top: -2px;
}

.share-dropdown {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    width: 190px;
    padding: 10px;
    background: var(--color-text-light);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    display: grid;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 999999999;
}

.share-box:hover .share-dropdown,
.share-box.is-open .share-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown a,
.share-dropdown button {
    width: 100%;
    padding: 6px 10px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #003830;
    font-size: 11px;
    line-height: 1.2;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease;
    font-family: inherit;
    text-transform: uppercase;
    display: flex;
    font-weight: 500;
    align-items: center;
    gap: 10px;
}

.share-dropdown svg {
    width: 20px;
    height: auto;
}

.share-dropdown a:hover,
.share-dropdown button:hover {
    background: rgba(0, 63, 52, .1);
}

.share-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    background: #022621;
    color: var(--color-text-light);
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%,-40%);
    transition: all .3s ease;
    z-index: 99999;
}

.share-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,-50%);
}

@media (max-width: 767px) {
    .share-dropdown {
        display: none;
    }
}

.single-top-left {
    padding-top: 150px;
}

a.link-back {
    color: var(--color-text-light);
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 1px;
}

a.link-back:hover {
    opacity: 0.7;
}

.single-top h1 {
    margin-top: 100px;
}

.pozemok-popis {
    margin-top: 20px;
    max-width: 440px;
}

table.pozemok-table {
    width: 400px;
    color: var(--color-text-light);
    margin-top: 30px;
}

table.pozemok-table tr td {
    border-top: 1px solid #305E4F;
    border-bottom: 1px solid #305E4F;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 0;
}

table.pozemok-table tr td:last-child {
    font-weight: 700;
    text-align: right;
}

.single-top-img {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.columns-wrapper.single-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 0 36px 0;
    border-top: 1px solid #305E4F;
    margin-top: 30px;
}

.single-bottom .price-wrapper p {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
}

.single-bottom .price-wrapper p span {
    font-family: 'Gestura Display TRIAL';
    font-weight: 400;
    font-size: 36px;
}

.single-bottom span.sign-eur {
    font-family: 'Montserrat' !important;
    font-weight: 300 !important;
}

.single-bottom .cta-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.single-bottom .stav {
    color: var(--color-text-light);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 25px;
}

.single-bottom .stav:before {
    content: '';
    width: 9px;
    height: 9px;
    position: absolute;
    border-radius: 50%;
    left: 4px;
    top: 3px;
}

.single-bottom .stav.volny:before {
    background: #38B662;
    outline: 4px solid rgb(56 182 98 / 18%);
}

.single-bottom .stav.rezervovany:before {
    background: #ff8b06;
    outline: 4px solid rgba(255, 139, 6, 0.20);
}

.single-bottom .stav.predany:before {
    background: #E74E1E;
    outline: 4px solid rgb(231 78 30 / 20%);
}

/* SINGLE GALLERY*/
.home-gallery-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.home-gallery-slider .home-gallery-swiper {
    width: 100%;
    overflow: visible !important;
}

.single-gallery-swiper .swiper-wrapper {
    align-items: flex-start;
}

.single-gallery-swiper .swiper-slide {
    width: 41vw !important;
    aspect-ratio: 1.5 / 1;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

.single-gallery-swiper .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(0.7);
    transition: transform .6s ease;
    transform-origin: top;
}

.single-gallery-swiper .swiper-slide-active .slide-img {
    transform: scale(1);
}

.gallery-tabs-wrapper {
    position: relative;
}

.gallery-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
}

.gallery-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.section.single-gallery-top .col-12 {
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

button.gallery-tab {
    border-radius: 200px;
    border: 1px solid #003830;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-size: 12px;
    line-height: 1;
    font-weight: 500; 
    letter-spacing: 2.4px;
    padding: 14px 24px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.gallery-tab:hover,
button.gallery-tab.active {
    background: #003830;
    color: var(--color-text-light);
}

.gallery-tabs-wrapper {
    padding-bottom: 40px;
}

/*single apartman*/
.single-top.apartman h1 {
    margin-top: 40px;
}

p.apt-dom {
    font-size: 24px;
    letter-spacing: -2%;
}

table.miestnosti-table {
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 400px;
    width: 100%;
}

table.miestnosti-table th {
    background: var(--color-text-light);
    padding: 14px 12px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

table.miestnosti-table th:nth-child(2) {
    text-align: left;
}

table.miestnosti-table td {
    color: var(--color-text-light);
    padding: 15px 12px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #305E4F;
    vertical-align: middle;
}

table.miestnosti-table td:last-child {
    white-space: nowrap;
}

table.miestnosti-table tr:last-child td:first-child {
    border: none;
    padding-left: 0;
}

table.miestnosti-table tr:last-child td:last-child {
    border: none;
    font-weight: 700;
}

.single-top.apartman img.pozemok-podorys {
    max-width: 800px;
    margin-top: auto;
    margin-bottom: auto;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.single-bottom .price-wrapper p.vybavenie span {
    font-size: 16px;
}

.single-bottom .price-wrapper p.vybavenie {
    background: #305E4F;
    border-radius: 60px;
    padding: 5px 20px;
}











/*FOOTER*/
#footer {
    background: #022621;
    position: relative;
}

#footer .bgr {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/wp-content/uploads/2026/05/footer-bgr-large.svg);
    background-size: auto 1100px;
    width: 100%;
    height: 100%;
    background-position: top 230px center;
    background-repeat: no-repeat;
}

.section.footer-top {
    padding-top: 80px;
    padding-bottom: 150px;
}

.col-4.footer-top-2 img {
    max-width: 198px;
    margin: auto;
}

.footer-top ul.menu>li>a {
    color: var(--color-text-light);
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0px;
    padding: 0px 0 3px 0;
    display: inline-block;
    margin-bottom: 14px;
}

.footer-top ul.menu>li>a:hover,
.footer-copyright ul.menu>li>a:hover {
   opacity: 0.6;
}

#footer ul.menu>li>a:after {
    display: none;
}

.footer-top h5,
.footer-copyright h5 {
    margin-bottom: 24px;
}

.col-4.footer-top-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

a.social-icon {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #F5F0EB;
}

a.social-icon i {
    width: 27px;
    height: 27px;
    text-align: center;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 50%;
    line-height: 27px;
    font-size: 10px;
}

a.social-icon:hover {
    color: var(--color-text-light);
}

.section.footer-copyright {
    padding-bottom: 40px;
}

.section.footer-copyright .columns-wrapper {
    align-items: flex-end;
}

.col-4.footer-bottom-1 a {
    color: #fff;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 7px;
}

.col-4.footer-bottom-1 p.copyright {
    font-size: 10px;
    letter-spacing: 0.5px;
    color: rgb(245 240 235 / 30%);
}

.col-4.footer-bottom-2 {
    text-align: center;
}

.col-4.footer-bottom-2 a {
    font-size: 30px;
    color: var(--color-text-light);
    display: inline-block;
    margin-bottom: 10px;
}

.col-4.footer-bottom-2 a:hover {
    color: #F5F0EB;
    opacity: 0.6;
}
    
.col-4.footer-bottom-3 {
    text-align: right;
}

.col-4.footer-bottom-3 ul.menu>li>a {
    color: #fff;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0px;
    padding:0;
    display: inline-block;
    margin-bottom: 3px;
}




/*SELEKTOR*/
svg.mapa-selector {
    width: 100%;
    height:auto;
}

.map-area {
    stroke: #003830;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    fill: #d9e2b8;
}

.map-st2 {
  fill: none;
  stroke-opacity: .3;
  stroke-width: 3px;
  isolation: isolate;
}

g.text path {
  fill: #003830;
}

a.rv-property .area .map-area {
    opacity: 0.3;
}

a.rv-property:hover .area .map-area {
    opacity: 1;
}

a.rv-property.volny .pointer .map-st6 {
    fill: #48bc6b;
}

a.rv-property.volny .pointer .map-st2 {
    stroke: #48bc6b;
}

a.rv-property.predany {
    pointer-events: none;
}

a.rv-property.predany .pointer .map-st6 {
    fill: #E74E1E;
}

a.rv-property.predany .pointer .map-st2 {
    stroke: #E74E1E;
}

a.rv-property.rezervovany .pointer .map-st6 {
    fill: #ff8b06;
}

a.rv-property.rezervovany .pointer .map-st2 {
    stroke: #ff8b06;
}

a.rv-property.apartmanovy-dom .pointer .map-st2 {
    fill-opacity: 0.3;
    stroke: none;
}

a.rv-property.apartmanovy-dom.volny .pointer .map-st2 {
    fill: #48bc6b;
}

a.rv-property.apartmanovy-dom.predany .pointer .map-st2 {
    fill: #E74E1E;
}

a.rv-property.apartmanovy-dom.rezervovany .pointer .map-st2 {
    fill: #ff8b06;
}

a.rv-property.predany .area .map-area {
    opacity: 0.8;
}

a.rv-property.predany .map-area {
    stroke: #b4bb9b;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    fill: #d9e2b8;
}

.selektor-legenda {
    padding-top: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 30px;
    margin-bottom: -40px;
}

.legenda-item {
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 25px;
}

.legenda-item:before {
    content: '';
    width: 9px;
    height: 9px;
    position: absolute;
    border-radius: 50%;
    left: 4px;
    top: 3px;
}

.legenda-item.rezervovany {
    color: #af620a;
}

.legenda-item.predany {
    color: #6B2E18;
}

.legenda-item.volny:before {
    background: #38B662;
    outline: 4px solid rgb(56 182 98 / 18%);
}

.legenda-item.rezervovany:before {
    background: #ff8b06;
    outline: 4px solid rgba(255, 139, 6, 0.20);
}

.legenda-item.predany:before {
    background: #E74E1E;
    outline: 4px solid rgb(231 78 30 / 20%);
}

.section.selektor.apartman-budova #budova {
    max-width: 1000px;
    display: flex;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.section.selektor.apartman-budova {
    padding-bottom: 0;
}

/**/
.section.selektor {
    padding-bottom: 100px;
    border-bottom: 1px solid rgb(0 56 48 / 20%);
    position: relative;
}

.selektor-badges {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.selektor-badges img.badge-tatry {
    position: absolute;
    max-width: clamp(100px,13vw,195px);
}

.selektor-badges img.badge-compass {
    position: absolute;
    max-width: clamp(100px,10vw,155px);
}

.selektor-badges img.badge-selektor {
    position: absolute;
    max-width: clamp(150px, 18vw, 300px);
}

.selektor-badges.pozemok img.badge-tatry,
.selektor-badges.pozemok-projekt img.badge-tatry {
    left: 20%;
    bottom: 30%;
}

.selektor-badges.pozemok img.badge-compass,
.selektor-badges.pozemok-projekt img.badge-compass,
.selektor-badges.apartmany img.badge-compass {
    left: 5%;
    bottom: 2%;
}

.selektor-badges.pozemok  img.badge-selektor {
    right: 24%;
    bottom: 0;
}

.selektor-badges.pozemok-projekt  img.badge-selektor {
    right: 45%;
    bottom: 0;
}

.selektor-badges.apartmany img.badge-tatry {
    left: 15%;
    bottom: 30%;
}

.selektor-badges.apartmany img.badge-selektor {
    right: 2%;
    bottom: 0;
}


/*********** RESPONSIVE ***********/

@media (max-width: 1000px) {
#header .header-left .menu,
#header .header-right .menu,
#header .header-right .rv-button {
    display: none;
} 

.logo {
    flex: 0 0 140px;
    order: 2;
}

.logo img {
    max-width: 140px;
}

.header-right {
    justify-content: flex-start;
    order: 1;
    height: 65px;
}

.header-left {
    order: 3;
    height: 65px;
}

.header-left, .header-right {
    display: flex;
    flex: 0 0 calc(50% - 120px);
}

.drawer-hamburger, .drawer-hamburger:hover {
    position: absolute;
    margin-top: 10px;
    margin-right: 15px;
    padding: 13px 9px 25px;
}

.drawer-hamburger {
    width: 38px;
}

.drawer-hamburger-icon, 
.drawer-hamburger-icon:after, 
.drawer-hamburger-icon:before {
    background-color: var(--color-cream);
    height: 1px;
}

.drawer-hamburger-icon:before {
    top: -10px;
}

.drawer-hamburger-icon:after {
    top: 10px;
    right: 0;
    left: auto;
} 

.drawer-open .drawer-hamburger:before {
    opacity: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
    right: 0px;
    position:fixed;
}

.drawer-open .drawer-hamburger-icon:after, .drawer-open .drawer-hamburger-icon:before {
    width: 38px;
}

.drawer--right.drawer-open .drawer-nav {
    position: absolute !important;
    height: 100vh;
    background: var(--color-green);
    max-height: none;
    margin-top: 0px;
    width: 100%;
    left: 0px;
    padding: 150px 20px 50px 20px;
    overflow: auto;
}

.drawer-overlay {
    background: rgb(0 0 0 / 80%);
    z-index: 2;
}

#header .drawer-nav ul.menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

#header .drawer-nav ul.menu>li>a {
    color: var(--color-text-light);
    margin: 0;
    padding: 12px 0;
    font-size: 16px;
    margin-bottom: 15px;
    width: auto;
    display: inline-block;
}

ul.menu>li.current-menu-item>a:after {
    width: 100%;
}

#header ul.menu>li.menu-expand.menu-item {
    display: block;
    position: relative;
    width: 100%;
}

li.menu-item-has-children ul.sub-menu {
    position: relative;
    width: 100%;
    height: 0;
    left: 0px;
    top: 0;
    opacity: 0;
    transition: all 0.35s ease;
    transform: translate(0, 0px);
    visibility: hidden;
    z-index: 1;
    padding: 0px;
    margin-top: -10px !important;
    box-shadow: none;
    display: none;
    margin-bottom: 10px;
    padding-left: 35px;
    min-width: 100%;
    background: transparent;
}

li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}

li.menu-item-has-children.open ul.sub-menu {
    transform: translate(0%, 0px);
    visibility: visible;
    text-align: left;
    height: auto;
    opacity: 1;
    display: block;
}

li.menu-item-has-children > a:before {
    position: absolute;
    right: -25px;
    top: 15px;
}

ul.sub-menu:before {
    display: none;
}

ul.sub-menu li a {
    padding: 13px 0px;
    display: block;
    white-space: nowrap;
    color: var(--color-text-light);
    position: relative;
    font-size: 15px;
    font-weight: 400;
}

.drawer-nav a.rv-button.outline {
    margin-top: 30px;
}
    


/*content*/

main {
    margin-top: -65px;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 26px;
}

h5 {
    font-size: 11px;
}


/*homepage*/

.main-title img {
    transform: translate(55%, -55%);
}

.rv-button {
    padding: 18px 75px 18px 20px;
    letter-spacing: 1.5px;
}

.rv-button:before {
    content: '';
    width: 44px;
    height: 44px;
}

span.rv-button__icon {
    right: 22px;
    font-size: 8px;
}

.section.home-2 {
    padding-top: 50px;
}

.home-gallery-title p {
    font-size: 10px;
    letter-spacing: 3px;
    min-width: 70px;
}

.home-gallery-slider .swiper-slide {
    width: 80vw !important;
}

.home-gallery-text {
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-gallery-text h3 {
    font-size: 30px;
}

.cb-tagreel-content {
	padding: 25px 0;
}

.cb-tagreel-item span {
    font-size: 11px;
    letter-spacing: 2px;
}

.section.home-3 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-3 h2 {
    font-size: 36px;
    line-height: 1.3;
}

.rv-map__filters {
    margin-top: 20px;
    margin-bottom: 0px;
    flex-wrap: wrap;
}

button.rv-map__filter {
    letter-spacing: 2px;
    font-size: 11px;
    padding: 10px 16px;
    border-radius: 999px;
}

.rv-map__stage {
    display: flex;
    flex-direction: column;
}

p.rv-map__text-right {
    position: relative;
    max-width: 100%;
    width: 100%;
    font-size: 13px;
    padding-left: 15px;
    right: 0;
    top: 0;
    order: 2;
    margin: 15px 0;
}

.rv-map__popup-content {
    display: flex;
    height: 200px;
    width: 140px;
    flex-direction: column;
}

.rv-map__popup-left {
    padding: 15px 10px;
    height: 100px;
}

span.rv-map__popup-label {
    letter-spacing: 2px;
    font-size: 12px;
}

span.rv-map__popup-count span {
    letter-spacing: 2px;
    font-size: 10px;
}

span.rv-map__popup-count strong {
    font-size: 30px;
}

.rv-map__popup-left, .rv-map__popup-image {
    flex: 0 0 100px;
    max-width: 100%;
}

p.rv-types-text {
    padding: 0;
}

.rv-types .col-4 {
    height: auto;
    padding: 4px 0;
}

.rv-types-item {
    height: 160px;
    padding: 20px 25px 20px 25px;
}

.rv-types-item h3 {
    font-size: 20px;
}

.rv-types strong {
    font-size: 50px;
}

.home-4 .col-7 {
    padding-right: 0px;
    padding-bottom: 30px;
}

.columns-wrapper.middle.home-4-vizia {
    flex-wrap: nowrap;
    align-items: flex-start;
}

.columns-wrapper.middle.home-4-vizia .col-6.left {
    width: 60%;
    max-width: 60%;
    padding-left: 0%;
    padding-right: 0%;
    flex: 0 0 60%;
}

.columns-wrapper.middle.home-4-vizia .col-6.right {
    width: 40%;
    max-width: 40%;
    padding-left: 0%;
    padding-right: 0%;
    flex: 0 0 40%;
}

.home-4-vizia p {
    font-size: 13px;
}

.section.tatry .large-title h3 {
    gap: 5px;
    flex-direction: column;
}

.section.tatry {
    padding-top: 40px;
    padding-bottom: 20px;
}

.section.tatry .large-title h3 span.small {
    font-size: 14px;
    font-family: 'Montserrat';
}

.section.tatry p.text-border {
    width: 100%;
    margin-left: 0;
    max-width: 400px;
}

.section.tatry .columns-wrapper.bottom p {
    border-top: 1px solid #fff;
    display: block;
    padding-top: 10px;
    font-size: 13px;
    margin-bottom: 20px;
}

.section.tatry .columns-wrapper.bottom .col-3 {
    padding-right: 0px;
}

.section.tatry .columns-wrapper.bottom p br {
    display: none;
}

.section.home-5 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section.home-5 .col-8 {
    padding-right: 0px;
}

.section.home-5 .col-4 {
    padding-top: 40px;
}

.section.home-5 .col-4 h2.large {
    font-size: 100px;
}

.section.home-5 .col-4 h2.large span {
    font-size: 55px;
}

img.rv-stamp {
    width: 130px;
    position: absolute;
    top: 30px;
    right: 0;
}

.section.home-5 .line-divider {
    margin: 30px 0 25px;
    max-width: 100%;
}

.section.home-6 {
    padding-top: 0px;
    padding-bottom: 30px;
}

.home-developer.middle {
    margin-top: 30px;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.home-developer .dev-right {
    flex: 0 0 45%;
}

.home-developer .dev-left {
    flex: 0 0 55%;
    padding-right: 0;
}

.home-developer .dev-left p {
    font-size: 13px;
}

.section.home-6 .col-6.right img {
    height: 100%;
    width: 100%;
}

.page-default-top .uvodny-text p {
    padding-left: 30px;
    padding-right: 30px;
}

.page-default-top .uvodny-text {
    padding: 20px 0px;
    margin-top: 50px;
}

.section.page-default-top {
    min-height: 500px;
}

.selektor-legenda {
    padding-top: 20px;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 999;
}

svg.mapa-selector {
    transform: scale(1.2);
}

.selektor-badges img.badge-compass {
    max-width: clamp(60px,10vw,155px);
}

.selektor-badges img.badge-selektor {
    max-width: clamp(90px, 18vw, 300px);
}

.selektor-badges img.badge-tatry {
    max-width: clamp(85px, 13vw, 195px);
}

/*pozicie pozemok-projekt*/
.selektor-badges.pozemok-projekt img.badge-tatry {
    left: 5%;
    bottom: 20%;
}

.selektor-badges.pozemok-projekt img.badge-compass {
    bottom: -11%;
}

.selektor-badges.pozemok-projekt img.badge-selektor {
    right: 45%;
    bottom: -15%;
}

/*pozicie aprtmn*/
.selektor-badges.apartmany img.badge-tatry {
    left: 5%;
}

.selektor-badges.apartmany img.badge-compass {
    bottom: -11%;
}

.selektor-badges.apartmany img.badge-selektor {
    bottom: -15%;
    right: 5%;
}

/*pozicie pozemok*/
.selektor-badges.pozemok img.badge-tatry {
    left: 15%;
    bottom: 20%;
}

.selektor-badges.pozemok img.badge-compass {
    bottom: -11%;
}

.selektor-badges.pozemok img.badge-selektor {
    bottom: -15%;
}

.section.contact .bgr-inner {
    right: auto;
    width: 100vw;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}

.section.contact .col-6.bgr {
    height: 50vh;
}

.section.contact .col-6.form {
    display: flex;
    padding-top: 30px;
    padding-bottom: 50px;
    padding-left: 0;
}

img.contact-stamp {
    max-width: 140px;
}

.section.contact .col-6.form h3 {
    padding-bottom: 10px;
}

.contact .wpcf7 {
    margin-top: 40px;
}

.gdpr-wrapper button.rv-button {
    margin-top: 35px;
}

span.wpcf7-list-item-label {
    padding-left: 60px;
    font-size: 13px;
    max-width: 100%
}


.single-top-left {
    padding-top: 130px;
}

p.apt-dom {
    font-size: 19px;
}

table.miestnosti-table td {
    padding: 12px 10px;
    font-size: 13px;
}

table.miestnosti-table th {
    padding: 12px 10px;
}

.single-top-img {
    padding-top: 20px;
    padding-bottom: 0px;
    justify-content: center;
    align-items: center;
}

.share-box {
    margin-top: 30px;
}

.single-bottom .price-wrapper p {
    font-size: 14px;
    gap: 10px;
}

.price-wrapper {
    display: flex;
    align-items: flex-start;;
    gap: 0px;
    flex-direction: column;
    margin-bottom: 40px;
}

.single-bottom .price-wrapper p span {
    font-size: 32px;
}

.section.single-gallery-top .col-12 {
    padding-top: 35px;
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.gallery-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    max-width: calc(100% + 15px);
    overflow-x: scroll;
}

button.gallery-tab {
    font-size: 11px;
    letter-spacing: 2px;
    padding: 12px 15px;
    white-space: nowrap;
}

.gallery-tabs:after {
    content: '';
    width: 50px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(to right, rgb(251 255 210 / 0%), #fbffd2 80%);
    z-index: 2;
}

.single-gallery-swiper .swiper-slide {
    width: 65vw !important;
}

.section.footer-top {
    padding-top: 40px;
    padding-bottom: 50px;
}

.col-4.footer-top-2 img {
    max-width: 140px;
}

.col-4.footer-top-1 {
    order: 2;
    padding-top: 50px;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-4.footer-top-2 {
    order: 1;
}

.col-4.footer-top-3 {
    order: 3;
    flex: 0 0 50%;
    max-width: 50%;
    padding-top: 50px;
}

#footer .bgr {
    background-size: auto 600px;
    background-position: bottom -200px center;
}

.footer-top ul.menu>li>a {
    font-size: 14px;
    margin-bottom: 10px;
}

.col-4.footer-bottom-1 {
    order: 3;
    text-align: center;
    margin-top: 10px;
}

.col-4.footer-bottom-2 {
    order: 1;
}

.col-4.footer-bottom-3 {
    order: 2;
    text-align: center;
    margin-top: 20px;
}

.col-4.footer-bottom-2 a {
    font-size: 26px;
}


}