@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');

/*-------  Normalize  -------*/
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
* {
  text-decoration: none;
}
*:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
*:hover {
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
}
main {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
}
ul,
ol,
li {
  list-style: none;
}
ul {
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
a {
  display: block;
  cursor: pointer;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  height: 100%;
  transform: translate3d(0px, 0px, .001px);
  border-style: none;
  vertical-align: top;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  overflow: visible;
}
input[placeholder] {
  text-overflow: ellipsis;
}
input::-moz-placeholder {
  text-overflow: ellipsis;
}
input:-moz-placeholder {
  text-overflow: ellipsis;
}
input:-ms-input-placeholder {
  text-overflow: ellipsis;
}
button,
select {
  text-transform: none;
  cursor: pointer;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  -webkit-tap-highlight-color: transparent;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
  -webkit-tap-highlight-color: transparent;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
  -webkit-tap-highlight-color: transparent;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
  -webkit-tap-highlight-color: transparent;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
/*-------  End normalize  -------*/
/*---  Menu style  ---*/
.header{
  background: #10141f;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  height: 52px;
}
.top_menu_wr {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.back_to_catalog_btn {
	width: 160px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.back_to_catalog_btn_ico {
	width: 25px;
	height: 25px;
  margin-left: 10px;
	background-image: url("../img/icon-pane.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.back_to_catalog_btn_txt {
	color: rgba(255,255,255, 0.8);
	font-family: Montserrat, sans-serif;
	font-size: 13px;
	margin-left: 10px;
}
.main_top_menu {
	display: flex;
	position: relative;
	padding: 0;
}
.main_top_menu li {
	display: block;
}
.main_top_menu li.more_menu {
	padding: 10px;
}
.main_top_menu li a {
	display: flex;
	align-items: center;
	color: rgba(255,255,255, 0.6);
	font-family: Montserrat, sans-serif;
	font-size: 13px;
  padding: 0 10px;
	height: 52px;
	border-bottom: 2px solid transparent;
}
.main_top_menu li:hover>a {
	color: rgba(255,255,255, 1.0);
	border-bottom: 2px solid #BBA583;
}
ul.main_top_menu li.active a {
	color: rgba(255,255,255, 1.0);
	border-bottom: 2px solid #BBA583;
}
li.more_menu:hover .more_menu_wr .more_menu_dot {
	background-color: rgba(255,255,255, 1.0);
}
.main_top_menu li.more_menu .more_menu_wr {
	height: 32px;
	width: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.more_menu_dot {
	background-color: rgba(255,255,255, 0.6);
	width: 4px;
	height: 4px;
	border-radius: 2px;
}
li.more_menu {
	position: relative;
	display: none;
}
li.more_menu ul {
	display: none;
}
li.more_menu ul {
	background-color: rgba(17,20,31, 0.9);
	position: absolute;
	right: -20px;
	top: 52px;
	z-index: 10;
  min-width: 180px;
}
li.more_menu ul li {
	display: none;
}
li.more_menu ul li a {
	border: none !important;
	height: 40px;
	padding-left: 20px;
	padding-right: 30px;	
}
@media screen and (max-width:1150px) {
  li.more_menu {
    display: block;
  }
  li.item_10 {
    display: none;
  }
  li.sub_item_10 {
    display: block !important;
  }
}
@media screen and (max-width:1024px) {
  li.item_9 {
    display: none;
  }
  li.sub_item_9 {
    display: block !important;
  }
}
@media screen and (max-width:910px) {
  li.item_8 {
    display: none;
  }
  li.sub_item_8 {
    display: block !important;
  }
}
@media screen and (max-width:800px) {
  li.item_7 {
    display: none;
  }
  li.sub_item_7 {
    display: block !important;
  }
}
@media screen and (max-width:660px) {
  li.item_6 {
    display: none;
  }
  li.sub_item_6 {
    display: block !important;
  }
}
@media screen and (max-width:570px) {
  li.item_5 {
    display: none;
  }
  li.sub_item_5 {
    display: block !important;
  }
}
@media screen and (max-width:530px) {
  li.item_4,
  li.item_3,
  li.item_2,
  li.item_1 {
    display: none;
  }
  li.sub_item_4,
  li.sub_item_3,
  li.sub_item_2,
  li.sub_item_1 {
    display: block !important;
  }
  .main_top_menu {
    margin-right: 0;
  }
  .main_top_menu li.more_menu .more_menu_wr {
    margin-right: 10px;
  }
}
/*---  End Menu style  ---*/
/*---  Stars block  ---*/
.slogan_desc_stars {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.stars_icon {
  width: 16px !important;
  height: 16px !important;
  margin-right: 6px;
}
.stars_icon-house {
  width: 29px !important;
  height: 24px !important;
  margin-right: 8px;
}
.stars_k{
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.6);
}
/*---  End Stars block  ---*/
/*-------  Common styles  -------*/
body{
  z-index: -5;
}
.container{
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.descr{
  min-height: 100vh;
  padding-top: 52px;
  position: relative;
  display: flex;
}
.bg-video{
  position: fixed;
  content: '';
  top: 50%;
  left: 50%;
  right: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  z-index: -2;
}
.bg-photo{
  position: fixed;
  content: '';
  top: 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  min-height: 100%;
  max-height: 100%;
  min-width: 100%;
  z-index: -3;
}
.filter{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0,0,0,0.2);
}
.descr__wr{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.descr__wrapper{
  padding: 20px 0 30px;
  height: 100%;
}
.descr-logo{
  margin-bottom: 40px;
}
.descr-logo a{
  width: 130px;
  height: 50px;
  float: right;
}
.descr-logo img{
  max-width: 100%;
}
.descr-footer{
  display: flex;
  justify-content: space-between;
  background-color: #11141F;
}
.descr-footer__left{
  padding: 20px 30px;
  width: 89%;
}
.descr-footer__txt{
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 400;
}
.descr-footer__right{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  background-color: #BBA583;
  width: 112px;
  position: relative;
}
.descr-footer__right a{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.descr-footer__right-btn{
  width: 55px;
  height: 55px;
  background: url(../img/goto-next.svg) center /cover no-repeat;
}
.descr-footer__right-txt{
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.descr-title{
  margin-bottom: 50px;
}
.descr__village{
  font-family: Merriweather, sans-serif;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 300;
  color: #ffffff;
}
.descr__region{
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 300;
  color: #ffffff;
}
@media screen and (max-width:767px) {
  .descr-footer {
    background-color: rgba(17, 20, 31, 0.5);
    flex-direction: column;
  }
  .descr-footer__left {
    width: 100%;
  }
  .descr__village {
    font-size: 44px;
  }
  .descr__region {
    font-size: 18px;
  }
  .descr-footer__txt {
    font-size: 13px;
    line-height: 20px;
  }
  .descr-footer__right-btn{
    width: 48px;
    height: 48px;
    background: url(../img/back-to-katalog.svg) center /cover no-repeat;
    transform: rotate(180deg);
    margin-right: 15px;
  }
  .descr-footer__right {
    background-color: transparent;
    width: auto;
  }
  .descr-footer__right {
    flex-direction: row;
    justify-content: flex-start;
    padding: 7px 30px 20px;
  }
}
@media screen and (max-width:480px){
  .descr__village {
    font-size: 28px;
  }
  .descr__region {
    font-size: 12px;
  }
  .descr-title {
    margin-bottom: 28px;
  }
  .descr-logo a {
    width: 100px;
    height: 38px;
  }
  .descr-logo {
    margin-bottom: 25px;
  }
  .descr-footer__left {
    padding: 15px 10px;
    width: 89%;
  }
  .container {
    padding: 0 10px;
  }
  .descr-footer__txt {
    font-size: 12px;
    line-height: 18px;
  }
  .descr-footer__right-btn {
    width: 40px;
    height: 40px;
  }
}
/*-------  End common styles  -------*/
/*--- стили для ссылкм видео в описании ---*/
.village_item-play{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #BCA583;
}
.village_item-play-wr{
  position: relative;
  width: 100%;
  height: 100%;
}
.triangle-right {
  position: absolute;
  top: 51%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-top: 8px solid transparent;
  border-left: 14px solid #BCA583;
  border-bottom: 8px solid transparent;
}
.descr-footer__play{
  display: flex;
  align-items: center;
}
.descr-footer__play-wr{
  margin-bottom: 15px;
  display: inline-block;
  cursor: pointer;
}
.descr-footer__play-txt{
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  line-height: 1.7em;
  font-weight: 400;
  margin-left: 15px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.descr-footer__play-txt:hover{
  color: #BCA583;
}
/*--- Popup-video styles ---*/
.popup-video {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0, 1);
  z-index: 1000;
  display: none;
}
.close_btn_wr {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  top: 20px;
  right: 30px;
  background-color: rgba(255,255,255, 0.7);
  cursor: pointer;
  transform: rotate(45deg);
  z-index: 10000;
}
.v_line {
  width: 2px;
  height: 24px;
  background-color: rgba(0,0,0, 0.7);
  position: absolute;
  top: 6px;
  left: 17px;
}
.h_line {
  width: 24px;
  height: 2px;
  background-color: rgba(0,0,0, 0.7);
  position: absolute;
  top: 17px;
  left: 6px;
}
.popup-video__wr {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  height: 100%;
}
.popup-video__inner{
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.popup-video__video{
  width: 100%;
  max-height: 100%;
}
.frame_blc{
  overflow:hidden;
  position:relative;
  padding-bottom:56.25%;
  padding-top:30px;
  height:0;
}
.frame_blc iframe {
  position:absolute;
  width:100%;
  height:100%;
  left:0;
  top:0;
}
.movie-fixed {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
}
@media screen and (max-width:480px) {
  .popup-video__wr,
  .movie-fixed {
    padding: 0 10px;
  }
}
/*--- End Popup-video ---*/

