@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

*,
*::before,
*::after {
  -webkit-tap-highlight-color: transparent;
}

*:focus,
*:hover,
*:active{
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
button,
input,
optgroup,
select,
textarea,
div{
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  -webkit-tap-highlight-color: transparent;
}
textarea {
  overflow: auto;
  outline: none;
}

[type="checkbox"],
[type="radio"] {
  -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;
  -webkit-tap-highlight-color: transparent;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  padding: 0;
  margin: 0;
  background-color: #fafafa;
}

.all_wr {	
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;	
	margin: 0px;
	padding: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	font-family: 'Open Sans', sans-serif;	
	background-position: center;
}

/*--- Стили хедера ---*/
.header {
	/* border: 1px solid blue; */
	height: 56px;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.top_menu_wr {
	/* border: 1px solid yellow; */
	height: 56px;
	width: 100%;
	background-color: #11141F;
	position: fixed;
	top: opx;
	left: 0px;
	z-index: 10;
	text-align: center;
	display: flex;
	justify-content: center;
	margin: 0px;
	padding: 0px;
}

.top_menu_wr_1 {
	position: relative;
	width: 1200px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* border: 1px solid white; */
	margin: 0 auto;
}

.logo_wr {
	/* border: 1px solid green; */
	height: 56px;
	width: 310px;
	display: flex;
	align-items: center;
}

.logo_rura {
	display: block;
	padding: 0px;
	margin: 0px;
	/* border: 1px solid blue; */
	height: 56px;
	width: 170px;
	background-image: url("../img/rura-white.svg");
	background-repeat: no-repeat;
	background-size: 130px;
	background-position: center;
}

.logo_askdr {
	display: block;
	padding: 0px;
	margin: 0px;
	/* border: 1px solid blue; */
	height: 56px;
	width: 120px;
	background-image: url("../img/askdr-white.svg");
	background-repeat: no-repeat;
	background-size: 95px;
	background-position: center;
}

.header_text_wr {
	border: 1px solid transparent;
	max-width: 1200px;
	position: relative;
	height: 498px;
	margin: 100px auto;
}

.header_text_inner_wr {
	/* border: 1px solid red; */	
	position: absolute;
	left: -3px;
	bottom: 120px;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 100px;
	color: #fff;
	background-color: rgba(0,0,0,0.6);
	max-width: 600px;
	width: 500px;
	min-width: 300px;
}

.slogan {
	font-family: Merriweather;
	font-size: 20px;
}

.splitter2 {
	background-color: #BBA583;
	height: 2px;
	width: 115px;
	margin-top: 20px;
    margin-bottom: 20px;
}

.slogan_desc {
	font-family: Montserrat;
	font-size: 16px;
	margin-top: 10px;
	color: #A5ABB9;
	/* border: 1px solid red; */
	display: flex;
	align-items: center;
}

.slogan_desc_txt {
	margin-right: 10px;
	display: flex;
	align-items: center;
	text-transform: uppercase;
}

.slogan_desc_stars {
	display: flex;
	align-items: center;
}

/*--- END ---*/

/*--- Стили полноэкранных галерей ---*/
.darkness {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0, 0.8);
	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.6);
	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;
}
.gallery_bottom_wr {
	position: absolute;
	width: 100%;
	height: 80px;
	background-color: #11141F;
	left: 0px;
	bottom: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.gallery_mini_item {
	width: 64px;
	height: 64px;
	background-color: #aaa;
	border-radius: 4px;
	margin-right: 10px;
	cursor: pointer;
	overflow: hidden;
	position: relative;
}
.gallery_mini_item img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.shade_1 {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background-color: rgba(0,0,0, 0.5);
	top: 0px;
	left: 0px;
	display: block;
}
.gallery_mini_item:hover .shade_1 {
	display: none;
}
.gallery_full_wr {
	width: 100%;
	height: 82%;
	position: absolute;
	top: 8%;
	left: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.gallery_full_img_wr {
	position: relative;
	border-radius: 4px;
	width: 86%;
	height: 100%;
	/* background-color: #aaa; */
}
.gallery_full_item {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 4px;
	display: none;
}
.gallery_full_item img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: contain;
	cursor: pointer;
	border-radius: 4px;
}
.gallery_arr_left {
	width: 36px;
	height: 36px;
	border-radius: 18px;
	top: 20px;
	right: 30px;
	background-color: rgba(255,255,255, 0.6);
	cursor: pointer;
	margin-right: 20px;
	transform: rotate(315deg);
	display: flex;
	justify-content: center;
	align-items: center;
}
.gallery_arr_left div {
	width: 10px;
	height: 10px;
	border-left: 2px solid #3E414F;
	border-top: 2px solid #3E414F;
	margin-top: 2px;
	margin-left: 2px;
}
.gallery_arr_right {
	width: 36px;
	height: 36px;
	border-radius: 18px;
	top: 20px;
	right: 30px;
	background-color: rgba(255,255,255, 0.6);
	cursor: pointer;
	margin-left: 20px;
	transform: rotate(135deg);
	display: flex;
	justify-content: center;
	align-items: center;
}
.gallery_arr_right div {
	width: 10px;
	height: 10px;
	border-left: 2px solid #3E414F;
	border-top: 2px solid #3E414F;
	margin-top: 2px;
	margin-left: 2px;
}
/*--- END ---*/

/*--- Стили меню ---*/
.top_menu_bg {
	position: absolute;
	width: 100%;
	height: 56px;
	background-color: #11141F;
	top: 0px;
	left: 0px;
	z-index: 1;
}

.top_menu_wr {
	position: fixed;
	width: 100%;
	height: 56px;
	background-color: #11141F;
	top: 0px;
	left: 0px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.back_to_catalog_btn {
	display: block;
	width: 160px;
	height: 56px;	
	display: flex;
	align-items: center;
	cursor: pointer;
	text-decoration: none;
}

.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;
	font-size: 13px;
	margin-left: 10px;
}

.main_top_menu {
	display: flex;
	position: relative;
	/* border: 1px solid red; */
	padding: 0px !important;
	margin-right: 10px;
}

.main_top_menu li {
	display: block;
	/* float: left; */	
	/* border: 1px solid blue; */
}

.main_top_menu li.more_menu {
	padding: 10px;	
	/* border: 1px solid green; */
}

.main_top_menu li a {
	display: flex;
	align-items: center;
	color: rgba(255,255,255, 0.6);
	font-family: Montserrat;
	font-size: 13px;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
	height: 50px;
	border-bottom: 2px solid transparent;
	border-top: 4px 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: 40px;
	width: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* border: 1px solid green; */
	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: 0px;
	top: 57px;
	z-index: 2;
	margin: 0px;
	padding: 0px;
}

li.more_menu ul li {
	display: none;
}

li.more_menu ul li a {
	border: none !important;
	height: 40px;
	padding-left: 20px;
	padding-right: 30px;	
}

#auth_block {
	border: 1px solid #fff;
	border-radius: 4px;
	height: 30px;
	color: rgba(255,255,255, 0.6);
	cursor: pointer;
	font-size: 13px;
	margin-top: 15px;
	display: flex;
	align-items: center;
	padding-left: 10px;
	padding-right: 10px;
	margin-right: 10px;
	margin-left: 20px;
}

#auth_block:hover {
	color: rgba(255,255,255, 1.0);
}
/*--- END ---*/

/*--- Стили контента ---*/
.content_wr {
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(100,100,100,0.5);
  position: relative;
  max-width: 1200px;
  min-height: 800px;
  padding: 0 0 40px;
  margin: 100px auto 20px auto;
  background-color: #ffffff;
  color: #555;
}

.content_text_wr {
	/* border: 1px solid red; */
	font-family: Montserrat;
	font-size: 15px;
	color: #11141F;
	margin: 60px 50px 40px 50px;
}

.content_header_wr {
	/* border: 1px solid red; */
	padding: 0px 20px 0px 50px;
	margin-top: 20px;
	margin-bottom: 20px;
	display: flex;	
	align-items: center;
	font-family: Merriweather;
	font-size: 34px;
	color: #11141F;
}

.back_2 {
	/* border: 1px solid red; */
	display: flex;
	align-items: center;
	width: 110px;
	height: 32px;
	padding-left: 50px;
	margin-top: 20px;
	margin-bottom: 20px;
	text-decoration: none;
}

.back_2_txt {
	margin-left: 5px;
	font-family: Montserrat;
	color: #999;
	font-size: 16px;
	font-weight: 500;	
}

.back_2_arrow {
	width: 10px;
	height: 10px;
	border-left: 2px solid #999;
	border-top: 2px solid #999;
	transform: rotate(315deg);
	padding: 0px;
	
}

.place_img_wr_0 {
	height: 472px;
	padding: 0px 50px 0px 50px;
}

.place_img_wr_1 {
	height: 472px;
	display: flex;
	justify-content: space-between;
}

.place_img_wr_2 {
	height: 472px;
	width: 720px;
}

.place_img_wr_3 {
	height: 472px;
	width: 344px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-left: 20px;
}

.gal_img_item_wr {
	height: 224px;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	cursor: pointer;
}

.gal_img_item_main_wr {
	height: 100%;
	overflow: hidden;
	border-radius: 4px;
	cursor: pointer;
}

.gal_img_item_main_wr img,
.gal_img_item_wr img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.gal_img_item_wr_dark {
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0px;
	left: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-family: Montserrat;
	font-size: 16px;
	cursor: pointer;
}

.village_item {
	/* border: 2px solid transparent; */
	border-radius: 4px;
	overflow: hidden;
	width: 30%;
	height: 370px;
	margin-left: 20px;
	margin-top: 10px;
	margin-bottom: 30px;
	cursor: pointer;
	position: relative;
}

.village_item_desc {
	background-color: rgba(0,0,0, 0.55);
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	min-height: 20%;
}

.village_item_desc h4 {
	font-family: Merriweather;
	font-size: 22px;
	color: #fff;
	font-weight: 400;
	margin: 10px 20px 10px 20px;
}

.village_item_desc_img {
	/* border: 1px solid red; */
	height: 30px;
	color: #fff;
	font-family: Montserrat;
	font-size: 12px;
	padding-left: 40px;
	margin-left: 20px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	background-image: url("../img/icon-church-white.svg");
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: 0px 0px;
}

.village_item.village_bid {
	border: 2px solid #BBA583;
	height: 366px;
}

.village_item.village_bid .village_bid_wr {
	/* border: 1px solid red; */
	height: 100%;
	padding: 20px;	
}

.village_item.village_bid .village_bid_wr h4 {
	display: block;
	/* border: 1px solid green; */
	font-family: Merriweather;
	font-size: 22px;
	color: #BBA583;
	margin: 0px;
	margin-top: 30px;
}

.village_item.village_bid .village_bid_wr p {
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 500;
	color: #777;
	line-height: 1.7em;
	margin-top: 40px;
}

.village_bid_btn {
	background-color: #BBA583;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-family: Montserrat;
	font-size: 20px;
	font-weight: 500;
	border-radius: 4px;
	margin-top: 50px;
}

.village_item a {
	display: flex;
	/* border: 1px solid red; */
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.village_item a img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.big_map_1 {
	/* border: 1px solid red; */
	display: flex;
	align-items: center;
	justify-content: center;
}

.big_map_1 img {
	width: 91%;
}

.splitter_1 {
	background-color: #A5ABB9;
	width: 95%;
	height: 2px;
	margin: 40px auto;
}
/*--- END ---*/

/*--- Стили футера ---*/
.container{
  max-width: 1200px;
  margin: 0 auto;
}

.footer_offset{
  padding: 20px 0 40px;
}
.footer_wr {
  min-height: 200px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-right: 20px;
  margin-top: 60px;
  margin-bottom: 30px;
}

.footer_item {
  overflow: hidden;
  width: 30%;
  min-height: 100px;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
  position: relative;
  padding: 0;
}

.footer_item h4 {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 7px;
}

.footer_item a {
  display: block;
  text-decoration: none;
  color: #aaa;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.footer_item a:hover {
  /*text-decoration: underline;*/
  color: #000000;
}

.footer_logo {
  display: block;
  width: 220px;
  height: 55px;
  background-image: url("../img/rura-black.svg");
  background-repeat: no-repeat;
  background-size: 215px;
  background-position: center;
}

a.footer_phone {
  padding-left: 35px;
  font-family: Montserrat, sans-serif;
  height: 24px;
  font-size: 14px;
  font-weight: 500;
  background-image: url("../img/icon-phone-black.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 0 0;
  margin-top: 30px;
  display: flex;
  align-items: center;
  color: #000000;
}

a.footer_mail {
  padding-left: 35px;
  font-family: Montserrat, sans-serif;
  height: 24px;
  font-size: 14px;
  font-weight: 500;
  background-image: url("../img/icon-email-black.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 0 0;
  margin-top: 10px;
  display: flex;
  align-items: center;
  color: #000000;
}
a.footer_mail:hover,
a.footer_phone:hover{
  text-decoration: none;
  color: #aaaaaa;
}

.copyright {
  text-align: center;
  margin-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  color: #aaa;
}
/*--- END ---*/

@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;
	}
	.place_img_wr_0 {
		height: 384px;
    }
	.place_img_wr_1 {
		height: 384px;
		overflow: hidden;
	}
	.place_img_wr_2 {
		height: 384px;
		width: 584px;
		overflow: hidden;
	}
	.place_img_wr_3 {
		height: 384px;
		width: 320px;
		padding: 0px;		
		margin-left: 20px;
	}
	.gal_img_item_wr {
		height: 184px;		
	}

@media screen and (max-width:910px) {
	li.item_8 {
		display: none;
	}
	li.sub_item_8 {
		display: block !important;
	}
	.gallery_arr_left {		
		margin-right: -60px;
		z-index: 10000;
	}
	.gallery_arr_right {		
		margin-left: -60px;
		z-index: 10000;
	}
	.gallery_full_img_wr {
		width: 97%;
	}
}

@media screen and (max-width:800px) {
	li.item_7 {
		display: none;
	}
	li.sub_item_7 {
		display: block !important;
	}
	.village_item {
		width: 45%;
	}
	.footer_wr {
		justify-content: flex-start;
	}
	.footer_item {
		width: 45%;
	}	
	.place_img_wr_0 {
		height: 304px;
    }
	.place_img_wr_1 {
		height: 304px;
		overflow: hidden;
	}
	.place_img_wr_2 {
		height: 304px;
		width: 584px;
		overflow: hidden;
	}
	.place_img_wr_3 {
		height: 304px;
		width: 320px;
		padding: 0px;		
		margin-left: 20px;
	}
	.gal_img_item_wr {
		height: 144px;		
	}
}

@media screen and (max-width:660px) {
	li.item_6 {
		display: none;
	}
	li.sub_item_6 {
		display: block !important;
	}
	.place_img_wr_0 {
		height: 250px;
    }
	.place_img_wr_1 {
		height: 250px;
		overflow: hidden;
	}
	.place_img_wr_2 {
		height: 250px;
		width: 584px;
		overflow: hidden;
	}
	.place_img_wr_3 {
		height: 250px;
		width: 320px;
		padding: 0px;		
		margin-left: 20px;
	}
	.gal_img_item_wr {
		height: 120px;		
	}
}

@media screen and (max-width:570px) {
	li.item_5 {
		display: none;
	}
	li.sub_item_5 {
		display: block !important;
	}
	.place_img_wr_3 {
		display: none;
	}
	.content_text_wr {
		margin: 30px 50px 40px 50px;
	}
	.content_header_wr {
		font-size: 22px;
	}
}

@media screen and (max-width:533px) {
	.dark {
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0, 0.5);
	}
	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;
	}
	/* .footer_wr {
		display: none;
	} */
	.content_wr {		
		margin-left: 0px;
		margin-right: 0px;		
	}
	
	.main_top_menu {		
		margin-right: 0px;
	}
	.main_top_menu li.more_menu .more_menu_wr {
		margin-right: 10px;
	}	
	.mob_description {
		display: block;
		font-family: Montserrat;
		font-size: 14px;
		line-height: 1.5em;
		margin-top: 10px;
	}
	.mob_read_more1 {
		/* border: 1px solid red; */
		display: flex;
		align-items: center;
		height: 48px;
		width: 100%;
		margin-top: 40px;
		cursor: pointer;
		text-decoration: none;
	}
	.mob_read_more1_bg {
		/* border: 1px solid yellow; */
		width: 48px;
		height: 48px;
		margin-left: 10px;
		background-image: url("../img/back-to-katalog.svg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
		transform: rotate(180deg);
	}
	.mob_read_more1_txt {
		display: flex;
		align-items: center;
		margin-left: 10px;
		color: #fff;
		text-decoration: none;		
	}
	.content_header_wr {
		margin-top: 30px;
	}
	.header_text_inner_wr {
		max-width: 330px;
		padding-left: 10px;
	}
	.village_item {
		width: 90%;
	}
	.footer_item {
		width: 90%;
	}
	.footer_wr {
		justify-content: center;
	}
	.back_2 {		
		padding-left: 20px;		
		margin-bottom: 0px;
	}
	.content_header_wr {
		padding: 0px 20px 0px 20px;		
	}
	.place_img_wr_0 {
        padding: 0px 20px 0px 20px;
	}
	.content_text_wr {
		margin: 30px 20px 40px 20px;
	}
}