@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;
}
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;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
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;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
/* ------- End normalize ------- */
/*--- Menu ---*/
.main_top_menu {
  display: flex;
  position: relative;
  padding: 0 !important;
  margin-right: 10px;
}
.main_top_menu li {
  display: block;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.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: 55px;
  border-bottom: 2px solid transparent;
  border-top: 4px solid transparent;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.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: 100%;
  width: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  flex-wrap: wrap;
}
.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;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 10px;
  margin-left: 20px;
  display: none;
}
#auth_block:hover {
  color: rgba(255,255,255, 1.0);
}
.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;
}
/*--- END Menu ---*/
/*--- Header ---*/
.header {
	height: 650px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.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_inner_wr {
	position: absolute;
	left: -3px;
	bottom: 120px;
  padding: 20px 40px;
  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, 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;
}
/*--- END Header---*/
/*--- Footer ---*/
.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;
  margin-bottom: 24px;
}
.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;
}
.splitter_1 {
  background-color: #A5ABB9;
  width: 95%;
  height: 2px;
  margin: 40px auto;
}
/*--- END Footer ---*/
@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: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;
	}
	.content_wr p {
		padding-left: 20px;
		padding-right: 20px;
	}
	.main_top_menu {		
		margin-right: 0;
	}
	.main_top_menu li.more_menu .more_menu_wr {
		margin-right: 10px;
	}
}
/*--- Gallery styles ---*/
.darkness {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  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: 0;
  bottom: 0;
  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: 0;
  left: 0;
  display: block;
}
.gallery_mini_item:hover .shade_1 {
  display: none;
}
.gallery_full_wr {
  width: 100%;
  height: 82%;
  position: absolute;
  top: 8%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery_full_img_wr {
  position: relative;
  border-radius: 4px;
  width: 86%;
  height: 100%;
}
.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;
}
@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: 0;
    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: 0;
    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: 0;
    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;
  }
  .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;
  }
  .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: 0;
  }
  .content_header_wr {
    padding: 0 20px 0 20px;
  }
  .place_img_wr_0 {
    padding: 0 20px 0 20px;
  }
  .content_text_wr {
    margin: 30px 20px 40px 20px;
  }
}
@media screen and (max-width:320px){
  .header_text_inner_wr {
     width: auto;
     min-width: auto;
  }
}
/*--- End Gallery styles ---*/
/* ------- Common css ------- */
body {
  background-color: #F7F7F7;
  font-family: Merriweather, sans-serif;
  font-weight: 400;
  color: #11141F;
}
h1 {
  font-size: 42px;
  line-height: 52px;
  letter-spacing: 1.26px;
  color: #ffffff;
}
h2 {
  font-size: 34px;
  line-height: 42px;
  letter-spacing: 1.02px;
}
h3 {
  font-size: 26px;
  line-height: 33px;
  letter-spacing: 0.78px;
}
h4 {
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 0.72px;
}
.mt_65{
  margin-top: 65px;
}
.mb_10{
  margin-bottom: 10px;
}
.mb_15{
  margin-bottom: 15px;
}
.mb_25{
  margin-bottom: 25px;
}
.mb_35{
  margin-bottom: 35px;
}
.mb_45{
  margin-bottom: 45px;
}
.mb_55{
  margin-bottom: 55px;
}
.mb_65{
  margin-bottom: 65px;
}
.mw-720 {
  max-width: 720px;
}
.block__title{
  margin-bottom: 38px;
}
.block__subtitle{
  margin-bottom: 47px;
}
.block__txt {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 25px;
  text-align: justify;
}
.block-title-h4 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 25px;
}
.color_gold{
  color: #BBA583;
}
.color_white{
  color: #ffffff;
}
.container{
  max-width: 1200px;
  margin: 0 auto;
}
.bread-crumbs{
  display: flex;
  align-items: center;
  margin: 35px 0 45px;
}
.bread-crumbs a{
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.6px;
  color: #A5ABB9;
  font-weight: 500;
  -webkit-transition: all 0.23s ease-out;
  -moz-transition: all 0.23s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.23s ease-out;
}
.bread-crumbs_arrow{
  width: 12px;
  height: 12px;
  border-left: 2px solid #A5ABB9;
  border-bottom: 2px solid #A5ABB9;
  transform: rotate(45deg);
  margin: 0 10px 0 5px;
  -webkit-transition: all 0.23s ease-out;
  -moz-transition: all 0.23s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.23s ease-out;
}
.bread-crumbs a:hover{
  color: #3E414F;
}
.block_col{
  display: flex;
  flex-direction: column;
}
.block_cont{
  flex: 1 0 auto;
}
.block_footer{
  flex-shrink: 0;
}
/* ------- End Common css ------- */
/*--- Content ---*/
.content {
  border: 1px solid #cccccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(100,100,100,0.5);
  max-width: 1200px;
  margin: 500px auto 20px auto;
  background-color: #ffffff;
  min-height: 590px;
  padding: 64px 76px;
  position: relative;
}
@media screen and (max-width:567px){
  .content {
    padding: 50px 20px;
  }
}
/*--- End Content ---*/
/*--- End Social-links ---*/
.social-links{
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-tech__icon{
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.social-links .block-duet__link{
  margin: 0 7px;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.social-links .btn-tech__icon,
.social-links .block-duet__link{
  width: 32px;
  height: 32px;
}
.icon-rura:hover{
  fill: #3e414f;
}
.social-links .block-duet__link:hover{
  transform: rotateY(180deg);
}
/*--- End Social-links ---*/
/*--- Slick slider default ---*/
.slider-default{
  position: relative;
}
.slider-default .slick-track{
  display: flex;
  margin: 0;
}
.slide{
  height: auto;
}
.slider-btn-prev,
.slider-btn-next{
  position: absolute;
  top: 50%;
  transform: translate(-50%);
  background: #fafafa;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  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;
}
.slider-btn-prev:hover,
.slider-btn-next:hover{
  background: #e8e8ea;
}
.slider-btn-prev{
  left: -20px;
}
.slider-btn-next{
  right: -55px;
}
.slider-btn-prev:before,
.slider-btn-next:before{
  position: absolute;
  content: '';
  top: 11px;
  width: 13px;
  height: 13px;
  border-right: 1px solid #11141F;
  border-bottom: 1px solid #11141F;
}
.slider-btn-prev:before{
  transform: rotate(135deg);
  left: 14px;
}
.slider-btn-next:before{
  transform: rotate(-45deg);
  right: 14px;
}
@media screen and (max-width:567px){
  .slider-btn-prev,
  .slider-btn-next {
    top: 98px;
  }
  .slider-btn-prev{
    left: 40px;
  }
  .slider-btn-next{
    right: 5px;
  }
}
/*--- End Slick slider default ---*/
/*--- Slick slider-photo ---*/
#slider-photo{
  margin: 0 -16px;
}
#slider-photo .slide{
  padding: 0 16px;
}
.slide-wr{
  background: #fafafa;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}
.slide-item__img {
  width: 100%;
  height: 176px;
  margin-bottom: 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

}
.slide__cont{
  height: 100%;
}
.slide__top-cont{
  padding: 0 16px;
}
.slider-item__title {
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 20px;
}
.slide__footer{
  padding: 0 16px 16px 16px;
}
.slider-line {
  width: 50%;
  height: 1px;
  background-color: #BBA583;
  margin: 0 0 18px 0;
}
.slide__data{
  display: flex;
}
.slider-item__date {
  font-family: Montserrat,sans-serif;
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  color: #A5ABB9;
  margin-right: 20px;
}
.slide__view{
  font-family: Montserrat,sans-serif;
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  color: #A5ABB9;
  padding-left: 32px;
  position: relative;
}
.slide__view:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: url(../img/icon-view-gray.svg) center / cover no-repeat;
}
/*--- End Slick slider-photo ---*/
/*--- Slick slider-video ---*/
#slider-video{
  margin: 0 -16px;
}
#slider-video .slide{
  padding: 0 16px;
}
.slide-wr{
  background: #fafafa;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  position: relative;
}
.slide-item__img {
  width: 100%;
  height: 176px;
  margin-bottom: 16px;
}
.video-time{
  font-family: Montserrat,sans-serif;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  color: #FFFFFF;
  background: #11141F;
  padding: 2px 5px;
  position: absolute;
  top: 148px;
  right: 25px;
}
.slide__cont{
  height: 100%;
}
.slide__top-cont{
  padding: 0 16px;
}
.slider-item__text {
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 16px;
}
.slide__footer{
  padding: 0 16px 16px 16px;
}
.slider-line {
  width: 50%;
  height: 1px;
  background-color: #BBA583;
  margin: 0 0 18px 0;
}
.slider-item__date {
  font-family: Montserrat,sans-serif;
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  color: #A5ABB9;
  margin-right: 20px;
}
/*--- End Slick slider-video ---*/
/*--- 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: none;
  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: none;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
}
@media screen and (max-width:480px) {
  .popup-video__wr {
    padding: 0 10px;
  }
}
/*--- End Popup-video ---*/