*::-webkit-input-placeholder {
	color: #666;
	opacity: 1;
}
*:-moz-placeholder {
	color: #666;
	opacity: 1;
}
*::-moz-placeholder {
	color: #666;
	opacity: 1;
}
*:-ms-input-placeholder {
	color: #666;
	opacity: 1;
}

/* * {
	transition: all .5s ease;
} */

body input:focus:required:invalid,
body textarea:focus:required:invalid {
	
}
body input:required:valid,
body textarea:required:valid {
	
}

body::-webkit-scrollbar {
	width: 4px;               /* ширина scrollbar */
}
body::-webkit-scrollbar-track {
	background: #1A1C27;        /* цвет дорожки */
}
body::-webkit-scrollbar-thumb {
	background-color: #DEB887;    /* цвет плашки */
	border-radius: 10px;       /* закругления плашки */
	border: none;  /* padding вокруг плашки */
}
body {
	scrollbar-width: thin;          /* "auto" или "thin"  */
	scrollbar-color: #DEB887 #121212   /* плашка скролла и дорожка */ 
}
body::-moz-selection{
	color: #333;
	}
body::selection{
	color: #333;
	background-color: #DEB887;
}

html.js .loader {
	background: none repeat scroll 0 0 #ffffff;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}
html.js .loader_inner {
	background-image: url("../img/preloader.gif");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #fff;
	height: 60px;
	width: 60px;
	margin-top: -30px;
	margin-left: -30px;
	left: 50%;
	top: 50%;
	position: absolute;
}

body {
	font-size: 16px;
	min-width: 320px;
	position: relative;
	line-height: 1.6;
	font-family: 'Manrope', sans-serif;
	overflow-x: hidden;
	background: #1A1C27;
	color: #fff;
	width: 100%;
}
.hidden {
	display: none;
}

/* DEFAULT STYLES */

.gogol-text {
	font-family: 'Manrope', sans-serif;
	text-transform: lowercase;
	color: #fff;
	display: block;
}

.title {
	font-family: 'Manrope', sans-serif;
}

.color-text {
	color: #DEB887;
}

.btn {
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	color: #121212;
	text-align: center;
	padding: 12px 19px;
	gap: 10px;
	background: #DEB887;
	border-radius: 40px;
	transition: all .5s ease;
}

.btn:hover {
	background: #1A1C27;
	color: #DEB887;
}

a, a:hover, a:focus, a:active {
	text-decoration: none;
	transition: all .5s ease;
}

input {
	outline: 0;
}

input::-webkit-input-placeholder {
	font-family: 'Manrope', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 92%;
	color: #F5F5F5;
}
input::-moz-placeholder {
	font-family: 'Manrope', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 92%;
	color: #F5F5F5;
}
input:-moz-placeholder {
	font-family: 'Manrope', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 92%;
	color: #F5F5F5;
}
input:-ms-input-placeholder {
	font-family: 'Manrope', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 92%;
	color: #F5F5F5;
}

input:focus::-webkit-input-placeholder {
	color: #121212;
}
input:focus::-moz-placeholder {
	color: #121212;
}
input:focus:-moz-placeholder {
	color: #121212;
}
input:focus:-ms-input-placeholder {
	color: #121212;
}

.default__text {
	font-weight: 400;
	font-size: 20px;
	line-height: 125%;
	text-transform: uppercase;
	color: #FFFFFF;
}

/* HEADER */

header.header {
	position: absolute;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 50px 160px;
	align-items: center;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 100%;
	z-index: 999;
	font-size: 18px;
	opacity: 1;
	transition: all .5s ease;
}

.logo {
	color: #FFF;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
	text-transform: uppercase;
}


.logo:hover {
    color: #DEB887;
}

.logo:focus {
    color: #fff;
}

.header .btn {
	font-size: 18px;
}

.header-right, .header-left {
	display: flex;
	align-items: center;
	max-width: 420px;
	width: 100%;
}

.header-right {
    justify-content: flex-end;
}

.burger-btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all .5s ease;
}

.burger-icon {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	width: 40px;
}

.icon-line {
	background-color: #DEB887;
	width: 31px;
	height: 1px;
	margin-bottom: 5px;
	transition: all .5s ease;
}

.icon-line:last-child {
	margin-bottom: 0;
}

.burger-text {
	transition: all .5s ease;
	margin-left: 16px;
}

.burger-btn:hover > .burger-icon .icon-line {
	width: 40px;
	margin-bottom: 1px;
	margin-top: 2px;
}

.burger-btn:hover > .burger-text {
	color: #DEB887;
}

.select-btn {
	border: 1px solid #DEB887;
    background: transparent;
	margin-left: 56px;
	color: #fff;
}

.select-btn:hover, .select-btn:focus {
	background: #DEB887;
	color: #121212;
	border: 1px solid transparent;
}

.phone-btn {
	color: #fff; /* Цвет обычной ссылки */
    position: relative;
    cursor: pointer;
    text-decoration: none; /* Убираем подчеркивание */
}

.phone-btn:hover {
	color: #fff;
}

.phone-btn:after {
	content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 0;
    height: 1px; /* Высота линии */
    background-color: #fff; /* Цвет подчеркивания при исчезании линии*/
    transition: width 0.5s; /* Время эффекта */
}

.phone-btn:hover:after {
	content: "";
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px; /* Высота линии */
    background-color: #fff; /* Цвет подчеркивания при появлении линии*/
    transition: width 0.5s;  /* Время эффекта */
}

button.call-btn {
	margin-left: 50px;
	border: none;
	border: 1px solid transparent;
}

button.call-btn:hover {
	background: #fff;
	color: #121212;
}

.mobile__phone {
	display: none;
}

/* MAIN */

main {
	position: relative;
	overflow: hidden;
}

/* POST-HEADER */

.post-header {
	position: relative;
	display: flex;
	justify-content: flex-end;
	height: 100vh;
	width: 100vw;
	background-color: #1A1C27;
}

.post-header-wrapper {
    max-width: 70%;
    overflow: hidden;
    position: absolute;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 0;
}

.post-header-img {
    max-width: 1338px;
    height: 100vh;
    overflow: hidden;
}

.post__header__info {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 0 104px 160px;
    z-index: 1;
}

.post__header__small {
    color: #DEB887;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 24px */
}

.post__header__title {
    color: #EAEAEA;
    font-size: 180px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 180px */
    text-transform: uppercase;
}

.post-header-bg {
	object-fit: cover;
}

.firsts-text-header, .club-text-header, .post-header-mini {
	position: absolute;
	z-index: 1;
}

.firsts-text-header {
    left: 8.33%;
    bottom: 8.5%;
}

.club-text-header {
    left: 30%;
    bottom: 11.8%;
}

.post-header-mini {
	top: 238px;
	left: 30%;
	transform: translateX(-50%);
	max-height: 111px;
}

.down-arrow {
	position: absolute;
	display: flex;
	padding: 79px;
	background-color: rgba(6, 6, 6, 0.5);
	background-image: url(../img/down-arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 50%;
	border: 1px solid #DEB887;
	bottom: 6%;
	right: 14.1%;
	z-index: 1;
}

.down-arrow:hover {
	background-color: rgba(6, 6, 6, 1);
}

/* DESCRIPTION */

.description {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: 'Manrope', sans-serif;
	font-size: 36px;
	position: relative;
	height: 100vh;
	background: url(../img/description-bg.svg) no-repeat center;
}

.ds_bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.description__title {
	margin-bottom: 35px;
	color: #DEB887;
	text-align: center;
	font-family: Manrope;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 124.2%; /* 24.84px */
	letter-spacing: 16.4px;
}

.description__text {
	color: #EDEDED;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 125%; /* 37.5px */
	max-width: 750px;
}

/* VIDEO */

.section {
    position: relative;
    margin-bottom: 272px;
}

.sticky__wrapper {
    position: relative;
    height: 100%;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky__slider__wrapper {
    max-width: 1535px;
}

.sticky__arrow {
    border: 1px solid #DEB887;
    background: url(../img/next-arrow.svg) no-repeat center;
    background-color: rgba(18, 18, 18, 0.28);
    backdrop-filter: blur(2px);
    width: 128px;
    height: 128px;
	cursor: pointer;
	z-index: 2;
	transition: all .5s ease;
}

.sticky__arrow:hover {
	border: 1px solid #fff;
}

.sticky__slider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky__slider__item {
    border-radius: 473.5px;
    overflow: hidden;
    max-width: 1535px;
	max-height: 950px;
}

.sticky__arrow.prev {
    transform: rotate(180deg) translateX(-50%);
}

.sticky__arrow.next {
    transform: translateX(-50%);
}

/* SLIDER */

.main-slider {
	display: flex;
    position: relative;
    width: 100%;
}

.slider__img {
    position: relative;
	max-width: 100%;
}

.img__list {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    overflow: visible;
}

.main__slider-img {
    z-index: -1;
    position: relative;
    scale: 1;
    position: relative;
    max-width: 1152px;
    max-height: 848px;
    overflow: hidden;
}

.slider__item, .img__list {
    max-width: 1920px;
	position: relative;
}

.prev-arrow, .next-arrow {
	position: absolute;
	display: flex;
	width: 128px;
	height: 128px;
	justify-content: center;
	align-items: center;
	background-color: rgba(18, 18, 18, 0.25);
	backdrop-filter: blur(2px);
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

.prev-arrow {
    background-image: url(../img/prev-arrow.svg);
    bottom: 0;
    left: 1024px;
    transform: translateX(-100%);
}

.next-arrow {
	background-image: url(../img/next-arrow.svg);
	background-color: rgba(18, 18, 18, 0.69);
	bottom: 0;
    left: 1024px;
}

.slider__title {
    position: absolute;
    left: 960px;
    font-weight: 400;
    top: 47px;
    transform: translateX(-60px);
    z-index: 9999;
}

.subtitle {
	color: #FFF;
	text-shadow: 0px 0px 60px #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 124.2%; /* 24.84px */
	letter-spacing: 5.1px;
	text-transform: uppercase;
}

.gentitle {
	color: #F1F1F1;
	font-size: 96px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.slider__lines {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 1152px;
}

.slider__description {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0;
    max-width: 350px;
    position: absolute;
    bottom: 60px;
    right: 200px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.slider__description ul li {
    margin-bottom: 20px;
}

.slider__description ul li:last-child {
    margin-bottom: 0;
}

/* CONTENT IMG */

.content-img {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 300px;
    padding-bottom: 421px;
    position: relative;
    z-index: 9;
    background: #1A1C27;
}

.mask-group, .mask-group-wrapper {
	position: relative;
}

.mask-group-wrapper:nth-child(2) {
	margin: 0 20px;
}

.mask-group-wrapper {
	max-width: 520px;
	max-height: 680px;
	overflow: hidden;
}

.mask-group-wrapper:nth-child(2) {
	max-width: 520px;
	max-height: 836px;
}

.mask-group:nth-child(1) {
	z-index: 1;
}

.mask-group {
	scale: 1;
}

.eclipse {
    position: absolute;
	z-index: 999;
}

/* PARTNERS */

.partners {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background: #1A1C27;
	z-index: 99;
}

.partners__title-wrapper {
	height: 77px;
	overflow: hidden;
	position: relative;
}

.partners__logo {
    display: flex;
    align-items: center;
    height: 75px;
    justify-content: center;
}

.partners__title {
	font-weight: 400;
	font-size: 64px;
	line-height: 77px;
	color: #DEB887;
	position: relative;
}

.partners__list {
	display: block;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	position: relative;
	margin-top: 44px;
}

.partners__item {
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 1px solid #303030;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 245px 0;
}

.partners__item::after {
    content: '';
    width: 1px;
    height: 100%;
    background: #303030;
    position: absolute;
    right: 0;
	top: 0;
}

.partner__info {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0 0 25px 25px;
	font-weight: 400;
	font-size: 15px;
	line-height: 142%;
	text-transform: uppercase;
	color: #FFFFFF;
}

.partner__info .info__item:last-child {
	color: #DEB887;
}

/* LAYOUT */

.layout {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #F3F1EE;
	background-position: center top;
	background-repeat: no-repeat;
	background-image: url(../img/layout_bg.jpg);
	padding: 110px 0 210px 0;
	position: relative;
}

.layout__title {
	color: #DEB887;
	text-align: center;
	font-size: 64px;
	font-style: normal;
	font-weight: 400;
	line-height: 95.6%; /* 61.184px */
	text-transform: uppercase;
	max-width: 588px;
	margin-bottom: 48px;
}

.layout__wraper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout__arrow {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px solid #deb887;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .5s ease;
}

.layout__arrow:hover {
    background: #deb887;
}

.layout__arrow.prev {
    transform: rotate(180deg);
}

.layout__list {
    margin: 0 70px;
    max-width: 1062px;
    max-height: 525px;
}

.layout__list .slick-list {
    height: 610px;
}

.layout__item {
    border: 1px solid #DEB887;
    position: relative;
    max-width: 1062px;
    max-height: 525px;
}

a.more__layout {
    position: absolute;
    left: 50%;
    bottom: 0;
    color: #121212;
    text-align: center;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.1px;
    width: 160px;
    height: 160px;
    background: #deb887;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transform: translate(-50%, 50%);
    transition: all .5s ease;
}

a.more__layout:hover {
    background: #1a1c27;
    color: #fff;
}

/* INFRASTRUCTURE */

.infrastructure {
	position: relative;
	width: 100vw;
	height: 1740px;
	background: url(../img/infrastructure.jpg) no-repeat center center;
}

.premain.infrastructure-cat {
    overflow: hidden;
}

.i__img {
    display: flex;
    max-height: 1670px;
    overflow: hidden;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.i__img img {
    scale: 1;
    position: relative;
}

.infrastructure__item {
	position: absolute;
	bottom: -100px;
	left: 30px;
	padding: 117px 155px 125px 130px;
	background: #F3F1EE;
	display: flex;
	flex-direction: column;
	max-width: 805px;
	z-index: 1;
}

.i__text ul {
    margin: 0;
    padding-left: 20px;
}

.i__title {
	font-weight: 400;
	font-size: 54px;
	line-height: 65px;
	color: #121212;
}

.i__text {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 151.1%; /* 30.22px */
	margin-bottom: 60px;
}

.i__btn {
    max-width: 134px;
}

/* MAP */

.adaptive__map {
	display: none;
}

.map {
	background: #DEB887;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #000;
}

.map.section {
	margin-bottom: 0;
}

.map__text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
    padding: 95px 295px 112px 295px;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	position: relative;
	transition: all .5s ease;
}

.map__text-item {
	max-width: 385px;
	padding-left: 20px;
	transition: all .5s ease;
}

.map__footer-title {
	font-weight: 400;
	font-size: 88px;
	line-height: 106px;
	color: #121212;
	width: 100%;
	margin-bottom: 76px;
	position: relative;
	transition: all .5s ease;
}

.sticky__map {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	transition: all .5s ease;
}

.sticky__mapcontent {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 74vw;
    height: 46vw;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	transition: all .5s ease;
}

.sticky__mapimg {
	position: absolute;
    object-fit: cover;
	/* opacity: 0; */
	transition: all .5s ease;
}

.sticky__mapimg.map_icons {
    left: 243px;
    top: 227px;
	transition: all .5s ease;
}

.sticky__mapimg.map_logo {
    left: 720px;
    top: 465px;
	transition: all .5s ease;
}

.footer-title-item {
	display: block;
}

.footer-title-item:first-child {
    margin-left: 156px;
}

.footer-title-item:last-child {
    margin-left: 434px;
}

/* GALLERY */

.gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 562px 0;
	background: url(../img/g_bg.svg) no-repeat center 558px;
}

.gallery__count {
    display: flex;
    position: absolute;
    top: 65vh;
    justify-content: space-between;
    width: 42px;
	font-weight: 500;
	font-size: 16px;
	line-height: 125%;
}

.gallery__count:after {
    content: '';
    height: 1px;
    width: 12px;
    color: #fff;
    background: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
}

.gallery-svg-bg {
	display: none;
}

.gallery__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.gallery__text {
	color: #DEB887;
    font-weight: 400;
    font-size: 128px;
    line-height: 154px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.gallery__text-value {
    position: relative;
}

.gallery__btn {
    z-index: 1;
    padding-top: 15px;
    height: 52px;
    overflow: hidden;
    position: relative;
}

.gallery__btn-value {
    position: relative;
}

.gallery__btn-value:hover, .news__all-btn:hover {
	background: #fff;
	color: #121212;
}

.gallery__item {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: row-reverse;
    left: 0;
}

.g__item-num {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #DEB887;
    margin-left: 5px;
}

.gallery__item:nth-child(1) {
	top: 354px;
	left: 367px;
	z-index: -1;
}

.gallery__item:nth-child(2) {
	top: 204px;
	right: 182px;
}

.gallery__item:nth-child(3) {
	top: 753px;
	right: 73px;
}

.gallery__item:nth-child(4) {
	top: 861px;
	right: 495px;
}

.gallery__item:nth-child(5) {
	top: 139px;
	left: 0;
}

.gallery__item:nth-child(6) {
	top: 925px;
	left: 295px;
}

/* STEPS */

.steps__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 250px;
    margin-top: 147px;
}

.steps__slider-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 59px;
}

.steps__title-wrapper {
    overflow: hidden;
}

.steps__title {
	font-weight: 400;
	font-size: 64px;
	line-height: 77px;
	text-transform: uppercase;
	color: #DEB887;
	position: relative;
}

.steps__overlay {
    overflow: hidden;
    max-width: 1060px;
    max-height: 630px;
    margin: 0 70px;
}

.steps__wrap {
	display: block;
	width: 100%;
	position: relative;
	min-width: 0;
}

.s__slider-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #FFFFFF;
	margin-top: 17px;
}

.s__slider-img {
    max-height: 590px;
    overflow: hidden;
}

/* NEWS */

.news {
	display: flex;
	flex-direction: column;
	padding: 0 160px 300px 160px;
	min-width: 0;
	overflow: hidden;
}

.news__title-wrapper, .news__nav-wrapper {
	position: relative;
	overflow: hidden;
}

.news__title-wrapper {
	height: 77px;
}

.news__nav-wrapper {
    height: 75px;
    margin: 20px 0 31px 0;
    display: flex;
}

.news__title {
	font-size: 64px;
	line-height: 77px;
	position: relative;
}

.news__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 42px;
    margin-bottom: 31px;
    position: relative;
    width: 100%;
}

.news__arrow {
	display: flex;
}

.news__all-btn {
	border: 1px solid transparent;
}

.arrow-prev, .arrow-next {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	border: 1px solid #DEB887;
	background: url(../img/arrow_new.svg) no-repeat center center;
	cursor: pointer;
	transition: all .5s ease;
}

.arrow-prev:focus, .arrow-next:focus {
	outline: 0;
}

.arrow-prev:hover, .arrow-next:hover {
	background-color: #DEB887;
}

.arrow-next {
	transform: rotate(180deg);
}

.news__items {
	display: block;
}

.n__item-link {
	max-width: 520px;
	margin-right: 12px;
	outline: 0;
}

.n__item-link:focus,
.n__item-link:active {
	outline: 0;
}

.new__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	padding: 36px 29px 32px 29px;
	max-width: 520px;
	width: 100%;
	height: 534px;
	border: 1px solid rgba(255, 255, 255, 0.21);
	background: none;
	position: relative;
	transition: all .5s ease;
	overflow: hidden;
}

.new__item:before {
	z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    content: url(../img/news__item.svg);
    opacity: 0;
	transition: all .5s ease;
}

.new__item:hover {
	border: 1px solid #DEB887;
}

.new__item:hover:before {
	opacity: 1;
}

.n__item-text {
	color: #DEB887;
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
}

.n__item-date {
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #868686;
}

.new__item:hover > .n__item-text {
	color: #fff;
}

/* CALL */

.call {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 204px 0;
    position: relative;
    max-height: 950px;
    overflow: hidden;
    z-index: 1;
    background: url(../img/footer__call.jpg) no-repeat center center;
}

.call-img {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	scale: 1;
	height: 100%;
}

.call__title-wrapper {
	height: 100px;
	position: relative;
	overflow: hidden;
	margin-bottom: 69px;
}

.call__title {
	font-weight: 400;
	font-size: 96px;
	line-height: 101.7%;
	text-align: center;
	color: #D8D8D8;
	position: relative;
	text-transform: uppercase;
}

.call__form {
	display: flex;
	flex-direction: column;
	max-width: 376px;
	width: 100%;
	position: relative;
}

.call__input {
	background: #121212;
	border: 1px solid #DEB887;
	border-radius: 49px;
	padding: 25px;
	margin-bottom: 22px;
	color: #fff;
	transition: all .5s ease;
}

.call__input:hover {
	background: #1A1C278e;
}

.call__input:focus {
	background: #fff;
	border: 1px solid #ffffff;
	color: #121212;
}

.politics {
	display: flex;
	margin-left: 15px;
	margin-bottom: 50px;
}

.custom-checkbox {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.custom-checkbox+label {
	display: inline-flex;
	align-items: flex-start;
	user-select: none;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.04em;
	cursor: pointer;
}

.custom-checkbox+label::before {
	content: '';
	display: inline-block;
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid #fff;
	margin-right: 0.5em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
	margin-right: 16px;
	margin-top: 5px;
}

.custom-checkbox:checked+label::before {
	border-color: #DEB887;
	background-color: #DEB887;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили при наведении курсора на checkbox */
.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
	border-color: #ebd3ba;
  }
  /* стили для активного состояния чекбокса (при нажатии на него) */
  .custom-checkbox:not(:disabled):active+label::before {
	background-color: #ebd3ba;
	border-color: #ebd3ba;
  }
  /* стили для чекбокса, находящегося в фокусе */
  .custom-checkbox:focus+label::before {
	box-shadow: 0 0 0 0.2rem #6d5a468c;
  }
  /* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
  .custom-checkbox:focus:not(:checked)+label::before {
	border-color: #ebd3ba;
  }
  /* стили для чекбокса, находящегося в состоянии disabled */
  .custom-checkbox:disabled+label::before {
	background-color: #e9ecef;
  }

  .submit__btn {
	font-weight: 700;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0.04em;
	color: #000000;
	border: none;
	margin: 0 auto;
	padding: 19px 51px;
	max-width: 211px;
  }

  .left__spiral, .right__spiral {
	position: absolute;
	transform-origin: 50% 50%;
  }

  .left__spiral img, .right__spiral img {
	position: relative;
	transform-origin: 50% 50%;
  }

  .left__spiral {
	left: -485px;
    bottom: -420px;
  }
  
  .right__spiral { 
	right: -485px;
    bottom: -420px;
  }

  /* FOOTER */

.footer {
	background: #DEB887;
	display: flex;
	flex-direction: column;
	padding: 50px 160px;
	width: 100%;
	position: relative;
}

.footer__info {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-start;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: #121212;
}

.f__address-item {
	margin-bottom: 40px;
}

.footer__phone {
	font-weight: 400;
	font-size: 96px;
	line-height: 115px;
	text-align: center;
	color: #121212;
}

.footer__links {
	width: 100%;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #313131;
	padding-top: 17px;
	margin-bottom: 0;
	margin-top: 130px;
}

.footer-politics, .footer__phone {
	color: #121212; /* Цвет обычной ссылки */
    position: relative;
    cursor: pointer;
    text-decoration: none; /* Убираем подчеркивание */
}

.footer-politics:hover, .footer__phone:hover {
	color: #fff;
}

.footer-politics:after, .footer__phone:after {
	content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 0;
    height: 1px; /* Высота линии */
    background-color: #fff; /* Цвет подчеркивания при исчезании линии*/
    transition: width 0.5s; /* Время эффекта */
}

.footer-politics:hover:after, .footer__phone:hover:after {
	content: "";
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px; /* Высота линии */
    background-color: #fff; /* Цвет подчеркивания при появлении линии*/
    transition: width 0.5s;  /* Время эффекта */
}

.f__links-item, .f__links-item a {
	font-weight: 500;
	font-size: 13px;
	line-height: 18px;
	text-align: center;
	color: #121212;
	text-transform: uppercase;
}

.beznebes {
    border-bottom: 1px solid #121212;
}

.beznebes:hover {
	color: #fff;
	border-bottom: 1px solid #fff;
}

.footer__logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.mobile__footer__img {
	display: none;
}

.footer__img {
	display: block;
	width: 100%;
}

/* ----------- */
/*  PAGE ABOUT */
/* ----------- */

.header__info {
	padding-top: 551px;
	position: relative;
}

.header__info-img {
	position: relative;
	z-index: -1;
	max-height: 1434px;
	overflow: hidden;
}

.header__info-img img {
	scale: 1;
	position: relative;
}

.header__info-title {
	font-weight: 400;
	font-size: 128px;
	line-height: 125%;
	text-align: center;
	color: #FFFFFF;
	position: absolute;
	top: 313px;
	left: 50%;
	transform: translateX(-50%);
}

.down-arrow.h__info-btn {
	bottom: 944px;
}

/* PREMAIN */

.premain {
	position: relative;
}

.premain-bg {
    position: absolute;
    top: 0;
    left: 0;
	max-width: 100%;
}

.premain__title {
	font-weight: 400;
	font-size: 112px;
	line-height: 125%;
	color: #DEB887;
	max-width: 750px;
	position: absolute;
	left: 307px;
	top: -222px;
}

.p__t-top {
	position: absolute;
	top: 377px;
	left: 1105px;
	max-width: 390px;
	text-transform: none;
}

.premain__slider {
	display: flex;
	padding-top: 694px;
	padding-left: 160px;
	justify-content: space-between;
}

.premain__slider-info {
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: #FFFFFF;
	max-width: 385px;
	position: relative;
}

.p__slider-text {
	position: relative;
}

.p__slider-text:first-child {
	margin-bottom: 20px;
}

.p__slider-title {
	font-weight: 400;
	font-size: 64px;
	line-height: 77px;
	color: #DEB887;
	margin-top: 107px;
	position: relative;
}

.premain__slider-img {
	display: flex;
	position: relative;
}

.premain__slider-item {
	margin-left: 20px;
}

.premain__slider-item:first-child {
	margin-left: 0;
}

/* FOOR PLAN */

.floor-plan {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-top: 300px;
	margin-bottom: 290px;
	height: 945px;
	overflow: hidden;
}

.floor__mobile {
	display: none;
}

.floor-plan .a-s__arrow-btn {
	display: none;
}

.foor-plan__imgs {
	max-height: 600px;
}

.foor-plan__imgs img {
	width: 100%;
}

.floor-plan img {
	scale: 1;
	position: relative;
}

.floor__imgs {
	display: flex;
}

.floor__imgs img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	object-fit: cover;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}

.floor-plan__text {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: absolute;
	padding: 0 160px;
	font-weight: 400;
	font-size: 40px;
	line-height: 125%;
	text-align: center;
	color: #FFFFFF;
}

.fp__text-item {
	opacity: 0.5;
	transition: all .5s ease;
	cursor: pointer;
}

.fp__text-item:hover, .fp__text-item.active {
	opacity: 1;
}

/* ABOUT SLIDER */

.about-slider {
    position: relative;
	margin-bottom: 300px;
}

.about-slider__img.slick-initialized.slick-slider {
    width: 1365px;
    overflow: hidden;
    height: 1000px;
}

.about-slider img {
	border-radius: 0 0 52% 0;
	width: 1365px;
	height: 1000px;
}

.about-slider__text {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
    max-width: 655px;
    background: #DEB887;
    padding: 43px 35px 31px 41px;
    color: #000;
    position: absolute;
    width: 100%;
    height: 691px;
    top: 175px;
    right: 160px;
}

.a-s__text-block {
	display: flex;
	flex-direction: column;

}

.a-s__text-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 125%;
    color: #000000;
    margin-bottom: 22px;
}

.a-s__text-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: #000000;
    max-width: 333px;
}

.a-s__text-btn {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.a-s__arrow-btn {
	display: flex;
}

.a-s__count {
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	color: #000000;
}

.arrow-prev-black, .arrow-next-black {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	border: 1px solid #000;
	cursor: pointer;
	background-color: rgba(18, 18, 18, 0);
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	transition: all .5s ease;
}

.arrow-prev-black {
	transform: rotate(180deg);
	margin-right: 11px;
	background-image: url(../img/arrow-black.svg);
}

.arrow-next-black {
	background-image: url(../img/arrow-black.svg);
}

.arrow-prev-black:hover, 
.arrow-next-black:hover {
	background-color: rgba(12, 12, 12, 1);
	background-image: url(../img/arrow-white.svg);
}


/* ---------------- */
/* INSFRASCTRUCTURE */
/* ---------------- */

.premain__title-i {
	font-size: 64px;
    line-height: 77px;
    text-transform: uppercase;
    color: #DEB887;
	max-width: 839px;
}

.i__top-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	text-transform: uppercase;
	color: #FFFFFF;
	max-width: 385px;
	text-transform: none;
}

.premain__infoblock {
	display: flex;
	justify-content: space-between;
	padding: 28px 160px;
}


@keyframes best__line {   
	from {     
	  transform: translateX(0%)  
	}   
	to {
		transform: translateX(-100%) 
	}
}

.line-text {
	width: 100%;
	overflow: hidden;
	padding: 300px 0;
}

.line-text__wrapper {
	width: 18000px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 50%;
	animation: best__line 150s none infinite;
}

.best__item {
	font-weight: 400;
	font-size: 96px;
	line-height: 115px;
}

.best__item.icon img {
	position: relative;
	top: -15px;
}

.best__item.color__text {
	color: #DEB887;
}


/* Premain Banner */

.premain__banner {
	display: flex;
	position: relative;
	margin-left: 160px;
	margin-bottom: 427px;
}

.premain__banner-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 874px;
	max-width: 986px;
	width: 100%;
	background: #DEB887;
	font-weight: 400;
	line-height: 125%;
	color: #121212;
	padding: 118px 135px;
}

.p__banner-title {
	font-size: 58px;
	text-transform: lowercase;
	line-height: 125%;
}

.p__banner-text {
	font-size: 16px;
	max-width: 385px;
}

.premain__banner-img img {
	position: absolute;
	left: 782px;
	top: 102px;
	border-radius: 0 0 0 50%;
}

/* Territory */

.territory {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.territory__wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.territory__item {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	margin-bottom: 51px;
}

.territory__item:nth-child(2n) {
	flex-direction: row;
}

.t__item-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 385px;
    flex-direction: column;
}

.territory__item-info {
    display: flex;
    justify-content: center;
    width: 100%;
}

.t__item-text {
	font-size: 24px;
	line-height: 33px;
	text-transform: uppercase;
	color: #FFFFFF;
}

.territory__title {
	font-size: 64px;
	line-height: 125%;
	color: #DEB887;
	margin-bottom: 102px;
}

.territory__item-img {
	max-width: 1085px;
	width: 100%;
}

.t__item-num {
	font-weight: 400;
	font-size: 220px;
	line-height: 125%;
	letter-spacing: -0.095em;
	text-transform: lowercase;
	color: #DEB887;
}

.t__item-text {
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
	text-transform: none;
	color: #FFFFFF;
}

/* MAP dark */

.map.dark.section {
	background: #1A1C27;
}

.static__map {
	display: none;
}

/* CATEGORY */

.category__mobile {
	display: none;
}

.cat__close {
	display: none;
}

.cat__container {
	padding-top: 246px;
	display: flex;
	justify-content: flex-end;
	padding-right: 80px;
}

.cat__wrapper {
	max-width: 979px;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.cat__header {
	display: flex;
	justify-content: space-between;
	padding-bottom: 15px;
	border-bottom: 1px solid #363636;
	align-items: center;
	margin-right: 80px;
}

.cat__header-item {
	text-align: center;
    font-weight: 400;
    font-size: 15px;
    line-height: 14px;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    max-width: 105px;
    width: 100%;
}

.cat__list {
    display: flex;
    flex-direction: column;
    max-height: 632px;
    overflow: hidden;
    overflow-y: scroll;
	padding-right: 80px;
}

.cat__list::-webkit-scrollbar {
	width: 1px;
	position: relative; 
	left: 20px;            /* ширина scrollbar */
}
.cat__list::-webkit-scrollbar-track {
	background: rgba(0,0,0,0) ;        /* цвет дорожки */
}
.cat__list::-webkit-scrollbar-thumb {
	position: relative; 
	left: 20px; 
	background-color: #DEB887;    /* цвет плашки */
	border-radius: 10px;       /* закругления плашки */
	border: none;  /* padding вокруг плашки */
}
.cat__list {
	scrollbar-width: thin;          /* "auto" или "thin"  */
	scrollbar-color: #DEB887 rgba(0,0,0,0)   /* плашка скролла и дорожка */ 
}

.cat__list::-webkit-scrollbar-track-piece:end {
    background: #606060;
    margin-bottom: 337px; 
}

.cat__list::-webkit-scrollbar-track-piece:start {
    background: #606060;
    margin-top: 91px;
}

.cat__list-item {
	padding: 24px 0;
    justify-content: space-between;
    display: flex;
	align-items: center;
	border-bottom: 1px solid #363636;
}

.cat__list-element {
	font-weight: 400;
    font-size: 16px;
    line-height: 15px;
    text-align: center;
    max-width: 105px;
    width: 100%;
	align-items: center;
}

a.cat__list-element {
	color: #DEB887;
}

a.cat__list-element:hover {
	color: #fff;
}

a.cat__list-element.price {
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    color: #121212;
    text-align: center;
    padding: 8px 10px;
    gap: 10px;
    background: #DEB887;
    border-radius: 40px;
    transition: all .5s ease;
}

a.cat__list-element.price:hover {
    background: #ffffff;
}

.cat__nav {
    z-index: 9999;
    position: fixed;
    max-width: 701px;
    width: 100%;
}

.cat__nav-container {
    padding: 65px 160px;
    height: 100vh;
    max-width: 701px;
    width: 100%;
    background: #DEB887;
    display: flex;
    flex-direction: column;
    color: #000;
}

.back__btn {
	font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    color: #000;
	display: flex;
	align-items: center;
}

.back__btn span {
	margin-left: 25px;
}

.back__btn-text, .back__btn-svg, .back__btn-svg path {
	transition: all .5s ease;
}

.back__btn:hover > .back__btn-text {
	color: #fff;
	margin-left: 15px;
}

.back__btn:hover > .back__btn-svg path {
	fill: #fff;
}

.cat__nav-list {
	margin-top: 180px;
	display: flex;
	flex-direction: column;
}

.cat__nav-list-title {
	font-weight: 400;
	font-size: 18px;
	line-height: 25px;
	color: rgba(0, 0, 0, 0.42);
	margin-bottom: 12px;
}

.cat__nav-section {
	display: flex;
	flex-direction: column;
	margin-bottom: 26px;
}

.cat__nav-section.cat__nav-btns {
	display: flex;
	flex-direction: row;
}

.cat__nav-section-wrapper {
	display: flex;
}

.cat__nav-section-btn {
	font-weight: 400;
	font-size: 18px;
	line-height: 25px;
	color: #000;
	border: 1px solid #000;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 39px;
	height: 39px;
	margin-right: 16px;
}

.cat__nav-section-btn:hover {
	background: #000;
	color: #DEB887;
}

.cat__nav-btn {
	background: #1A1C27;
	color: #DEB887;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	text-transform: uppercase;
	border: 1px solid transparent;
	margin-right: 11.5px
}

.cat__nav-btn:hover {
	background: #fff;
	color: #121212;
}

.cat__nav-price-wrapper, .cat__nav-square-wrapper, .cat__nav-high-wrapper {
	display: flex;
	align-items: center;
}

.ui-widget.ui-widget-content {
	border: none;
    height: 1px;
    background: #6d6d6d;
    max-width: 290px;
	top: 0;
	width: 100%;
}

.ui-slider-horizontal .ui-slider-range {
    background: #1A1C27;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: none;
    background: #1A1C27;
    font-weight: normal;
    color: #606060;
}

.ui-slider .ui-slider-handle {
    width: 14px;
    height: 14px;
	border-radius: 0px;
	outline: 0;
	cursor: pointer;
	top: -6px;
}

.range-value-left, .range-value-right {
	font-weight: 400;
	font-size: 18px;
	line-height: 25px;
	color: #000000;
	width: 44px;
}

.range-value-right {
	padding-left: 20px;
}

/* DOCS */

.docs {
	padding: 329px 295px 180px 295px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.docs__title {
	font-weight: 400;
	font-size: 128px;
	line-height: 125%;
	text-align: center;
}

.docs__container {
	display: flex;
	width: 100%;
	margin-top: 180px;
	flex-direction: column;
}

.docs__item {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #262626;
	padding: 33px 0;
}

.docs__item:first-child {
	border-top: 1px solid #262626;
}

.docs__item-title {
	background: url(../img/docs_icon.svg) no-repeat left center;
	padding-left: 61px;
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	text-align: center;
	color: #DEB887;
}

.docs__item-date {
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	text-align: center;
	color: #797979;
}

.docs__item-download {
	padding: 6px 19px;
	background: #DEB887;
	border-radius: 500px;
	font-weight: 400;
	font-size: 15px;
	line-height: 125%;
	text-align: center;
	color: #000000;
	border: 1px solid transparent;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}

.docs__item-download:hover {
	color: #DEB887;
	border: 1px solid #DEB887;
	background: transparent;
}

/* NEWS AND SELLER */

.news__seller {
	display: flex;
	flex-direction: column;
	padding: 329px 160px 245px 160px;
	justify-content: center;
	align-items: center;
}

.ns-title {
	display: flex;
	flex-direction: column;
	max-height: 200px;
}

.ns-title-item.title {
	font-weight: 400;
	font-size: 128px;
	line-height: 125%;
	text-align: center;
	color: #FFFFFF;
}

.ns-title-item.gogol-text {
	font-family: 'Manrope', sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 96px;
	line-height: 125%;
	text-align: center;
	color: #DEB887;
	position: relative;
    top: -70px;
}

.ns-nav {
	margin-top: 54px;
	display: flex;
	margin-bottom: 115px;
}

.ns-nav-item {
	cursor: pointer;
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-right: 30px;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}

.ns-nav-item:last-child {
	margin-right: 0;
}

.ns-nav-item.active {
	color: #DEB887;
}

.ns-nav-item:hover {
	color: #DEB887;
}

.ns-item-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.ns-item-list .n__item-link {
	margin-bottom: 20px;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}

.news__more-btn {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	color: #121212;
	padding: 12px 19px;
	margin-top: 112px;
	background: #DEB887;
	border-radius: 40px;
	border: 1px solid transparent;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}

.news__more-btn:hover {
	color: #DEB887;
	border: 1px solid #DEB887;
	background: transparent;
}

/* NEWS AND SELLER POPUP */

.news__popup-container {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 999999;
	width: 100vw;
	height: 100vh;
	opacity: 1;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}

.news__popup-overlay {
	position: absolute;
	width: 100vw;
	height: 100vh;
	background: rgba(18, 18, 18, 0.92);
	z-index: -1;
}

.news__popup {
	display: flex;
	flex-direction: column;
	max-width: 960px;
	background: #1A1C27;
	border: 1px solid #DEB887;
	position: relative;
	z-index: 9999999999;
}

.news__popup-close {
	position: absolute;
	cursor: pointer;
	top: 48px;
	right: 48px;
	background: #DEB887;
	width: 66px;
	height: 66px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .5s ease;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}

.news__popup-close img {
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}

.news__popup-close:hover > img {
	transform: scale(-1, 1);
	-webkit-transform: scale(-1, 1);
	-moz-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
}

.news__popup-img {
	max-height: 300px;
	object-fit: cover;
}

.news__popup-text {
	padding: 50px 135px 50px 135px;
	display: flex;
	flex-direction: column;
}

.np-text-date {
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #868686;
}

.np-text-title {
	font-weight: 400;
	font-size: 36px;
	line-height: 49px;
	text-transform: uppercase;
	color: #DEB887;
}

.np-text-content {
    margin-top: 30px;
    font-size: 18px;
    line-height: 25px;
    overflow-x: hidden;
    max-height: 300px;
	padding-right: 20px;
}

.np-text-content::-webkit-scrollbar {
	width: 2px;
	position: relative; 
	left: 20px;            /* ширина scrollbar */
}
.np-text-content::-webkit-scrollbar-track {
	background: rgba(0,0,0,0) ;        /* цвет дорожки */
}
.np-text-content::-webkit-scrollbar-thumb {
	position: relative; 
	left: 20px; 
	background-color: #DEB887;    /* цвет плашки */
	border-radius: 10px;       /* закругления плашки */
	border: none;  /* padding вокруг плашки */
}
.np-text-content {
	scrollbar-width: thin;          /* "auto" или "thin"  */
	scrollbar-color: #DEB887 rgba(0,0,0,0)   /* плашка скролла и дорожка */ 
}

.np-text-content::-webkit-scrollbar-track-piece:end {
    background: #606060;
    margin-bottom: 100px; 
}

.np-text-content::-webkit-scrollbar-track-piece:start {
    background: #606060;
    margin-top: 100px;
}

.news__popup-share {
	display: flex;
    justify-content: center;
}

.news__popup-btn {
	background: #DEB887;
	border-radius: 40px;
	max-width: 246px;
	padding: 12px 19px;
	margin-bottom: 66px;
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	color: #121212;
	border: 1px solid transparent;
	text-align: center;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
}

.news__popup-btn:hover {
	color: #DEB887;
	border: 1px solid #DEB887;
	background: transparent;
}

/* CONTACTS */

.contacts {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	padding: 329px 160px 59px 160px;
	justify-content: center;
	align-items: center;
}

.contacts__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 283px;
}

.contacts__title {
	font-weight: 400;
	font-size: 128px;
	line-height: 125%;
	text-align: center;
}

.contacts__phone {
	font-weight: 400;
	font-size: 48px;
	line-height: 58px;
	text-align: center;
}

.contacts__footer {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.contacts__footer-i {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

span.c__footer-t:first-child {
	margin-bottom: 11px;
}

.c__footer-t{
	font-weight: 500;
	font-size: 20px;
	line-height: 27px;
}

a.c__footer-t {
	color: #fff;
	position: relative;
}

.c__footer-t.color-text {
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
}

a.c__footer-t.contacts_map {
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	text-transform: uppercase;
	color: #DEB887;
}

a.c__footer-t:after {
	content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 0;
    height: 1px; /* Высота линии */
    background-color: #fff; /* Цвет подчеркивания при исчезании линии*/
    transition: width 0.5s; /* Время эффекта */
}

a.c__footer-t:hover:after {
	content: "";
    width: 126px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px; /* Высота линии */
    background-color: #fff; /* Цвет подчеркивания при появлении линии*/
    transition: width 0.5s;  /* Время эффекта */
}

a.c__footer-t.contacts_map:after {
	content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 0;
    height: 1px; /* Высота линии */
    background-color: #DEB887; /* Цвет подчеркивания при исчезании линии*/
    transition: width 0.5s; /* Время эффекта */
}

a.c__footer-t.contacts_map:hover:after {
	content: "";
    width: 185px;
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px; /* Высота линии */
    background-color: #DEB887; /* Цвет подчеркивания при появлении линии*/
    transition: width 0.5s;  /* Время эффекта */
}

/* GALLERY */

/* .section__container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

  .slider {
	color: #fff;
  }
  .slider .swiper-container {
	width: 100%;
	height: 100%;
  }
  .slider__flex {
    display: flex;
    align-items: flex-start;
    width: 100%;
	justify-content: center;
}
.slider__col {
    display: flex;
    flex-direction: row;
    margin-right: 32px;
    align-items: center;
    height: 100%;
}
  .slider__prev, .next-arrow {
	display: flex;
	width: 128px;
	height: 128px;
	justify-content: center;
	align-items: center;
	background-color: rgba(18, 18, 18, 0.25);
	backdrop-filter: blur(2px);
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

.slider__prev {
    background-image: url(../img/prev-arrow.svg);
    bottom: 0;
    right: 0;
    transform: translateX(-100%);
}

.slider__next {
	background-image: url(../img/next-arrow.svg);
	background-color: rgba(18, 18, 18, 0.69);
	bottom: 0;
    right: 0;
}
  .slider__prev:focus,
  .slider__next:focus {
	outline: none;
  }
  .slider__thumbs {
	height: calc(600px - 96px);
  }
  .slider__thumbs .slider__image {
	transition: 0.25s;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.5;
  }
  .slider__thumbs .slider__image:hover {
	opacity: 1;
  }
  .slider__thumbs .swiper-slide-thumb-active .slider__image {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	opacity: 1;
  }
  .slider__images {
	height: 600px;
  }
  .slider__images .slider__image img {
	transition: 3s;
  }
  .slider__images .slider__image:hover img {
	transform: scale(1.1);
  }
  .slider__image {
	width: 100%;
	height: 100%;
	overflow: hidden;
  }
  .slider__image img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
  }

  @media (max-width: 767.98px) {
	.slider__flex {
	  flex-direction: column-reverse;
	}
	.slider__col {
	  flex-direction: row;
	  align-items: center;
	  margin-right: 0;
	  margin-top: 24px;
	  width: 100%;
	}
	.slider__images {
	  width: 100%;
	}
	.slider__thumbs {
	  height: 100px;
	  width: calc(100% - 96px);
	  margin: 0 16px;
	}
	.slider__prev,
	.slider__next {
	  height: auto;
	  width: 32px;
	}
  } */

  .gallery-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}

.sg__container {
    display: block;
    width: 380px;
    justify-content: center;
    align-items: center;
    max-width: 380px;
    height: auto;
}

img.galler__bg {
    position: absolute;
    z-index: -1;
    margin-right: 60px;
}

.sg__container img {
	width: 380px;
	max-height: 235px;
	margin: 100px 0;
}

.small-gallery {
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 100vh;
	width: 50%;
}

.sg__container.swiper-container .swiper-slide {
	margin: 20px 0;
}

.big-gallery {
	display: block;
	width: 50%;
	height: 100vh;
	justify-content: center;
	align-items: center;
}

.big-gallery img {
	width: 960px;
	height: 100vh;
}

/* .swiper-slide {
    padding: 0 95px 290px 100px;
} */

.sg__prev, .sg__next {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	border: 1px solid #DEB887;
	background: url(../img/arrow_new.svg) no-repeat center center;
	cursor: pointer;
	transition: all .5s ease;
}

.sg__prev {
	margin-right: 92px;
}

.sg__next {
	margin-left: 92px;
}

.sg__prev:focus, .sg__next:focus {
	outline: 0;
}

.sg__prev:hover, .sg__next:hover {
	background-color: #DEB887;
}

.sg__next {
	transform: rotate(180deg);
}
  
/* MENU POPUP */

.mobile__phone__menu {
	display: none;
}

.menu__container {
    background: url(../img/menu_bg.jpg) center center;
    display: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
	z-index: 9999;
	transform: translateY(-100vh);
	transition: all .5s ease;
}

.menu__wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
	justify-content: space-between;
	padding-bottom: 25px;
}

.menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
}

.menu-link {
    font-weight: 400;
    font-size: 46px;
    line-height: 158%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(0,0,0,1);
	transition: all .5s ease;
}

.menu-link:hover {
	color: rgba(0,0,0,.37);
}

.menu__container .menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 160px;
}

.menu__container .burger-icon {
	position: relative;
}

.menu__container .icon-line {
	background: #1A1C27;
	position: absolute;
}
.menu__container .icon-line:first-child {
	transform: rotate(45deg);
}

.menu__container .icon-line:last-child {
	transform: rotate(-45deg);
}

.menu__container .btn {
	font-size: 18px;
}

.menu__container .select-btn {
	border: 1px solid #121212;
	color: #121212;
}

.menu__container .select-btn:hover {
	border: 1px solid transparent;
	background: #1A1C27;
    color: #DEB887;
}

.menu__container .call-btn {
	background: #1A1C27;
    color: #DEB887;
}

.menu__container .call-btn:hover {
	background: #fff;
    color: #121212;
}

.burger-btn.menu-burger .burger-text {
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
	text-transform: uppercase;
	color: #000000;
}

.menu__container .burger-btn {
	cursor: pointer;
	transition: all .5s ease;
}

.menu__container .burger-btn .burger-icon {
	transition: all .5s ease;
}

.burger-btn.menu-burger:hover > .burger-icon .icon-line:first-child {
	transform: rotate(135deg);
}

.burger-btn.menu-burger:hover > .burger-icon .icon-line:last-child {
	transform: rotate(-135deg);
}

.burger-btn.menu-burger:hover > .burger-btn.menu-burger .burger-text {
	color: #000;
}

.menu__container .phone-btn {
	color: #121212; /* Цвет обычной ссылки */
}

.menu__container .phone-btn:hover {
	color: #121212;
}

.menu__container .phone-btn:after {
    background-color: #121212; /* Цвет подчеркивания при исчезании линии*/
}

.menu__container .phone-btn:hover:after {
    background-color: #121212; /* Цвет подчеркивания при появлении линии*/
}

.menu__container .logo {
	color: #121212;
}

.menu__container .logo:hover {
	color: #fff;
}

.menu-footer {
    display: flex;
    margin: 0 160px;
    position: relative;
    justify-content: center;
    align-content: flex-end;
    margin-top: 110px;
}

.copyright {
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #121212;
    bottom: 0;
	left: 0;
	position: absolute;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__menu-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 158.7%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
	transition: all .5s ease;
}

.footer__menu-link:hover {
	color: rgba(0,0,0,.37)
}

/* PRELOADER */

.preloader {
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 99999999999;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(18,18,18,1);
	transition: all 2s ease;
	-webkit-transition: all 2s ease;
	-moz-transition: all 2s ease;
	-ms-transition: all 2s ease;
	-o-transition: all 2s ease;
}

/* .preloader__left, .preloader__right {
	height: 100vh;
	width: 100vw;
	position: absolute;
	z-index: -1;
	transition: all 2s ease;
	-webkit-transition: all 2s ease;
	-moz-transition: all 2s ease;
	-ms-transition: all 2s ease;
	-o-transition: all 2s ease;
}

.preloader__left {
	background: linear-gradient(153deg, rgba(18,18,18,1) 0%, rgba(18,18,18,1) 50%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 54%, rgba(255,255,255,0) 100%);
}

.preloader__right {
	background: linear-gradient(333deg, rgba(18,18,18,1) 0%, rgba(18,18,18,1) 50%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 54%, rgba(255,255,255,0) 100%);
} */

.preloader__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 282px;
    overflow: hidden;
}

.preloader-imgs_wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 117px;
    height: 89px;
    margin-bottom: 20px;
    overflow: hidden;
}

.preloader-imgs {
    position: relative;
    display: none;
    justify-content: flex-start;
    width: 97px;
    height: 89px;
    margin-bottom: 20px;
    overflow: hidden;
}

.preloader-item {
	position: absolute;
	width: 117px;
	height: 89px;
	overflow: hidden;
}

.preloader-text {
    display: none;
    justify-content: flex-end;
    width: 282px;
	overflow: hidden;
}

.preloader-item img {
	width: 117px;
	height: 89px;
}

.preloader-item.third img {
	position: relative;
	top: 1px;
}

.preloader-item:first-child {
	z-index: 3;
}

.preloader-item:nth-child(2) {
	z-index: 2;
}

.preloader-item:last-child {
	z-index: 1;
}

/* CALL MODAL */

.call__overlay {
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 9999999;
	display: none;
	justify-content: center;
	align-items: center;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	opacity: 0;
}
.call__popup {
    background: #1A1C27;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 999999;
    /* width: 560px;
	height: 750px; */
    max-width: 540px;
    overflow: hidden;
}
.call__mask {
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,.5);
	position: absolute;
}
.call__close {
	position: absolute;
	top: 17px;
	right: 17px;
	border-radius: 50%;
	background: #000;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	z-index: 9;
}
.call__close:hover {
    background: #DEB887;
}
.call__popup__form {
	padding: 45px 0;
}
.call__popup__form .submit__btn:hover {
	background: #fff;
	color: #000;
}
.call__img {
    max-height: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.call__popup__form .call__input {
	background: #1a1c27;
}

.call__popup__form .call__input:hover {
	border: 1px solid #ffffff;
}

.call__input:focus {
	background: #fff;
	border: 1px solid #ffffff;
	color: #121212;
}
