@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/************************* reset *************************/
html{
	height: 100%;
	margin: 0;
	padding: 0;width: 100%;
	background: #fff;
}
body{
	height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	color: #686469;
	font-size: 18px;
	font-weight: 400;
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	line-height: 22px;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
h1, h2, h3, h4, p, ul, li, a, span, div, input, textarea, select, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}
img {
	margin: 0;
	padding: 0;
	border-style: none;
	vertical-align: bottom;
}
input, textarea, select, button {
	font-weight: 400;
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	vertical-align:middle;
	border: 0;
	outline: 0;
	background: none;
}
a:hover {text-decoration: none;}
ul li {list-style: none;}
/************************* common styles *************************/
.tabs__content {
  display: none; /* по умолчанию прячем все блоки */
}
.tabs__content.active {
  display: block; /* по умолчанию показываем нужный блок */
}
#button-up{
  display: none;	
  opacity:0.7;
  filter:alpha(opacity=50);
  position: fixed;
  right: 5%;
  bottom: 35px;			
  transition: .3s;
  z-index: 100;
}
 
#button-up:hover{
  cursor: pointer;
  opacity: 1;
  filter:alpha(opacity=100);
  transition: .3s;
}

.popup-thanks {
	padding: 30px 0 30px;
	text-align: center;
}
.popup-thanks-title {
	margin: 0 0 28px;
	font-weight: 600;
	font-size: 35px;
	line-height: 39px;
}
.holder {
	padding: 0 25px;
}
.ico {
	width: 27px;
}

@media (min-width: 375px){
	.holder {
		padding: 0 30px;
	}
}
@media (min-width: 576px){
	.holder {
		max-width: 540px;
		margin: auto;
		padding: 0;
	}
}
@media (min-width: 768px){
	.holder {
		max-width: 720px;	
	}
}
@media (min-width: 1024px) {
	.holder {
		max-width: 960px;
	}
}
@media (min-width: 1300px){
	.holder {
		max-width: 1200px;
	}
}
@media (min-width: 1440px){
	.holder {
		max-width: 1300px;
	}
}
.holder:after {
	display: block;
	content: '';
	clear: both;
}
h1 {
	margin: 0 0 30px;
	font-weight: 600;
	font-size: 26px;
	line-height: 36px;
	color: #261421;
}
h2 {
	margin: 0 0 30px;
	font-weight: 600;
	font-size: 26px;
	line-height: 36px;
	color: #261421;
}
.title {
	display: block;
	margin: 0 0 80px;
	font-weight: normal;
	font-size: 64px;
	line-height: 100.47%;
	color: #272228;
}
.title:after {
	display: block;
	content: '';
	width: 120px;
	height: 4px;
	margin: 4px 0 0;
	background: #C39854;
}
.title-min {
	display: block;
	margin: 0 0 80px;
	font-weight: normal;
	font-size: 48px;
	line-height: 100.47%;
	color: #272228;
}
.title-min:after {
	display: block;
	content: '';
	width: 120px;
	height: 4px;
	margin: 4px 0 0;
	background: #C39854;
}
a {transition: all .3s linear;}
p {margin: 0 0 22px;}
p a, .article li a {color: #C39854;}
.center {text-align: center;}
.upper {text-transform: uppercase;}
.button-holder {text-align: center;}
.button {
	position: relative;
	overflow: hidden;
	display: inline-block;
	padding: 15px 54px 14px;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	background: #C39854;
	border-radius: 1px;
	transition: all .3s linear;
	transform: translateZ(0);
}
.button:hover {
	background: #aa7e39;
}
.button-arrow span {
	position: relative;
	padding: 0 71px 0 0;
}
.button-arrow span:after {
	position: absolute;
	top: 2px;
	right: 0;
	content: '';
	width: 55px;
	height: 16px;
	background: url(../images/arrow-button.svg) 100% 50% no-repeat;
}
.button-call span {
	position: relative;
	padding: 0 31px 0 0;
}
.button-call span:after {
	position: absolute;
	top: 2px;
	right: 0;
	content: '';
	width: 55px;
	height: 16px;
	background: url(../images/call-icon.svg) 100% 50% no-repeat;
}
.button:after {
	content: '';
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, .1)), to(rgba(255, 255, 255, .4)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, .1), rgba(255, 255, 255, .4));
    background: -o-linear-gradient(left, rgba(255, 255, 255, .1), rgba(255, 255, 255, .4));
    background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .4));
    width: 45px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 30px;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
	-webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-webkit-keyframes slideme { 0% { left: -30px; margin-left: 0px; }
 30% { left: 110%; margin-left: 80px; }
 100% { left: 110%; margin-left: 80px; } 
}
@keyframes slideme { 0% { left: -30px; margin-left: 0px; }
 30% { left: 110%; margin-left: 80px; }
 100% { left: 110%; margin-left: 80px; } 
}
/************************* form-block *************************/
.input {
	display: block;
	width: 100%;
	height: 48px;
	padding: 0 16px;
	margin: 0 0 32px;
	font-size: 16px;
	color: #686469;
	background: #FFFFFF;
	box-shadow: inset 4px 4px 10px rgba(169, 167, 169, 0.4);
	border-radius: 1px;
}
.inputs {
	display: block;
	width: 85%;
	height: 48px;
	padding: 0 16px;
	margin: 0 0 32px;
	font-size: 16px;
	color: #686469;
	background: #FFFFFF;
	box-shadow: inset 4px 4px 10px rgba(169, 167, 169, 0.4);
	border-radius: 1px;
}
.date-picker-wrapper .footer {background: none;}
.textarea {
	display: block;
	width: 100%;
	height: 110px;
	padding: 17px 16px;
	margin: 0 0 32px;
	font-size: 16px;
	resize: vertical;
	color: #686469;
	background: #FFFFFF;
	box-shadow: inset 4px 4px 10px rgba(169, 167, 169, 0.4);
	border-radius: 1px;
}
.input-date {
	background: #FFFFFF url(../images/date-icon.svg) 90% 50% no-repeat;
	background-position: right 16px center;
}
.input-name {
	padding-left: 50px;
	background: #FFFFFF url(../images/input-name.svg) 16px 10px no-repeat;
}
.input-text {
	padding-left: 50px;
	background: #FFFFFF url(../images/input-text.svg) 16px 10px no-repeat;
}
::-webkit-input-placeholder {color: #686469;}
:-moz-placeholder {color: #686469; opacity: 1;}
::-moz-placeholder {color: #686469; opacity: 1;}
:-ms-input-placeholder {color: #686469;}
.form-button {padding: 16px 0 0;}
.label {
	display: block;
	margin: 0 0 8px;
	font-weight: 500;
	font-size: 12px;
	line-height: 100.47%;
	text-transform: uppercase;
}
.label-and {
    display: block;
    margin: 10px 0 10px;
    font-weight: 500;
    font-size: 12px;
    line-height: 100.47%;
    text-transform: uppercase;
}
/************************* wrapper *************************/
#wrapper {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding: 80px 0 0;
}
/************************* header *************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: 80px;
	padding: 12px 0 0;
	box-sizing: border-box;
	background: #fff;
	box-shadow: 0px 4px 14px rgba(39, 34, 40, 0.2);
}
.header-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.header-right {
	position: relative;
	padding: 0 125px 0 0;
}
.header-phone {
	color: #686469;
	text-decoration: none;
}

.header-logo a{
	display: block;
}

.header-logo img, .header-logo object {width: 260px;height: auto;pointer-events: none;}

.phone-wrap {
	position: relative;
}
.phone-tooltip {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 10;
	width: 400px;
	padding: 24px 24px 32px;
	background: #FFFFFF;
	box-shadow: 8px 8px 34px rgba(39, 34, 40, 0.2);
	transition: all 0.3s linear;
	opacity: 0;
	visibility: hidden;
	transform: translateY(5px);
}
.phone-wrap:hover .phone-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.phone-tooltip.hide,
.phone-tooltip.hide:hover {
	opacity: 0;
	visibility: hidden;
	transform: translateY(5px);
}
.tooltip-close {
	position: absolute;
	top: 24px;
	right: 24px;
}
.tooltip-close img {display: block;}
.tooltip-title {
	margin: 0 0 16px;
	font-weight: 300;
	font-size: 24px;
	line-height: 100.47%;
	color: #272228;
}
.tooltip-title:after {
	display: block;
	content: '';
	width: 48px;
	height: 2px;
	margin: 4px 0 0;
	background: #C39854;
}
.tooltip-text {
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
}

.phones-mobile{
	display: none;
}

.header-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: flex-start;
	padding: 2px 0 0;
}
.header-link {
	padding: 6px 17px 0 0;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
}
.header-link a {
	color: #C39854;
}
.header-webs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.header-webs a {
	margin: 0 8px 0 0;
}
.header-webs a:last-child {margin: 0;}
/************************* header-nav *************************/
.header-nav {
	position: absolute;
	top: -12px;
	right: 0;
	z-index: 200;
	width: 370px;
	padding: 120px 20px 60px 48px;
	background: #fff;
	transition: all 0.3s linear;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
}
.header-nav.vis {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
.header-nav-list li {
	margin: 0 0 20px;
	/*margin: 0 0 40px;*/
	font-weight: 300;
	font-size: 18px;
	line-height: 22px;
}
.header-nav-list li:last-child {margin: 0;}
.header-nav-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	color: #272228;
	text-decoration: none;
}
.header-nav-item:hover,
.header-nav-item.active {
	color: #C39854;
	font-weight: 600;
}
.header-nav-icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 23px;
	height: 23px;
	margin: 0 17px 0 0;
}
.header-nav-icon path {
	stroke: #272228;
	transition: all 0.3s linear;
}
.header-nav-item:hover .header-nav-icon path,
.header-nav-item.active .header-nav-icon path {
	stroke: #C39854;
	stroke-width: 1.5;
}
.header-nav-text {
	position: relative;
	padding: 2px 25px 0 0;
}
.header-nav-text:after {
	position: absolute;
	top: 5px;
	right: 0;
	width: 9px;
	height: 14px;
	content: '';
	background: url(../images/nav-arrow.svg) 50% 50% no-repeat;
	background-size: contain;
	opacity: 0;
	transition: all 0.3s linear;
}
.header-nav-item:hover .header-nav-text:after {opacity: 1;}
.mob-nav-icon {
	position: absolute;
	top: 18px;
	right: 0px;
	z-index: 250;
	padding: 0 0 10px 33px;
	color: #C39854;
	text-decoration: none;
}
.mob-nav-icon.active {
    right: 224px;
	padding: 0 0 10px 40px;
}
.mob-nav-block {
    position: absolute;
	top: 3px;
	left: 0;
	display: block;
    width: 24px;
    height: 2px;
    margin: 6px 0 0;
	background: #C39854;
	transition: all .3s linear;
}
.mob-nav-block:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #C39854;
	transition: all .3s linear;
}
.mob-nav-block:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #C39854;
	transition: all .3s linear;
}
.mob-nav-icon.active .mob-nav-block {
    background: none;
}
.mob-nav-icon.active .mob-nav-block:before {
    top: 0;
    transform: rotate(45deg);
}
.mob-nav-icon.active .mob-nav-block:after {
    top: 0;
    transform: rotate(-45deg);
}
.mob-nav-text {
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	text-transform: uppercase;
}
/************************* main page *************************/
/************************* banner *************************/
.banner {
	position: relative;
	overflow: hidden;
}
.banner-slide {
	position: relative;
}
.banner .slick-arrow {
	width: 40px;
    height: 40px;
    margin-top: -20px;
    background: rgba(255, 255, 255, 0.3) url(../images/slider-white.svg) 55% 50% no-repeat;
	backdrop-filter: blur(4px);
    border-radius: 50%;
}
.banner .slick-prev {
	left: 50%;
	margin-left: -700px;
}
.banner .slick-next {
	left: 50%;
	right: auto;
	margin-left: 660px;
}
.banner img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner-block {
	position: relative;
	z-index: 20;
	min-height: 480px;
	/*min-height: 640px;*/
	padding: 90px 0 100px;
	/*padding: 160px 0 100px;*/
	color: #fff;
}
.banner-title {
	display: block;
	margin: 0 0 16px;
	font-weight: normal;
	font-size: 72px;
	line-height: 87px;
	max-width: 70%;
}
.banner-title:after {
	display: block;
	content: '';
	width: 120px;
	height: 4px;
	margin: 4px 0 0;
	background: #C39854;
}
.banner-text {
	margin: 0 0 72px;
	font-size: 24px;
	line-height: 29px;
}
.banner-car {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 440px;
}
.banner-car-col {
	width: 48%;
}
.banner-car-item {
	font-size: 24px;
	line-height: 29px;
}
.banner-car-item a {
	position: relative;
	padding: 0 16px 0 0;
	color: #FFFFFF;
	text-decoration: none;
}
.banner-car-item a:after {
	position: absolute;
	top: 9px;
	right: 0;
	content: '';
	width: 8px;
	height: 14px;
	background: url(../images/right-white.svg) 50% 50% no-repeat;
	transition: all 0.3s linear;
}
.banner-car-item a:hover {color: #c39854;}
.banner-car-item a:hover:after {
	background: url(../images/right-gold.svg) 50% 50% no-repeat;
}
/************************* car-section *************************/
.car-section {
	padding: 1px 0 0;
}
.filter {
	padding: 0 0 20px;
	/*padding: 0 0 80px;*/
}
.filter-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: flex-start;
	position: relative;
	margin: -23px 0 24px;
	padding: 32px 64px;
	background: linear-gradient(0deg, #FFFFFF, #FFFFFF);
	box-shadow: 8px 8px 24px rgba(39, 34, 40, 0.1);
}
.filter-title {
	width: 270px;
	min-width: 270px;
	padding: 0 0 0 8px;
	font-weight: 300;
	font-size: 36px;
	line-height: 100.47%;
	color: #272228;
	border-left: 4px solid #c39854;
}
.filter-form {
	flex: 1;
	padding: 5px 0 0;
}
.filter-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	/*align-items: flex-end;*/
}
.filter-item {
	width: 224px;
}
.filter-item .input {margin: 0;}
.filter-item .inputs {margin: 0; float:left;}
.filter-item .button {
	width: 100%;
	padding: 15px 10px 14px;
}

.mob-filter-call-view {
    display: none;
}

.car-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -24px;
}
.car-col {
	width: 33.33%;
	padding: 0 15px;
	/*padding: 0 24px;*/
	margin: 0 0 48px;
}
.car-item {
	position: relative;
	height: 100%;
	padding: 30px 40px 50px;
	background: #FFFFFF;
	box-shadow: 8px 8px 34px rgba(39, 34, 40, 0.1);
	transition: all 0.3s linear;
}
.car-item:hover {
	box-shadow: 8px 8px 34px rgba(39, 34, 40, 0.2);
}
.car-3d {
	position: absolute;
	top: 24px;
	right: 24px;
	text-decoration: none;
	color: #6a666b;
}
.car-3d img {
	display: block;
	transition: all 0.3s linear;
}
.car-3d span {
	display: block;
    position: relative;
    top: 5px;
    font-weight: 500;
    font-size: 12px;
    line-height: 100.47%;
    /*transition: all 0.1s linear;*/
    /* text-transform: uppercase;*/
}
.car-3d:hover {
	color: #C39854;
	text-shadow: 1px 1px 1px #6a666b;
}
.car-3d:after {
	position: absolute;
	top: 0;
	left: -4px;
	content: '';
	width: 48px;
	height: 43px;
	background: url(../images/3d-hover.svg) 0 0 no-repeat;
	transition: all 0.3s linear;
	opacity: 0;
}
.car-3d:hover img {opacity: 0;}
.car-3d:hover:after {opacity: 1;}
.car-img {
	margin: 0 -10px 25px;
	height: 215px;
	line-height: 215px;
	text-align: center;
}
.car-img img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
}
.car-name {
	margin: 0 0 25px;
	font-size: 16px;
	line-height: 22px;
	color: #272228;
}
.car-name b {
	font-weight: 500;
	font-size: 28px;
}
.car-name span {
	font-style: italic;
}
.car-name i {
	font-size: 10px;
}
.car-stat {
	padding: 0 0 22px;
}
.car-stat-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	padding: 0 0 4px;
}
.car-stat-name {
	max-width: 50%;
	font-size: 14px;
	line-height: 19px;
}
.car-stat-value {
	max-width: 50%;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	text-align: right;
}
.car-stat-value span {
	font-size:12px;
}
.car-item .more-link {
	padding: 0 35px 0 0;
	font-size: 14px;
	line-height: 17px;
}
.car-item .more-link:after {
	top: -2px;
	width: 20px;
	height: 20px;
	background: #C39854 url(../images/arrow-white.svg) 55% 50% no-repeat;
	background-size: 7px;
}
.help {
	height: 100%;
	background: url(../images/media/help1.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.help-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 40px 40px 60px;
	background: linear-gradient(145.78deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
	backdrop-filter: blur(10px);
}
.help-title {
	padding: 0 0 0 14px;
	margin: 0 0 40px;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	color: #272228;
	border-left: 4px solid #C39854;
}
.help-text {
	margin: 0 0 25px;
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
}
.need-help {
	margin-top:60px;
	/*bottom: 60px;*/
    /*position: absolute;*/
}
.help-wrap .button {
	margin: auto 0 0;
	padding: 15px 15px 14px;
	max-width: 240px;
}
/************************* about *************************/
.about {
	padding: 0 0 500px;
	background: url(../images/media/about-bg.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.about-wrap {
	padding: 100px 0 100px;
	background: linear-gradient(180deg, #FFFFFF 29.17%, rgba(255, 255, 255, 0) 100%);
}
.about-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.about-side {
	width: 450px;
	min-width: 450px;
	padding: 0 80px 0 0;
}
.about-side .title {
	margin: 0 0 37px;
}
.about-subtitle {
	max-width: 300px;
	font-weight: 300;
	font-size: 24px;
	line-height: 160%;
}
.about-content {
	flex: 1;
	line-height: 150%;
}
/************************* main-section *************************/
.main-section {
	padding: 140px 0 0;
}
/************************* why *************************/
.why {
	padding: 0 0 103px;
}
.why-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}
.why-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	width: 48%;
	margin: 0 0 57px;
}
.why-icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	min-width: 80px;
	margin: 0 32px 0 0;
	background: linear-gradient(135deg, #C39854 0%, #E4B364 100%);
	box-shadow: 8px 14px 14px rgba(39, 34, 40, 0.1);
	border-radius: 50%;
}
.why-text {
	max-width: 400px;
}
/************************* main-action *************************/
.main-action {
	padding: 80px 0 180px;
	background: url(../images/media/main-action-bg.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.main-action .ask-block {
	max-width: none;
}
/************************* review *************************/
.review {
	padding: 0 0 120px;
}
.review-slider {
	margin: -40px -24px 0;
}
.review-slide {
	padding: 40px 24px;
}
.review-item {
	height: 100%;
	padding: 40px 40px 55px;
	background: #FFFFFF;
	box-shadow: 4px 4px 20px rgba(39, 34, 40, 0.1);
}
.review-date {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 19px;
}
.review-author {
	margin: 0 0 24px;
	font-size: 24px;
	line-height: 29px;
	color: #272228;
}
.review-text {
	padding: 0 0 16px;
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
	color: #A5A1A5;
}
.review-text p {margin: 0 0 17px;}
.review-item .more-link {
	padding: 0 35px 0 0;
	font-size: 14px;
	line-height: 17px;
}
.review-item .more-link:after {
	top: -2px;
	width: 20px;
	height: 20px;
	background: #C39854 url(../images/arrow-white.svg) 55% 50% no-repeat;
	background-size: 7px;
}
.more-link.no-arrow {padding: 0;}
.more-link.no-arrow:after {display: none;}
.more-link.no-arrow:hover {text-decoration: none;}
.slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 10;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	font-size: 0;
	cursor: pointer;
	background: url(../images/slider-arrow.svg) 50% 50% no-repeat;
	border-radius: 4px;
}
.slick-prev {
	left: -10px;
	transform: scale(-1, 1);
}
.slick-next {
	right: -10px;
}
/************************* promo *************************/
.promo {
	padding: 0;
	/*padding: 0 0 128px;*/
}
.promo-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 0 70px;
}
.promo-tops {
	padding: 0 0 40px;
}
.promo-top .title {
    margin: 0 70px 10px 0;
}
.promo-webs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 16px 0 0;
}
.promo-webs .webs-item {
    margin: 0 32px 20px 0;
	background: #C39854;
}
.promo-webs .webs-item:hover {
	transform: none;
}
.promo-webs .webs-items {
    margin: 0 32px 20px 0;
	background: #C39854;
}
.promo-webs .webs-items:hover {
	transform: none;
}
.promo-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}
.promo-content {
	width: 43%;
	/*width: 66%;*/
}
.promo-side {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	width: 26%;
	/*width: 30%;*/
}
.promo-block .mores {
	margin: 16px 0 30px;
	/*margin: 0 0 75px;*/
}
.promo-block .more {
	margin: 100px 0 25px;
	/*margin: 0 0 40px;*/
}
.promo-block .more-link {
	padding: 0 36px 0 0;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.1em;
}
.promo-block .more-link:after {
	top: -1px;
	width: 20px;
	height: 20px;
	background: #C39854 url(../images/arrow-white.svg) 55% 50% no-repeat;
	background-size: 6px;
}
.more-link:hover {text-decoration: underline;}

.button-moreall{
	margin-bottom: 30px;
	margin-top: 10px;
}

.button-moreall a.more-link:after{
	background: #C39854 url(../images/plus.svg) 50% 50% no-repeat;
}

.promo-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -16px;
}
.promo-col {
	width: 49%;
	/*width: 33.33%;*/
	padding: 0 16px;
	margin: 0 0 32px;
}
.promo-item {
	position: relative;
	overflow: hidden;
	display: block;
	color: #fff;
	text-decoration: none;
}
.promo-item:hover {
	box-shadow: -6px 1px 14px rgba(39, 34, 40, 0.2);
}
.promo-item > img {
	width: 100%;
	height: 265px;
    object-fit: cover;
}
.promo-hidden {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 30px;
	background: rgba(0, 0, 0, 0.8);
	opacity: 0;
	transition: all 0.3s linear;
}
.promo-item:hover .promo-hidden {opacity: 1;}
.promo-hidden-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	padding: 0 0 24px;
	font-size: 20px;
	line-height: 24px;
}
.promo-like {
	padding: 1px 0 1px 35px;
	margin: 0 30px 0 0;
	background: url(../images/like.svg) 0 1px no-repeat;
}
.promo-comment {
	padding: 1px 0 1px 35px;
	background: url(../images/comment.svg) 0 0px no-repeat;
}
.promo-hidden-text {
	font-size: 14px;
	line-height: 160%;
}
.promo-post {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	flex: 1;
	margin: 0 0 32px;
	padding: 40px 40px 48px;
	color: #686469;
	text-decoration: none;
	background: #FFFFFF;
	box-shadow: 8px 8px 34px rgba(39, 34, 40, 0.1);
}
.promo-post-text {
	font-size: 16px;
	line-height: 160%;
}

.promo-post-text img{
	max-height: 220px;
	width: 100%;
	height: auto;
	min-height:200px;
	object-fit: cover;
	margin-bottom: 20px;
}

.promo-post-text h2 {
	margin: 0 0 10px;
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    color: #261421;
}

.promo-post-view {
	padding: 0 0 0 35px;
	margin: auto 0 0;
	font-size: 20px;
	line-height: 24px;
	background: url(../images/eye.svg) 0 2px no-repeat;
}
/************************* faq *************************/
.faq {
	padding: 0 0 160px;
}
.faq-block {
	padding: 0 0 48px;
}
.faq-item {
	border-bottom: 2px solid #F4F4F4;
}
.faq-item:first-child {
	border-top: 2px solid #F4F4F4;
}
.faq-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	padding: 16px 0 6px;
	font-weight: 300;
	color: #272228;
	text-decoration: none;
}
.faq-top:after {
	position: absolute;
	top: 25px;
	right: 22px;
	content: '';
	width: 20px;
	height: 12px;
	background: url(../images/arrow-gold.svg) 50% 50% no-repeat;
	transition: all 0.3s linear;
}
.faq-top.active:after {
	transform: rotate(180deg);
}
.faq-num {
	width: 112px;
	min-width: 112px;
	padding: 0 0 0 24px;
	font-weight: 300;
	font-size: 24px;
	line-height: 29px;
	color: #272228;
}
.faq-text {
	padding: 5px 0 0;
	font-weight: 300;
}
.faq-hidden {
	display: none;
	padding: 40px 112px 55px;
	background: #F4F4F4;	
}
.faq-hidden-text {
	padding: 0 0 0 8px;
	font-style: italic;
	color: #272228;
	border-left: 2px solid #C39854;
}
.faq-hidden-text b {
	font-weight: 500;
}
.faq-hidden-text p:last-child {margin: 0;}
.faq-more {display: none;}
.faq-more .faq-item:first-child {
	border-top: 0;
}
.more-link.faq-more-link:after {
	background: #C39854 url(../images/plus.svg) 50% 50% no-repeat;
}
.more-link.faq-more-link.active:after {
    background: #C39854;
}
.more-link.faq-more-link.active:before {
    position: absolute;
    top: 9px;
    right: 11px;
	z-index: 10;
    content: '';
    width: 10px;
    height: 2px;
	background: #fff;
}
/************************* main-ask *************************/
.main-ask {
	padding: 80px 0 180px;
	background: url(../images/media/main-ask-bg.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.main-ask .ask-block {
    float: right;
	width: 100%;
	max-width: 690px;
}
/************************* main *************************/
.main {padding: 64px 0 0;}
/************************* tour-page *************************/
.tour {
	padding: 0 0 200px;
}
.tour-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -24px;
}
.tour-col {
	width: 33.33%;
	padding: 0 24px;
	margin: 0 0 48px;
}
.tour-item {
	position: relative;
	display: block;
	overflow: hidden;
	color: #FFFFFF;
	text-decoration: none;
}
.tour-item:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	content: '';
	height: 286px;
	background: linear-gradient(180deg, rgba(39, 34, 40, 0) 0%, rgba(39, 34, 40, 0.9) 100%);
	opacity: 0;
	transition: all 0.3s linear;
}
.tour-item:hover {
	box-shadow: 18px 18px 34px rgba(39, 34, 40, 0.3);
}
.tour-item:hover:after {opacity: 1;}
.tour-item > img {
	display: block;
	width: 100%;
}
.tour-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	padding: 0 34px 40px;
	opacity: 1;
	transform: translateY(5px);
	transition: all 0.3s linear;
}
.tour-item:hover .tour-content {
	opacity: 1;
	transform: translateY(0px);
}
.tour-place {
	font-size: 14px;
	line-height: 17px;
}
.tour-name {
	margin: 0 0 16px;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}
.tour-link {
	position: relative;
	display: inline-block;
	padding: 0 36px 0 0;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #C39854;
}
.tour-link:after {
	position: absolute;
	top: -1px;
	right: 0;
	content: '';
	width: 20px;
	height: 20px;
	background: #C39854 url(../images/arrow.svg) 55% 50% no-repeat;
	border-radius: 50%;
}
.tour-link:hover {text-decoration: underline;}

.tour-text-hidden {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 100%;
	z-index: 20;
	overflow-y: auto;
	padding: 40px;
	color: #FFFFFF;
	background: linear-gradient(180deg, rgba(39, 34, 40, 0.7) 0%, rgba(39, 34, 40, 0.8) 0.01%, rgba(39, 34, 40, 0.5) 100%);
	backdrop-filter: blur(20px);
	transition: all 0.3s ease;
}
.tour-text-close {
	position: absolute;
    right: 18px;
    top: 10px;
    width: 16px;
    height: 16px;
    opacity: 0.5;
	cursor: pointer;
}
.tour-text-close:hover {
	opacity: 1;
}
.tour-text-close:before, .tour-text-close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 18px;
	width: 2px;
	background-color: #fff;
}
.tour-text-close:before {
	transform: rotate(45deg);
}
.tour-text-close:after {
	transform: rotate(-45deg);
}

.tour-skew {padding: 1px 0 0;}
.tour-skew .tour-col {
	margin: 0;
}
.tour-skew .tour-col:nth-child(3n + 1) {margin-top: 120px;}
.tour-skew .tour-col:nth-child(3n + 3) {margin-top: -120px;}
.tour-info {
	font-size: 16px;
	line-height: 19px;
	color: #686469;
	transition: all 0.3s linear;
}
.tour-info:after {
	display: none;
}
.tour-info img {
	width: 100%;
}
.tour-info-block {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	padding: 40px 30px 0px;
	overflow-y: auto;
	background: #F4F4F4;
}
.tour-info-title {
	padding: 0 0 2px 8px;
	margin: 0 0 24px;
	border-left: 4px solid #C39854;
}
.tour-info-title span {
	display: block;
	padding: 10px 0 0;
	font-size: 31px;
	line-height: 30px;
}
.tour-info-img {
	margin: auto -30px 0;
}
.tour-info-img img {
	width: 100%;
	object-fit: cover;
}
/************************* step *************************/
.big {
	position: relative;
}
.big-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.big:before {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 10;
	content: '';
	height: 480px;
	background: linear-gradient(180deg, rgba(207, 212, 208, 0.6) 40.08%, rgba(238, 205, 170, 0) 100%);
}
.big-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 20;
	height: 942px;
	padding: 160px 0 100px;
}
.big-title {
	display: block;
	margin: 0 0 16px;
	font-weight: normal;
	font-size: 72px;
	line-height: 72px;
	color: #272228;
}
.big-title:after {
	display: block;
	content: '';
	width: 120px;
	height: 4px;
	margin: 4px 0 0;
	background: #C39854;
}
.big-text {
	max-width: 530px;
	font-weight: 300;
	font-size: 24px;
	line-height: 29px;
	color: #464646;
}
.big-dark:before {
	top: auto;
	bottom: 0;
	height: 450px;
	background: linear-gradient(180deg, rgba(39, 34, 40, 0) 0%, #272228 100%);
}
.big-dark .big-block {
	justify-content: flex-end;
	padding: 160px 0 130px;
}
.big-dark .big-title {
	color: #fff;
}
.big-dark .big-text {
	max-width: none;
	color: #fff;
}
/************************* step *************************/
.step {
	padding: 80px 0 80px;
	background: #F4F4F4;
}
.step-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -20px;
}
.step-item {
	width: 33.33%;
	padding: 0 20px;
}
.step-num {
	width: 80px;
	height: 80px;
	margin: 0 0 32px;
	padding: 11px 5px 0 0;
	font-style: italic;
	font-weight: 300;
	font-size: 48px;
	line-height: 58px;
	color: #FFFFFF;
	text-align: center;
	background: linear-gradient(135deg, #C39854 0%, #E4B364 100%);
	box-shadow: 8px 14px 14px rgba(39, 34, 40, 0.1);
	border-radius: 50%;
}
.step-name {
	margin: 0 0 12px;
	font-size: 32px;
	line-height: 38px;
}
.step-text {
	font-size: 16px;
	line-height: 19px;
}
/************************* route *************************/
.pathway-text {
    margin: -35px 0 -55px;
    font-weight: 300;
}
.tour-place-m {
	display:none;
}
.route-section {padding: 60px 0 0;}
.route {
	padding: 0 0 160px;
}
.route-item {
	border-bottom: 2px solid #F4F4F4;
}
.route-item:first-child {
	border-top: 2px solid #F4F4F4;
}
.route-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	padding: 16px 0 8px;
	font-weight: 300;
	color: #272228;
	text-decoration: none;
}
.route-top:after {
	position: absolute;
	top: 25px;
	right: 22px;
	content: '';
	width: 20px;
	height: 12px;
	background: url(../images/arrow-gold.svg) 50% 50% no-repeat;
	transition: all 0.3s linear;
}
.route-top.active:after {
	transform: rotate(180deg);
}
.route-date {
	width: 112px;
	min-width: 112px;
	padding: 5px 0 0 24px;
}
.route-text {
	font-size: 24px;
	line-height: 29px;
	font-weight: 300;
}
.route-hidden {
	display: none;
	padding: 32px 112px 40px;
	background: #F4F4F4;	
}
.route-hidden-text {
	padding: 0 0 0 8px;
	margin: 0 0 32px;
	font-weight: 300;
	border-left: 2px solid #C39854;
}
.route-hidden-text:last-child {margin: 0;}
.route-hidden-text b {
	font-weight: 500;
}
.route-hidden-text p:last-child {margin: 0;}
.route-img {
	display: block;
}
.route-img img {width: 100%;}
.route-hidden-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 -40px;
}
.route-hidden-col {
	width: 47.5%;
}
.route-hidden-item {
	padding: 0 0 0 8px;
	margin: 0 0 40px;
	font-weight: 300;
	border-left: 2px solid #C39854;
}
.route-hidden-img-min {
	margin: 0 0 32px;
}
.route-hidden-img-min img {width: 100%;}

.route-hidden-img-popup {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
    height: 100%;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	/*visibility: hidden;
	opacity: 0;
	z-index: 999;*/
}
.route-hidden-img-popup.fancybox-content {
	background: transparent;
	overflow: hidden; 
}
/*.route-hidden-img-popup:target {
  visibility: visible;
  opacity: 1;
}
.hidden-img-popup {
  margin: 70px auto!important;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 50%;
  position: relative;
  transition: all 5s ease-in-out;
}*/
.route-hidden-img-popup img {
	max-width: 100%;
	max-height: 80%!important; 
}

.route-hidden-title {
	margin: 0 0 16px;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	color: #272228;
}
.route-hidden-item b {
	font-weight: 500;
}
.route-hidden-item a {
	color: #C39854;
}
.fancybox-button--zoom, .fancybox-button--play, .fancybox-button--thumbs {
	display: none!important;
}
/************************* camping *************************/
.camp-slider {
	margin: 4px -10px 20px;
}

.camp-slider .slick-prev{
	left: 20px;
}

.camp-slider .slick-next{
	right: 20px;
}

.camp-slider .slick-arrow{
	background: rgba(255, 255, 255, 0.3) url(../images/slider-white.svg) 55% 50% no-repeat;
	backdrop-filter: blur(4px);
    border-radius: 50%;
}

.camp-slider .slick-arrow:hover{
	transition: background 0.3s;
	background: rgba(255, 255, 255, 0.5) url(../images/slider-white.svg) 55% 50% no-repeat;
}

.camp-slide {
	text-align: center;
	margin: 0 10px;
}
.camp-slide img {
	max-width: 100%;
}

.camp-slide.slick-slide img {
    display: inline-block;
	max-height: 140px;
}
.camp-thumb-item {
	max-width: 72px;
	height: 56px;
	border: 1px solid transparent;
}
.camp-thumb-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.camp-thumb-slide.slick-current .camp-thumb-item {
	border: 1px solid #C39854;
}

.camping {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 0 160px;
}
.camping-content {
	width: 43.5%;
	padding: 0 48px 0 0;
}
.camping-text {
	margin: 0 0 53px;
	font-weight: 300;
}
.camping-img {
	width: 56.5%;
}
.camping-img img {
	width: 100%;
}
.more-links {
	position: relative;
	padding: 0 20px 0 0;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	color: #C39854;
}
.more-link {
	position: relative;
	padding: 0 48px 0 0;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	color: #C39854;
}
.more-link:after {
	position: absolute;
	top: -6px;
	right: 0;
	content: '';
	width: 32px;
	height: 32px;
	background: #C39854 url(../images/arrow-white.svg) 50% 50% no-repeat;
	border-radius: 50%;
}
.more-link:hover {text-decoration: underline;}
/************************* tour-section *************************/
.tour-section {
	padding: 0 0 112px;
}
.reviews-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	padding: 0 0 40px;
}
.reviews-line a {
	margin-right: 12px;
	text-decoration: none;
}
.reviews-line a:last-child {
	margin-right: 0px;
}
.reviews-line-item {
	border: 2px solid #c39854;
    margin-right: 12px;
    text-align: center;
    width: 90px;
    height: 50px;
    align-self: flex-end;
	position:relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: 0.2s;
}
.reviews-line-item:hover{
	transform: translateY(-3px);
}

.reviews-line-item img {
	vertical-align: -webkit-baseline-middle;
	vertical-align: text-bottom;
	height: 18px;
	max-width: 90%;
}
.reviews-line-item .item-count {
	font-size: 14px;
	font-weight: 500;
    color: #c39854;
	text-decoration: none;
}
.title-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 0 80px;
}
.title-line .title {
    margin: 0;
}
.title-line .more {
	padding: 37px 0 0;
}
.ntitle-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 0 40px;
}
.ntitle-line .title {
    margin: 0;
}
.ntitle-line .more {
	padding: 37px 0 0;
}
.ntitle-line-text {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 0 40px;
}
.ntitle-line-text h2 {
    margin: 0 0 30px;
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: #261421;
}
/************************* product *************************/
.product-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.product-content {
	position: relative;
	width: 70%;
	padding: 0px 48px 0 0;
	/*padding: 40px 48px 0 0;*/
}
.product-back-catalog {
	padding-top: 20px;
	padding-bottom: 10px;
}
.product-back-catalog a {
	color: #C39854;
    text-decoration: none;
}
.product-back-catalog .arrow-left {
    position: relative;
    top: -3px;
    width: 55px;
    height: 16px;
    transform: rotate(180deg);
}
.product-navs {
	position: relative;
	margin-top: 0px;
	/*margin-top: -25px;*/
    /*margin-left: 9%;
    margin-right: 9%;*/
    padding: 25px 0;
    /*padding: 10px;*/
    display: flex;
    justify-content: space-between;
}
.product-navs a {
	color: #C39854;
    text-decoration: none;
}
.product-navs .left-arrow {
    position: absolute;
    top: 15px;
    /*top: 4px;*/
    left: 10.7%;
}
.product-navs .right-arrow {
    position: absolute;
    top: 15px;
    /*top: 4px;*/
    /*right: 16%;*/
    right: 10.7%;
}
.product-navs .arrow-left {
    position: relative;
    top: -3px;
    width: 55px;
    height: 16px;
    transform: rotate(180deg);
}
.product-navs .arrow-right {
    position: relative;
    top: -3px;
    width: 55px;
    height: 16px;
}
@media screen and (max-width: 767px) {
	.product-back-catalog {
		padding-bottom: 20px;
	}
	.product-navs {
		position: relative;
		margin-top: 0px;
		/*margin-top: -50px;*/
		margin-left: 0%;
		margin-right: 0%;
		padding: 20px;
		display: flex;
		justify-content: space-between;
	}
	.product-navs .right-arrow {
		position: absolute;
		top: 2px;
		right: 0%;
	}
	.product-navs .left-arrow {
		position: absolute;
		top: 2px;
		left: 0%;
	}
	.promo-item > img {
		width: 100%;
		height: 150px;
		object-fit: cover;
	}
}
.product-side {
	position: relative;
	width: 30%;
	background: #FFFFFF;
	box-shadow: 8px 8px 34px rgba(39, 34, 40, 0.1);
}
/************************* product-side *************************/
.product-nav {
	position: sticky;
	top: 80px;
	left: 0;
	z-index: 100;
	margin: 0 -48px 56px 0;
	padding: 18px 48px 11px 0;
	background: #F4F4F4;
}
.product-nav-bg {
	width: 5px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 100%;
	background: #F4F4F4;
}
.product-nav-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.product-nav-list li {
	margin: 0 20px 0 0;
	font-size: 16px;
	line-height: 19px;
}
.product-nav-list a {
	color: #686469;
	text-decoration: none;
	white-space: nowrap;
}
.product-nav-list a:hover,
.product-nav-list a.active {
	color: #C39854;
	text-decoration: underline;
}
/************************* product-side *************************/
.product-float {
	position: sticky;
	top: 80px;
	right: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: auto;
	/*height: 650px;*/
	padding: 40px 32px 30px;
}
.product-name {
	margin: 0 0 4px;
	font-weight: normal;
	font-size: 44px;
	line-height: 53px;
	color: #272228;
}
.product-name-note {
	margin: 0 0 25px;
	font-style: italic;
	font-size: 16px;
	line-height: 140%;
	color: #272228;
}
.product-side .stat-list {padding: 0 0 20px;}
.product-side .stat-list li {
	padding: 0 0 5px;
}
.product-side .stat-name {
	line-height: 19px;
	color: #686469;
}
.product-side .stat-value {
	padding: 0;
	font-size: 16px;
}
.product-price {
	/*margin: 0 0 24px;*/
	margin: 0;
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	color: #272228;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
    justify-content: space-between;
}
.price-calendar {
	flex: 1%;
    max-width: 10%;
}
.price-data {
	width: 100%;
    font-weight: 300;
    font-size: 16px;
    color: #A5A1A5;
	flex: 2;
    max-width: 45%;
    line-height: 1;
}
.price-data-icon {
	width: 18px;
    height: 18px;
    position: relative;
    top: -12px;
    right: 5px;
	left: 5px;
}
.product-button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
}
.product-button .button {
    padding: 15px 25px 14px;
	margin: 5px 24px 15px 0;
}
.product-link {
	padding: 3px 0 0;
	margin-top: 5px;
	font-weight: bold;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.product-link a {
	color: #C39854;
	text-decoration: none;
}
.product-link a:hover {
	text-decoration: underline;
}
.product-mob {
	display: none;
}
/************************* product-photo *************************/
.product-photo {
	padding: 0 0 120px;
}
.photo-slider {
	margin: 0 0 60px;
	padding: 0 15px;
}
.photo-slide {
	text-align: center;
}
.photo-slide img {
	max-width: 100%;
}

.photo-slide.slick-slide img {
    display: inline-block;
	max-height: 500px;
}
.thumb-item {
	max-width: 72px;
	height: 56px;
	border: 1px solid transparent;
}
.thumb-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.thumb-slide {
	max-width: 145px!important;
}
.thumb-slide.slick-current .thumb-item {
	border: 1px solid #C39854;
}
.photo-3d {
	position: relative;
	display: inline-block;
}
.photo-3d:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	background: url(../images/shadow.png) 50% 50% no-repeat;
	background-size: cover;
}
.photo-3d-block {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.photo-3d-icon {margin: 0 0 30px;}
.photo-3d .button {
    padding: 15px 15px 14px;
}
@media screen and (max-width: 1480px) {
	.thumb-slide {
		max-width: 133px!important; 
	}
}
@media screen and (max-width: 1366px) {
	.thumb-slide {
		max-width: 95px!important; 
	}
}
@media screen and (max-width: 1200px) {
	.thumb-slide {
		max-width: 117px!important; 
	}
}
@media screen and (max-width: 960px) {
	.thumb-slide {
		max-width: 117px!important; 
	}
}
@media screen and (max-width: 768px) {
	.thumb-slide {
		max-width: 135px!important; 
	}
}
/************************* product-about *************************/
.product-about {
	padding: 0 0 130px;
}
.product-about-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.product-about-col {
	width: 47.5%;
}
.product-about-img {
	display: block;
	margin: 0 0 32px;
}
.product-about-img img {
	width: 100%;
}
.product-about-text {
	padding: 0 0 15px;
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
	color: #A5A1A5;
}
.product-about-text p {
	margin: 0 0 17px;
}
/************************* product-stat *************************/
.product-stat {
	padding: 0 0 150px;
}
.stat-list li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	padding: 0 0 8px;
}
.stat-name {
	width: 47.5%;
	font-weight: 300;
	font-size: 14px;
	color: #A5A1A5;
}
.stat-value {
	width: 47.5%;
	padding: 0 0 1px;
}

.stat-value svg{
	height: 16px;
	width: auto;
}

.product-side-bottom .stat-name {
		width: 100%;
		font-weight: 300;
		font-size: 14px;
		color: #A5A1A5;
	}
/************************* order *************************/
.order {
	padding: 0 0 150px;
}
.order-block {
	padding: 40px 48px 48px;
	margin: 0 0 40px;
	background: #FFFFFF;
	box-shadow: 8px 8px 34px rgba(39, 34, 40, 0.1);
}
.order-date {
	margin: 0 0 24px;
	font-weight: 300;
	color: #A5A1A5;
}
.order-date span {
	font-size: 24px;
	font-weight: 400;
	color: #686469;
}
.date-slider {
	margin: 0 -20px;
}
.date-slide {
	padding: 0 20px;
}
.date-top {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 19px;
	color: #A5A1A5;
}
.week {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.day {
	width: 32px;
	height: 32px;
	padding: 5px 0 0;
	text-align: center;
	border: 1px solid #F4F4F4;
}
.week-name .day {
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
	color: #A5A1A5;
	border: 1px solid transparent;
}
.day.active-high {
	background: #D0E6DA;
	border: 1px solid #D0E6DA;
}
.day.active-low {
	background: #F4F4F4;
}
.day.chosen {
	color: #fff;
	background: #C39854;
	border: 1px solid #C39854;
	box-shadow: 4px 4px 14px rgba(39, 34, 40, 0.2);
}
.date-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.date-info-col {
	width: 33.33%;
	padding: 0 15px;
}
.date-info-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 9px;
}
.date-info-text {
	font-size: 14px;
	line-height: 17px;
	color: #A5A1A5;
}
.date-color {
	width: 16px;
	height: 16px;
	min-width: 16px;
	margin: 0 8px 0 0;
	border-radius: 50%;
}
.date-closed {
	background: #272228;
}
.date-chosen {
	background: #C39854;
}
.date-high {
	background: #D0E6DA;
}
.date-low {
	background: #F4F4F4;
}
/************************* doc *************************/
.doc {
	padding: 0 0 140px;
}
.doc-list li {
	padding: 4px 0 4px 40px;
	margin: 0 0 14px;
	background: url(../images/paperclip.svg) 0 0 no-repeat;
}
.doc-list a {
	font-weight: 600;
	color: #C39854;
	text-decoration: none;
}
.doc-list a:hover {text-decoration: underline;}
/************************* product-serv *************************/
.product-serv {
	padding: 0 0 160px;
}
.product-serv-note {
	margin: 0 0 40px;
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
	color: #A5A1A5;
}
.product-serv-block {
	padding: 0 0 50px;
	border-top: 2px solid #F4F4F4;
}
.product-serv-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 14px 0 15px;
	border-bottom: 2px solid #F4F4F4;
}
.product-serv-name {
	width: 85%;
	/*width: 70%;*/
	padding: 0 30px 0 0;
	font-weight: 300;
}
.product-serv-price {
	width: 15%;
	font-weight: 300;
	color: #C39854;
}
.product-serv-quantity {
	width: 15%;
	margin: -3px 0;
	display: none;
}
.quantity-holder {
	position: relative;
	display: inline-block;
	width: 112px;
	padding: 0 24px;
}
.quantity-input {
	display: block;
	width: 100%;
	height: 29px;
	margin: 0;
	padding: 0 5px;
	color: #A5A1A5;
	font-weight: 300;
	font-size: 20px;
	text-align: center;
	background: #FFFFFF;
	box-shadow: inset 4px 4px 10px rgba(169, 167, 169, 0.4);
	border-radius: 1px;
}
.minus {
	left: 0px;
}
.plus {
	right: 0px;
}
.minus, .plus {
	position: absolute;
	top: 5px;
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid #A5A1A5;
}
.minus:before, .plus:before {
	position: absolute;
	left: 50%;
	top: 50%;
	content: '';
	width: 8px;
	height: 2px;
	margin: -1px 0 0 -4px;
	background: #A5A1A5;
}
.plus:after {
	position: absolute;
	left: 50%;
	top: 50%;
	content: '';
	width: 2px;
	height: 8px;
	margin: -4px 0 0 -1px;
	background: #A5A1A5;
}
.product-serv-hidden {
	display: none;
}
.more-link.product-serv-more:after {
	background: #C39854 url(../images/plus.svg) 50% 50% no-repeat;
}
.more-link.product-serv-more.active:after {
    background: #C39854;
}
.more-link.product-serv-more.active:before {
    position: absolute;
    top: 9px;
    right: 11px;
	z-index: 10;
    content: '';
    width: 10px;
    height: 2px;
	background: #fff;
}

/************************* terms *************************/
.terms {
	padding: 0 0 160px;
	counter-reset: counter;
}
.terms-part {
	position: relative;
	padding: 21px 0 2px 112px;
	border-bottom: 2px solid #F4F4F4;
}
.terms-part:first-child {
	border-top: 2px solid #F4F4F4;
}
.terms-part:before {
	position: absolute;
	top: 16px;
	left: 24px;
	counter-increment: counter;
	content: counter(counter);
	font-weight: 300;
	font-size: 24px;
	line-height: 29px;
	color: #272228;
}
article {
	font-weight: 300;
}
article b {
	font-weight: 500;
}
.list li {
	position: relative;
	margin: 0 0 22px;
	padding: 0 0 0 32px;
}
.list li:before {
	position: absolute;
	top: 7px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(135deg, #C39854 0%, #F5C272 100%);
	box-shadow: 8px 14px 14px rgba(39, 34, 40, 0.1);
	border-radius: 50%;
}
p .more-link {
	padding: 0 27px 0 0;
	font-size: 14px;
	line-height: 17px;
}
p .more-link:after {
	top: 0px;
	width: 16px;
	height: 16px;
	background: #C39854 url(../images/arrow-white.svg) 55% 50% no-repeat;
	background-size: 7px;
}
/************************* ask *************************/
.ask {
	padding: 80px 0 90px;
	background: url(../images/media/ask-bg.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.ask-block {
	max-width: 800px;
}
.form-top {
	padding: 0 0 0 8px;
	margin: 0 0 50px;
	border-left: 4px solid #C39854;
}
.form-title {
	margin: 0 0 16px;
	font-weight: 300;
	font-size: 56px;
	line-height: 68px;
	color: #272228;
}
.form-text {
	font-weight: 300;
	font-size: 20px;
	line-height: 24px;
}
.form-top.white {color: #fff;}
.form-top.white .form-title {color: #fff;}
.ask-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	/*align-items: flex-start;*/
	justify-content: space-between;
	max-width: 736px;
}
.textarea-change {
	padding-top: 10px;
}
.phone-change {
	position: relative;
	padding: 0 48px 0 0;
}
.phone-change-icon-wrap {
	position: absolute;
	width: 48px;
	height: 48px;
	right: 48px;
	top: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
}
.phone-change-trigger {
	position: absolute;
	width: 48px;
	height: 48px;
	right: 0;
	top: 0;
	border: 1px solid #C39854;
	box-sizing: border-box;
	background: #fff url(../images/arrow-gold2.svg) 50% 50% no-repeat;
	border-radius: 1px;
}
.napr-change-trigger {
	position: absolute;
	width: 48px;
	height: 48px;
	/*right: 0;
	top: 0;*/
	border: 1px solid #C39854;
	box-sizing: border-box;
	background: #fff url(../images/arrow-gold2.svg) 50% 50% no-repeat;
	border-radius: 1px;
}
.ask-input {
	width: 50%;
	max-width: 336px;
}
.ask-input .textarea-input {
	height: 80px;
    padding: 16px;
}
.ask-input .input {margin: 0;}
.ask-line .button {
	width: 45%;
	max-width: 288px;
	padding: 15px 15px 14px;
}
.phone-change-hidden {
	position: absolute;
	top: 48px;
	left: 0;
	right: 48px;
	z-index: 50;
	display: none;
	padding: 20px 16px 10px;
	font-size: 16px;
	line-height: 19px;
	background: #fff;
	box-shadow: 8px 8px 34px rgba(39, 34, 40, 0.2);
}
.phone-change-hidden li {margin: 0 0 10px;}
.phone-change-hidden a {
    color: #686469;
    text-decoration: none;
}
.phone-change-hidden a:hover,
.phone-change-hidden a.active {
	color: #c39854;
    text-decoration: underline;
}
/************************* charter page *************************/
.charter {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.charter .title {
	position: relative;
	width: 100%;
}
.charter-content {
	width: 44%;
	margin-top: -40px;
}
.charter-terms {
    padding: 0 0 20px;
    font-size: 16px;
    counter-reset: counter;
}
.charter-text {
	padding: 0 0 21px;
	font-weight: 300;
	font-size: 16px;
	line-height: 19px;
}
.charter-text p {
	margin: 0 0 19px;
}
.charter-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.charter-line .button {
	margin: 0 32px 16px 0;
}
.webs-min {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 0 0 16px;
}
.webs-min a {
	margin: 0 16px 0 0;
}
.webs-min a:hover {
	transform: translateY(-5px);
}
.charter-img {
	width: 55%;
}
.charter-img img {
	width: 120%;
	margin-top: -10%;
}
.charter-bottom {
	position: relative;
	padding: 0 0 449px;
	background: url(../images/media/charter-bg.jpg) 50% 100% no-repeat;
	background-size: cover;
}
.charter-bottom-wrap {
	padding: 126px 0 415px;
	background: linear-gradient(180deg, #FFFFFF 32.43%, rgba(244, 244, 244, 0) 100%);
}
.charter-bottom-text {
	max-width: 1100px;
	margin: 0 auto;
	font-style: italic;
	font-weight: 300;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #272228;
}
.charter-bottom-text p {
	margin: 0 0 29px;
}
/************************* services page *************************/
.serv {padding: 0 0 120px;}
.serv-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -24px;
}
.serv-col {
	width: 33.33%;
	padding: 0 24px;
	margin: 0 0 48px;
}
.serv-item {
	position: relative;
	overflow: hidden;
	height: 100%;
	min-height: 420px;
	padding: 30px 40px 40px;
	background: #FFFFFF;
	box-shadow: 8px 8px 34px rgba(39, 34, 40, 0.1);
	transition: all 0.3s linear;
}
.serv-item:hover {
	box-shadow: 18px 18px 34px rgba(39, 34, 40, 0.3);
}
.serv-img {
	height: 230px;
	line-height: 230px;
	margin: 0 0 10px;
	text-align: center;
}
.serv-img img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
}
.serv-name {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 27px;
	color: #272228;
}
.serv-price {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
}
.serv-hidden {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	padding: 40px;
	color: #FFFFFF;
	background: linear-gradient(180deg, rgba(39, 34, 40, 0.7) 0%, rgba(39, 34, 40, 0.8) 0.01%, rgba(39, 34, 40, 0.5) 100%);
	backdrop-filter: blur(20px);
	transition: all 0.3s ease;
}
/*.serv-item:hover .serv-hidden {
	top: 0%;
}*/
.serv-close {
	position: absolute;
    right: 18px;
    top: 10px;
    width: 16px;
    height: 16px;
    opacity: 0.5;
	cursor: pointer;
}
.serv-close:hover {
	opacity: 1;
}
.serv-close:before, .serv-close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 18px;
	width: 2px;
	background-color: #fff;
}
.serv-close:before {
	transform: rotate(45deg);
}
.serv-close:after {
	transform: rotate(-45deg);
}
.serv-item .more-link {
    padding: 0 35px 0 0;
    font-size: 14px;
    line-height: 17px;
}
.serv-item .more-link:after {
    top: -2px;
    width: 20px;
    height: 20px;
    background: #C39854 url(../images/arrow-white.svg) 55% 50% no-repeat;
    background-size: 7px;
}
.serv-item .more {
	position: absolute;
	bottom: 15px;
	cursor: pointer;
	/*right: 10px;*/
}
.serv-hidden li {
	position: relative;
	padding: 0 0 0 16px;
}
.serv-hidden li:before {
	position: absolute;
	top: 7px;
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(135deg, #C39854 0%, #F5C272 100%);
	box-shadow: 8px 14px 14px rgba(39, 34, 40, 0.1);
	border-radius: 50%;
}
.serv-text {
	padding: 0 0 20px;
	font-weight: 300;
}
/************************* contacts *************************/
.contacts-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.contacts-side {
	width: 48.5%;
	padding: 64px 80px 150px 0;
}
.contacts-map {
	width: 51.5%;
}
.contacts-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}
.contacts-info-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	margin: 0 0 40px;
}
.contacts-info-icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	margin: 0 70px 0 0;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(135deg, #C39854 0%, #F5C272 100%);
	box-shadow: 8px 14px 14px rgba(39, 34, 40, 0.1);
	border-radius: 50%;
}
.contacts-info-text {
	font-size: 16px;
	line-height: 19px;
}
.contacts-info-text a {
	color: #686469;
	text-decoration: none;
}
.contacts-info-text a:hover {
	text-decoration: underline;
}
.contacts-info-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.contacts-phone {
	margin: 0 24px 0 0;
	font-size: 20px;
	line-height: 24px;
	color: #686469;
	text-decoration: none;
}
.contacts-webs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.contacts-webs a {
	margin: 0 16px 0 0;
}
.contacts-webs a:last-child {margin: 0;}
.contacts-webs img {width: 20px;}
/************************* contacts-form-section *************************/
.contacts-form-section {
	padding: 80px 0 120px;
	background: url(../images/media/contacts-bg.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.contacts-form {
	max-width: 670px;
}
.input-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}
.input-line-item {
	width: 47%;
}
.form-button .button {
	width: 100%;
	max-width: 47%;
	padding: 15px 15px 14px;
}

/************************* footer *************************/
.footer {
	margin: auto 0 0;
	color: #A5A1A5;
	font-size: 16px;
	line-height: 19px;
	background: #272228;
}
.footer-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 0 -15px;
	padding: 80px 0 48px;
}
.footer-col {
	width: 25%;
	padding: 0 15px;
}
.footer-item {
	position: relative;
	padding: 0 0 0 43px;
}
.footer-nav .car-col {
    width: 48%;
}
.footer-title {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	text-align: right;
	transform: rotate(-90deg);
	transform-origin: 100% 0;
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
}
.footer-nav li {
	margin: 0 0 8px;
}
.footer-nav a {
	color: #F4F4F4;
	text-decoration: none;
}
.footer-nav a:hover {
	color: #c39854;
	text-decoration: underline;
}
.footer-contacts {
	color: #F4F4F4;
}
.footer-contacts li {
	margin: 0 0 16px;
}
.footer-contacts a {
	color: #F4F4F4;
	font-size: 20px;
	line-height: 24px;
	text-decoration: none;
}
.footer-contacts a:hover {
	color: #c39854;
}
.footer-webs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 32px 0 12px;
	border-top: 1px solid #686469;
}
.webs-text {
	margin: 8px 124px 20px 0;
	font-size: 18px;
	line-height: 22px;
}
.webs-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
} 
.webs-item {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	padding: 2px;
	margin: 0 48px 20px 0;
	background: #686469;
	border-radius: 1px;
}
.webs-items {
    position: relative;
    top: -10px;
    display: block;
    width: 40px;
    height: 40px;
    padding: 2px;
    margin: 0 48px 20px 0;
    background: #686469;
    border-radius: 1px;
}
.webs-item img {
	position: relative;
	width: 100%;
}
.webs-item:hover {transform: translateY(-8px);}
.webs-items:hover {transform: translateY(-8px);}
.web1:hover {
	background: #8A46C4;
	box-shadow: 0px 8px 14px -4px rgba(138, 70, 196, 0.3);
}
.web2:hover {
	background: #4477BB;
	box-shadow: 0px 8px 14px -4px rgba(68, 119, 187, 0.3);
}
.web3:hover {
	background: #52CE5F;
	box-shadow: 0px 8px 14px -4px rgba(82, 206, 95, 0.3);
}
.web4:hover {
	background: #229ACD;
	box-shadow: 0px 8px 14px -4px rgba(34, 154, 205, 0.3);
}
/*.web5:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	background: linear-gradient(180deg, #814BAC 0%, #C0347C 49.48%, #FAAF5D 100%);
	opacity: 0;
	transition: all 0.3s linear;
}*/
.web5:hover {
	background: #814BAC;
	/*background: linear-gradient(180deg, #814BAC 0%, #C0347C 49.48%, #FAAF5D 100%);*/
	box-shadow: 0px 8px 14px -4px rgba(193, 53, 124, 0.3);
}
/*.web5:hover:before {opacity: 1;}*/
.web6:hover {
	background: #2DAAE2;
	box-shadow: 0px 8px 14px -4px rgba(45, 170, 226, 0.3);
}
.web7:hover {
	background: #0059A5;
	box-shadow: 0px 8px 14px -4px rgba(0, 89, 165, 0.3);
}
.web-ok:hover {
	background: #ff9800;
	box-shadow: 0px 8px 14px -4px rgba(255, 152, 0, 0.3);
}
.web-zen:hover {
	background: #f44336;
	box-shadow: 0px 8px 14px -4px rgba(34, 154, 205, 0.3);
}
.footer-bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 16px 0 30px;
	color: #686469;
	font-weight: 300;
	border-top: 1px solid #686469;
}
.footer-copy {
	max-width: 855px;
}
.footer-copy a {
	color: #686469;
}
.footer-studio a {
	color: #686469;
	text-decoration: none;
}
.footer-studio a:hover {
	color: #c39854;
}
/************************* popups *************************/
.popup {
	display: none;
	width: 400px;
}
.popup-big {
	width: 800px;
}
.popup.fancybox-content {padding: 32px 32px 48px;}
.popup-big.fancybox-content {padding: 40px 40px 48px;}
.popup-title {
	display: block;
	margin: 0 0 24px;
	font-weight: normal;
	font-weight: 300;
	font-size: 24px;
	line-height: 100.47%;
	color: #272228;
}
.popup-title:after {
	display: block;
	content: '';
	width: 48px;
	height: 2px;
	margin: 4px 0 0;
	background: #C39854;
}
.popup-big .popup-title {
	margin: 0 0 32px;
	font-size: 40px;
}
.popup-big .popup-title:after {
	width: 64px;
	height: 4px;
}
.popup-form-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
#popup4 .popup-form-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
}
#popup6 .popup-form-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
}
.popup .input,
.popup .textarea {
	margin: 0 0 16px;
	background-color: #F4F4F4;
}
.popup .input {
	height: 40px;
}
.popup .textarea {
	padding-top: 10px;
}
.popup-form-line .input,
.popup-form-line .button {
	width: 31%;
	/*width: 23%;*/
}
#popup4 .popup-form-line .input,
#popup4 .popup-form-line .button {
	/*width: 31%;*/
	/*width: 23%;*/
	width: 100%;
}
#popup6 .popup-form-line .input,
#popup6 .popup-form-line .button {
	/*width: 31%;*/
	/*width: 23%;*/
	width: 100%;
}
.popup select {
	border: 0;
    z-index: 1;
}

.popup .button {
	padding: 11px 40px 10px;
}
.popup-form-line .button {
	margin: 0 0 16px;
	padding: 11px 5px 10px;
}
.popup-form-note {
	margin: -8px 0 0;
	font-size: 14px;
	line-height: 17px;
	color: #A5A1A5;
}
.popup-form-note a {
	color: #C39854;
}

.podbor-msg, .call-msg {
	padding-bottom: 10px;
	color: red;
}

/************************* media *************************/
@media screen and (max-width: 1440px) {
	.banner .slick-prev {
		left: 20px;
		margin-left: 0;
	}
	.banner .slick-next {
		left: auto;
		right: 20px;
		margin-left: 0;
	}
}
@media screen and (max-width: 1300px) {
	.charter-img img {
		margin-top: 0;
	}
	.car-item {
		padding: 30px;
	}
	.help-title {
		margin: 0 0 40px;
		font-size: 28px;
		line-height: 34px;
	}
	.help-wrap {
		padding: 15px;
		/*padding: 30px;*/
	}
	.need-help {
		position: relative;
		bottom: 0;
	}
	.filter-block {
		display: block;
	}
	.filter-title {
		width: auto;
		min-width: 1px;
		margin: 0 0 25px;
	}
	.promo-hidden {
		padding: 20px;
	}
	.promo-hidden-text {
		font-size: 12px;
	}
	.promo-hidden-line {
		font-size: 18px;
	}
	.promo-like {
		margin: 0 20px 0 0;
	}
	.product-content {
		width: 65%;
		padding: 100px 48px 0 0;
	}
	.product-side {
		width: 35%;
	}
	.product-side .stat-value {
		font-size: 14px;
	}

}
@media screen and (max-width: 1023px) {
	.main {
		padding: 50px 0 0;
	}
	.title {
		margin: 0 0 40px;
		font-size: 40px;
		line-height: 48px;
	}
	.terms {
		padding: 0 0 80px;
	}
	.terms-part {
		padding: 21px 0 2px 80px;
	}
	.footer-block {
		padding: 50px 0 10px;
	}
	.footer-col {
		width: 50%;
		padding-bottom: 30px;
	}
	.webs-text {
		width: 100%;
		margin: 0 0 20px;
	}
	.webs-item {
		margin: 0 20px 20px 0;
	}
	.ask {
		padding: 80px 0;
		background: url(../images/media/ask-bg.jpg) 50% 50% no-repeat;
		background-size: cover;
	}
	.form-title {
		margin: 0 0 16px;
		font-size: 30px;
		line-height: 36px;
	}
	.form-text {
		max-width: 500px;
		font-size: 18px;
		line-height: 22px;
	}
	.charter-content {
		width: 100%;
		padding: 0 0 40px;
		margin-top: 0;
	}
	.charter-img {
		width: 100%;
	}
	.charter-img img {
		width: 100%;
	}
	.charter-bottom-wrap {
		padding: 80px 0 200px;
	}
	.charter-bottom {
		padding: 0 0 200px;
	}
	.charter-bottom-text {
		font-size: 18px;
		line-height: 24px;
	}
	.charter-bottom-text p {
		margin: 0 0 24px;
	}
	.tour {
		padding: 0 0 50px;
	}
	.tour-block {
		margin: 0 -15px;
	}
	.tour-col {
		width: 50%;
		padding: 0 15px;
		margin: 0 0 30px;
	}
	.tour-skew .tour-col {
		margin: 0 0 30px;
	}
	.tour-skew .tour-col:nth-child(3n + 1) {margin-top: 0;}
	.tour-skew .tour-col:nth-child(3n + 3) {margin-top: 0;}
	.tour-item:after {
		height: 60%;
	}
	.camping {
		padding: 0 0 80px;
	}
	.camping-content {
		width: 100%;
		padding: 0 0 60px;
	}
	.camping-img {
		width: 100%;
	}
	.serv {
		padding: 0 0 60px;
	}
	.serv-block {
		margin: 0 -15px;
	}
	.serv-col {
		width: 50%;
		padding: 0 15px;
		margin: 0 0 30px;
	}
	.serv-item {
		min-height: 420px;
		padding: 25px 30px 30px;
	}
	.serv-hidden {
		padding: 30px;
	}
	.contacts-block {padding: 50px 0 80px;}
	.contacts-side {
		width: 100%;
		padding: 0 0 10px;
	}
	.contacts-map {
		width: 100%;
		height: 400px;
	}
	.contacts-form-section {
		padding: 80px 0;
	}
	.big-block {
		height: 700px;
		padding: 80px 0;
	}
	.big-dark .big-block {
		padding: 80px 0;
	}
	.big-title {
		font-size: 40px;
		line-height: 48px;
	}
	.big-text {
		font-size: 18px;
		line-height: 24px;
	}
	.step {
		padding: 80px 0 40px;
	}
	.step-item {
		width: 100%;
		padding-bottom: 40px;
	}
	.step-name {
		font-size: 24px;
		line-height: 30px;
	}
	.route {
		padding: 0 0 80px;
	}
	.route-section {
		padding: 20px 0 0;
	}
	.route-date {
		padding: 3px 0 0 24px;
	}
	.route-text {
		font-size: 21px;
		line-height: 24px;
	}
	.route-hidden {
		padding: 30px;
	}
	.tour-section {
		padding: 0 0 50px;
	}
	.title-line {
		padding: 0 0 40px;
	}
	.title-line .more {
		padding: 22px 0 0;
	}
	.banner-block {
		min-height: 240px;
		/*min-height: 480px;*/
		padding: 80px 15px;
		/*padding: 80px 0;*/
	}
	.banner-title {
		font-size: 40px;
		line-height: 48px;
	}
	.banner-text {
		margin: 0 0 40px;
		font-size: 18px;
		line-height: 24px;
	}
	.filter-block {
		padding: 30px 30px 1px;
	}
	.filter-item {
		width: 48%;
		margin: 0 0 30px;
	}
	.car-block {
		margin: 0 -15px;
	}
	.car-col {
		width: 50%;
		padding: 0 15px;
		margin: 0 0 30px;
	}
	.about {
		padding: 0 0 100px;
		background: url(../images/media/about-bg.jpg) 50% 100% no-repeat;
		background-size: cover;
	}
	.about-wrap {
		padding: 0 0 200px;
	}
	.about-block {display: block;}
	.about-side {
		width: auto;
		min-width: 1px;
		padding: 0 0 40px;
	}
	.about-subtitle {
		max-width: none;
		font-size: 21px;
	}
	.main-section {
		padding: 70px 0 0;
	}
	.why {
		padding: 0 0 50px;
	}
	.why-item {
		width: 100%;
		margin: 0 0 30px;
	}
	.why-text {
		max-width: none;
	}
	.main-action {
		padding: 80px 0;
	}
	.review {
		padding: 0 0 40px;
	}
	.promo {
		padding: 0 0 50px;
	}
	.promo-content {
		width: 100%;
		padding: 0 0 20px;
	}
	.promo-side {
		width: 100%;
	}
	.promo-block .more {
		margin: 0 0 30px;
	}
	.faq {
		padding: 0 0 80px;
	}
	.faq-hidden {
		padding: 30px;
	}
	.main-ask {
		padding: 80px 0;
	}
	.product-block {display: block;}
	.product-content {
		width: 100%;
		padding: 15px 0 0;
		/*padding: 50px 0 0;*/
	}
	.product-side {
		width: 100%;
	}
	.product-photo {
		padding: 0 0 60px;
	}
	.photo-slider {
		margin: 0 0 30px;
	}
	.product-nav {
		position: relative;
		top: auto;
		left: auto;
		margin: 0 0 50px;
		padding: 18px 0 11px;
	}
	.product-nav:after {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 100%;
		content: '';
		width: 100%;
		background: inherit;
	}
	#wrapper {overflow: hidden;}
	.title-min {
		margin: 0 0 30px;
		font-size: 30px;
		line-height: 36px;
	}
	.product-about {
		padding: 0 0 50px;
	}
	.product-stat {
		padding: 0 0 70px;
	}
	.stat-name {
		width: 60%;
	}
	.stat-value {
		width: 30%;
	}
	.price-calendar {
		flex: 2;
		max-width: 5%;
	}
	.price-data-icon {
		width: 15px;
		height: 15px;
		position: relative;
		top: -15px;
		right: 0px;
		left: 10px;
	}
	.price-data {
		width: 100%;
		font-weight: 300;
		font-size: 16px;
		color: #A5A1A5;
		flex: 1;
		max-width: 80%;
		line-height: 1;
	}
	.order {
		padding: 0 0 70px;
	}
	.doc {
		padding: 0 0 60px;
	}
	.product-serv {
		padding: 0 0 80px;
	}
	.product-side {margin: 0 0 80px;}
	.product-float {
		position: relative;
		top: auto;
		right: auto;
		height: auto;
		padding: 30px;
	}
	.product-side .stat-name {
		width: 47.5%;
	}
	.product-side .stat-value {
		width: 47.5%;
	}
	.thumb-item {margin: 0 auto;}
	.product-nav-list {
		overflow-x: auto;
	}
	.promo-top {
		padding: 0 0 40px;
	}
	.promo-webs {
		padding: 6px 0 0;
	}
	.product-mob {
		display: block;
		padding: 0 0 50px;
	}
	.product-side {display: none;}

	
}
@media screen and (max-width: 767px) {
	.pathway-text {
		margin: 0px 0 -10px;
		font-weight: 300;
	}
	.tour-place-m {
		display: none;
		font-size: 12px;
		color: rgba(255,255,255,0.8);
		line-height: 17px;
	}
	#wrapper {
		padding: 65px 0 0;
	}
	.header {
		height: 65px;
		padding: 10px 0 0;
	}

	.header-right{
		display: none;
	}

	.header-logo img, .header-logo object {width: 220px;height: auto;}
	.mob-nav-text {display: none;}
	.mob-nav-icon {
		top: 12px;
		padding: 10px 0 10px 24px;
	}
	.header-nav {
		width: 300px;
		padding: 90px 10px 30px 20px;
	}
	.header-nav-list li {
		margin: 0 0 20px;
		/*margin: 0 0 30px;*/
		font-size: 16px;
	}
	.title {
		margin: 0 0 30px;
		font-size: 30px;
		line-height: 36px;
	}
	.ntitle-line {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        padding: 0 0 20px;
    }
	.ntitle-line-text {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        padding: 0 0 10px;
    }
    .ntitle-line-text h2 {
        font-size: 18px;
        line-height: 28px;
    }
	.terms-part {
		padding: 21px 0 2px 40px;
	}
	.terms-part:before {
		left: 0px;
	}
	.tour-content {
		padding: 0 20px 25px;
	}
	.tour-name {
		font-size: 18px;
		line-height: 22px;
	}
	.serv-item {
		min-height: 180px;
	}
	.serv-name {
		font-size: 18px;
		line-height: 24px;
	}
	.contacts-info-icon {margin: 0 20px 0 0;}
	.contacts-info-item {
		margin: 0 0 30px;
	}
	.big-block {
		min-height: 500px;
		height: auto;
		padding: 50px 0;
	}
	.big-title {
		font-size: 30px;
		line-height: 36px;
	}
	.step {
		padding: 60px 0 20px;
	}
	.route-hidden-col {
		width: 100%;
	}
	.banner-title {
		font-size: 36px;
		line-height: 40px;
		max-width: 100%;
	}
	.filter-title {
		font-size: 30px;
	}
	.mob-filter-hide {
	    display: none;
	}
	.mob-filter-call-view {
	    display: block;
	}
	.car-col {
		width: 100%;
	}
	.review-item {
		padding: 30px;
	}
	.promo-col {
		width: 50%;
	}
	.faq-num {
		width: 40px;
		min-width: 40px;
		padding: 0;
	}
	.faq-text {
		padding: 5px 25px 0 0;
	}
	.faq-top:after {
		top: 25px;
		right: 0px;
	}
	.banner-car-item {
		margin: 0 0 5px;
		font-size: 21px;
		line-height: 27px;
	}
	.banner-car-item a:after {top: 7px;}
	.product-about-col {
		width: 100%;
	}
	.promo-top {
		display: block;
		padding: 0 0 30px;
	}
	.promo-top .title {
		margin: 0 0 20px;
	}
	.popup-big {width: 400px;}
	.popup.fancybox-content,
	.popup-big.fancybox-content {padding: 30px 30px 40px;}
	.popup-big .popup-title {
		margin: 0 0 24px;
		font-size: 24px;
	}
	.popup-big .popup-title:after {
		width: 48px;
		height: 2px;
	}
	.popup-form-line .input, .popup-form-line .button {
		width: 100%;
	}
	.product-side-bottom .stat-name {
		width: 100%;
		font-weight: 300;
		font-size: 14px;
		color: #A5A1A5;
	}
	.price-calendar {
		flex: 1;
		max-width: 7%;
	}
	.price-data-icon {
		width: 15px;
		height: 15px;
		position: relative;
		top: -15px;
		right: 0px;
		left: 5px;
	}

}
@media screen and (max-width: 576px) {
	.reviews-line-item{
		margin-right: 0;
	}
	.reviews-line {
		padding: 0 0 20px;
		justify-content: start;
	}
	.reviews-line a {
		margin-right: 8px;
		margin-bottom: 8px;
	}
	.phones-mobile{
		display: block;
		margin-top: 20px;
   		background: rgba(0,0,0,0.05);
    	padding: 10px;
	}
	.ask{
		background-position: 75% 50%;
		position: relative;
	}
	.ask:after{
		background: rgba(255,255,255,0.5);
		width: 100%;
		height: 100%;
		content:"";
		position: absolute;
		top:0;
		left:0;
	}

	.ask > .holder{
		position: relative;
		z-index: 2;
	}

	.header-nav {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		padding: 0;
		display: flex;
		padding-left: 20px;
		padding-right: 20px;
		justify-content: center;
		flex-direction: column;
	}
	.mob-nav-icon.active {
		right: 0;
		padding: 10px 0 10px 24px;
	}
	.footer-col {
		width: 100%;
		padding-bottom: 60px;
	}
	.form-title {
		font-size: 24px;
		line-height: 30px;
	}
	.ask-input {
		width: 100%;
		max-width: none;
		margin: 0 0 30px;
	}
	.ask-line .button {
		width: 100%;
		max-width: none;
	}
	.charter-bottom-wrap {
		padding: 40px 0 200px;
		background: linear-gradient(180deg, #FFFFFF 60%, rgba(244, 244, 244, 0) 100%);
	}
	.charter-bottom {
		padding: 0 0 50px;
	}
	.charter-bottom-text {
		font-size: 16px;
		line-height: 20px;
	}
	.charter-bottom-text p {
		margin: 0 0 20px;
	}
	.tour-block {
		margin: 0 -10px;
	}
	.tour-col {
	    width: 50%;
		padding: 0 10px;
		margin: 0 0 20px;
	}
	.tour-skew .tour-col {
		margin: 0 0 20px;
	}
	.tour-info-block {
		padding: 15px 20px 0px;
	}
	.tour-info-title span {
		padding: 4px 0 0;
		font-size: 18px;
		line-height: 22px;
	}
	.tour-info-text {display: none;}
	.tour-info-title {
		padding: 0;
		margin: 0 0 5px;
		border-left: 0;
		font-size: 14px;
		line-height: 18px;
	}
	.tour-info-img {
		margin: auto -20px 0;
	}
	.tour-item{
		height: 100%;
	}

	.tour-item img{
		height: 100%;
		object-fit: cover;
	}

	.tour-item:after {opacity: 1;}
	.tour-content {
		padding: 0 10px 10px;
		opacity: 1;
		transform: translateY(0px);
	}
	.tour-link {display: none;}
	.tour-name {font-size: 14px;margin-bottom: 0;}
	.tour-place {display: none;}
	
	.mobile-hide {
        display: none;
    }
	
	.serv-col {
		width: 100%;
	}
	.serv-item {
		overflow: hidden;
		padding: 25px 20px 30px;
	}
	.serv-item .more {
		position: absolute;
		bottom: 15px;
		right: 10px;
	}
	.serv-img {
		float: left;
		width: 100px;
		height: auto;
		line-height: 20px;
		margin: 0 15px 0 0;
	}
	.serv-name, .serv-price {
		padding: 0px;
		/*padding: 0 0 0 120px;*/
	}
	.input-line-item {
		width: 100%;
	}
	.form-button .button {
		max-width: none;
	}
	.route-date {
		width: 80px;
		min-width: 80px;
		padding: 2px 0 0 0;
	}
	.route-text {
		padding: 0 20px 0 0;
		font-size: 18px;
		line-height: 22px;
	}
	.route-top:after {
		top: 20px;
		right: 0px;
	}
	.filter-item {
		width: 100%;
	}
	.why-icon {
		margin: 0 25px 0 0;
	}
	.why-text {
		font-size: 16px;
		line-height: 19px;
	}
	.promo-list {
		margin: 0 -10px;
		padding: 0 0 10px;
	}
	.promo-col {
		padding: 0 10px;
		margin: 0 0 20px;
	}
	.promo-post {padding: 30px;}
	.promo-col:nth-child(n + 5) {display: none;}
	.banner-car-col {
		width: 100%;
	}
	.stat-name {
		width: 100%;
		margin: 0 0 2px;
	}
	.stat-value {
		width: 100%;
	}
	.product-side .stat-name {
		width: 100%;
	}
	.product-side .stat-value {
		width: 100%;
	}
	.order-date span {
		display: block;
		padding: 5px 0 0;
	}
	.order-block {
		padding: 30px 35px;
	}
	.date-info-col {width: 100%;}
	.product-serv-item {
		display: block;
		padding: 20px 0;
		display: flex;
		flex-direction: row;
	}
	.product-serv-name {
		width: 80%;
		padding: 0 0 15px;
	}
	.product-serv-price {
		width: 50%;
		/*width: 20%;*/
		padding: 0 0 15px;
	}
	.product-serv-quantity {
		width: 50%;
		margin: 0;
	}
	.product-side .stat-list li {
		padding: 0 0 10px;
	}
	.product-side .stat-value {
		font-size: 18px;
	}
	.banner img {
		object-position: 75% 50%;
	}
	.banner-slide:before {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 10;
		content: '';
		background: rgba(0, 0, 0, 0.3);
	}
	.banner .slick-arrow {
		width: 30px;
		height: 30px;
		margin-top: -15px;
		z-index: 30;
	}
	.banner .slick-prev {
		left: 5px;
	}
	.banner .slick-next {
		right: 5px;
	}
	.about-wrap {
		padding: 0px 0 200px;
		background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 70%, rgba(255, 255, 255, 0) 100%);
	}
	.about {
		padding: 0;
	}
	.photo-3d-icon {
		max-width: 60px;
		margin: 0 0 20px;
	}
	.photo-slider {
		margin: 0 -15px 30px;
	}
	.product-side-bottom {
		padding-top: 40px;
	}
	.product-price {
		margin: 0;
		font-weight: 500;
		font-size: 36px;
		line-height: 44px;
		color: #272228;
	}
	.stat-name {
		width: 100%;
	}

}
@media screen and (max-width: 374px) {
	.serv-img {
		width: 80px;
	}
	.serv-name, .serv-price {
		padding: 0 0 0 25px;
		/*padding: 0 0 0 95px;*/
	}
	.serv-name {
		font-size: 16px;
		line-height: 22px;
	}
	.tour-info-block {
		padding: 15px 10px 0px;
	}
	.tour-info-img {
		margin: auto -10px 0;
	}
}
/**** Otzyvy *****/
.review-section {
	padding: 80px 0 170px;
}
.rs-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.rs-side {
	width: 290px;
	min-width: 290px;
}
.rs-content {
	flex: 1;
}
.rs-side-title {
	margin: 0 0 22px;
	font-weight: 300;
	font-size: 24px;
	line-height: 100.47%;
}
.src-list {
	padding: 0 0 30px;
}
.src-item {
	position: relative;
	display: block;
	width: 86px;
	height: 30px;
	margin: 0 0 10px;
	border: 2px solid #C39854;
	box-sizing: border-box;
}
.src-item img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	transition: all 0.3s linear;
}
.src-img-white {opacity: 0;}
.src-item:hover,
.src-item.active {
	background: #C39854;
}
.src-item:hover .src-img,
.src-item.active .src-img {opacity: 0;}
.src-item:hover .src-img-white,
.src-item.active .src-img-white {opacity: 1;}

.bx-filter .bx-filter-input-checkbox {}
.bx-filter .bx-filter-input-checkbox input[type=radio],
.bx-filter .bx-filter-input-checkbox input[type=checkbox] {
	/*opacity: 0;*/
	width: 10px;
    height: 10px;
}

/*.src-list input[type=checkbox] {
	opacity:0;
}*/

.rs-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 0 60px;
}
.rs-sorting-link {
	display: inline-block;
	padding: 0 18px 0 0;
	font-weight: 300;
	font-size: 18px;
	line-height: 100.47%;
	color: #686469;
	text-decoration: none;
	background: url(../images/grey-arrow.svg) 100% 5px no-repeat;
}
.rs-list {
	padding: 0 0 35px;
}
.rs-item {
	padding: 20px 44px 44px;
	margin: 0 0 40px;
	background: #FFFFFF;
	border: 1px solid transparent;
	box-shadow: 8px 8px 34px rgba(39, 34, 40, 0.2);
}
.rs-item:hover {
	border: 1px solid #F4F4F4;
	box-shadow: none;
}
.rs-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 30px;
}
.rs-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
}
.rs-info .src-item {
    margin: 0 29px 0 0;
}
.rating {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.star {
	width: 20px;
	height: 20px;
	margin: 0 10px 0 0;
	background: url(../images/star.svg) 50% 50% no-repeat;
	background-size: contain;
}
.star-full {
	background: url(../images/star-full.svg) 50% 50% no-repeat;
	background-size: contain;
}
.star:last-child {margin: 0;}
.rs-date {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 19px;
}
.rs-author {
	margin: 0;
	font-size: 24px;
	line-height: 29px;
	color: #272228;
}
.rs-text {
	padding: 0 0 13px;
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
	color: #686469;
}
.rs-text p {margin: 0 0 17px;}
.rs-bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.rs-item .more-link {
	padding: 0 35px 0 0;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
}
.rs-item .more-link:after {
	top: -2px;
	width: 20px;
	height: 20px;
	background: #C39854 url(../images/arrow-white.svg) 55% 50% no-repeat;
	background-size: 7px;
}
.rs-link a {
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #C39854;
}
.rs-more {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
}
.more-link-plus {letter-spacing: 0.1em;}
.more-link.more-link-plus:after {
	background: #C39854 url(../images/plus.svg) 50% 50% no-repeat;
}
.more-link.more-link-plus.active:after {
    background: #C39854;
}
.more-link.more-link-plus.active:before {
    position: absolute;
    top: 9px;
    right: 11px;
	z-index: 10;
    content: '';
    width: 10px;
    height: 2px;
	background: #fff;
}
.radio-item {
	position: relative;
	margin: 0 0 3px;
}
.radio-input {
	position: absolute;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.radio-label {
	display: block;
	position: relative;
	padding: 0 0 0 36px;
	font-size: 18px;
	line-height: 150%;
	cursor: pointer;
}
.radio-label::before {
	position: absolute;
	top: 3px;
	left: 0;
	width: 20px;
	height: 20px;
	content: '';
	background: transparent;
	border: 1px solid #C39854;
	box-sizing: border-box;
	transform: rotate(90deg);
	border-radius: 50%;
}
.radio-input:checked + .radio-label::before {
	background: #C39854 url(../images/arrow-white.svg) 55% 50% no-repeat;
	background-size: 7px;
}
.radio-label .star-min {
	display: inline-block;
	vertical-align: top;
	margin: 7px 0 0;
}
.rs-big-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 0 67px;
}
.more-back {
	padding: 0 0 0 48px;
	letter-spacing: 0.1em;
}
.more-back:after {
	right: auto;
	left: 0;
	transform: scale(-1, 1);
}
.rs-big {
	position: relative;
	padding: 0 145px;
	margin: 0 0 70px;
}
.rs-big .rs-item {margin: 0;}
.rs-big .rs-item:hover {
    border: 1px solid transparent;
    box-shadow: 8px 8px 34px rgb(39 34 40 / 20%);
}
.rs-arrow {
	position: absolute;
	top: 50%;
	margin-top: -10px;
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	text-transform: uppercase;
	color: #C39854;
	text-decoration: none;
}
.rs-arrow::before {
	position: absolute;
	top: 50%;
	display: block;
	content: '';
	width: 20px;
	height: 20px;
	margin-top: -10px;
	font-size: 0;
	cursor: pointer;
	background: url(../images/slider-arrow.svg) 50% 50% no-repeat;
	border-radius: 4px;
}
.rs-prev::before {
	transform: scale(-1, 1);
	left: -3px;
}
.rs-next::before {
	right: -3px;
}
.rs-prev {
	left: 0;
	padding: 0 0 0 17px;
}
.rs-next {
	right: 0;
	padding: 0 17px 0 0;
}
.comments {
	max-width: 1070px;
	margin: 0 auto;
}
.comments-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 0 67px;
}
.comments-title {
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #C39854;
}
.comments-line .more-link {
	padding: 0 29px 0 0;
	font-size: 14px;
	line-height: 17px;
}
.comments-line .more-link:after {
	top: -2px;
	width: 20px;
	height: 20px;
}
.comments-list {
	padding: 0 0 45px;
}
.comments-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: flex-start;
	margin: 0 0 25px;
}
.comments-side {
	width: 200px;
	min-width: 200px;
	padding: 32px 15px 0 0;
}
.comments-name {
	margin: 0 0 10px;
	font-weight: normal;
	font-size: 24px;
	line-height: 29px;
	color: #272228;
}
.comments-date {
	font-size: 16px;
	line-height: 19px;
}
.comments-content {
	flex: 1;
	padding: 27px 24px 10px;
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
	background: #FFFFFF;
	border: 1px solid #DEE5EB;
	box-sizing: border-box;
}
.comments-content p {
	margin: 0 0 17px;
}
.sort-block {
	opacity: 0;
	display: flex;
	flex-direction: column;
    position: absolute;
    padding: 20px 25px 30px;
    margin: 0 0 40px;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 8px 8px 34px rgb(39 34 40 / 20%);
    z-index: 3;
}
.sort-block .active {
	display: flex;
}
.sort-block a {
	position: relative;
	margin-top: 15px;
	padding: 0 30px 10px 0;
	/*padding: 0 48px 15px 0;*/
    font-weight: bold;
    /*text-transform: uppercase;*/
    text-decoration: none;
    color: #C39854;
}
.sort-block a.active {
	position: relative;
	margin-top: 20px;
    /*padding: 0 48px 15px 0;*/
    font-weight: bold;
    /*text-transform: uppercase;*/
    text-decoration: none;
    color: #C39854;
}
.close {
	position: relative;
	width: 32px;
	height: 32px;
	opacity: 0.3;
}
.close:hover {
	opacity: 1;
}
.close:before, .close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 2px;
	background-color: #333;
}
.close:before {
	transform: rotate(45deg);
}
.close:after {
	transform: rotate(-45deg);
}
.comments-list a {
	position: relative;
    padding: 0 10px 0 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
	font-size: 12px;
    color: #C39854;
}


@media screen and (max-width: 1300px) {
	.rs-big {
		padding: 0 45px;
	}
	.rs-arrow {height: 20px;}
	.rs-arrow span {display: none;}
}
@media screen and (max-width: 1023px) {
	.review-section {
		padding: 50px 0 70px;
	}
	.rs-block {display: block;}
	.rs-side {
		width: auto;
		min-width: 1px;
		display: none;
	}
	.rs-line {
		padding: 0 0 30px;
	}
	.rs-list {
		padding: 0 0 20px;
	}
	.rs-big-top {
		padding: 0 0 30px;
	}
	.rs-big {
		margin: 0 0 50px;
	}
	.comments-line {
		padding: 0 0 30px;
	}
	.comments-list {
		padding: 0 0 25px;
	}
}
@media screen and (max-width: 767px) {
	.rs-item {
		padding: 25px 30px 30px;
		margin: 0 0 30px;
	}
	.rs-top {
		display: block;
		padding: 0 0 20px;
	}
	.rs-author {
		margin: 0 0 15px;
	}
	.rs-text {
		padding: 0 0 7px;
	}
	.rs-bottom {
		flex-direction: column-reverse;
	}
	.rs-link {
		margin: 0 0 15px;
	}
	.comments-item {display: block;}
	.comments-side {
		width: auto;
		min-width: 1px;
		padding: 0 0 15px;
	}
}
@media screen and (max-width: 576px) {
	.rs-list {
		margin: 0 -30px;
	}
	.rs-line {display: block;}
	.rs-sorting {
		margin: 0 0 20px;
	}
	.rs-big-top .more-back {
		margin: 0 0 20px;
	}
	.rs-big {
		margin: 0 -20px 50px;
		padding: 0 30px;
	}
	.rs-info {display: block;}
	.rs-big .rs-info .src-item {
		margin: 0 0 10px;
	}
	.comments-title {margin: 0 0 15px;}
}
@media screen and (max-width: 374px) {
	.rs-info {
		display: block;
	}
	.rs-info .src-item {
		margin: 0 0 10px;
	}
}

/* custom */
@media screen and (max-width: 767px) {
	.promo-webs .webs-items {
		margin: 0 6px 10px 0;
		background: #C39854;
	}
	.webs-items {
		position: relative;
		top: -10px;
		display: block;
		width: 36px;
		height: 36px;
		padding: 2px;
		margin: 0 48px 20px 0;
		background: #686469;
		border-radius: 1px;
	}
	.webs-items img {
		width: 32px;
	}
	.more-links {
		font-size: 16px;
		padding: 0 8px 0 0;
	}
}

.car-item {
    padding: 29px 24px 37px;
    /*padding: 29px 39px 37px;*/
    box-shadow: 8px 8px 34px rgba(39, 34, 40, 0.2);
}
.car-img {
    height: auto;
	margin: 0 0 24px;
}
.car-img img {
    display: block;
	width: 100%;
	max-width: none;
    max-height: none;
}
.car-name {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 22px;
    color: #272228;
}
.car-model {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 17px;
}
.car-button {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.car-button .button {
	min-width: 200px;
	/*min-width: 240px;*/
	margin: 0 0 17px;
	padding: 16px 30px 15px;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
}
.car-button .more-link {
	letter-spacing: 0.1em;
	text-decoration: underline;
}
.car-button .more-link:hover {text-decoration: none;}
.car-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 0 12px;
}
.car-info-item {
	margin: 0 0 12px;
	border: 2px solid #C39854;
}
.car-info-item {
	display: flex;
	align-items: center;
	width: 27.5%;
	/*width: 25.5%;*/
	height: 40px;
}
.car-info-big {
	width: 41%;
}
.car-info-icon {
	width: 28px;
	min-width: 28px;
	margin: 0 0 0 5px;
	/*margin: 0 0 0 10px;*/
}
.car-info-icon img {width: 100%;}
.car-info-text {
	flex: 1;
	font-size: 14px;
	line-height: 17px;
	text-align: center;
}
.car-info-col {
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.car-info-top {
	margin: 0 0 5px;
	font-weight: 700;
	font-size: 5px;
	line-height: 6px;
	text-transform: uppercase;
	color: #C39854;
}
.car-info-col .car-info-text {
	flex: none;
	font-weight: 700;
	font-size: 28px;
	line-height: 20px;
	text-transform: uppercase;
	color: #C39854;
}
.car-info-col .car-info-box {
	font-size: 24px;
	font-weight: 600;
}
.car-size {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 17px;
}
.car-price {
	margin: 0 0 23px;
	font-weight: 500;
	font-size: 1.2em;
	/*font-size: 28px;*/
	line-height: 34px;
	color: #272228;
}
.car-price span {
	vertical-align: middle;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: #686469;
}
@media (max-width: 1440px){
	.car-info-col .car-info-box {
		font-size: 21px;
	}
}
@media (max-width: 1300px){
	.car-info-item {
		width: 48%;
		/*width: 40%;*/
	}
	.car-info-big {
		width: 48%;
		/*width: 55%;*/
	}
	.car-info-icon {
		width: 28px;
		min-width: 28px;
		margin: 0 0 0 2px;
	}
}
@media (max-width: 1023px){
	.car-item {
		padding: 25px 30px 30px;
	}
	.car-info-item {
		width: 25.5%;
	}
	.car-info-big {
		width: 41%;
	}
}
@media (max-width: 576px){
	.car-info-icon {
		margin: 0 0 0 5px;
	}
	.car-info-col .car-info-box {
		font-size: 18px;
	}
}
@media (max-width: 374px){
	.car-item {
		padding: 25px;
	}
	.car-info-icon {
		width: 24px;
		min-width: 24px;
	}
}

/********************* additional pages ***********************/
.blog {
	padding: 0 0 80px;
}
.blog .title {
    margin: 0 0 48px;
}
.blog-block {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -24px;
	padding: 0 0 48px;
}
.blog-col {
	width: 33.33%;
	padding: 0 24px;
	margin: 0 0 32px;
}
.blog-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: #272228;
	text-decoration: none;
	background: #F4F4F4;
}
.blog-item:hover {
	color: #C39854;
	box-shadow: 18px 18px 34px rgba(39, 34, 40, 0.3);
}
.blog-img img {
	display: block;
	width: 100%;
}
.blog-content {
	padding: 16px 32px 24px;
}
.blog-title {
	margin: 0 0 8px;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
}
.blog-line {
	display: flex;
	flex-wrap: wrap;
}
.blog-date {
	margin: 0 32px 0 0;
	font-size: 14px;
	line-height: 17px;
	color: #A5A1A5;
}
.blog-view {
	padding: 0 0 0 25px;
	font-size: 14px;
	line-height: 17px;
	color: #A5A1A5;
	background: url(../images/eye.svg) 0 50% no-repeat;
	background-size: 17px;
}
.blog-col-big {
	width: 100%;
}
.blog-col-big .blog-item {
	flex-direction: row;
}
.blog-col-big .blog-img {
	width: 50%;
}
.blog-col-big .blog-img img {
	min-height: 100%;
	object-fit: cover;
}
.blog-col-big .blog-content {
	width: 50%;
	padding: 40px;
}
.blog-col-big .blog-title {
	margin: 0 0 16px;
	font-size: 24px;
	line-height: 29px;
}
.blog-text {
	margin: 0 0 28px;
	font-style: italic;
	font-size: 18px;
	line-height: 22px;
	color: #686469;
}
.blog-more {
	padding: 29px 0 50px;
	text-align: center;
	border-top: 2px solid #F4F4F4;
}
.blog-more .more-link:after {transform: rotate(90deg);}
.article-page {
	padding: 32px 0 70px;
}
.article {
	padding: 0 0 70px;
}
.article-img {
	display: block;
	max-width: 1072px;
	margin: 0 auto 48px;
}
.article-img img {
	width: 100%;
}
.article-img figcaption {
	padding: 16px 0 0;
	font-size: 14px;
	line-height: 17px;
	color: #A5A1A5;
}
.article .blog-line {margin: 0 0 8px;}
.article h1 {
	margin: 0 0 48px;
	font-weight: 600;
	font-size: 28px;
	line-height: 34px;
	color: #272228;
}
.article h1::after {
	display: block;
    content: '';
    width: 120px;
    height: 4px;
    margin: 4px 0 0;
    background: #C39854;
}
.article h3 {
	margin: 0 0 21px;
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
	color: #272228;
}
.article-part {
	margin: 0 0 48px;
}
.article-part p:last-child {margin: 0;}
.blog-section {
	padding: 0 0 70px;
}
.blog-section .title {
    margin: 0 0 48px;
}
.blog-slider {
	margin: -24px;
}
.blog-slide {
	padding: 24px;
}
.blog-slide .blog-item:hover {
    box-shadow: 8px 8px 20px rgb(39 34 40 / 30%);
}
.contacts {
	padding: 64px 0 40px;
}
.contacts .title {
    margin: 0 0 32px;
}
.contacts-text {
	margin: 0 0 48px;
	font-size: 16px;
	line-height: 24px;
}
.contacts-top {
	margin: 0 0 72px;
	border-bottom: 1px solid rgba(165, 161, 165, 0.5);
}
.contacts-line {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 0 0 12px;
}
.contacts-line .contacts-info-item {
	width: 33.33%;
	margin: 0 0 20px;
}
.contacts-info-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin: 0 16px 0 0;
}
.contacts-info-icon img {
	max-width: 15px;
	max-height: 15px;
}
.contacts-phone {
    margin: 0 16px 0 0;
    font-size: 16px;
    line-height: 19px;
}
.contacts-webs a {
    margin: 0 10px 0 0;
}
.contacts-adress-text {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 24px;
	color: #A5A1A5;
}
.contacts-tabs {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 48px;
}
.contacts-tabs li {
	margin: 0 48px 0 0;
	font-weight: 400;
	font-size: 30px;
	line-height: 36px;
}
.contacts-tabs li:last-child {margin: 0;}
.contacts-tabs a {
	color: #272228;
	text-decoration: none;
	transition: color 0.3s linear;
}
.contacts-tabs a:hover {
	text-decoration: underline;
}
.contacts-tabs .active a {
	font-weight: 600;
	text-decoration-line: underline;
	color: #C39854;
}
.contacts-map {
	width: auto;
	height: 680px;
}
@media screen and (max-width: 1300px) {
	.blog-block {
		margin: 0 -16px;
	}
	.blog-col {
		width: 33.33%;
		padding: 0 16px;
	}
}
@media screen and (max-width: 1023px) {
	.contacts {
		padding: 50px 0 40px;
	}
	.contacts-line .contacts-info-item {
		width: 100%;
	}
	.contacts-top {
		margin: 0 0 48px;
	}
	.contacts-map {
		height: 480px;
	}
	.blog {
		padding: 0 0 30px;
	}
	.blog-block {
		padding: 0 0 20px;
	}
	.blog-col {
		width: 50%;
	}
	.blog-col-big {
		width: 100%;
	}
	.blog-col-big .blog-item {
		flex-direction: column;
	}
	.blog-col-big .blog-img {
		width: 100%;
	}
	.blog-col-big .blog-content {
		width: 100%;
		padding: 24px 32px 32px;
	}
	.article {
		padding: 0 0 30px;
	}
	.blog-section {
		padding: 0 0 30px;
	}
}
@media screen and (max-width: 767px) {
	.blog .title {
		margin: 0 0 30px;
	}
	.article h1 {
		margin: 0 0 30px;
	}
	.article  {
		font-size: 16px;
	}
	.blog-section .title {
		margin: 0 0 30px;
	}
}
@media screen and (max-width: 576px) {
	.contacts {
		padding: 50px 0 0;
	}
	.contacts-map {
		margin: 0 -30px;
	}
	.blog-col {
		width: 100%;
	}
	.blog-content {
		padding: 16px 24px 24px;
	}
	.blog-col-big .blog-content {
		padding: 16px 24px 24px;
	}
	.blog-col-big .blog-title {
		font-size: 18px;
		line-height: 22px;
	}
	.blog-text {
		margin: 0 0 20px;
		font-size: 14px;
		line-height: 19px;
	}
	.blog-slider .slick-prev {
		left: -3px;
	}
	.blog-slider .slick-next {
		right: -3px;
	}
	.article-img {
		margin: 0 -30px 48px;
	}
	.article-img figcaption {
		padding: 16px 30px 0;
	}
}