@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;
  position: relative;
  background-color: #fafafa;
}

.all_wr {	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;	
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
	background-size: cover;
	font-family: 'Open Sans', sans-serif;	
	background-position: center;
}

/*--- Стили хедера ---*/
.header {
	height: 650px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("../img/pervotsvety_01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.header_slideshow_wr {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-color: #ccc;
}

.header_slideshow_item {
	display: none;
	background-color: #aaa;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}

.header_slideshow_item img {
	position: absolute;
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	z-index: 0;
}

.header_slideshow_item_active {
	display: block;
}

.top_menu_wr {
	height: 56px;
	width: 100%;
	background-color: #11141F;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	text-align: center;
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.top_menu_wr_1 {
	position: relative;
	width: 1200px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}

.logo_wr {
	height: 56px;
	width: 310px;
	display: flex;
	align-items: center;
}

.logo_rura {
	display: block;
	padding: 0;
	margin: 0;
	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: 0;
	margin: 0;
	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_btn_wrap{
  position: absolute;
  right: 20px;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_text_btn_dots{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.header_text_btn_dot{
  width: 10px;
  height: 10px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
  display: none;
}
.header_text_btn_dot.active{
  border: 1px solid #BBA583;
  background: #BBA583;
}

.header_text_next,
.header_text_prev {
  /* border-left: 2px solid #A5ABB9;
  border-top: 2px solid #A5ABB9; */
  /* border: 1px solid white; */
  width: 25px;
  height: 25px;
  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;
}

.header_text_next:hover,
.header_text_prev:hover {
 /* border-color: #ffffff; */
}

.header_text_next {
	/* transform: rotate(135deg); */
	margin-left: 10px;
	background-image: url("../../../img/arrow-Right-black-1.svg");
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center;
}

.header_text_next:hover {
	/* background-image: url("../../../img/arrow-Right-black.svg"); */
}

.header_text_prev {
	/* transform: rotate(-45deg); */
	background-image: url("../../../img/arrow-left-black.svg");
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center;
}

/*--------------*/

.header_text_inner_wr {
	position: absolute;
	left: -3px;
	bottom: 120px;
  padding: 20px 40px;
  margin-top: 100px;
	color: #fff;
	background-color: rgba(0,0,0,0.5);
	max-width: 600px;
	width: 500px;
	min-width: 300px;
}

.slogan {
	font-family: Merriweather, sans-serif;
	font-size: 20px;
}

.splitter2 {
	background-color: #BBA583;
	height: 2px;
	width: 115px;
	margin-top: 20px;
  margin-bottom: 20px;
}

.slogan_desc {
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	margin-top: 10px;
	color: #A5ABB9;
	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;
}

.slogan_desc_stars img {
	position: relative;
	width: 16px;
	height: 16px;
}

/*--- END ---*/

/*--- Стили логотипа ---*/
.logo_wr_main {
	display: flex;
	position: absolute;
	top: 70px;
	z-index: 1;
	width: 100%;
	margin: 0 auto;
	justify-content: center;
}
.logo_wr_m {
	max-width: 1200px;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.logo_wr {
	display: block;
	position: relative;
	z-index: 1;
	width: 130px;
	height: 50px;
	top: 0;
	right: 20px;
	background-image: url("../img/logo-white.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	cursor: pointer;
}
/*--- END ---*/


/*--- Стили меню ---*/
.top_menu_bg {
	position: absolute;
	width: 100%;
	height: 56px;
	background-color: #11141F;
	top: 0;
	left: 0;
	z-index: 1;
}

.top_menu_wr {
	position: fixed;
	width: 100%;
	height: 56px;
	background-color: #11141F;
	top: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.back_to_catalog_btn {
	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, sans-serif;
	font-size: 13px;
	margin-left: 10px;
}

.main_top_menu {
	display: flex;
	position: relative;
	padding: 0 !important;
	margin-right: 10px;
}

.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-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;
	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: 0;
	top: 57px;
	z-index: 2;
	margin: 0;
	padding: 0;
}

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: 500px auto 20px auto;
	background-color: #ffffff;
	color: #555;
}

.content_header_wr {
	padding: 0 20px 0 50px;
	margin-top: 20px;
	margin-bottom: 20px;
	display: flex;	
	align-items: center;
	font-family: Merriweather, sans-serif;
	font-size: 34px;
	color: #11141F;
}

.block_pane_items{
  padding: 0 50px;
}

.villages_wr {
	min-height: 200px;
	display: flex;
	flex-wrap: wrap;
  margin: 0 -10px;
}

.village_item_wr{
  width: calc(100% / 3 - 20px);
  padding: 0 10px;
}

.village_item {
	border-radius: 4px;
	overflow: hidden;
	height: 370px;
	margin-bottom: 30px;
	cursor: pointer;
	position: relative;
}

.village_item_desc {
	background-color: rgba(0,0,0, 0.55);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	min-height: 20%;
}

.village_item_desc h4 {
	font-family: Merriweather, sans-serif;
	font-size: 22px;
	color: #fff;
	font-weight: 400;
	margin: 10px 20px 10px 20px;
}

.village_item_desc_img {
	height: 30px;
	color: #fff;
	font-family: Montserrat, sans-serif;
	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: 0 0;
}

.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;
	font-family: Merriweather, sans-serif;
	font-size: 22px;
	color: #BBA583;
  margin: 30px 0 0;
}

.village_item.village_bid .village_bid_wr p {
	font-family: Montserrat, sans-serif;
	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, sans-serif;
	font-size: 20px;
	font-weight: 500;
	border-radius: 4px;
	margin-top: 50px;
}

.village_item a {
	display: flex;
	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 {
	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 {
  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;
	}	
}

@media screen and (max-width:910px) {
	li.item_8 {
		display: none;
	}
	li.sub_item_8 {
		display: block !important;
	}
  .village_item_wr {
    width: calc(100% / 2 - 10px);
    padding: 0 5px;
  }
  .villages_wr {
    margin: 0 -5px;
  }
}

@media screen and (max-width:800px) {
	li.item_7 {
		display: none;
	}
	li.sub_item_7 {
		display: block !important;
	}
	.footer_wr {
		justify-content: flex-start;
	}
	.footer_item {
		width: 45%;
	}
}

@media screen and (max-width:660px) {
	li.item_6 {
		display: none;
	}
	li.sub_item_6 {
		display: block !important;
	}
	.header_text_btn_wrap {
        right: 30px;
	}
	.header_text_next {
		/* display: none; */
	}
}

@media screen and (max-width:570px) {
	li.item_5 {
		display: none;
	}
	li.sub_item_5 {
		display: block !important;
	}
}

@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;
	}
	.content_wr {
		margin-left: 0;
		margin-right: 0;
	}
	.main_top_menu {
		margin-right: 0;
	}
	.main_top_menu li.more_menu .more_menu_wr {
		margin-right: 10px;
	}
	.mob_description {
		display: block;
		font-family: Montserrat, sans-serif;
		font-size: 14px;
		line-height: 1.5em;
		margin-top: 10px;
	}
	.mob_read_more1 {
		display: flex;
		align-items: center;
		height: 48px;
		width: 100%;
		margin-top: 40px;
		cursor: pointer;
		text-decoration: none;
	}
	.mob_read_more1_bg {
		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;
		padding: 0 20px 0 20px;
		font-size: 22px;
	}
	.header_text_inner_wr {
		max-width: 330px;
		padding-left: 10px;
	}
  .block_pane_items {
    padding: 0 20px;
  }
  .village_item_wr {
    width: 100%;
  }
	.footer_item {
		width: 90%;
	}
	.footer_wr {
		justify-content: center;
	}
	.header_text_wr {
        overflow: hidden;
		margin-left: -1px;
		width: 90%;
    }
}
@media screen and (max-width:380px) {
	.header_text_btn_wrap {
        right: 60px;
	}
}