@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');*/

:root {
	
}

html,
body {
	font-family: 'Raleway';
	font-style: normal;
}

button {
	
}
button:hover {
	
}

a,
a:focus,
a:active,
a:hover {
	color: inherit !important;
	text-decoration: inherit !important;
	border-bottom: inherit;
}
img {
	max-width: 100%;
}


/*  Container  */

.container_md {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.content {
	background: #F6F6F6;
	min-height: 50vh;
}

@media(max-width: 1200px){
	.container_md {
		padding: 0 1rem;
	}
}


/*  Container end  */


/*  Header  */

.header {
	position: absolute;
	width: 100%;
	top: 0;
	font-weight: 700;
	font-size: 14px;
	line-height: 16px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	z-index: 9;
	border-top: solid 3px #BB9554;
}
.header_block {
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  	-webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_left {
	padding-top: 2rem;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  	-webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.header_right {
	padding-top: 2rem;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  	-webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header_left_link {
	margin-right: 2rem;
	cursor: pointer;
}
.header_left_link:last-child {
	margin-right: 0.5rem;
}
.header_left_link:hover .link {
	opacity: 0.5;
}
.header_left_select {
	position: relative;
}
.header_left_select:after {
	content: '';
    display: block;
    position: absolute;
    background: no-repeat url(/images/icons/down_arrow.png);
    width: 9px;
    height: 5px;
    right: -15px;
    top: 4px;
}
.header_left_select.active:after {
	transform: rotate(180deg);
}
.category .header_left_select:after {
	background: no-repeat url(/images/icons/down_arrow_black.png);
}
.header_left_select_block {
	position: absolute;
	min-width: 100%;
	width: auto;
	max-height: 0;
	padding: 0 0.5rem;
	overflow: hidden;
	transition-duration: 100ms;
	background: rgba(175, 175, 175, 1);
}
.category .header_left_select_block {
	background: #fff;
}
.header_left_select_block.active {
	padding: 1rem 0.5rem;
	max-height: 100vh;
	overflow: visible;
}
.header_left_select_line {
	position: relative;
	padding-left: 1rem;
	padding-top: 0.3rem;
	margin-bottom: 0.3rem;
	min-width: 120px;
}
.header_left_select_line a:hover {
	opacity: 0.5;
}
.header_left_select_line .header_left_select_line_absolute {
	position: absolute;
    left: 100%;
    top: 0;
    background: rgba(175, 175, 175, 1);
    max-width: 0;
    overflow: hidden;
}
.category .header_left_select_line_absolute {
	background: #fff;
}
.header_left_select_line:hover > .header_left_select_line_absolute {
	/* color: red; */
	max-width: none;
	overflow: visible;
	padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: 0rem;
}
.header_left_select_line_absolute.empty {
	padding: 0 !important;
}

.header_right_link_block {
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  	-webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.header_right_link {
	margin-right: 2rem;
	cursor: pointer;
}
.header_right_link:hover {
	opacity: 0.5;
}
.header_right_link:last-child {
	margin-right: 2rem;
}
.header_soc_block {
	margin-left: 3rem
}
.header_soc_block a {
	cursor: pointer;
	display: inline-block;
	margin-right: 0.5rem;
}
.header_soc_block a.instagram:hover svg path {
	fill: #0077B7;
}
.header_soc_block a.facebook:hover svg path {
	fill: #0266A9;
}
.header_lang_block {
	margin-left: 2rem;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  	-webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header_lang_block span {
	margin-right: 0.5rem;
}
.header_lang_block .nice-select {
	background: none;
	border: none;
	height: 20px;
    line-height: 20px;
    padding-left: 5px;
    padding-right: 20px;
}
.header_lang_block .nice-select:after {
	border: none;
	background: no-repeat url('/images/icons/down_arrow.png');
	width: 9px;
	height: 5px;
	transform: none;
}
.header_lang_block .nice-select.open:after {
	transform: rotate(180deg);
}
.header_lang_block .current {
	background: none;
	font-weight: 700;
}
.header_lang_block .nice-select .option {
	padding-left: 5px;
    padding-right: 20px;
    background: none;
}
.header_lang_block .nice-select .list {
	background: none;
	box-shadow: none;
}
.header_lang_block .nice-select .option:hover, 
.header_lang_block .nice-select .option.focus, 
.header_lang_block .nice-select .option.selected.focus {
	background: none;
	padding-left: 5px;
    padding-right: 20px;
}
.category.header {
	background: #fff;
	color: #000000;
	height: 123px;
}
.category .header_center {
	/* background: #901C31; */
	/* background: #111a20; */
	/* background: #121920; */
	background: #070e20;
}
.header_center img {
	height: auto;
}
.category svg path {
	fill: #000;
}
.category .header_lang_block .nice-select:after {
    background: no-repeat url(/images/icons/down_arrow_black.png);
}
.header_left,
.header_right {
	padding-top: 3.3rem;
	padding-bottom: 3.3rem;
}
.category .nice-select.open .list {
	background: #fff;
}
.links_mob {
	display: none;
}
.header_mob {
	display: none;
}
@media(max-width: 1200px){
	.header_center {
		max-width: 200px;
	}
}
@media(max-width: 1100px){
	.header_left_link,
	.header_right_link {
		margin-right: 1rem;
	}
	.header_soc_block {
    	margin-left: 2rem;
	}
	.header_center {
		max-width: 180px;
	}
}
@media(max-width: 1000px){
	.header {
		font-size: 12px;
    	line-height: 14px;
	}
	.header_soc_block svg {
		height: 14px;
	}
	.header_lang_block svg {
		height: 16px;
	}
	.header_lang_block .nice-select {
		height: 16px;
		font-size: 12px;
    	line-height: 16px;
	}
	.header_soc_block {
    	margin-left: 1rem;
	}
}
@media(max-width: 900px){
	.header_left {
		min-width: 167px;
	}
	.header_left,
	.header_right {
		padding-top: 2.7rem;
    	padding-bottom: 2.7rem;
		flex-direction: column;
	}
	.header_right_link_block {
		margin-bottom: 0.3rem;
	}
	.header_left_link {
		margin-bottom: 0.3rem;
	}
	.links_mob {
		display: block;
		margin-right: 2rem;
		cursor: pointer;
	}
	.links_mob:hover {
		opacity: 0.6;
	}
	.header_left_link {
		display: none;
	}
	.links {
		display: none;
	}
	.header_mob {
		display: block;
		position: absolute;
		top: 121px;
		width: 100%;
		max-width: 485px;
		height: auto;
		max-height: calc(100vh - 123px);
		overflow-y: scroll;
		padding: 2rem 1rem;
		transition-duration: 300ms;
		background: rgba(255,255,255,1);
		color: #000000;
	}
	.header_mob ul {
		padding: 0;
		margin: 0;
	}
	.header_mob ul li {
		display: block;
		padding: 0.5rem 1rem;
	}
	.header_mob ul li .link:hover {
		opacity: 0.5;
	}
	.category .header_mob {
		background: #fff;
	}
	.header_mob {
		left: -100%;
	}
	.header_mob.active {
		left: 0;
	}
	.header_left_select_block {
		position: relative;
	}
	.header_left_select_block.active {
		padding: 0 0.5rem;
	}
	
	.header_left_select:after {
		background: no-repeat url(/images/icons/down_arrow_black.png);
	}
}
@media(max-width: 600px){
	.header_left {
		min-width: 72px;
	}
	.header_mob {
		max-width: 380px;
	}
	.header_right_link_block {
		flex-direction: column;
		-webkit-box-align: end;
    	-ms-flex-align: end;
    	align-items: flex-end;
    	-webkit-box-pack: end;
    	-ms-flex-pack: end;
    	justify-content: flex-end;
	}
	.header_lang_block {
		margin-left: 0;
	}
	.header_lang_block .nice-select {
		padding-right: 15px;
	}
	.header_lang_block .nice-select:after {
		right: 7px;
	}
	.header_right {
		padding-top: 2.3rem;
	}
	.header_soc_block {
		margin-bottom: 0.3rem;
	}
	.header_right_link_block {
		margin-bottom: 0;
	}
	
}
@media(max-width: 375px){
	.header_center {
    	max-width: 155px;
	}
	.header_left,
	.header_right {
    	padding-top: 1.7rem;
	    padding-bottom: 1.7rem;
   }
   .header_right {
    	padding-top: 1.2rem;
	}
	.header,
	.category.header {
		height: 80px;
	}
	.header_mob {
		top: 78px;
	}
	.header_mob ul {
		
	}
	.category .header_mob ul {
		margin-top: 0;
	}
}
@media(max-width: 345px){
	.header_center {
    	max-width: 120px;
	}
}
/*  Header end  */



/*  Footer  */
.footer {
	
	font-family: 'Jost';
	font-style: normal;
	font-weight: 400;
	font-size: 120%;
	line-height: 20px;
	color: #FFFFFF;
}
.footer_top_block {
	background: #1F1F1F;
	padding-top: 4rem;
	padding-bottom: 5rem;
}
.footer_soc_block {
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  	-webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
	margin-bottom: 2rem;
}
.footer_soc_block a {
	cursor: pointer;
}
.footer_soc_block a:first-child {
	margin-right: 1rem;
}
.footer_soc_block a.instagram:hover svg path {
	fill: url(#paint0_linear_21_99);
}
.footer_soc_block a.facebook:hover svg path {
	fill: #388CC5;
}
.footer_phone_block {
	text-align: center;
	margin-bottom: 0.5rem;
}
.footer_phone_block2 {
	text-align: left;
	margin-bottom: 0.5rem;
   font-size:150%;
}
.footer_phone_block a {
	display: inline-block;
	margin-right: 1rem;
}
.footer_phone_block a:last-child {
	margin-right: 0;
}
.footer_mail {
	text-align: center;
	margin-bottom: 0.5rem;
}
.footer_address {
	text-align: center;
}
.footer_bottom_block {
	font-family: 'Montserrat';
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	color: #252525;
	padding-top: 3rem;
	padding-bottom: 2rem;
}
.footer_bottom_block a {
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  	-webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_bottom_block svg {
	margin-left: 1rem;
}
@media(max-width: 900px){
	.footer_top_block {
		padding-top: 3rem;
    	padding-bottom: 4rem;
	}
}
@media(max-width: 450px){
	.footer_phone_block a {
		display: block;
    	margin-right: 0;
	}
	.footer_bottom_block {
		padding-top: 2rem;
	}
}
@media(max-width: 300px){
	.footer_bottom_block {
		white-space: nowrap;
	}
	.footer_bottom_block svg {
		margin-left: 0.5rem;
	}
}
/*  Footer end  */

/*  Main  */

.main_slider_block {
	
}
.main_slider {
	min-height: 60vh;
}
.main_slide {
	width: 100%;
	min-height: 60vh; 
	position: relative;
	background: #1F1F1F;
}
.main_slide video,
.main_slide img {
	width: 100%;
	min-height: 60vh;
	height: auto;
	max-height: 1080px;
	object-fit: cover;
}
.main_slide_data {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	padding-top: 43rem;
}
.main_slide_header {
	font-weight: 600;
	font-size: 60px;
	line-height: 130%;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 0.5rem;
}
.main_slide_text {
	font-family: 'Jost';
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	color: #FFFFFF;
	max-width: 826px;
	margin-bottom: 3rem;
}
.main_slide_btn {
	font-family: 'Jost';
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.235em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
}
.main_slide_btn a:not([disabled]) {
	cursor: pointer;
}
.main_slide_btn svg {
	margin-left: 0.5rem;
}
.main_slide_btn a:not([disabled]):hover {
	color: rgba(255, 255, 255, 1);
	text-decoration: underline !important;
}
.main_slide_btn a:not([disabled]):hover svg path {
	fill-opacity: 1;
}

@media(max-width: 1700px){
	.main_slide_data {
		padding-top: 40rem;
	}
}
@media(max-width: 1600px){
	.main_slide_data {
		padding-top: 36rem;
	}
}
@media(max-width: 1500px){
	.main_slide_data {
		padding-top: 32rem;
	}
}
@media(max-width: 1400px){
	.main_slide_data {
		padding-top: 28rem;
	}
}
@media(max-width: 1300px){
	.main_slide_data {
		padding-top: 24rem;
	}
}
@media(max-width: 1100px){
	.main_slide_data {
		padding-top: 20rem;
	}
}
@media(max-width: 1000px){
	.main_slide_data {
		padding-top: 16rem;
	}
}
@media(max-width: 900px){
	.main_slide_data {
		padding-top: 15rem;
	}
	.main_slide video,
	.main_slide img {
		object-fit: cover;
	}
}
@media(max-width: 600px){
	.main_slide_data {
		padding-top: 16rem;
	}
	.main_slide_header {
		font-size: 45px;
	}
	.main_slide_text {
		font-size: 14px;
    	line-height: 22px;
    	margin-bottom: 2rem;
	}
}
@media(max-width: 450px){
	.main_slide_data {
		padding-top: 13rem;
	}
	.main_slide_header {
		font-size: 32px;
	}
	.main_slide_text {
		font-size: 13px;
    	line-height: 18px;
    	margin-bottom: 2rem;
	}
	.main_slider {
		min-height: 464px;
	}
	.main_slide {
		min-height: 464px;
	}
	.main_slide video,
	.main_slide img {
		min-height: 464px; 
	}
}
@media(max-width: 340px){
	.main_slide_header {
		font-size: 28px;
	}
}

/*  Main end  */

/*  Breadcrumbs  */

.breadcrumbs_block {
	position: relative;
	margin-top: 123px;
}
.breadcrumbs_img {
	
}
.breadcrumbs_img img {
	min-height: 240px;
}
.breadcrumbs_data {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.breadcrumbs_header {
	font-family: 'Jost';
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
}
.breadcrumbs_header ul {
	margin:0;
	padding:0;
	text-align: center;
    margin-top: 123px;
}
.breadcrumbs_header ul li {
	display: inline-block;
	padding: 0.5rem;
	cursor: pointer;
}
.breadcrumbs_header ul li:hover a {
	opacity: 0.7;
}
.breadcrumbs_title {
	margin-top: 1rem;
	font-weight: 600;
	font-size: 30px;
	line-height: 130%;
	text-transform: uppercase;
	color: #FFFFFF;
}

@media(max-width: 1700px){
	.breadcrumbs_title {
    	margin-top: 0rem;
    }
}
@media(max-width: 1600px){
	.breadcrumbs_title {
    	margin-top: -5.5rem;
    	max-width: 390px;
    }
    .breadcrumbs_img img {
		min-height: 200px;
	}
}
@media(max-width: 1400px){
	.breadcrumbs_img img {
		min-height: 175px;
	}
}
@media(max-width: 1300px){
	.breadcrumbs_title {
    	margin-top: -5.5rem;
    }
    .breadcrumbs_header ul li {
    	padding: 0;
    }
}
@media(max-width: 1200px){
	.breadcrumbs_header {
		margin-top: -1rem;
	}
	.breadcrumbs_img img {
		min-height: 150px;
	}
}
@media(max-width: 1100px){
	.breadcrumbs_header {
		margin-top: -2rem;
	}
	.breadcrumbs_title {
    	margin-top: -4.5rem;
    }
}
@media(max-width: 1000px){
	.breadcrumbs_title {
    	margin-top: -5rem;
    }
	.breadcrumbs_header {
		margin-top: -3rem;
	}
	.breadcrumbs_img img {
		min-height: 130px;
	}
}
@media(max-width: 800px){
	.breadcrumbs_title {
    	margin-top: -3.5rem;
    	max-width: 100%;
    	font-size: 22px;
    }
	.breadcrumbs_header {
		margin-top: -4rem;
	}
}
@media(max-width: 768px){
	.breadcrumbs_img img {
		min-height: 100px;
	}
}
@media(max-width: 700px){
	.breadcrumbs_title {
    	margin-top: -3.5rem;
    	font-size: 22px;
    }
	.breadcrumbs_header {
		margin-top: -4.5rem;
	}
}
@media(max-width: 600px){
	.breadcrumbs_title {
		display: none;
	}
	.breadcrumbs_header {
		margin-top: -6rem;
	}
	.breadcrumbs_img img {
		min-height: 75px;
	}
}
@media(max-width: 520px){
	.breadcrumbs_block {
		min-height: 66px;
	}
	.breadcrumbs_block img {
		min-height: 66px;
	}
}
@media(max-width: 375px){
	.breadcrumbs_block {
		min-height: 80px;
	}
	.breadcrumbs_block img {
		min-height: 80px;
	}
	.breadcrumbs_block {
    	margin-top: 80px;
	}
	.breadcrumbs_header {
		margin-top: -5rem;
		font-size: 12px;
    	line-height: 16px;
	}
}
@media(max-width: 340px){
	.breadcrumbs_header {
		font-size: 10px;
    	line-height: 14px;
	}
}
/*  Breadcrumbs end  */


/*  Category  */

.category_list {
	margin-top: 2rem;
	margin-bottom: 1rem;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	flex-wrap: wrap;
  	  -ms-flex-wrap: wrap;
  	-webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  	-webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.category_item {
	width: 285px;
	min-height: 265px;
	margin-bottom: 3rem;
}
.category_item img {
	width: 285px;
	height: 265px;
	width: 100%;
}
.category_header {
	max-height: 52px;
	overflow-y: hidden;
	font-family: 'Jost';
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	color: #383838;
	margin-top: 1rem;
	cursor: pointer;
}
.category_header:hover {
	opacity: 0.6;
}

.category_pagination {
	margin-top: 1rem;
	padding-bottom: 5rem;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  	-webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.category_prev,
.category_next {
	width: 45px;
	height: 45px;
	background: none;
	border: 1px solid #DDDDDD;
	cursor: pointer;
	
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  	-webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
	
}
.category_prev:hover,
.category_next:hover {
	border: 1px solid #000;
}

.category_prev:hover svg path,
.category_next:hover svg path {
	fill: #000;
}
.category_prev.disabled,
.category_next.disabled {
	opacity: 0;
	display: none;
	cursor: default;
}


.category_pagination ul {
	margin: 0;
	padding: 0;
}
.category_pagination ul li {
	display: inline-block;
	font-family: 'Jost';
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #383838;
	margin: 0 0.7rem;
	cursor: pointer;
}
.category_pagination ul li.active {
	color: #8A8A8A;
}
.category_pagination ul li:hover {
	opacity: 0.7;
}
.empty_lg {
	display: block;
}
.empty_md {
	display: none;
}
.empty_xs {
	display: none;
}

.category_text {
	margin-top: -3rem;
	font-family: 'Jost';
	padding-bottom: 6rem;
}
@media(max-width: 1171px){
	.empty_lg {
		display: none;
	}
	.empty_md {
		display: block;
	}
	.empty_xs {
		display: none;
	}
}
@media(max-width: 886px){
	.empty_lg {
		display: none;
	}
	.empty_md {
		display: none;
	}
	.empty_xs {
		display: block;
	}
}
@media(max-width: 601px){
	.category_list {
		-webkit-box-pack: center;
    	-ms-flex-pack: center;
    	justify-content: center;
	}
	.empty_lg,
	.empty_md,
	.empty_xs {
		display: none;
	}
}
/*  Category end  */


/*  Details  */

.details_block {
	margin-top: 2rem;
	padding-bottom: 5rem;
	width: 100%;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  	-webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.details_left_block {
	width: 40%;
}
.details_slider {
	width: 100%;
	max-width: 488px;
	margin-bottom: 0.5rem;
}
.details_slide {
	width: 100%;
}
.details_slide img {
	width: 100%;
}
.details_nav_slider {
	width: 100%;
	max-width: 488px;
}
.details_nav_slide {
	width: 118px;
	margin-right: 6px;
}
.details_nav_slider .slick-track {
	margin-left: 0;
}

.details_right_block {
	width: 60%;
	padding-left: 4.5rem;
}
.details_right_header {
	font-family: 'Jost';
	font-weight: 600;
	font-size: 30px;
	line-height: 140%;
	color: #383838;
	margin-top: 3rem;
	margin-bottom: 2rem;
}
.details_right_text_header {
	font-family: 'Jost';
	font-weight: 500;
	font-size: 18px;
	line-height: 200%;
	color: #383838;
	margin-bottom: 0.5rem;
}
.details_right_text {
	font-family: 'Jost';
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	color: #383838;
	margin-bottom: 0.5rem;
}
.details_right_line {
	font-family: 'Jost';
	font-weight: 300;
	font-size: 16px;
	line-height: 200%;
	color: #383838;
}
.details_video_block {
	margin-top: 1.5rem;
	width: 100%;
}
.details_video_block video,
.details_video_block iframe {
	width: 100%;
}
@media(max-width: 1200px){
	.details_block {
		flex-direction: column;
		-webkit-box-align: center;
    	-ms-flex-align: center;
    	align-items: center;
	}
	.details_right_block {
		padding-left: 0;
	}
}
@media(max-width: 1000px){
	.details_right_block,
	.details_left_block {
		width: 100%;
	}
	.details_right_block {
		max-width: 488px;
	}
	.details_nav_slider,
	.details_slider {
		margin: 0 auto;
	}
	.details_nav_slider {
		margin-top: 0.4rem;
	}
}
@media(max-width: 375px){
	.details_right_header {
		font-size: 24px;
		margin-bottom: 1rem;
	}
	.details_video_block video,
	.details_video_block iframe {
		height: 250px;
	}
}
/*  Details end  */



.cookies_block {
	position: fixed;
	bottom: -2rem;
	width: 690px;
	height: 333px;
	
	background: #F8F7F4;
	border-radius: 10px;
	left: calc(64% - 345px);
	right: calc(36% - 345px);
	padding: 3rem 1.8rem;
	z-index: 13;
}

.cookies_header {
	position: relative;
	font-family: 'Jost';
	font-weight: 500;
	font-size: 20px;
	line-height: 150.4%;
	color: #434242;
	margin-bottom: 0.7rem;
}
.cookies_close {
	width: 19px;
	height: 19px;
	position: absolute;
	right: -0.5rem;
    top: -2rem;
    cursor: pointer;
}
.cookies_close:hover {
	opacity: 0.6;
}
.cookies_text {
	font-family: 'Jost';
	font-weight: 300;
	font-size: 13px;
	line-height: 150%;
	color: #434242;
	margin-bottom: 1.5rem;
}
.cookies_btn_block {
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  	-webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.cookies_btn_block button {
	width: 192px;
	height: 44px;
	border: none;
	border-radius: 0;
	font-family: 'Jost';
	font-weight: 600;
	font-size: 16px;
	line-height: 23px;
	cursor: pointer;
}
.cookies_btn_block button.yes {
	background: #901C31;
	color: #fff;
}
.cookies_btn_block button.yes:hover {
	color: #C1BBAC;
}
.cookies_btn_block button.no {
	background: none;
	color: #901C31;
}
.cookies_btn_block button.no:hover {
	color: #000;
}
@media(max-width: 1000px){
	.cookies_block {
		right: 0;
		left: auto;
	}
}
@media(max-width: 690px){
	.cookies_block {
		width: 100%;
		left: 0;
		bottom: -1px;
	}
}
@media(max-width: 450px){
	.cookies_block {
		height: auto;
		padding: 2rem 0.8rem 1rem 0.8rem;
	}
	.cookies_close {
    	right: 0rem;
    	top: -1rem;
	}
	.cookies_btn_block {
		flex-direction: column;
	}
}

.scroll_up {
	position: fixed;
	right: 78px;
	bottom: 3rem;
	cursor: pointer;
        display: none;
}


.about_text {
	padding-top: 3rem;
	min-height: 45vh;
	padding-bottom: 6rem;
}

.contacts__block {
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  	-webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}


.contacts_left {
	max-width: 600px;
}
.contacts_right {
	padding-top: 3rem;
	width: 100%;
}

.contacts_form {
	width: 100%;
    padding: 10px 300px 0px 300px;

}
.contacts_form2 {
	width: 100%;

}
.contacts_form_title {
	font-family: 'Jost';
    font-weight: 600;
    font-size: 30px;
    line-height: 140%;
    color: #383838;
    margin-bottom: 2rem;
}
.contacts_form_title2 {
	font-family: 'Jost';
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem; 
    margin-top:20px ;
}
.contacts_form_title_footer {
	font-family: 'Jost';
    font-weight: 600;
    font-size: 30px;
    line-height: 140%;
    color: #fff;
    margin-bottom: 2rem;
}

.contacts_form_input {
	margin-top: 1rem;
}

.contacts_form_input label {
	font-family: 'Jost';
    font-weight: 500;
    font-size: 16px;
    line-height: 200%;
    color: #383838;
    margin-bottom: 0.5rem;
}
.contacts_form_input label span {
	color: red;
}
.contacts_form_input textarea,
.contacts_form_input input {
	width: 100%;
	height: 42px;
	border-radius: 4px;
	padding: 5px 10px;
	border: solid thin rgba(200,200,200,1);
	box-shadow: inset 0 0 3px 0px #efefef;
	resize: none;
}
.contacts_form_input textarea {
	height: 120px;
}

.contacts_from_btn {
	margin-top: 1.5rem;
    margin-bottom: 15px;

}
.contacts_from_btn button {
	background: #1F1F1F;
	color: #fff;
	border-radius: 7px;
	height: 52px;
	width: 259px;
	cursor: pointer;
	
	font-weight: 700;
    font-size: 24px;
    line-height: 130%;
	text-transform: uppercase;
	box-shadow: 0 2px 4px 1px rgba(100,100,100,0.4);
}
.contacts_from_btn button:hover {
	box-shadow: none;
}

@media(max-width: 1050px){
	.contacts__block {
		flex-direction: column;
		-webkit-box-align: center;
      	-ms-flex-align: center;
        align-items: center;
	}
	.contacts_left {
		width: 100%;
		max-width: 100%;
	}
	.contacts_right {
		margin-top: -2rem;
		padding-top: 0rem;
		padding-bottom: 7rem;
	}
	.contacts_from_btn {
		text-align: center;
	}


@media only screen and (max-width: 600px) {
img {
	max-width: 100%;
    max-height:300px;
}

@media only screen and (max-width: 600px) {
  body {
    .contacts_form {
    width: 100%;
    padding: 0px 0px 0px 0px!important;

}
.contacts_form2 {
	width: 100%;

}
}

