/*
Theme Name: NIKBOOR
Theme URI: https://nikboor.ru
Author: Azim
Version: 1.0
Text Domain: nikboor
*/

html {

    font-size: 0.72vw;

    width: 100%;

    scroll-behavior: smooth;

    -webkit-text-size-adjust: 100%;

    overflow-x: clip;

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



body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    background: var(--white);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

@font-face {
    font-family: 'UNCAGE';
    src: url('http://nikboor.ru/wp-content/uploads/2026/06/UNCAGE-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'UNCAGE-REGULAR';
    src: url('http://nikboor.ru/wp-content/uploads/2026/06/UNCAGE-Regular.ttf') format('truetype');
}

:root {
    --blue:        #2A8DFF;
    --blue-light:  #40A6FF;
    --blue-pale:   #2A8DFF;
    --dark:        #343434;
    --dark-footer: #373737;
    --gray:        #E3E3E3;
    --gray-light:  #F5F5F5;
    --border:      #E5E7EB;
    --white:       #FFFFFF;
    --success:     #10B981;
    --warning:     #F59E0B;
    --error:       #EF4444;
    --font: 'Inter', sans-serif;
    --font-display: 'UNCAGE';
	 --font-display-regular: 'UNCAGE-REGULAR';
    --radius: 0.8rem;
    --radius-s: .7rem;
    --radius-a: .2rem;
    --radius-lg: 1.6rem;
    --shadow: 0 0.2rem 1.2rem rgba(0,0,0,0.08);
    --shadow-hover: 0 0.8rem 3.2rem rgba(27,94,201,0.18);
    --container: 130rem;
    --header-h: 8rem;
    --transition:  0.25s ease;
}

hr {
    border: none;
    height: 1px;
    border: 1px solid #00000014;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

img { max-width: 100%; height: auto; display: block; min-width: 100% }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

h1, h2, h3{
    font-family: var(--font-display);
	font-weight:500 !important;
    font-size:3.1rem !important;
}
p{
font-size:1.6rem !important;
}
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.4rem;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-bottom: .1rem solid var(--border);
    height: 10rem;
    transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled { box-shadow: 0 .2rem .16rem rgba(0,0,0,0.1); }

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.4rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.site-logo img { width: 9rem; height: 9rem; object-fit: contain; }

.main-nav { flex: 1; }

.nav-list {
    display: flex;
    gap: .4rem;
    align-items: center;
    justify-content: center;
    background: #DEDEDE4D;
    border-radius: .7rem;
    padding: .6rem;
    width: fit-content;
    height: 6rem;
    margin: 0 auto;
}

.nav-list li { position: relative; }

.nav-list a {
    display: block;
    padding: 1.75rem 1.2rem;
    font-family: var(--font-display) !important;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--dark);
	
    border-radius: .2rem;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.nav-list a:hover,
.nav-list .current-menu-item > a {
    color: var(--blue);
    background:#E3E3E3;
}

.nav-list .current-menu-ancestor > a,
.nav-list .current_page_ancestor > a,
.nav-list .current-menu-parent > a {
    color: var(--blue);
    background: #E3E3E3;
}

.nav-list .sub-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background: var(--gray);
    border: .1rem solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 18rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-.8rem);
    transition: all var(--transition);
    z-index: 200;
}

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

.nav-list li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.nav-list li.menu-item-has-children > a:hover{
	background:transparent;
}

.nav-list li.menu-item-has-children > a::after {
    content: "";
    width: 2rem;
    height: 1rem;
	margin-top: -.4rem;
    display: inline-block;
    background: no-repeat center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='10' rx='20' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L5 1L9 5' stroke='%23373737' stroke-width='1.5'/%3E%3C/svg%3E");
    transition: transform 0.25s ease;
	transform: rotate(180deg);
}

.nav-list li.menu-item-has-children:hover > a::after,
.nav-list li.current-menu-item.menu-item-has-children > a::after {
    background-image: url("data:image/svg+xml,%3Csvg width='10' rx='20' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L5 1L9 5' stroke='%232A8DFF' stroke-width='1.5'/%3E%3C/svg%3E");
}

.nav-list li.menu-item-has-children:hover > a::after {
    transform: rotate(0deg);
}

.nav-list .sub-menu a {
    padding: 1rem 1.6rem;
    border-radius: 0;
}

.nav-arrow { font-size: 1.1rem; }

.header-contacts {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    margin-right: 0;
}
.mobile-header-btn{
    display:none;
}

.header-phone {
    font-size: 1.4rem;
    font-weight: 500;
    color: #373737;
    transition: color var(--transition);
    font-family: var(--font-display);
}
.header-phone:hover { color: var(--blue); }

.header-email {
    color: #373737;
    display: flex;
    align-items: center;
    transition: color var(--transition);
}
.header-email i {
    font-size: 1.7rem;
	font-weight:500;
    color: #373737;
    flex-shrink: 0;
}
.header-email i:hover { color: var(--blue); }

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    height:4.4rem;
	width:4.4rem;
	align-items:center;
	justify-content:center;
	border-radius: .8rem;
    margin-left: auto;
	background:#2A8DFF;
	
}
.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}
.burger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-active span:nth-child(2) { opacity: 0; }
.burger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
    background: #1449a0;
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-primary.btn-full { width: 100%; }
.btn-home{
	width: 26% !important;
	height:6rem !important;
	
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: var(--radius);
    font-weight: 600;
    transition: all var(--transition);
}
.btn-secondary:hover { background: var(--blue); color: var(--white); }

.hero {
    position: relative;
    padding-top: 3rem;
    background: #fff;

	
}

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 100rem;
	
    padding: 0 3rem;
}

.hero__title {

  color: black;
  perspective: 1000px;

}
.hero-content{
   perspective: 1000px;
}
.hero-mobile .line,
.hero__title .line{
    overflow: hidden;
    display: block;
}



.reveal-title,

.reveal-text,

.reveal-card,

.reveal-image,

.reveal-item {

  will-change: transform, opacity;

}

.hero-content h1 {
	font-family:var(--font-display-regular);
    font-size: 4.5rem !important;
    line-height: 5.8rem;
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 500 !important;
    letter-spacing: -1%;
    text-transform: uppercase;
    /* width убран — переносы управляются через Enter в админке */
}

/* ПК: переносы только по <br> из nl2br(), никакого авто */
.hero-pc {
    white-space: pre-wrap;
    overflow-wrap: normal;
    word-break: keep-all;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17rem;
    height: 6rem;
    padding: 0rem;
    background: var(--blue);
	font-family:var(--font-display);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: .7rem;
    
    margin-bottom: 1rem;
	 transition: all 0.3s ease;
}
.hero-btn:hover{
	      transform: scale(1.05);
}

.hero-image {
    margin-top: -5rem;
    position: relative;
	    overflow: hidden;
    z-index: 1;
}
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
	background-repeat: no-repeat;
}
.hero-image-mobile{
	display:none;
}

.history {
    padding: 2rem 0;
    background: #fff;
    overflow: hidden;
}

.history-head {
    margin-bottom: 2rem;
}

.history-label {
    font-family:var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
	vertical-align:middle;
	color:#969696;
}

.history-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.history-track {
    display: flex;
    width: 100%;
    transition: transform .8s cubic-bezier(.77,0,.18,1);
    will-change: transform;
}

.history-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 50rem 1fr;
    gap: 5rem;
	padding-left:.2rem;
	padding-right:.2rem;
    align-items: center;
}

.history-image img {
    width: 100%;
    height: 32rem;
    object-fit: cover;
    border-radius: 2rem;
}

.history-text {
    max-width: 70rem;
}

.history-text h3 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #373737;
}

.history-text p {
    line-height: 2.7rem;
    color: #373737;
	    font-size: 2.2rem !important;
}

.history-text span {
    color: #40A6FF;
}

.history-lines-wrap {
    position: relative;
    margin-top: 5rem;
    padding: 0 12rem;
    
}

.history-lines {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: .8rem;
    padding: 0 6rem;
}

.history-line {
    width: .4rem;
    border-radius: 10rem;
    flex-shrink: 0;
    transition: .35 ease;
}


.history-line.sm {
    height: 3.6rem;
    background:#D3D3D3;
    transition:background .2s ease;
}

.history-line.md {
    height: 3.6rem;
    background: #D3D3D3;
}

.history-line.lg {
    height: 5.5rem;
    background: #ABABAB;
    cursor: pointer;
	  transition:

        background .2s ease,

        transform .2s ease;

    box-shadow:none !important;
}

.history-line.lg:hover {
   background:#40A6FF !important;
}

.history-line.active-lg {
   background:#40A6FF !important;

    box-shadow:none !important;
 
}

.history-line.active-lg {

    background: #40A6FF;


}

.history-line.wave {

    background: #D3D3D3;


}

.history-line.sm {
    transition:
        height .45s ease,
        background .45s ease,
        transform .45s ease;
}

.history-line.sm.wave {
    height: 3rem;
    background: #D3D3D3;

    transform: scaleY(1.12);
}
.history-lines-fade-left,
.history-lines-fade-right {
    position: absolute;
    top: 0;
    width: 18rem;
    height: 10rem;
    z-index: 5;
    pointer-events: none;
    backdrop-filter: blur(2px);
}

.history-lines-fade-left {
    left: 9rem;
}

.history-lines-fade-right {
    right: 9rem;
}

.history-lines-mobile {
    display: none;
}

.history-mobile-line{
    transform-origin: bottom;
    transition:
        background .3s ease,
        transform .3s ease;
}

.history-mobile-line.sm{
    width: .4rem;
    height: 3.6rem;
    background: #D3D3D3;
    border-radius: 10rem;
}

.history-mobile-line.lg{
    width: .4rem;
    height: 6.5rem;
    background: #ABABAB;
    border-radius: 10rem;
}

.history-range-wrap {
    position: relative;
    margin-top: 5rem;
    padding: 0 40rem;
}

.history-range {
   position: relative;
    /* width: 100%; */
    height: .5rem;
    background: #F0EEE7;
    border-radius: 1.3rem;
    width: 46.5rem;
    left: 2rem;
}

.history-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #40A6FF;
     border-radius: 1.3rem;
    transition: .7s ease;
}

.history-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
	box-shadow:
    0 -2px 6px rgba(0,0,0,.04),
    0 -8px 24px rgba(0,0,0,.06),
    0 -16px 40px rgba(0,0,0,.03);
    transition: left .8s cubic-bezier(.77,0,.18,1), border-radius .35s ease;
}

.history-thumb.is-start {
    width: 3.9rem;
    height: 3.9rem;
    border-radius: 50%;
    

}

.history-thumb.is-middle {
    width: 7.3rem;
    height: 3.9rem;
    border-radius: 3.6rem;

}

.history-thumb.is-end {
    width: 3.9rem;
    height: 3.9rem;
    border-radius: 50%;

}

.history-arrow {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.history-arrow svg {
    width: 2.5rem;
    height: 2.5rem;
}

.history-arrow svg path {
    transition: .3s ease;
}

.history-arrow:hover svg path {
    stroke: #40A6FF;
}

.history-prev {
    display: none;
}

.history-next {
    display: flex;
}

.history-years {
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.history-year {
    position: relative;
    font-size: 1.6rem;
	line-height:1.2rem;
    font-weight: 600;
    color: #8D8D8D;
    cursor: pointer;
    transition: .3s ease;
	font-style: Semibold;
    padding-top: 2rem;
}

.history-year::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: .7rem;
    height: .7rem;
    border-radius: 50%;
    background: #d6d6d6;
    transition: .3s ease;
}

.history-year.active {
	font-weight: 700;
    color: #40A6FF;
    font-style: Bold;


}

.history-year.active::before {
    opacity: 0;
}

.industrial {
    background: var(--white);
   
}
.industrial-grid {
    display: grid;
    grid-template-columns: 50% 1fr;
    align-items: start; /* ← ДОБАВИТЬ */
}

/* 2. Левая колонка прилипает */
.industrial-left-wrap {
    position: sticky;
    top: 5rem; /* или top: 60px если есть фиксированный хедер */
}

.industrial-left {
    padding: 6rem 5rem 0rem 0 !important;
}

.industrial-title {
    font-size: 4rem !important;
    line-height: 1.1;
    letter-spacing: 0;
    color: #373737;
    font-weight: 600;
    margin-bottom: 5rem;
    text-transform: uppercase;
}

.industrial-text {
    max-width: 70rem;
    font-size: 1.68rem;
    line-height: 1.55;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 5rem;
}

.industrial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.industrial-card {
    min-height: 1.74rem;
    background: #efefef;
    border-radius: 1.6rem;
    padding: 2.8rem;
    display: flex; 
    flex-direction: column;
    gap: 30px;
    transition: var(--transition);
}

.industrial-card:hover {
    transform: translateY(-.4rem);
}

.industrial-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #373737;
}

.industrial-card-text {
    font-size: 1.6rem;
	line-height:2.6rem;
    letter-spacing:-0.1rem;
    color: var(--dark);
    font-weight: 600;
	
}

.industrial-right {
    border-left: .1rem solid #d9d9d9;
	
}

.industrial-stat {
    min-height: 23rem;
    padding: 6rem 5rem;
    border-bottom: .1rem solid #d9d9d9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industrial-number {
	font-family:var(--font-display-regular);
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    font-size: 6rem;
    line-height: .9;
    letter-spacing: 0;
    color: #40A6FF;
    font-weight: 500;
    margin-bottom: 1rem;
}
.industrial-stat:nth-child(4) .industrial-number {
   font-weight: 500;
	  font-size: 6rem;
	line-height:1.2;

}
.industrial-number span {
    font-size: 2.7rem;
    line-height: 1;
    color: #373737;
    margin-top: 0rem;
    font-weight: 600;
}

.industrial-number sup{

font-weight: 600;

font-size: 1.5rem;


}
.industrial-label {
    font-size: 1.2rem;
	margin-top: 1rem;
    line-height: 1.4;
    color: #373737;
    font-weight: 600;
    text-transform: uppercase;
}
/* MOBILE */


.gallery-section {
    padding:4rem 0 0;
    overflow: hidden;
    background: white;
	margin-bottom:4rem;
}

.gallery-title {
	font-family:var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
	line-height:.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
	vertical-align:middle;
	color:#969696;
}

.gallery-slider {
    width: 100%;
    overflow: visible !important;
    position: relative;
}

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

.gallery-slider .swiper-slide {
    width: 70rem !important;
    height: 40rem;
    border-radius: 3.6rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    transition: transform .4s ease, opacity .4s ease;
    opacity: .45;
    transform: scale(.82);
    flex-shrink: 0;
}

.gallery-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 5;
}

.gallery-slider .swiper-slide-prev,
.gallery-slider .swiper-slide-next {
    opacity: .7;
    transform: scale(.82);
}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    display: block;
}

.gallery-prev, 
.gallery-next {
    width: 4.8rem;
    height: 4.8rem;
    padding: 1.2rem;
    border-radius: 0.9rem;
    background: #2A8DFF;
	border: 1px solid #2A8DFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    transition: .3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #1475ea;
}

.gallery-prev {
    left: 18rem;
}

.gallery-next {
    right: 18rem;
}

.gallery-thumbs {
    margin-top: 4rem;
    overflow: hidden;
}

.gallery-thumbs .swiper-wrapper {
    justify-content: center;
    margin-left: 2rem;
}

.gallery-thumbs .swiper-slide {
    width: 8rem !important;
    height: 8rem !important;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    opacity: .5;
    transition: .3s;
    border: .3rem solid transparent;
    flex-shrink: 0;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #2f80ff;
}

.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.resident-section {
    position: relative;
    padding: 0;
    background: white;
    overflow: hidden;
}

.resident-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.4rem;
	margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.resident-content {
    flex: 1;
    max-width: 80rem;
    min-width: 0;
}

.resident-title {
    font-family:var(--font-display);
    line-height: 1.8rem;
    font-weight:600;
	font-size:4rem !important;
    text-transform: uppercase;
    color: #373737;
    margin-bottom: 2.2rem;
}

.resident-text {
    font-size: 1.6rem;
    line-height: 1.4;
    color: #373737CC;
    margin-bottom: 2.2rem;
	font-weight:500;
    max-width: 42rem;
}

.resident-btn {
    width: 22.7rem;
    height: 4.8rem;
    border: none;
    border-radius: .8rem;
    background: #2f80ff;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.resident-btn:hover {
    background: #156df5;
    transform: translateY(-.3rem);
}

.resident-image {
    
    flex-shrink: 0;
}
.resident-image2{
	position:relative;

}

.resident-image2 img {
    width: 100%;
    display: block;
    object-fit: contain;
	height:35rem !important;
}

.location {
    padding: 3rem 0;
    background: white;
    overflow: hidden;
}

.location-container {
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 3rem;
}

.location-top {
    display: grid;
    grid-template-columns: 1fr 50%;
    gap: 6rem;
    align-items: start;
    margin-bottom: 5rem;
}

.location-content {
    max-width: 44rem;
}

.location-label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-transform: uppercase;
    vertical-align: middle;
    color: #969696;
}

.location-text p {
    font-size: 1.53rem !important;
	letter-spacing:-1%;
    line-height: 1.55;
    color: #2f2f2f;
    font-weight: 600;
}

.location-text p + p {
    margin-top: 2.6rem;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.location-card {
    min-height: 11.6rem;
    border-radius: .7rem;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s ease;
}

.location-card:hover {
    transform: translateY(-.3rem);
}

.location-card small {
    font-family: var(--font-display);
	letter-spacing:-1%;
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFFFFF;
}

.location-card strong {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: .92;
    font-weight: 600;
	letter-spacing:-1%;
    color: #fff;
    text-transform: uppercase;
}

.location-card.dark { background: #292929; }
.location-card.blue { background: #2A8DFF; }
.location-card.orange { background: #F07A3E; }
.location-card.gray { background: #7A7A7A; }

.location-map {
    position: relative;
    width: 100%;
    height: 58rem;
    border-radius: 1.6rem;
    overflow: hidden;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rent-map {
    padding: 3rem 0 0 0;
    background: white;
    overflow: hidden;
}

.rent-map-head {
    margin-bottom: 3rem;
}

.rent-map-head span {
       font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    vertical-align: middle;
    color: #969696;
}

.rent-map-inner {
    position: relative;
    width: 100%;
    max-width: 128rem;
    margin: 0 auto;
	
}

.rent-map-image {
    width: 100%;
    display: block;
    border-radius: 1.5rem;
}

.rent-point {
    position: absolute;
}


/*
==========================================
ALL POINTS VISIBLE
==========================================
*/

.rent-point.no-popup{
    opacity:1;
    pointer-events:none;
}

/*
==========================================
ONLY POPUP BUILDINGS ACTIVE
==========================================
*/

.rent-point.has-popup{
    pointer-events:auto;
}

.point-1 {
    top: 19%;
    left: 16%;
}

.point-2 {
    top: 17%;
    left: 37%;
}

.point-3 {
    top: 3%;
    left: 60%;
}

.point-4 {
    top: 8.5%;
    left: 68.5%;
}
.point-5 {
    top: 68%;
    left: 70%;
}

.point-6 {
    top: 24%;
    left: 63%;
}

.point-7 {
    top: 34%;
    left: 21%;
}

.point-8 {
    top: 52%;
    left: 27%;
}

.point-9 {
    top: 56%;
    left: 14%;
}

.point-10{
    display:none;
}

.point-11{
    display:none;
}

.point-12 {
    top: 78%;
    left: 30%;
}
.rent-point-number{
	font-family:var(--font-display);
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 50%;
	font-size:2rem;
    background: #FFFFFFC2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    color:#000000;
    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

/* HOVER */

.rent-point-number:hover{
    background: #2A8DFFC2;
    color: #fff;
    transform: scale(1.08);
    box-shadow:
        0 1rem 2rem rgba(42,141,255,.35);
}

/* ACTIVE / CLICK */

.rent-point-number:active{
    transform: scale(.95);
    color: #fff;
    background: #2A8DFFC2;
}

/* MOBILE TAP */

@media (max-width: 600px){

    .rent-point-number:active{
        background: #1475EA;
        transform: scale(.92);
    }

}
.rent-popup {
    position: absolute;
    bottom: 8rem;
    left: -20rem;
    width: 44rem;
    background: #fff;
    border-radius: 2rem;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: .25s ease;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.12);
    z-index: 10;
}

.rent-point:hover .rent-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.available-building-title{

    font-size: 3.1rem;

    font-weight: 600;

    margin:-2rem 0 2rem;

}

.rent-popup::after {
    content: "";
    position: absolute;
    bottom: -1.2rem;
    left: 21rem;
    width: 2.4rem;
    height: 2.4rem;
    background: #fff;
    transform: rotate(45deg);
}

.rent-popup-title {
    font-size: 2rem;
    font-weight: 600;
    color: #343434;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.rent-popup-items {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding-bottom: 1.6rem;
    scrollbar-width: thin;
    scrollbar-color: #00000033 transparent;
}

.rent-popup-items::-webkit-scrollbar { height: .4rem; }
.rent-popup-items::-webkit-scrollbar-track { background: transparent; }
.rent-popup-items::-webkit-scrollbar-thumb { background: #00000033; border-radius: 999rem; }

.rent-card {
    width: 12rem !important;
    min-width: 12rem !important;
    flex-shrink: 0;
	
}
.rent-card .img-popup {
    width: 100% !important;
    height: 12rem !important;
    object-fit: cover !important;
    border-radius: 1.2rem !important;
    margin-bottom: 1rem !important;
}

.rent-card-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #343434;
    margin-bottom: .5rem;
}

.rent-card-text {
    font-size: .95rem;
    line-height: 1.4;
    color: #8c8c8c;
    margin-bottom: .8rem;
}

.rent-card-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2A8DFF;
}


.rent-card-pagination .swiper-pagination-bullet {
    width: .4rem !important;
    height: .4rem !important;
    background: rgba(255,255,255,.45);
    opacity: 1;
    margin: 0 .1rem !important;
	margin-bottom:.4rem !important;

}

.rent-card-pagination .swiper-pagination-bullet-active {
      width: 1rem !important;
    border-radius: 999rem;
    background: #ffffff;
}

.yandex-map-section {
    padding: 8rem 0;
    background: white;
}

.yandex-map {
    width: 100%;
    height: 62rem;
    border-radius: 2.4rem;
    overflow: hidden;
}

[class*="ymaps-2"][class*="-ground-pane"] {
    filter: grayscale(100%);
}

.available-section {
    padding: 5rem 0;
    background: white;
}

.available-head {
    margin-bottom: 3rem;
}

.available-label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    vertical-align: middle;
    color: #969696;
}

.available-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4rem 1rem;
	margin-bottom:4rem;
}



.available-card {
    position: relative;
	width:27rem;
	height:35.5rem;
    display: block;
    text-decoration: none;
    min-width: 0;
}



.available-slider {
    position: relative;
    overflow: hidden;
    height: 27rem;
    border-radius: 2rem;
    margin-bottom: 1.8rem;
    width: 27rem;
    min-width: 0;
}

.available-slider .swiper {
    width: 100%;
    height: 100%;
}

.available-slider .swiper-wrapper {
    height: 100%;
    display: flex;
}

.available-slider .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
    height: 100%;
}

.available-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.available-slider .swiper-pagination {
    bottom: 1rem !important;
}

.available-slider .swiper-pagination-bullet {
    width: .6rem;
    height: .6rem;
    background: rgba(255,255,255,.45);
    opacity: 1;
    margin: 0 .1rem !important;
}

.available-slider .swiper-pagination-bullet-active {
    width: 1.2rem;
    border-radius: 999rem;
    background: #ffffff;
}

.available-title {
    font-size: 1.5rem;
    line-height: 1.15;
	letter-spacing:-0.15px;
    font-weight: 600;
    color: #0A0A0A;
    margin-bottom: .6rem;
}

.available-text {
    font-size: 1.5rem;
    line-height: 1.2;
	letter-spacing:-0.15px;
	font-weight: 400;
    color: #8c8c8c;
    margin-bottom: 1rem;
}

.available-price {
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 600;
	letter-spacing:-0.31px;
    color: #8f8f8f;
}





.rent-empty {
    padding: 8rem 0;
}

.rent-empty-content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 6rem;
}

.rent-empty-left {
    max-width: 82rem;
    flex: 1;
}

.rent-empty-title {
    font-family: var(--font-display);
    font-size: 2.7rem;
    line-height: 1.05;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 3rem;
}

.rent-empty-title span {
    font-family: var(--font-display);
    color: #2A8DFF;
}

.rent-empty-text {
    font-size: 1.7rem;
    line-height: 1.7;
    color: #000000CC;
    margin-bottom: 4rem;
}

.rent-empty-btn {
    width: 24rem;
    height: 6.2rem;
    border: none;
    border-radius: 1.4rem;
    background: #2A8DFF;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
}

.rent-empty-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.rent-empty-right img {
    width: 100%;
    max-width: 64rem;
    display: block;
}

.rent-popup-empty {
    padding: 2rem 0;
}

.rent-popup-empty-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: #343434;
    margin-bottom: 1.2rem;
}

.rent-popup-empty-text {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #6f6f6f;
    margin-bottom: 2rem;
}

.rent-popup-empty-btn {
    width: 100%;
    height: 5.6rem;
    border: none;
    border-radius: 1.2rem;
    background: #2A8DFF;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
}

/* =========================
   POPUP DOWN
========================= */

.rent-point.popup-bottom .rent-popup{
    bottom: auto;
    top: 8rem;
    left: -20rem;
}

/* СТРЕЛКА */

.rent-point.popup-bottom .rent-popup::after{
    bottom: auto;
    top: -1.2rem;

    transform: rotate(45deg);
}









.rent-mobile-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;
}

.rent-mobile-modal.active{
    opacity: 1;
    visibility: visible;
}

.rent-mobile-modal-inner{
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;

    background: #fff;

    border-radius: 2rem 2rem 0 0;

    padding: 2rem;

    max-height: 75vh;

    overflow-y: auto;

    transform: translateY(100%);
    transition: .35s ease;
}

.rent-mobile-modal.active .rent-mobile-modal-inner{
    transform: translateY(0);
}

.rent-mobile-close{
    width: 4rem;
    height: 4rem;

    border-radius: 50%;

    background: #f3f3f3;

    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;
}
.no-product{
	margin-top:3rem;
	align-items:start !important;
	height:65rem !important;
}
.no-product-content{
	margin-top:-1rem !important;
}
.no-product-content .no-product-title{
	font-size:2.7rem !important;
}
.no-product-text{
	max-width:55rem !important;
	margin-bottom:4rem !important;
}
.no-product-image img{
	width:55rem !important;
	height:60rem !important;
}



















.page-single-object {
    padding: 3rem 0;
    background: white;
    overflow: hidden;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    color: #7c7c7c;
    transition: .25s ease;
}

.back-link:hover { color: #2A8DFF; }

.single-object-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 35rem;
    gap: 4rem;
    align-items: start;
}

.single-object-main { min-width: 0; }

.single-object-title {
    font-size: 3.1rem !important;
    line-height: 1;
    font-weight: 600;
	letter-spacing:0.4px;
    color: #343434;
    margin-bottom: 2.6rem;
	    max-width: 68%;
    text-transform: uppercase;
}
.title-meter{

    font-size: 2rem;

    vertical-align: super;

    line-height: 1;

}
.object-gallery { 
	margin-bottom: 5rem;
    width: auto;
    height: auto;
    overflow: hidden;
}

.object-main-swiper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #ececec;
}

.object-main-swiper .swiper-slide { width: 100%; height: 50rem; }
.object-main-swiper img { width: 100%; height: 100%; object-fit: cover; display: block; }

.object-no-photo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    color: #9c9c9c;
    font-size: 1.6rem;
}

.obj-prev,
.obj-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: .7rem;
    background: #FFFFFFB2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #343434;
    cursor: pointer;
    transition: .25s ease;
}

.obj-prev:hover,
.obj-next:hover { background: #fff; }

.obj-prev { left: 2rem; }
.obj-next { right: 2rem; }

.obj-counter {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    z-index: 20;
    padding: .8rem 1.2rem;
    border-radius: .8rem;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 1.3rem;
}

.object-chars { margin-bottom: 4.5rem; }

.section-heading {
    font-size: 3.1rem !important;
    line-height: .95;
    font-weight: 500;
    text-transform: uppercase;
    color: #343434;
    margin-bottom: 1rem;
}

.chars-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    column-gap: 1.5rem;
    row-gap: .5rem;
    align-items: start;
}

.char-row {
    display: flex;
    align-items: baseline;
    gap: .8rem;
    line-height: 1.25;
    white-space: nowrap;
}

.char-label { color: #0000008C; font-weight: 500; font-size:2rem; }
.char-value { color: #000000CC; font-weight: 500; font-size:2rem; }

.object-description { margin-bottom: 5rem; }

.description-text {
    font-size: 2.5rem;

    line-height: 1.7;
	font-weight:500;
    color: #000000CC;
	
}


.other-card-swiper{
    width:23rem;
    height:22rem;
    border-radius:1.6rem;
    overflow:hidden;
}

.other-card-swiper .swiper-slide{
    width:100%;
    height:100%;
}

 .other-card-swiper .swiper-pagination-bullet {
	color:#A6A6A6;
	width:.5rem;
	height:.5rem;
}
.other-card-swiper .swiper-pagination-bullet-active{
	width:.9rem;
	height:.5rem;
	border-radius:3.5rem;
	color:#FFFFFF;
	background:#FFFFFF;
}
.single-object-sidebar {
    position: relative;
    
}

.single-rental-resident .resident-container{
	padding: 20px 2.4rem;
}
.single-rental-resident .resident-btn{
	width:30.5rem;
	    border-radius: .5rem;
}

.sidebar-price-card {
	width: 30rem;
    background: #FFFFFF;
	border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
	
}

.sidebar-price-total {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    color: #343434;
	letter-spacing:0.4px;
    margin-bottom: 1rem;
}

.sidebar-price-per {
    font-size: 1.6rem;
	letter-spacing:-0.15px;
    color: #6A7282;
	font-weight:400;
    margin-bottom: 2.4rem;
}

.btn-full { width: 100%; }

.sidebar-others-wrap { width: 100%; }

.sidebar-others-title {
	font-family:var(--display-font);
    font-size: 2.1rem !important;
	font-weight:600;
	letter-spacing:-0.31px;
    line-height: 1;
    margin-bottom: 2rem;
    color: #343434;
    text-transform: uppercase;

}

.sidebar-others {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 20rem;
}

.other-card {
    display: block;
    width: 23rem;
    height: 30rem;
}

.other-card__img {
    width: 23rem;
    height: 23rem;
}
.other-card__img img { 
	width: 23rem !important; 
	height: 22rem !important; 
	border-radius: 2rem;
	object-fit: cover; 
}
.other-card__title { font-size: 1.5rem; line-height: 1.3; font-weight: 500; color: #343434;letter-spacing:-0.15px; margin-bottom: .6rem;}
.other-card__floor { font-size: 1.5rem; color: #4A5565; margin-bottom: .6rem; letter-spacing:-0.15px; font-weight:400; }
.other-card__price { font-size: 1.7rem; font-weight: 600; color: #343434; letter-spacing:-0.31px; }

.vacancies-page {
    padding: 3rem 0 0rem;
    background: white;
    overflow: hidden;
}

.vacancies-page .container { max-width: 130rem;}

.vacancies-head { margin-bottom: 1.5rem; }

.vacancies-label {
   font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-transform: uppercase;
    vertical-align: middle;
    color: #969696;
}

.vacancy-category { margin-bottom: 4rem; }


.vacancy-category-top {
    padding-bottom: 2rem;
    border-bottom: .1rem solid #E0DFDC;
}

.vacancy-category-title {
    display: flex;
    align-items: center;
    gap: 1.2rem;
	font-family:var(--font-display);
    font-size: 3.1rem !important;
    line-height: .9;
    font-weight: 600;
    text-transform: uppercase;
    color: #2A8DFF;
}

.vacancy-category-title span { 
	color: #A9A8A7; 
	font-size: 3.8rem;
}

.vacancy-list {
   
    margin-left: 30rem;
}

.vacancy-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 3rem 0;
    border-bottom: .1rem solid #E0DFDC;
    text-decoration: none;
    transition: .25s ease;
}

.vacancy-item:hover { border-bottom: .1rem solid #343434; }

.vacancy-item-inner {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    min-width: 0;
    flex: 1;
}

.vacancy-arrow {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-1rem);
    transition: .25s ease;
    color: #2A8DFF;
}
.vacancy-arrow1{
	 color: #343434;
}
.vacancy-arrow svg { width: 100%; height: 100%; }

.vacancy-name {
	margin-top: .45rem;
    font-size: 1.75rem;
    line-height: 1.8;
    font-weight: 500;
    text-transform: uppercase;
    color: #262626;
    max-width: 50rem;
    transition: .25s ease;
	font-family:var(--font-display)
}

.vacancy-place {
    width: 22rem;
    flex-shrink: 0;
    text-align: right;
}

.vacancy-place strong {
    display: block;
    margin-bottom: .8rem;
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 500;
    color: #343434;
}

.vacancy-place span {
    font-size: 1.7rem;
    line-height: 1.3;
    color: #7E7C7B;
}

.vacancy-item:hover .vacancy-arrow { opacity: 1; transform: translateX(0); }
.vacancy-item:hover .vacancy-name { color: #2A8DFF; }



.vacancies-empty { padding: 10rem 0; }

.vacancies-empty-title {
    font-size: 3.1rem;
    line-height: .9;
    font-weight: 600;
    text-transform: uppercase;
    color: #262626;
}

.vacancies-empty { padding: 0rem 0 8rem; }

.vacancies-empty-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8rem;
}

.vacancies-empty-left { max-width: 72rem; }

.vacancies-empty-title {
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-size: 3.2rem;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
}

.vacancies-empty-title span { color: #2A8DFF; }

.vacancies-empty-text {
    max-width: 65rem;
    font-size: 2rem;
    line-height: 1.5;
    color: #444444;
}

.vacancies-empty-text a { color: #2A8DFF; text-decoration: underline; }

.vacancies-empty-image { width: 52rem; flex-shrink: 0; }
.vacancies-empty-image img {
    width: 55rem !important;
    height: 52rem !important;
    display: block;
}
.vacancy-download {
    border-radius: 1.8rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .25s ease;
}

.vacancy-download i {
    font-size: 2.5rem;
    color: #343434;
    transition: .25s ease;
}

.vacancy-item:hover .vacancy-download {
    background: transparent;
    transform: translateY(-.2rem);
}

.vacancy-item:hover .vacancy-download i{
	color:#2A8DFF;
}
.contacts-page {
    padding: 3rem 0 3rem;
    background: white;
}

.contacts-head { margin-bottom: 3rem; }

.contacts-label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 3.2rem;
    text-transform: uppercase;
    vertical-align: middle;
    color: #969696;
}

.contacts-map-wrap {
    position: relative;
    width: 100%;
    height: 50rem;
    border-radius: 16px;
    overflow: hidden;
}

.contacts-map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50rem;
    border: none;
}


.page-single-vacancy {
    padding: 3rem 0 5rem;
    background: white;
}

.page-single-vacancy .container { padding:0 5rem; }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #1E1E1E;
    transition: .25s ease;
}

.back-link svg { width: 1.6rem; height: 1.6rem; }
.back-link:hover { opacity: .6; }

.vacancy-single-title {
    max-width: 60rem;
    margin-bottom: 3rem;
    font-size: 3.1rem !important;
	font-family:var(--display-font);
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
}

.vacancy-meta {
    display: flex;
    align-items: center;
	
    gap: 2rem;
    margin-bottom: 2rem;
}

.vacancy-meta__item {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.vacancy-meta__label { font-size: 1.2rem; line-height: 1; color: #7E7C7B; font-weight:500; }
.vacancy-meta__value { font-size: 1.2rem; line-height: 1; font-weight: 500; color: #000000; }

.vacancy-intro {
    max-width: 78rem;
    margin-bottom: 2rem;
    font-size: 1.8rem !important;
    line-height: 1.3;
    color: #000000;
}
.vacancy-intro p{
	 font-size: 1.8rem !important;
	
}


.btn-primary {
    height: 5.8rem;
	width:20rem;
    padding: 0 3.2rem;
    border: none;
    border-radius: .6rem;
    background: #2A8DFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: .25s ease;
	margin-bottom:4rem;
}

.btn-primary:hover { background: #1878E8; }

.vacancy-section { margin-top: 3rem; }

.vacancy-section__title {
    margin-bottom: 1rem;
 font-size: 2.3rem !important;
        font-weight: 600 !important;
    text-transform: uppercase;
    color: #000000;
}

.vacancy-section__content {
    font-size: 1.6rem;
    line-height: 1.65;
	font-weight: 500;
	max-width: 70rem;
    color: #000000;
}



.vacancy-apply-section { margin-top: 8rem; }

.vacancy-apply-title {
    margin-bottom: 5rem;
    font-size: 3.1rem !important;
    line-height: .95;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
}

.text-blue { color: #2A8DFF; }


.vacancy-form{
	width:65rem;
}


.vform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
}

.vform-field { margin-bottom: 2.4rem; }

.vform-label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #000000;
}

.form-input {
    width: 100%;

    padding: 0 2rem;
    border: .1rem solid transparent;
    border-radius: 1rem;
    background: #F5F5F5;
    font-size: 2.1rem;
    color: #7A7875;
    transition: .2s ease;
}

.form-input:focus { border-color: #2A8DFF; background: #F5F5F5; }
.form-input.error { border-color: #FF4D6D; background: #F5F5F5; }
.form-input::placeholder { color: #9A9A9A; }

.file-drop-zone {
    padding: 3rem;
    border: .1rem dashed #D4D4D4;
    border-radius: 1rem;
    background: #F5F3F1;
    position: relative;
    transition: .25s ease;
}

.file-drop-zone.error { border-color: #FF4D6D; background: #FFF4F6; }

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

.file-drop-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.file-upload-btn{
	width: 20rem;
height: 5rem;
display:flex;
	align-items:center;
	justify-content:center;
opacity: 1;
gap: 1rem;
border-radius: 1rem;
padding-top: 5px;
padding-right: 2.4rem;
padding-bottom: .5rem;
padding-left: 2.4rem;
background: #FFFFFF;
	font-size:1.6rem;
	color:#000000;


}

.file-drop-text {
    height: 5rem;
    padding: 0 2.4rem;
    border-radius: .8rem;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #111;
}

.file-drop-or { font-size: 1.6rem; color: #000000; }

.file-hint {
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #7A7875;
}

.file-selected { margin-top: 2rem; position: relative; z-index: 9; }

.file-selected-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border: none;
    border-radius: 1.6rem;
    background: transparent;
}

.file-selected-left {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    min-width: 0;
}

.file-check {
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.file-selected-name { font-size: 1.6rem; font-weight: 600; color: #222; word-break: break-word; }
.file-selected-size { margin-top: .4rem; font-size: 1.3rem; color: #8E8E8E; }

.file-remove {
    height: 4.4rem;
    padding: 0 2rem;
    border: none;
    border-radius: 1rem;
    background: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
}

.file-remove:hover { background: #ECECEC; }

.vform-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.vform-checkbox {
	position:relative;
    display: flex;
    align-items: start;
    gap: 1.2rem;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #111;
    cursor: pointer;
}

.vform-checkbox input{
    display:none;
}

/* ОСНОВА */

.checkbox-custom{
    width:2.2rem;
    height:2.2rem;
    border-radius:.5rem;
    background:#EBE9E6;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:.25s ease;
}

/* БЕЛАЯ ТОЧКА */

.checkbox-custom::before{
    content:"";
    width:1.2rem;
    height:1.2rem;
    border-radius:50%;
    background:#fff;
    transform:scale(0);
    transition:.25s ease;
}

/* ACTIVE */

.vform-checkbox input:checked + .checkbox-custom::before{
    transform:scale(1);
}
.vform-checkbox input:checked + .checkbox-custom{
	background:#2A8DFF;
}
.vform-checkbox.error .checkbox-custom{

    border:.2rem solid #FF3B30;

}








.btn-full {
    width: 100%;
    height: 4.3rem;
    border-radius: .8rem;
    font-size: 1.6rem;
	letter-spacing:-0.31px;
	    margin-bottom: 1rem;
}

.vform-error-banner {
    margin-top: 2.4rem;
    padding: 2rem;
    border-radius: 2.1rem;
    background: #FF1C4C;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
}

.form-success {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 1.2rem;
    background: #1DB954;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
}

.input-error { 
	border: .1rem solid #FF1C4C !important; 
}
.file-drop-zone.input-error{
	border: .1rem dashed #FF1C4C !important; 
	background:#FF1C4C1A;
}

.file-selected { margin-top: 2rem; }

.file-selected-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border: .1rem dashed #D7D7D7;
    border-radius: 1.6rem;
    background: #F7F7F7;
}

.file-selected-left {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.file-check {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 1rem;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
	font-size:2.1rem;
}

.file-selected-name { font-size: 1.6rem; font-weight: 600; }
.file-selected-size { margin-top: .6rem; font-size: 1.4rem; color: #999; }

.file-remove {
    height: 4.8rem;
    padding: 0 2rem;
    border: none;
    border-radius: 1rem;
    background: #fff;
    cursor: pointer;
}

.form-success {
    margin-top: 2rem;
    padding: 1.6rem 2rem;
    border-radius: 1rem;
    background: #DFF5E3;
    color: #187A2F;
}

.form-error {
    margin-top: 2rem;
    padding: 1.6rem 2rem;
    border-radius: 1rem;
    background: #FFE4E9;
    color: #D61F45;
}

.site-footer {
    background: #343434;
    overflow: hidden;
    position: relative;
}

.footer-container {
    max-width: 144rem;
    margin: 0 auto;
    display: flex;
    height: 25rem;
}


.footer-left {
    width: 50%;
    padding: 4.8rem 6rem;
    border-right: 1px solid #4B4B4B;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-right {
    width: 50%;
    padding: 4.8rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-title {
    font-family: var(--font-display-regular) !important;
    font-size: 6rem !important;
    line-height: .95;
    font-weight: 500 !important;
	
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    
}

.footer-address {
    font-size: 1.5rem;
	letter-spacing:-1%;
	font-weight:400;
    color: rgba(255,255,255,.85);
    margin-top: 2.8rem;
}

.footer-copy {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #FFFFFFCC;
	letter-spacing:-1%;
    margin-top: auto;
    padding-top: 2.8rem;
}

.footer-phone {
    font-family: var(--font-display-regular);
    font-size: 6rem;
    line-height: 1;
    font-weight: 400 !important;
	letter-spacing:-1%;
    color: #fff;
    text-decoration: none;
    letter-spacing: -.2rem;
}

.footer-email {
    font-size: 1.5rem;
	letter-spacing:-1%;
    color: #fff;
    margin-top: 2.8rem;
    display: inline-block;
    text-decoration: underline;
    width: fit-content;
}

.footer-details {
    margin-top: auto;
    margin-top: 2.8rem;
    font-size: 1.2rem;
	letter-spacing:-1%;
    line-height: 1.7;
    color: rgba(255,255,255,.65);
}
.footer-details p{
	  font-size: 1.2rem !important;
}
body.contacts-page-active .site-footer { background: white; }
body.contacts-page-active .footer-left { border-right: none; }
body.contacts-page-active .footer-title { color: #373737; }
body.contacts-page-active .footer-address { color: #373737; }
body.contacts-page-active .footer-phone { color: #2A8DFF; }
body.contacts-page-active .footer-email { color: #373737; }
body.contacts-page-active .footer-copy { color: #373737CC; }
body.contacts-page-active .footer-details { color: #373737; }
body.contacts-page-active .footer-details p { color: #373737CC; }

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
	z-index:99999999999;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 55rem;
    max-width: 55rem;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform var(--transition);
}
.modal-overlay.is-open .modal { transform: translateY(0); }

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    border-radius: 50%;
    transition: background var(--transition);
}
.modal-close:hover { background: var(--gray-light); }

.modal-title {
    font-size: 3.8rem !important;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.modal-subtitle {
    font-size: 1.6rem !important;
    color: #364153;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.rent-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(.4rem);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}




.form-consent {

    display: flex;

    align-items: flex-start;

    gap: 1.2rem;

    margin-top: 2rem;

    cursor: pointer;

    position: relative;

}

.form-consent input {

    display: none;

}

.consent-checkbox {

    width: 2rem;

    height: 2rem;

    border-radius: .5rem;

    background: #EBE9E6;

    flex-shrink: 0;

    position: relative;

    transition: .25s ease;

    margin-top: .2rem;

}

.consent-checkbox::before {

    content: "";

    position: absolute;

    inset: 0;

    margin: auto;

    width: .9rem;

    height: .9rem;

    border-radius: 50%;

    background: #fff;

    transform: scale(0);

    transition: .25s ease;

}

.form-consent input:checked + .consent-checkbox {

    background: #2A8DFF;

}

.form-consent input:checked + .consent-checkbox::before {

    transform: scale(1);

}

.form-consent-text {

    font-size: 1.2rem;

    line-height: 1.55;

    color: #6B7280;

}

.form-consent.error .consent-checkbox {

    border: .2rem solid #FF3B30;

}





.rent-modal-overlay.active { opacity: 1; visibility: visible; }

.rent-modal {
    position: relative;
    width: 100%;
    max-width: 50rem;
    background: #fff;
    border-radius: 3.2rem;
    padding: 3.2rem;
    transform: translateY(2rem);
    transition: .3s ease;
}

.rent-modal-overlay.active .rent-modal { transform: translateY(0); }

.rent-modal .modal-close {
    position: absolute;
    top: 2.2rem;
    right: 2.2rem;
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B7BDC7;
    border-radius: 50%;
    transition: .2s ease;
}

.rent-modal .modal-close:hover { background: #F3F4F6; color: #7C8593; }

.rent-modal .modal-title {
    font-family: var(--font-display);
    font-size: 4.8rem;
    line-height: .9;
    font-weight: 700;
    text-transform: uppercase;
    color: #0A0A0A;
    margin-bottom: 2.8rem;
}

.rent-modal .modal-subtitle {
    max-width: 44rem;
    font-size: 1.65rem !important;
    line-height: 1.4;
    color: #6A7282;
    margin-bottom: 3.2rem;
}

.rent-modal .form-row {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 2.8rem;
}

.rent-modal .form-field {
    position: relative;
    flex: 1;
}

.rent-modal .form-input {
    width: 100%;
    height: 4.5rem;
    border: none;
    outline: none;
    background: #F3F4F6;
    border-radius: 1.8rem;
    padding: 0 5.4rem 0 2.2rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: #0A0A0A;
}

.rent-modal .form-input::placeholder { color: #9CA3AF; }

.rent-modal .input-clear {
    position: absolute;
    top: 50%;
    right: 1.8rem;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #B0B7C3;
}

.rent-modal .btn-primary {
    width: 18rem;
    height: 6.4rem;
    border-radius: 1.8rem;
    background: #2A8DFF;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    flex-shrink: 0;
    transition: .25s ease;
}

.rent-modal .btn-primary:hover { background: #1877F2; }

.rent-modal .form-message {
    min-height: 2rem;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.rent-modal .form-consent {
    font-size: 1.35rem;
    line-height: 1.45;
    color: #7B8190;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-field { position: relative; }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1.6rem;
    color: #000000;
    background: #F5F5F5;
    transition: border-color var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { outline: none; border-color: var(--blue); }

.form-textarea {
    resize: vertical;
    min-height: 100px;
    margin-bottom: 12px;
}

.input-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 18px;
    transition: color var(--transition);
}
.input-clear:hover { color: var(--dark); }

.form-message {
    margin-bottom: 12px;
    font-size: 14px;
    min-height: 20px;
}
.form-message.success { color: var(--success); }
.form-message.error { color: var(--error); }

.form-consent {
    font-size: 1.4rem !important;
    color: #6A7282;
    text-align: start;
    margin-top: 12px;
    line-height: 1.5;
}

.swiper-button-next,
.swiper-button-prev { display: none; }

.card-swiper .swiper-pagination-bullet { background: var(--white); opacity: 0.6; }
.card-swiper .swiper-pagination-bullet-active { opacity: 1; }

.rent-mobile-map { display: none; }


.hero-mobile{
	display:none;
	
	 color:black;
}
.sidebar-price-total-mobile{
	display:none;
}

.sidebar-price-total-mobile{
	display:none;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.right-footer-copy{
	display:none;
}
.privacy-policy .container{
	margin-top:3rem;
	margin-bottom:5rem;
}
.privacy-policy  h1{
	font-family:var(--font-display);
	font-size:4rem !important;
}
.privacy-policy-content .s1{
	margin-top:5.5rem;
	
}
.privacy-policy-content .s1 h2{
	font-family:var(--font-display);
	font-size:3rem !important;
	margin-bottom:2.5rem;
}

.privacy-policy-content .s1 p{
	font-family:var(--font);
    font-size:1.68rem !important;
	font-weight:600;
	color:#000000;
	line-height:1.3;
	margin-top:4rem;
}
.privacy-policy-content .s1 p a{
	text-decoration: underline;
    color:#000;
    text-decoration-color:#000;

}
.privacy-policy-content .s1 .policy-list{
    padding-left:3rem;
	margin-top:3rem;
	  list-style:disc;
}

.policy-list li{
     font-size:1.6rem !important;
	font-weight:600;
	color:#000000;
	line-height:1.3;
	margin-bottom:1rem;
}
.form-rent{
	display:flex !important;
	align-items:start !important;
	margin-bottom:0 !important;
}
.rent-input{
	    height: 6.5rem !important;

}
.rent-submit-btn{
	margin-bottom:2rem !important;
}


















/* =========================================
   MOBILE ADAPTIVE
========================================= */

@media (max-width: 600px) {

    html{
        font-size: 2.666vw;
    }

    body{
        overflow-x: hidden;

        padding-top: 7rem; /* было 3rem — шапка 7rem, поэтому текст лез за неё */

    }

    .container,
    .header-inner,
    .resident-container,
    .location-container{
        padding-left: 2rem;
        padding-right: 2rem;
    }

    h1, h2, h3, h4, h5, h6{
        font-family: var(--display-font) !important;
		font-size:2rem !important;
    }
	p {
    font-size: 1.6rem !important;
		line-height:1.6;
}
	
	.section-heading{
		        font-size: 2.3rem !important;
        font-weight: 600 !important;
	}
    /* =========================
       HEADER
    ========================= */

    .site-header{
        height: 7rem;
		gap: 1rem;
    }

    .site-logo img{
        width: 6rem;
        height: 6rem;
    }

    .burger-btn{
        display: flex;
		 margin-left: 1rem;
    }
	
	    .mobile-header-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 4.4rem;
        padding: 0 1.6rem;
        width: 40%;
        background: transparent;
        color: #2A8DFF;
		border: 2px solid #2A8DFF;
       
        border-radius: .8rem;
        font-size: 1.2rem;
        font-weight: 600;
        margin-left: auto;
        white-space: nowrap;
    }

    .main-nav{

        position: fixed;

        top: 7rem;

        left: 0;

        width: 100vw;

        height: calc(100vh - 7rem);

        background: #fff;

        padding: 2rem;

        overflow-y: auto;

        z-index: 999999;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-1rem);

        transition: .3s ease;

    }

    .main-nav.active{

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }
    .nav-list{
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        background: transparent;
        padding: 0;
        gap: 0;
    }

    .nav-list li{
        width: 100%;
    }

    .nav-list a{
        width: 100%;
        
        font-size: 2rem;
        border-bottom: .1rem solid #ececec;
    }

    .header-contacts{
        display: none;
    }

    .nav-list .sub-menu{
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f7f7f7;
        margin-top: 1rem;
        display: none;
    }

    .nav-list .menu-item-has-children:hover .sub-menu{
        display: block;
    }

    /* =========================
       HERO
    ========================= */

  .hero {
        
        padding-top: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .hero-inner {
        flex-shrink: 0;
      width: 100%;
        padding: 4rem 2rem 0 2rem !important;
    }

    .hero-content {
        padding: 0;
    }

    .hero-content h1 {
        width: auto;
    }

    .hero-pc {
        display: none;
    }

    .hero-content .hero-mobile {
		      
     
        display: block;
        font-weight:500 !important;
        line-height: 1.15 !important; /* было 2.3 — это и было причиной огромного заголовка */
        margin-bottom: 2rem;
        white-space: pre-line;
        width: auto !important;
    }

    .hero-btn {
        width: 100%;
        height: 5rem;
    }

    /* Картинка растягивается на всё оставшееся место */
    .hero-image {
        display:none;
    }

	.hero-image-mobile{
		display:block;
		margin-top:2rem;
	}
	.hero-image-mobile img{
		width:100%;
		height:30rem;
		object-fit:cover;
		object-position:center bottom;
	}
	
	.location{
		padding-top:3rem;
	}
	.rent-map{
			padding-top:3rem;
	}
	.vacancies-page{
			padding-top:3rem;
	}
	.page-single-vacancy{
		padding-top:3rem;
	}
	.contacts-page{
			padding-top:3rem;
	}
    /* =========================
       HISTORY
    ========================= */

    .history{
        padding: 0rem 0;
    }
	.history-head{
		margin-bottom: 2rem;
        margin-top: 2rem;
	}

    .history-slide{
        display:flex !important;
		flex-direction:column;
		align-items:center;
		justify-content:start;
        gap: 0rem;
    }

    .history-image img{
        height: 24rem;
        border-radius: 1.6rem;
    }

    .history-text h3{
        font-size: 2rem !important;
        margin-bottom: 1.6rem;
    }

    .history-text p{
        font-size: 1.6rem !important;
        line-height: 1.6;
    }

    /* ВЫКЛЮЧАЕМ */
    .history-lines-wrap{
        display: none !important;
    }

    .history-lines-mobile{
        display: none !important;
    }
	
	

    .history-range-wrap{
        padding: 0;
        margin-top: 4rem;
    }

        .history-range {
        width: 31rem;
        left: 1.5rem;
    }

    .history-years{
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .history-year{
        flex-shrink: 0;
        font-size: 1.4rem;
    }

    /* =========================
       INDUSTRIAL
    ========================= */

    .industrial-grid{
        grid-template-columns: 1fr;
    }

    .industrial-left{
               padding: 4rem .5rem 0rem 0rem !important;
    }

    .industrial-title{
       font-size: 2.7rem !important;
        font-weight: 700 !important;
        line-height: 1.3;
        margin-bottom: 2.5rem;
    }

    .industrial-text{
        font-size: 1.6rem !important;
        line-height: 1.4;
        margin-bottom: 2rem;
    }

    .industrial-cards{
        grid-template-columns: 1fr;
    }

    .industrial-card{
		        gap: 1.5rem;
               
    }

    .industrial-card-text{
        font-size:1.6rem;
        line-height: 1.5;
		letter-spacing: 0;
    }

    .industrial-right{
        border-left: none;
    }

    .industrial-stat{
        padding: 4rem 2rem 3.85rem;
        min-height: 0rem;
		border:none;
		position:relative;
    }
.industrial-stat::after {
	content: "";
    position: absolute;
    bottom: 0px;
    height: 1px;
    background-color: #D7D7D7;
        left: -2rem;
        width: 100vw;
    }
	
    .industrial-number{
        font-size: 6rem;
    }

    .industrial-number span{
        font-size: 2.2rem;
    }
	.industrial-stat:nth-child(4) .industrial-number span{
   font-weight: 700;
	font-size:1.35rem !important;

}
	.industrial-stat:nth-child(4) .industrial-number {
   font-weight: 700;
	font-size:4.15rem !important;
	line-height:1.3;

}


	 .industrial-left-wrap {
        position: static;
    }
    /* =========================
       GALLERY
    ========================= */
	.gallery-title{
		margin-bottom:2rem;
	}
        .gallery-slider .swiper-slide {
        width: 37.51rem !important;
        height: 25rem;
        transform: scale(.90);
			border-radius:1.7rem !important;
	    
    }
	.gallery-slider .swiper-slide img{
		border-radius:1.7rem !important;
	}
    .gallery-slider .swiper-slide-active{
        transform: scale(.90);
    }

    .gallery-prev,
    .gallery-next{
        width: 4rem;
        height: 4rem;
    }

    .gallery-prev{
        left: 1rem;
    }

    .gallery-next{
        right: 1rem;
    }
	.gallery-thumbs{
		margin-top:0;
	}

    .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1 !important;
    border-color: #2f80ff !important;
}
	
	.gallery-thumbs .swiper-wrapper {
    justify-content: start;
    margin-left: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 0rem;
}
	
	.gallery-thumbs .swiper-slide {
    width: 9rem !important;
    height: 8rem !important;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    opacity: .5;
    transition: .3s;
    border: .3rem solid transparent;
    flex-shrink: 0;
}

    /* =========================
       RESIDENT
    ========================= */

    .resident-container{
        flex-direction:column;
        align-items: center;
     
    }

    .resident-title{
        font-size: 2.7rem !important;
		font-weight: 700 !important;
        line-height: 1.3;
		margin-bottom: 1rem;

    }

    .resident-text{
        font-size: 1.29rem;
        line-height: 1.5;
        max-width: 100%;
		
    margin-bottom: 1rem;
    }

    .resident-btn{
        width: 100%;
		font-size: 1.4rem;
    }

    .resident-image{
        width: 50%;
		
		
    }

    .resident-image2{
		
        top: 0;
    }
	.resident-image2 img{
		height:20rem !important;
	}
	.no-product-image img{
		height:30rem !important;
	}

.no-product-text {

    margin-bottom: 2.5rem !important;
}
    /* =========================
       LOCATION
    ========================= */

    .location-top{
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-text p{
        font-size: 1.6rem !important;
        line-height: 1.6;
    }

    .location-cards{
        grid-template-columns: 1fr;
    }

    .location-card{
        min-height: 12rem;
    }
	.location-card small{
		font-size: 1.3rem;
	}
    .location-card strong{
        font-size: 3rem;
    }

    .location-map{
        height: 32rem;
		object-position: right !important;
    }
	.location-map img{
		object-position: right !important;
	}
	.modal-subtitle{
		font-size: 1.2rem !important;
	}
	.btn-full{
		width:100% !important;
	}
    /* =========================
       RENT MAP
    ========================= */
	.rent-map-image{
		height: auto;
	}
    .rent-map-inner{
        height: auto;
    }
	

    .rent-popup{
        display: none;
    }
	.rent-popup-title{
		font-size:1.5rem;
	}
    .rent-point-number{
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
    }

    /* =========================
       AVAILABLE
    ========================= */
	.available-label{
    font-size: 1rem !important;
	}
	.available-building-title{
		font-size: 2.1rem !important;
	}
    .available-grid{

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
		    margin-bottom: 4rem;

    }

    .available-card{
        width: 100% !important;
        height: 25rem;

    }
	.contacts-map-wrap {
    position: relative;
    width: 100%;
    height: 500px !important;
    border-radius: 16px;
    overflow: hidden;
}

.contacts-map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100% !important;
    border: none;
}

    /*

    ==========================================

    IMAGE

    ==========================================

    */

    .available-slider{
        border-radius: 16px;
		        width: 100%;
		height: 16rem;
        overflow: hidden;

    }

    .available-slider img{
        width: 100%;
        height: 16rem;
        object-fit: cover;

    }
	
	
	.vacancies-empty-image img{
		width:100% !important;
		height: 100% !important;

	}

    /*

    ==========================================

    TEXT

    ==========================================

    */

    .available-title{

        font-size: 14px;

        line-height: 1.2;

        margin-top: 10px;

    }

    .available-text{

        font-size: 12px;

        margin-top: 4px;

    }

    .available-price{

        font-size: 14px;

        margin-top: 6px;

        font-weight: 600;

    }

    /* =========================
       SINGLE OBJECT
    ========================= */
	.sidebar-price-card{
		display:none;
		
	}
	.sidebar-price-total-mobile{
		display:block;
	}

    .single-object-layout{
        grid-template-columns: 1fr;
    }

    .object-gallery,
    .object-main-swiper .swiper-slide{
        width: 100% !important;
        height: 24rem !important;
    }

    .single-object-title{
        font-size: 2rem !important;
    }

    .chars-grid{
        grid-template-columns: 1fr;
     
    }

    .char-label,
    .char-value{
        font-size: 1.6rem;
    }

    .description-text{
        font-size: 1.6rem;
        line-height: 1.7;
    }

    .single-object-sidebar{
        position: static;
    }

    .sidebar-others{

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1.2rem;

    width: 100%;

    max-width: 100%;

}

    
	.other-card{

    width: 100%;

    height: auto;

}


	.object-gallery {
		margin-bottom:3rem;
	}
    .other-card__img img{
        width: 100%;
		
        
    }
	    .other-card__img {
        width: 15.3rem;
        height: 17rem;
    }
    .other-card-swiper {
        width: 15.6rem;
        height: 15.6rem;
        border-radius: 1.6rem;
        overflow: hidden;
    }

    /* =========================
       VACANCIES
    ========================= */

    .vacancies-head{
        margin-left: 0;
    }

    .vacancy-category{
        padding: 0;
    }

    .vacancy-category-title{
        font-size: 2rem !important;
		line-height: 1.3;
    }
	.vacancy-item-inner{
	  gap: 1rem;
	}
	.vacancies-empty-title{
		    margin-top: 1rem;
    margin-bottom: 1rem;
}
    .vacancy-list{
        margin-left: 0;
    }

    .vacancy-item{
        align-items: center;
        gap: 2rem;
    }
	.vacancy-item2{
		flex-direction: column !important;
        align-items: start;
        gap: 2rem;
	}
	
    .vacancy-place{
        width: 100%;
        text-align: left;
		         margin-left: 3.44rem;
    }

    .vacancy-name{
        font-size: 1.6rem;
		font-weight:500 !important;
		margin-top:1rem;
    }
	.vacancy-place strong{
		font-size:1.4rem;
	}
	.vacancy-place span{
		font-size:1.4rem;
	}
    .vacancies-empty-content{
        flex-direction: column;
		gap:2rem !important;
    }

    .vacancies-empty-image{
        width: 100%;
    }
	
	.no-product{
		flex-direction:column !important;
		height:auto !important;
	}

    /* =========================
       VACANCY SINGLE
    ========================= */

    .page-single-vacancy .container{
        padding: 0 2rem;
    }

    .vacancy-single-title{
        font-size: 2rem !important;
    }

  

    .vacancy-intro,
    .vacancy-section__content{
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .vacancy-form{
        width: 100%;
    }

    .vform-row{
        grid-template-columns: 1fr;
        gap: 0;
    }

    .file-drop-inner{
        flex-direction: column;
        align-items: flex-start;
    }

    .file-upload-btn{
        width: 100%;
    }
	.vacancy-intro p{
	         font-size: 1.6rem !important;
        line-height: 1.6;

	
}
	.vacancy-meta__label{
		font-size: 1.6rem !important;
	}
	.vacancy-meta__value{
		font-size: 1.6rem !important;
	}
	.vacancy-apply-title{
		line-height:1.3;
	}
    /* =========================
       CONTACTS
    ========================= */

	.no-product-content .no-product-title{
		margin-top:0rem;
		margin-bottom:1.5rem;
	}
	
	
	
	
	
	
	
	
	  .privacy-policy .container{

        margin-top:1.5rem;

        margin-bottom:3rem;

    }

    .privacy-policy h1{

           font-size: 2rem !important;
		        font-weight: 700 !important;

    }

    .privacy-policy-content .s1{

        margin-top:3rem;

    }

    .privacy-policy-content .s1 h2{

        font-size:1.8rem !important;
        font-weight:700 !important;
        margin-bottom:1.8rem;

    }

    .privacy-policy-content .s1 p{

        font-size:1.4rem !important;
        line-height:1.5;
		        margin-top: 2rem;

    }

    .privacy-policy-content .s1 .policy-list{

        padding-left:2rem;

        margin-top:0;

    }

    .policy-list li{

        font-size:1.3rem !important;

        line-height:1.5;

        margin-bottom:0rem;

    }
	.vacancies-empty-text{
		font-size:1.6rem;
	}
	
    /* =========================
       FOOTER
    ========================= */

    .footer-container{
        flex-direction: column;
		height:auto;
    }
	.footer-left{
		border-bottom: 1px solid #4B4B4B;
	}
    .footer-left,
    .footer-right{
        width: 100%;
        padding: 3rem 2rem;
    }

    .footer-title{
        font-size: 3.4rem !important;
        line-height: 1.1;
    }

    .footer-phone{
        font-size: 3.4rem;
        line-height: 1.1;
    }
     
	.footer-address {
	        max-width: 22rem;
        font-size: 1.6rem;
	}
	.footer-copy{
		display:none;
	}
	.right-footer-copy{
		display:inline;
	}
    .footer-email{
        font-size: 1.6rem;
    }

    .footer-container img{
        width: 5.4rem;
        right: 4.328rem;
    }

    /* =========================
       MODALS
    ========================= */

    .modal,
    .rent-modal{
        padding: 2.4rem;
        border-radius: 2rem;
    }
     
	.modal-title{
		font-size: 2rem !important;
	}
	
	
    .rent-modal .modal-title{
        font-size: 2rem !important;
    }

    .rent-modal .form-row{
        flex-direction: column;
    }

    .rent-modal .btn-primary{
        width: 100%;
    }
	.form-input{
		        height: 4.1rem;

	}
	.form-input, .form-select, .form-textarea{
		font-size: 1.2rem;
	}
	.input-clear{
		color:black;
	}
	
	

    .rent-point-number{
        width: 2rem;
        height: 2rem;

        font-size: 1rem;

        backdrop-filter: blur(.4rem);
    }
		
	.point-1 {
        top: 16%;
        left: 14%;
    }
	.point-2 {
    top: 15%;
    left: 36%;
    }
	.point-3 {
    top: 3%;
    left: 55%;
}
	.point-4 {
    top: 7%;
    left: 68%;
}
	.point-5 {
    top: 66%;
    left: 71%;
}
	.point-6 {
    top: 21%;
    left: 63%;
}
	.point-7 {
    top: 32%;
    left: 21%;
}
	.point-8 {
    top: 51%;
    left: 25.8%;
}
	.point-9 {
    top: 55%;
    left: 12.5%;
}
	    .point-12 {
        top: 76%;
        left: 27%;
    }

.site-header{

        position: fixed;

        top: 0;

        left: 0;

        width: 100%;

        height: 7rem;

        z-index: 9999999;

        background: #fff;

    }

  
	
	.sidebar-others-title{
	
		    font-size: 2rem !important;
	}
.form-row {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 12px;
    margin-bottom: 12px;
}
	.btn-home{
		width:40% ;
		height:6rem !important;
	}
	.form-consent{
		font-size:1rem;
	}
	
	.form-consent-text{
		    font-size: 1rem !important;
	}

    .rent-popup{

        position: fixed !important;

        top: 50%;

        left: 50%;

        transform: translate(-50%, -50%) scale(.9);

        width: calc(100% - 32px);

        max-width: 420px;

        max-height: 80vh;

        overflow-y: auto;

        background: #fff;

        border-radius: 20px;

        padding: 20px;

        z-index: 99999;

        opacity: 0;

        visibility: hidden;

        transition: .3s ease;

    }

    .rent-point.active .rent-popup{

        opacity: 1;

        visibility: visible;

        transform: translate(-50%, -50%) scale(1);

    }

    .rent-popup-close{

        position: absolute;

        top: 12px;

        right: 12px;

        width: 36px;

        height: 36px;

        border: none;

        border-radius: 50%;

        background: #f3f3f3;

        cursor: pointer;

        font-size: 18px;

    }

    /* затемнение */

    .rent-popup-overlay{

        position: fixed;

        inset: 0;

        background: rgba(0,0,0,.45);

        z-index: 9999;

        opacity: 0;

        visibility: hidden;

        transition: .3s ease;

    }

    .rent-popup-overlay.active{

        opacity: 1;

        visibility: visible;

    }
	

}


@media (min-width: 768px) and (max-width: 1024px)  {
	.hero-content h1 {
    font-size: 4.5rem !important;
    /* text-wrap: balance; */
    line-height: 5.8rem;
    color: var(--dark);
    margin-bottom: 5rem;
    font-weight: 500 !important;
    letter-spacing: -1%;
    text-transform: uppercase;
}
	.contacts-map-wrap {
    position: relative;
    width: 100%;
    height: 500px !important;
    border-radius: 16px;
    overflow: hidden;
}

.contacts-map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100% !important;
    border: none;
}

}






.rent-mobile-modal{

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.5);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;

    z-index: 99999;

    padding: 16px;
}

.rent-mobile-modal.active{

    opacity: 1;

    visibility: visible;
}

.rent-mobile-inner{

    width: 100%;

    max-width: 420px;

    max-height: 85vh;

    overflow-y: auto;

    background: #fff;

    border-radius: 24px;

    padding: 20px;

    position: relative;
}

.rent-mobile-close{

    position: absolute;

    top: 12px;

    right: 12px;

    width: 38px;

    height: 38px;

    border: none;

    border-radius: 50%;

    background: #f3f3f3;

    cursor: pointer;

    font-size: 18px;
}








.single-rental_object .nav-list a[href*="arenda"]{

    color: var(--blue) !important;

    background: #E3E3E3;
}

.nav-list li.menu-item-has-children.current-menu-item > a,
.nav-list li.menu-item-has-children.current-menu-parent > a,
.nav-list li.menu-item-has-children.current-menu-ancestor > a,
.nav-list li.menu-item-has-children.current_page_parent > a,
.nav-list li.menu-item-has-children.current_page_ancestor > a{
    background:#E3E3E3 !important;
    color:var(--blue) !important;
}


.single-vacancy .nav-list a[href*="info"]{

    color: var(--blue) !important;

    background: #E3E3E3 !important;
}
.single-vacancy 
.nav-list li.menu-item-has-children > a::after{

    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L5 1L9 5' stroke='%23343434' stroke-width='1.5'/%3E%3C/svg%3E");
}

.single-vacancy .nav-list li.menu-item-has-children > a{
    background:#E3E3E3 !important;
    color:#2A8DFF !important;
}



@media (min-width: 300px) and (max-width: 330px){
	
	  .hero-content .hero-mobile {
        display: block;
        font-size: 2.17rem !important;
        line-height: 1.6 !important;
        margin-top: 3rem !important;
        margin-bottom:3rem !important;
    }
	.vacancy-name{
		margin-top:.3rem !important;
	}
	.mobile-header-btn{
		width: 64%;
	}
}
@media (min-width: 340px) and (max-width: 380px){
	   
	.hero-content .hero-mobile {
        display: block;
        font-size: 2.17rem !important;
        line-height: 1.6 !important;
		margin-bottom:3rem !important;
    }
	.vacancy-name{
		margin-top:.3rem !important;
	}
	.mobile-header-btn{
		width: 64%;
	}
}


@media (min-width: 390px) and (max-width: 430px){
	  

	    .hero-content .hero-mobile {
        display: block;
        font-size: 2.17rem !important;
        line-height: 1.6 !important;
					margin-bottom:3rem !important;
    }
	.vacancy-name{
		margin-top:.4rem !important;
	}
	
	.mobile-header-btn{
		width: 64%;
		
	}
}
