* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
}
 :focus { outline: none; } 
html,
body {
	height: 100%;
}
body {
    color: #000;
    background-color: #fdfdfd;
    font-family: "LatoRegular";
}
.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    box-shadow: 0 0 0 2px #fff;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin-left: 10px;
    margin-right: 10px;
}
.icon::after {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    top: -1px;
    left: -1px;
    padding: 1px;
    z-index: -1;
    background: #fff;
    transition: transform 0.2s, opacity 0.3s;
}
.icon:hover::after {
    transform: scale(1.4);
    opacity: 0;
}
.icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.icon:hover img {
    filter: invert(1);
}
.clearfix {
    zoom: 1;
}
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}

/* header */
.header {
	flex: 0 0 auto;
    padding-top: 16px;
    padding-bottom: 16px;
	background-color: #28205a;
	background-image: url(../img/bg.png);
	position: sticky;
    top: 0;
    z-index: 300;
}
.header__container {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.header__logo {
    width: 25%;
}
.header__logo a {
    display: table;
}
.header__logo a img {
    display: block;
}
.header__title {
    width: 50%;
    text-align: center;
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;
    font-family: "LatoRegular";
	color: #fff;
}
.header__title span {
    font-family: "LatoLight";
    font-size: 21px;
}
.header__contacts {
    width: 25%;
}
.header__phone {
    display: inline-block;
    float: right;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    line-height: 38px;
    font-family: "LatoBlack";
    margin-bottom: 10px;

    background-image: linear-gradient(90deg, #c5a678 0%, #edd1a0 50%, #c5a678 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    /*background-image: linear-gradient(#2e2e2e, #2e2e2e);
    background-position: 0% 94%;
    background-repeat: no-repeat;
    background-size: 0% 2px;*/
	
    transition: background-size .3s;
}
.header__phone:hover {
    /*background-size: 100% 2px;*/
}
.header__address {
    float: right;
    font-size: 13px;
    line-height: 24px;
    color: #fff;
    font-family: "LatoSemibold";
    background-image: url(../img/ico-address.png);
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 18px;
}

/* nav */
.wrap-nav {
    background-color: #f6f6f6;
    background-repeat: repeat;
    background-position: center;
	-webkit-box-shadow: 0 2px 2px rgba(224,224,224,0.5);
	-moz-box-shadow: 0 2px 2px rgba(224,224,224,0.5);
	box-shadow: 0 2px 2px rgba(224,224,224,0.5);
		position: sticky;
    top: 108px;
    z-index: 300;
}
.nav-container {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    list-style: none;
}
.nav__item {
    width: auto;
}
.nav__item.active {
   /* background-color: #48454c; */
}

.nav__item.active .nav__link{
	
}

.nav__link {
    color: #2f2f2f;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    line-height: 38px;
    font-family: "LatoRegular";
    transition: color .3s;
    padding-top: 10px;
    padding-bottom: 12px;
    padding-left: 15px;
    padding-right: 15px;
}
.nav__item:hover .nav__link {
    text-decoration: underline;
}


.nav li:nth-child(1), .nav__item.active .nav__link,
.nav__item.active:hover .nav__link {
    background-image: linear-gradient(90deg, #c5a678 0%, #edd1a0 50%, #c5a678 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
	font-weight: 800;
	margin-right: 60px;
	position: relative;
}

.nav li:nth-child(1) a:after{
	display: block;
	content: "";
	position: absolute;
	width: calc(100% - 30px);
	bottom: 15px;
	height: 2px;
	background-image: linear-gradient(90deg, #c5a678 0%, #edd1a0 50%, #c5a678 100%);
}

.nav li:nth-child(1) a:hover{
	text-decoration: none;
}

.nav__item:last-child {
    padding-top: 60px;
    padding-bottom: 30px;
}
.nav__tel {
    font-size: 30px;
    line-height: 46px;
    font-family: "LatoBlack";
    display: table;
    margin-left: auto;
    margin-right: auto;
    color: #2e2e2e;
    text-decoration: none;
}
.nav__address {
    font-size: 26px;
    line-height: 46px;
    color: #152131;
    display: table;
    margin-left: auto;
    margin-right: auto;
}
.nav-logo {
    display: block;
    margin-left: 20px;
    float: left;
}
.c-hamburger {
    float: right;
}
.c-hamburger {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 2px 15px 0 0;
    padding: 0;
    width: 75px;
    height: 75px;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.c-hamburger:focus {
    outline: none;
}
.c-hamburger span {
    display: block;
    position: absolute;
    top: 36px;
    left: 5px;
    right: 5px;
    height: 5px;
    background: #ccad7e;
    border-radius: 3px;
}
.c-hamburger span::before,
.c-hamburger span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #ccad7e;
    content: "";
    border-radius: 3px;
}
.c-hamburger span::before {
    top: -12px;
}
.c-hamburger span::after {
    bottom: -12px;
}
.c-hamburger--htx {
    background-color: transparent;
}
.c-hamburger--htx span {
    transition: background 0s 0.3s;
}
.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}
.c-hamburger--htx span::before {
    transition-property: top, transform;
}
.c-hamburger--htx span::after {
    transition-property: bottom, transform;
}
.c-hamburger--htx.is-active {
    background-color: transparent;
}
.c-hamburger--htx.is-active span {
    background: none;
}
.c-hamburger--htx.is-active span::before {
    top: 0;
    transform: rotate(45deg);
}
.c-hamburger--htx.is-active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}
.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
    transition-delay: 0s, 0.3s;
}
.filters__open {
    font-size: 18px;
    line-height: 40px;
    font-family: "LatoBold";
    background-image: url(../img/ico-filter.png);
    background-position: right center;
    background-repeat: no-repeat;
    cursor: pointer;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* content */
.content {
	flex: 1 0 auto;
	padding-bottom: 40px;
}
.content__container {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
}
.content__filters {
    width: 20%;
    float: left;
    padding-right: 15px;
	position: relative;
	margin-right: 60px;
}

.bx_filter .bx_filter_popup_result.left {
    right: 0%;
}

.content__product-list {
    width: calc(80% - 60px);
    float: left;
    padding-left: 15px;
}
.content__top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 23px;
    padding-bottom: 23px;
}
.block1 {
    font-size: 16px;
    line-height: 24px;
    font-family: "LatoHeavy";
    color: #8b8b8b;
}

.block1.user{
background-image: linear-gradient(90deg, #c5a678 0%, #edd1a0 50%, #c5a678 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;	
}

.personal {
    font-size: 16px;
    line-height: 24px;
    font-family: "LatoRegular";
    color: #fff;
    text-decoration: none;
    border: 2px solid #ccad7e;
	background-color: #ccad7e;
    border-radius: 23px;
    padding: 10px 30px;
    transition: all .3s;
	position: relative;
	overflow: hidden;
}
.personal:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.personal span {
    background-image: url(../img/ico-kabinet.png);
    background-position: left center;
    padding-left: 20px;
    background-repeat: no-repeat;
}

/* filters */
.polzunok-container-5 *,
.polzunok-container-6 * {
    box-sizing: border-box;
    outline: none;
}
.polzunok-container-5:after,
.polzunok-container-6:after {
    content: "";
    clear: both;
    display: table;
}
.polzunok-container-5 .ui-slider,
.polzunok-container-6 .ui-slider {
    position: relative;
    background: #f6f6f6;
    height: 4px;
}
.bx_ui_slider_handle.left,
.bx_ui_slider_handle.right {
    position: absolute;
    margin-left: -10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    border-radius: 50%;
    top: -6px;
    background: #ccad7e !important;
    z-index: 2;
	background-image: none !important;
}

.min-price,
.max-price {
    height: 35px;
    background: transparent;
    border: 2px solid #f6f6f6;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    width: 50%;
    margin-top: 30px;
    padding: 0;
}

.filter__empty .min-price {
    text-align: right;
}

.filter__empty .max-price {
    text-align: left;
}

.min-price {
    float: left;
}

.max-price {
    float: right;
}

.polzunok-container-6 .bx_ui_slider_track {
    position: absolute;
    z-index: 1;
    height: 10px;
    border: 0;
    background: #f6f6f6;
    height: 4px;
}

.filter__empty.price .max-price,
.filter__empty.price .min-price{
	width: 80px;
}

.filter__empty .max-price,
.filter__empty .min-price {
    margin-top: 0;
    float: right;
    width: 30px;
    border: 0 solid #f6f6f6;
    height: 27px;
    outline: none;
}
.filter__slider .filter__empty span {
    float: right;
    display: block;
    margin-left: 5px;
    margin-right: 5px;
    line-height: 20px;
}
.filter__radio-btn {
	display: inline-block;
}
.filter__radio-btn + .filter__radio-btn {
    margin-left: -4px;
}
.filter__radio-btn input[type=radio] {
	display: none;
}
.filter__radio-btn label {
	display: inline-block;
	cursor: pointer;
	padding: 6px 0px;
	user-select: none;
    font-size: 16px;
    line-height: 20px;
    border: 2px solid #e7e7e7;
    width: 100px;
    text-align: center;
    transition: all .3s;
}
.filter__radio-btn input[type=radio]:checked + label {
	background: #ccad7e;
    color: #fff;
    border: 2px solid #ccad7e;
}
.filter__radio .filter__empty {
    color: #2e2e2e;
}
.filters {
    width: 100%;
}
.filter__dropdown {
    margin-bottom: 30px;
}
.filters__title {
    font-size: 18px;
    line-height: 38px;
    font-family: "LatoHeavy";
    text-align: center;
    margin-top: -10px;
    margin-bottom: 15px;
}
.filter__head {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
.filter__head-arrow {
    content: "";
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    right: 0;
    top: 2px;
    background-image: url(../img/arrow-right.png);
    background-position: center;
    background-size: cover;
    cursor: pointer;
}
.filter__title {
    font-size: 14px;
    line-height: 24px;
    font-family: "LatoBlack";
    padding-right: 15px;
}
.secondary .filter__head{
cursor: pointer;	
}

.secondary .filter__title {
    font-size: 16px;
    line-height: 24px;
    font-family: "LatoBlack";
    padding-right: 15px;
}
.filter__view {
    padding-right: 20px;
}
.filter__empty {
    font-size: 18px;
    line-height: 24px;
    color: #727272;
}
.filled {
    display: inline-block;
}
.filled span {
    font-size: 18px;
    line-height: 24px;
}
.filled span + span {
    margin-left: 3px;
}
.mutliSelect ul {
    list-style: none;
}
.mutliSelect ul li {
    margin-bottom: 15px;
}
.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.custom-checkbox+label {
    display: inline-flex;
    
    align-items: center;
    user-select: none;
    cursor: pointer;
    color: #322d3a;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    z-index: 1;
}
.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #e7e7e7;
    background-color: #fff;
    border-radius: 3px;
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all .3s;
    position: relative;
}
.custom-checkbox+label::after {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    content: '';
    top: 1px;
    left: 1px;
    padding: 1px;
    z-index: -1;
    background: #e7e7e7;
    transition: transform 0.1s, opacity 0.2s;
    z-index: -1;
}
.custom-checkbox:checked+label::before {
  border-color: #e7e7e7;
  background-color: #fff;
    background-image: url(../img/checkbox.png);
}
.custom-checkbox:checked+label::after {
    transform: scale(1.4);
    opacity: 0;
}
.filter__dropdown.secondary .filter__body {
    display: none;
}

/* product-list */
.product-list {
    list-style: none;
    display: block;
}
.product-list__item {
	border: 1px solid transparent;
    display: block;
    margin-bottom: 36px;
    transition: box-shadow .5s;
    /*box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.08);*/
	background-color: #f7f7f7;
	border: 1px solid #e4e4e4;
}
.product-list__item:hover {
   /* box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.2);*/
}

.product-list__item.premium{
	background-color: #fffbf5;
	border: 1px solid #ffe0b0;
}

.product {
    padding: 15px 15px 11px 15px;
   /* background-color: #fff;*/
    /*overflow: hidden;*/
    display: flex;
    
    position: relative;
}
.product__label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #fff;
    background-color: #ccad7e;
    padding: 4px 11px;
    font-size: 14px;
    line-height: 20px;
    font-family: "LatoSemibold";
    z-index: 2;
}
.premium .product {
    padding-bottom: 15px;
    
}
.product__grid-img {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-template-rows: auto auto auto auto;
    gap: 5px 5px;
    flex: 0 1 auto;
    margin-right: 30px;
    position: relative;
    z-index: 1;
	height: 165px;
}
.premium .product__grid-img {
	height: 215px;
}
.product__grid-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 5px);
    background-color: #000;
    opacity: 0;
    z-index: 2;
    transition: all .3s;
}
.premium .product__grid-img::after {
    height: 100%;
}
.product__grid-img:hover::after {
    opacity: .5;
}
.product__grid-img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 40px;
    height: 40px;
    background-image: url(../img/ico-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: all .3s;
    transform: translate(-50%, -50%) scale(.1);
}
.product__grid-img:hover::before {
    opacity: .95;
    transform: translate(-50%, -50%) scale(1);
}
.product__grid-img img {
    display: block;
}
.product__img:nth-child(1) {
    grid-area: 1 / 1 / 4 / 5;
}
.product__img:nth-child(2) {
    grid-area: 1 / 5 / 2 / 6;
}
.product__img:nth-child(3) {
    grid-area: 2 / 5 / 3 / 6;
}
.product__img:nth-child(4) {
    grid-area: 3 / 5 / 4 / 6;
}
.product__img:nth-child(5) {
    grid-area: 4 / 5 / 5 / 6;
}
.product__img:nth-child(6) {
    grid-area: 4 / 4 / 5 / 5;
}
.product__img7:nth-child(7) {
    grid-area: 4 / 3 / 5 / 4;
}
.product__img:nth-child(8) {
    grid-area: 4 / 2 / 5 / 3;
}
.product__img:nth-child(9) {
    grid-area: 4 / 1 / 5 / 2;
}
.product__description {
    flex: 1 1 auto;
    margin-top: -5px;
    display: flex;
    flex-direction: column;
}
.product__title {
    flex: 0 1 auto;
}
.product__title a {
    font-size: 18px;
    line-height: 26px;
    color: #2f2f2f;
    text-decoration: none;
    font-family: "LatoBlack";
    background-image: linear-gradient(#2e2e2e, #2e2e2e);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
    padding-bottom: 2px;
}
.premium .product__title a {
    font-size: 22px;
    line-height: 28px;
}
.product__title a:hover {
    background-size: 100% 2px;
}
.product__subtitle {
    font-size: 18px;
    line-height: 28px;
    font-family: "LatoBold";
    flex: 0 1 auto;
}

.page-in__col1 .product__subtitle{
	margin-bottom: 25px;
}

.product__price-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex: 0 1 auto;
    margin-bottom: 10px;
}
.product__price {
    font-size: 22px;
    line-height: 26px;
    font-family: "LatoBlack";
	color: #6f6f6f;
}

.premium .product__price {
	color: #ccad7e;
}
.product__price span {
    font-size: 18px;
    line-height: 26px;
    font-family: "LatoBlack";
}
.product__icon {
    display: flex;
    position: relative;
    cursor: pointer;
}
.tooltip {
    position: absolute;
    z-index: 1;
    bottom: 36px;
    left: 50%;
    margin-left: -80px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.19);
    width: 160px;
    font-size: 12px;
    line-height: 16px;
    font-family: "LatoRegular";
    padding: 1px 8px;
    display: none;
    background-color: #fff;
}
.flip-icon:nth-last-child(1) .tooltip {
    left: auto;
    right: -15px;
}
.flip-icon:nth-last-child(2) .tooltip {
    left: auto;
    right: -45px;
}
.flip-icon {
    perspective: 1000px;
    margin-left: 7px;
    margin-right: 7px;
}
.flip-icon__inner {
    position: relative;
    text-align: center;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}
.flip-icon:hover .flip-icon__inner {
    transform: rotateY(180deg);
    transition: transform 0.7s;
}
.flip-icon__front, .flip-icon__back {
    backface-visibility: hidden;
}
.flip-icon__front {
    display: block;
}
.flip-icon__front img {
    display: block;
	width: auto;
	height: 30px;
}
.flip-icon__back {
    transform: rotateY(180deg);
    margin-top: -30px;
}
.flip-icon__back img {
    display: block;
	    display: block;
	width: auto;
	height: 30px;
	filter: grayscale(1);
}
.product__more {
    position: relative;
    flex: 1 1 auto;
    overflow: hidden;
    /*max-height: 74px;*/
    margin-bottom: 10px;
	    font-size: 14px;
    line-height: 18px;
    font-family: "LatoRegular";
}
/*
.product__more::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40px;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 60%, rgba(255,255,255,0) 100%);
}
.premium .product__more::after {
    background: linear-gradient(0deg, rgba(255,255,255,1) 10%, rgba(255,255,255,0.5) 60%, rgba(255,255,255,0) 100%);
}
*/
.product__more p {
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    font-family: "LatoRegular";
}
.product__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product__footer p {
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 15px;
    font-family: "LatoRegular";
    color: #8b8b8b;
}
.product__checked {
    color: #8b8b8b;
    font-size: 12px;
    line-height: 18px;
    font-family: "LatoHeavy";
    background-image: url(../img/checked.png);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 17px;
}

/* pager */
.pager {
    list-style: none;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}
.pager li {
    display: inline-block;
    padding-left: 3px;
    padding-right: 3px;
}
.pager li a {
    text-decoration: none;
    color: #b1b1b1;
    font-size: 18px;
    line-height: 22px;
    transition: color .3s;
}
.pager li:hover a {
    color: #2e2e2e;
}
.pager li.active a {
    color: #2e2e2e;
}

/* footer */
.footer {
	flex: 0 0 auto;
    background-color: #28205a;
    background-image: url(../img/bg.png);
    background-repeat: repeat;
    background-position: center;
    padding-top: 23px;
    padding-bottom: 23px;
}
.footer__container {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__item1 {
    flex: 0 1 auto;
    padding-right: 50px;
}
.footer__item2 {
    flex: 0 1 auto;
}
.footer__item3 {
    flex: 0 1 auto;
}
.footer__item4 {
    flex: 0 1 auto;
}
.footer__logo {
    display: inline-block;
}
.footer__logo a {
    display: inline-block;
}
.footer__logo a img {
    display: block;
}
.footer__social {
    display: inline-block;
}
.footer__social .icon {
    float: left;
}
.footer__powered {
    display: inline-block;
}
.footer__powered-text {
    font-size: 18px;
    line-height: 20px;
    text-align: right;
    font-family: "LatoLight";
    color: #ccad7e;
    float: left;
    margin-top: -3px;
    margin-right: 20px;
}
.footer__powered-img {
    display: block;
    float: left;
}
.footer__copyright {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    line-height: 23px;
    text-align: right;
    font-family: "LatoLight";
}


/* new_css */

/* similar-ads */
.block-similar-ads {
    width: 100%;
    padding-top: 40px;
}
.block-similar-title {
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    font-family: "LatoBlack";
    margin-bottom: 40px;
}
.similar-ads {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 50px;
}
.similar-ads__item {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}
.similar-ads__item .similar-ads__wrap{
	border: 1px solid #e4e4e4;
	background-color: #f7f7f7;
}
.similar-ads__item.premium .similar-ads__wrap{
	border: 1px solid #ffe0b0;
	background-color: #fffbf5;
}
.similar-ads__label {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-family: "LatoSemibold";
    background-color: #ccad7e;
    padding: 4px 10px;
    position: absolute;
    left: 15px;
    top: 0;
    z-index: 3;
}
.similar-ads__img {
    display: block;
    position: relative;
    outline: none;
    margin-bottom: 10px;
}
.similar-ads__img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 40px;
    height: 40px;
    background-image: url(../img/ico-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: all .3s;
    transform: translate(-50%, -50%) scale(.1);
}
.similar-ads__img:hover::before {
    opacity: .95;
    transform: translate(-50%, -50%) scale(1);
}
.similar-ads__img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    z-index: 2;
    transition: all .3s;
}
.similar-ads__img:hover::after {
    opacity: .5;
}
.similar-ads__img img {
    display: block;
    width: 100%;
}
.similar-ads__wrap {
    background-color: #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    height: 400px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s;
}
.similar-ads__wrap:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}
.similar-ads__title {
    font-size: 18px;
    line-height: 22px;
    font-family: "LatoBlack";
    text-decoration: none;
    color: #2f2f2f;
    margin-bottom: 10px;
    transition: .3s;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    flex: 1 1 auto;
    outline: none;
}
.similar-ads__title:hover {
    opacity: .7;
}
.similar-ads__subtitle {
    font-size: 14px;
    line-height: 18px;
    font-family: "LatoBold";
    padding-left: 10px;
    padding-right: 10px;
}
.similar-ads__price {
    font-family: "LatoBlack";
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
	color: #6f6f6f;
}
.similar-ads__item.premium .similar-ads__price{
	color: #ccad7e;
}

.similar-ads__price span {
    font-family: "LatoRegular";
}
.similar-ads__text {
    font-size: 14px;
    line-height: 18px;
    padding-left: 10px;
    padding-right: 10px;
}
.slick-prev {
    left: 15px;
    top: 20%;
    z-index: 9;
    width: 22px;
    height: 37px;
    background-image: url(../img/arrow-left-slider.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s;
}
.slick-next {
    right: 15px;
    top: 20%;
    z-index: 9;
    width: 22px;
    height: 37px;
    background-image: url(../img/arrow-right-slider.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s;
}
.slick-prev:before, .slick-next:before {
    display: none;
}
.slick-prev:hover,
.slick-next:hover {
    opacity: .5;
}

/* page-in */
.wrap-page-in {
    background-color: #fff;
    padding-top: 10px;
}
.page-in__col1 {
    width: 66.66666%;
    float: left;
    padding-right: 15px;
    padding-bottom: 15px;
    clear: both;
}
.page-in__col2 {
    width: 33.33333%;
    float: left;
    padding-left: 15px;
    position: relative;
    z-index: 3;
}
.page-in-text {
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 30px;
}
.page-in-text + .page-in-text {
    border-top: 2px solid #ccad7e;
}
.page-in-text__col1 {
    width: 25%;
    float: left;
    padding-right: 15px;
    font-size: 16px;
    line-height: 24px;
    color: #b1b1b1;
    font-family: "LatoBold";
}
.page-in-text__col2 {
    width: 75%;
    float: left;
    padding-left: 15px;
    font-size: 16px;
    line-height: 24px;
}
.list-parameters {
    list-style: none;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.list-parameters li {
    width: calc(50% - 15px);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccad7e;
}
.list-parameters li span {
    display: inline-block;
    color: #b1b1b1;
    font-size: 16px;
    line-height: 24px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.list-parameters li span:nth-child(2) {
    color: #2e2e2e;
}
.btn-back {
    display: table;
    float: left;
    color: #fff;
	border-radius: 20px;
	background-color: rgb(204, 173, 126);
	font-size: 14px;
	line-height: 38px;
	width: 110px;
	text-align: center;
	text-decoration: none;
	margin-bottom: 30px;
	margin-top: 30px;
}
.btn-back:before{
	display: inline-block;
	width: 10px;
	height: 9px;
	background-image: url('../img/back_arr.png');
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	content: "";
	padding-right: 10px;
	margin-left: -5px;
}
.content__top > .btn-back{
	margin-bottom: 0px;
	margin-top: 0px;
}

.page-in__title {
    font-size: 24px;
    line-height: 36px;
    font-family: "LatoBold";
    margin-bottom: 25px;
}
.page-in__wrap-slider {
    border: 2px solid #f6f6f6;
    padding-left: 66px;
    padding-right: 66px;
    position: relative;
    margin-bottom: 6px;
}
.page-in__slider.slick-initialized.slick-slider {
    margin-bottom: -2px;
}
.page-in__slider .slick-prev {
    top: 50%;
    transform: translateY(-50%);
    left: -35px;
    background-image: url(../img/arrow-left2.png);
    width: 18px;
    height: 31px;
}
.page-in__slider .slick-next {
    top: 50%;
    transform: translateY(-50%);
    right: -35px;
    background-image: url(../img/arrow-right2.png);
    width: 18px;
    height: 31px;
}
.page-in__slider-item img {
    display: block;
    width: 100%;
}
.page-in__slider-nav {
    padding-left: 64px;
    padding-right: 68px;
    margin-bottom: 30px;
}
.page-in__slider-item {
    position: relative;
}
.slide-zoom {
    position: absolute;
    top: 12px;
    right: -46px;
    width: 28px;
    height: 24px;
}
.page-in__slider .slick-list {
    overflow: inherit;
}
.page-in__slider-nav .slick-list.draggable {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.page-in__slider-nav .slick-list.draggable::before {
    width: 95px;
    height: 68px;
    position: absolute;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    content: "";
    z-index: 2;
    left: 4px;
    top: 0;
}
.page-in__slider-nav .slick-list.draggable::after {
    width: 95px;
    height: 68px;
    position: absolute;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    content: "";
    z-index: 2;
    right: 0;
    top: 0;
}
.page-in__slider-nav-item {
    padding-left: 4px;
    padding-right: 4px;
}

.page-in__slider-nav-item:hover{
	cursor: pointer;
}

.page-in__slider-nav-item img {
    width: 100%;
}
.page-in__slider-nav .slick-prev {
    top: 50%;
    transform: translateY(-50%);
    left: 91px;
    width: 15px;
    height: 24px;
    background-size: contain;
}
.page-in__slider-nav .slick-next {
    top: 50%;
    transform: translateY(-50%);
    right: 91px;
    width: 15px;
    height: 24px;
    background-size: contain;
}
.page-in__info {
    margin-bottom: 30px;
}
.page-in__col2-head {
    font-family: "LatoBlack";
    font-size: 24px;
    line-height: 34px;
    border-bottom: 2px solid #ccad7e;
    text-align: center;
    margin-bottom: 25px;
}
.page-in__col2-wrap-tel {
    border: 2px solid #f6f6f6;
    padding: 20px 45px;
}
.page-in__col2-head span {
    font-family: "LatoRegular";
}
.page-in__col2-title {
    font-family: "LatoBlack";
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}
.page-in__col2-subtitle {
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
}
.btn-phone-show {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    background-color: #28205a;
    text-align: center;
    padding: 18px 30px;
    cursor: pointer;
    /*background-image: url(../img/btn-gr.png);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 20px;
	display: block;
	position: relative;
	overflow: hidden;
}
.btn-phone-show.phone {
  /*  background: none;
    border: 2px solid #f6f6f6;
    color: #2e2e2e;*/
	color: #fff;
	display: none;
	font-size: 18px;
	
	
}

.btn-phone-show.phone a{
	color: #fff;
	text-decoration: none;
	font-family: "LatoBlack";
}

.callme {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    background-color: #ccad7e;
    text-align: center;
    padding: 18px 30px;
    cursor: pointer;
    /*background-image: url(../img/btn-gr2.png);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    text-decoration: none;
	position: relative;
	overflow: hidden;
}
.page-in__wrap-doc {
    border: 2px solid #f6f6f6;
    /*height: 70px;*/
    margin-top: 10px;
    display: flex;
    align-items: center;
   /* padding: 10px;*/
    padding: 5px;
}
.page-in__wrap-doc img {
    margin-right: 20px;
	height: 25px;
	width: auto;
}
.mod {
    width: auto;
    max-width: 680px;
	min-width: 360px;
    padding: 0;
    overflow: hidden;
}
.mod-title {
    text-align: center;
    font-size: 24px;
    line-height: 26px;
    font-family: "LatoBlack";
    margin-bottom: 20px;
}
.mod input {
    width: 100%;
    height: 46px;
    border: 1px solid #cecece;
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
    font-family: "LatoRegular";
}
.mod input.custom-checkbox{
width: auto;	
}

.mod textarea {
    border: 1px solid #cecece;
    font-size: 16px;
    padding: 15px;
    resize: none;
    width: 100%;
    height: 178px;
    font-family: "LatoRegular";
    margin-bottom: 15px;
}
.mod input::placeholder,
.mod textarea::placeholder {
    color: #cdcdcd;
    transition: opacity .3s;
}
.mod input:focus::placeholder,
.mod textarea:focus::placeholder {
    opacity: 0;
}
.mod .submit {
	width: auto;
    font-size: 14px;
    line-height: 24px;
    padding: 10px 60px 8px 60px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    border: none !important;
    background-color: #ccad7e;
    color: #fff;
    text-transform: uppercase;
    border-radius: 24px;
    cursor: pointer;
    /*background-image: url(../img/btn-gr2.png);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: box-shadow .3s;
}
.mod .submit:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.mod-check {
    margin-bottom: 20px;
}
.mod-check label {
    font-size: 12px;
    color: #979696;
}
.mod-check label a {
    text-decoration: underline;
	color: #979696;
    padding-left: 5px;
}
.mod-check .custom-checkbox+label::before {
    width: 12px;
    height: 12px;
    margin-right: 8px;
}
.mod-check .custom-checkbox+label::after {
    width: 10px;
    height: 10px;
    top: 5px;
}
.mod-check .custom-checkbox:checked+label::before {
    border-color: #e7e7e7;
    background-color: #e4e4e4;
    background-image: url(../img/checkbox2.png);
    background-size: cover;
}
#chek_bot{
	display: none;
}

.bx-filter-param-label.disabled, .mutliSelect li.disable label{
    pointer-events: none;
    filter: grayscale(1);
    color: #cfcfcf;
}

.filter-desctop .btn{
	display: inline-block;
    cursor: pointer;
    padding: 6px 0px;
    user-select: none;
    font-size: 16px;
    line-height: 20px;
    border: 1px solid #e7e7e7;
	color: #fff;
    width: 100px;
    text-align: center;
    transition: all .3s;
}
.filter-desctop .btn:focus{
	outline: none;
}

.filter-desctop{
	margin-bottom: 30px;
}

.filter-desctop .btn-ok{
background: #ccad7e;
border-radius: 20px;
}

.filter-desctop .btn-res{
background: #8a8a8a;
border-radius: 20px;
}
.mod-check .custom-checkbox+label.danger::before, input.danger{
	border: 1px solid #f00 !important;
}

.floating {
 background: #fff;
 width: 100%;
 max-width: 365px; /*указываем ширину*/
}
.fixed {
 position: fixed;
 top: 10px; /*здесь указываем отступ сверху*/
 z-index: 9999; /*устанавливаем блок поверх всех элементов на странице*/
}
.wrap-table {
    width: 100%;
}
.calc__table{
	width: 100%;
	max-width: 800px;
	margin: 30px auto;
	border-spacing: 0;
    border-collapse: collapse;
}
.calc__table th{
	background: #f6f6f6;
}

.calc__table td, .calc__table th{
	border: 1px solid #d1d1d1;
    padding: 10px;
    font-size: 14px;
    line-height: 18px;
	text-align: center;
}

/* page-home */
.section-home {
    min-height: calc(100vh - 196px);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    background-image: url(../img/slide-home1.jpg);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-home__desc {
    width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.section-home__title {
    font-size: 40px;
    line-height: 62px;
    text-transform: uppercase;
    font-family: "LatoBlack";
}
.section-home__subtitle {
    font-size: 40px;
    line-height: 62px;
    text-transform: uppercase;
    font-family: "LatoRegular";
    margin-bottom: 50px;
}
.section-home__list-zag {
    font-size: 40px;
    line-height: 62px;
    text-transform: uppercase;
    font-family: "LatoRegular";
    margin-bottom: 10px;
}
.section-home__list {
    list-style: none;
    font-family: "PlayfairDisplay-Regular";
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
}
.section-home__list li {
    background-image: url(../img/check-list.png);
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
	font-size: 32px;
    line-height: 56px;
}
.section-home__btn {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-family: "LatoRegular";
    background-color: #ccad7e;
    /*background-image: url(../img/btn-gr2.png);*/
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 18px 40px;
    display: inline-block;
    transition: box-shadow .3s;
	    position: relative;
    overflow: hidden;
	margin-left: 40px;
}


.section-home__btn:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.section-home2 {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #fff;
}
.section-home2 .content__container {
    overflow: initial;
}
.section-home2__title {
    font-size: 40px;
    line-height: 48px;
    font-family: "LatoBold";
    text-align: center;
    margin-bottom: 80px;
}
.wrap-flip-card {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.flip-card {
    background-color: transparent;
    width: calc(33.33333% - 30px);
    height: 431px;
    perspective: 1000px;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.flip-card.flip .flip-card-inner{
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding-left: 25px;
    padding-right: 25px;
}
.flip-card-front {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
}
.flip-card-front__img {
    flex: 1 1 auto;
}
.flip-card-front__title {
    font-size: 32px;
    line-height: 40px;
    font-family: "PlayfairDisplay-Medium";
}
.flip-card-back {
    background-color: #fff;
    transform: rotateY(180deg);
    text-align: left;
    padding-top: 25px;
    padding-bottom: 90px;
    background-repeat: no-repeat;
    background-position: right bottom;
}
.flip-card-back__title {
    font-size: 30px;
    line-height: 40px;
    font-family: "PlayfairDisplay-Regular";
    text-align: center;
    margin-bottom: 20px;
}
.flip-card-back p {
    font-size: 17px;
    line-height: 26px;
    font-family: "LatoRegular";
    text-align: justify;
}
.flip-card-back strong {
    font-family: "LatoBlack";
}
.section-home3 {
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url(../img/section-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	position: relative;
}
.section-home3 .content__container {
    overflow: initial;
    padding-left: 0;
    padding-right: 0;
}
.section-home3__title {
    font-size: 40px;
    line-height: 48px;
    font-family: "LatoBold";
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 3;
}
.section-home3__text {
    padding: 20px 30px 25px 30px;
    transition: all .3s;
    position: relative;
	cursor: pointer;
}
.section-home3__text:hover {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.section-home3__text-title {
    font-size: 28px;
    line-height: 36px;
    font-family: "PlayfairDisplay-Regular";
    margin-bottom: 20px;
    background-image: url(../img/marker.png);
    background-position: left 12px;
    background-repeat: no-repeat;
    padding-left: 30px;
}
.section-home3__text p {
    font-size: 20px;
    line-height: 28px;
}
.section-home3__text strong {
    font-family: "LatoBold";
}
.fon-hover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: .3;
    display: none;
}
.section-home4 {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #28205a;
    background-image: url(../img/bg.png);
    background-repeat: repeat;
    background-position: center;
}
.section-home4__title {
    font-size: 40px;
    line-height: 48px;
    font-family: "LatoBold";
    text-align: center;
    margin-bottom: 70px;
    color: #ccad7e;
}
#tabs .img-left {
    float: left;
    margin-right: 40px;
    margin-bottom: 200px;
}
.section-home3__text .text-small, #tabs .text-small {
    font-size: 12px;
    line-height: 22px;
    margin-top: 30px;
}
#tabs p{
	font-size: 16px;
}
#tabs p.text-brown{
	font-size: 20px;
	color: #cc9966;
}

#tabs {
	margin: 10px 0;
}
.tabs-nav {
	display: table;
	margin: 0 0 50px 0;
	padding: 0;
	width: 100%;
}
.tabs-nav li {
	display: table-cell;
	float: none;
	margin: 0;
	padding: 0;
}    
.tabs-nav a {
	display: table;
	padding: 5px 10px;
	font-size: 32px;
    line-height: 38px;
	text-decoration: none;
	text-align: center;
	color: #fff;
    font-family: "PlayfairDisplay-Regular";
}
.tabs-nav li a {
    margin-left: auto;
    margin-right: auto;
}
.tabs-nav li:first-child a {
    margin-left: 0;
    margin-right: auto;
}
.tabs-nav li:last-child a {
    margin-left: auto;
    margin-right: 0;
}
.tabs-nav a.active {
	color: #ccad7e;
    border-bottom: 1px solid #ccad7e;
}    
.tabs-items {
	
}
.tabs-item {
	padding: 15px;
    overflow: hidden;
    color: #fff;
    font-size: 20px;
    line-height: 28px;
}
.section-home5 {
    padding-top: 90px;
    padding-bottom: 90px;
}
.section-home5 .content__container {
    overflow: initial;
}
.home-form {
    width: 100%;
    max-width: 1072px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #ccad7e;
    padding-left: 60px;
    padding-right: 60px;
}
.home-form__title {
    font-size: 40px;
    line-height: 48px;
    font-family: "LatoBold";
    text-align: center;
    margin-bottom: 70px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding-left: 90px;
    padding-right: 90px;
    background-color: #fdfdfd;
    margin-top: -30px;
}
.home-form__item {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
}
.home-form__item label {
    width: 50%;
    font-size: 18px;
    line-height: 24px;
    font-family: "PlayfairDisplay-Regular";
}
.home-form__item input[type=text] {
    width: 50%;
    height: 48px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    border: 1px solid #cecece;
    font-family: "LatoRegular";
    background-color: transparent;
    transition: all .3s;
}
.home-form__item input[type=text]::placeholder {
    color: #cecece;
    opacity: 1;
    transition: all .5s;
}
.home-form__item input[type=text]:focus {
    border-color: #ccad7e;
    background-color: #fff;
}
.home-form__item input[type=text]:focus::placeholder {
    opacity: 0;
}
.home-form__item textarea {
    width: 100%;
    height: 182px;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 15px;
    border: 1px solid #cecece;
    font-family: "LatoRegular";
    background-color: transparent;
    resize: none;
    transition: all .3s;
}
.home-form__item textarea:focus {
    border-color: #ccad7e;
    background-color: #fff;
}
.home-form .mod-check label {
    font-size: 16px;
}
.home-form .mod-check label span, .home-form .mod-check label a {
    text-decoration: underline;
	color: #979696;
}
.home-form .submit {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-family: "LatoRegular";
    background-color: #ccad7e;
    border: none;
    text-transform: uppercase;
    padding: 18px 55px;
    border-radius: 30px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -30px;
    position: relative;
    cursor: pointer;
    /*background-image: url(../img/btn-gr2.png);*/
    background-repeat: no-repeat;
    background-position: center;
    transition: box-shadow .3s;
	overflow: hidden;
}
.home-form .submit:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.home-form .wrap_form_but{
padding: 20px 0px;
    border-radius: 30px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -30px;
    position: relative;	
}

.home-form .wrap_form_but::after {
    content: "";
    display: block;
    width: 50px;
    height: 100%;
    top: 0;
    right: -50px;
    position: absolute;
    background-color: #fdfdfd;
}
.home-form .wrap_form_but::before {
    content: "";
    display: block;
    width: 50px;
    height: 100%;
    top: 0;
    left: -50px;
    position: absolute;
    background-color: #fdfdfd;
}
.home-form .jq-selectbox {
    width: 50%;
}
.home-form .jq-selectbox__select {
    height: 48px;
    border-radius: 0;
    font-size: 18px;
    line-height: 40px;
    font-family: "LatoRegular";
    box-shadow: none;
    background-image: none;
    background-color: transparent;
    color: #cecece;
}

.home-form .jq-selectbox.jqselect.changed .jq-selectbox__select {
    color: #2e2e2e;
}
.home-form .jq-selectbox__trigger {
    border-left: none;
    top: 6px;
}
.home-form .jq-selectbox__dropdown {
    border-radius: 0px;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    font-family: "LatoRegular";
}

.home-form #select-52-styler .jq-selectbox__trigger-arrow{
    border-top: 5px solid #fff;	
}

.home-form #select-52-styler .jq-selectbox__select{
	text-shadow: none;
	background-color: #ccad7e;
    color: #fff;
}

.home-form .jq-selectbox li.selected {
    background-color: #cecece;
}
.jq-selectbox li:hover {
    background-color: #cc9966;
}
.home-form .jq-selectbox__dropdown ul li:first-child {
    display: none;
}
.section-home6 {
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url(../img/home-search-bg.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
}
.section-home6 .content__container {
    overflow: initial;
}
.section-home6__title {
    font-size: 40px;
    line-height: 48px;
    font-family: "LatoBold";
    text-align: center;
    margin-bottom: 70px;
}
.section-home6__subtitle {
    font-size: 20px;
    line-height: 28px;
    font-family: "LatoBold";
    text-align: center;
    margin-bottom: 30px;
}
.home-form2 {
    display: flex;
    width: 930px;
    margin-left: auto;
    margin-right: auto;
	justify-content: center;
}
.home-form2 .submit {
    font-size: 20px;
    line-height: 53px;
    font-family: "LatoRegular";
    color: #fff;
    background-color: #ccad7e;
    border: none;
    cursor: pointer;
    /*background-image: url(../img/btn-gr2.png);*/
    background-repeat: no-repeat;
    background-position: center;
    padding-left: 68px;
    padding-right: 68px;
}
.home-form2__item{
	
}
.home-form2__item label {
    display: none;
}
.home-form2 .jq-selectbox {
    width: 100%;
}
.home-form2 .jq-selectbox__select, .home-form2 .bx-filter-select-text {
    border: none !important;
    background: #fff !important;
    border-radius: 0;
    box-shadow: none;
    height: 53px;
    font-size: 18px;
    line-height: 53px;
    font-family: "LatoRegular";
    color: #666666;
	padding: 0 45px 0 10px;
	
}
.home-form2 .jq-selectbox__trigger {
    border-left: none;
}
.home-form2 .jq-selectbox__trigger-arrow {
    top: 25px;
}

.home-form2 .bx-filter-select-block{
position: relative;	
}

.home-form2 .bx-filter-select-arrow{
	position: absolute;
    top: 25px;
    right: 12px;
    width: 0;
    height: 0;
    border-top: 5px solid #999;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;

}

.popup-window{
	padding: 0 !important;
}

.home-form2 .jq-selectbox__dropdown {
    width: auto;
    min-width: 100%;
    border-radius: 0;
}

.bx-filter-select-popup ul{
position: relative;
    overflow: auto;
    overflow-x: hidden;
    list-style: none;
}

.bx-filter-select-popup ul li {
    color: #666666;
    font-size: 18px;
    line-height: 24px;
    font-family: "LatoRegular";
	    padding: 5px 10px 6px;
}
.bx-filter-select-popup  ul li.selected,
.bx-filter-select-popup  ul li:hover {
	background-color: #cc9966;
    color: #fff;
}

.section-home7 {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #28205a;
    background-image: url(../img/bg.png);
    background-repeat: repeat;
    background-position: center;
}
.section-home7 .content__container {
    padding-left: 68px;
    padding-right: 68px;
}
.section-home7 .content__container p {
    color: #fff;
    font-size: 22px;
    line-height: 28px;
    font-family: "LatoLight";
    margin-bottom: 10px;
}
.section-home7 .content__container p a {
    color: #fff;
    text-decoration: none;
    background-image: linear-gradient(#fff, #fff);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    padding-bottom: 2px;
    transition: background-size .3s;
}
.section-home7 .content__container p a:hover {
    background-size: 100% 1px;
}
.section-home7 .content__container strong {
    font-family: "LatoRegular";
    font-weight: normal;
}
.section-home7__title {
    font-size: 40px;
    line-height: 48px;
    font-family: "LatoBold";
    text-align: center;
    margin-bottom: 70px;
    color: #ccad7e;
}
.section-home7__btn {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-family: "LatoRegular";
    background-color: #ccad7e;
    /*background-image: url(../img/btn-gr2.png);*/
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 18px 40px;
    /*display: table;*/
    display: block;
	width: 352px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    transition: box-shadow .3s;
	position: relative;
	overflow: hidden;
}
.section-home7__btn:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.wrap-map {
    width: 100%;
    height: 492px;
    filter: sepia(0.2);
}
.wrap-map > div {
    height: 100%;
}

.search-top {
	position: relative;
}

.search-top input.search_form {
	width: 530px;
	height: 40px;
	border: 1px solid #cfcfcf;
	border-radius: 20px;
	font-size: 14px;
	line-height: 38px;
	font-family: "LatoRegular";
	padding-left: 25px;
	color: #2e2e2e;
	padding-right: 141px;
}

.search-top input.but_search {
	width: 116px;
	height: 40px;
	border: 1px solid #ccad7e;
	cursor: pointer;
	border-radius: 20px;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 14px;
	line-height: 38px;
	font-family: "LatoRegular";
	color: #fff;
	background-color: #ccad7e;
	text-align: center;
	/*padding-left: 15px;*/
	background-image: url(../img/ico-search.png);
	background-repeat: no-repeat;
	/*background-position: 24px center;*/
	background-position: 18px center;
}

.bx-filter-select-text, .bx-filter-select-popup ul li label{
cursor: pointer;	
}

.bx-filter-select-popup ul li label {
    width: 100%;
    cursor: pointer;
    display: block;
    padding: 5px 10px 6px;
}

.where2, .where3, .where4{
	display: none;
}

#modef{
	background: #ececec;
}
#modef:after{
	display: block;
	content: "";
	width: 46%;
	height: 100%;
	position: absolute;
	right: 0;
	background: #ccad7e;
	top: 0px;
	z-index: -1;
}


.kabinet {
    width: 100%;
	}
.kabinet .content__product-list {
    width: 100%;
    float: right;
    padding-left: 0;
}
.kabinet .product-list__item {
    width: calc(100% - 278px);
    position: relative;
    float: right;
}
.kabinet .produkt-left {
    width: 278px;
    float: left;
    padding-right: 30px;
    position: absolute;
    top: 0;
    left: -278px;
}
.kabinet .product__more {
    padding-top: 6px;
}
.kabinet .product__more::after {
    display: none;
}
.kabinet .product__more p {
    font-size: 12px;
    line-height: 15px;
    font-family: "LatoRegular";
    color: #8b8b8b;
}
.kabinet .product__footer {
    padding-right: 6px;
    padding-bottom: 5px;
}
.product__footer-btn {
    background-color: #ccad7e;
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    text-decoration: none;
    padding: 4px 5px 6px 5px;
    min-width: 122px;
    text-align: center;
    border-radius: 13px;
    transition: box-shadow .3s;
}
.product__footer-btn:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.produkt__plan {
    font-size: 16px;
    line-height: 24px;
    font-family: "LatoRegular";
    margin-bottom: 10px;
}
.produkt__plan a {
    font-size: 16px;
    line-height: 24px;
    font-family: "LatoBold";
    color: #6f6f6f;
}
.premium .produkt__plan span {
    color: #ccad7e;
}
.produkt__date {
    font-size: 16px;
    line-height: 24px;
    font-family: "LatoRegular";
    margin-bottom: 10px;
}
.produkt__date span {
    font-size: 16px;
    line-height: 24px;
    font-family: "LatoBold";
}
.produkt__status {
    font-size: 16px;
    line-height: 24px;
    font-family: "LatoRegular";
    margin-bottom: 10px;
}
.produkt__status span {
    font-size: 16px;
    line-height: 24px;
    font-family: "LatoBold";
}

#contact-form, #callme-form{
	padding: 20px 30px;
	padding-left: 340px;
	background-image: url('../img/form_bg_callme.png');
	background-position: left center;
	background-repeat: no-repeat;
}
#callme-form{
	background-image: url('../img/form_bg.png');	
}

.home-form__item.calend input[type=text]{
	margin-right: 20px;
	width: 300px;
}

.calend{
	margin-bottom: 35px;
}


.mod3 {
    width: 100%;
    max-width: 360px;
    box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.28);
    padding: 20px 15px;
    background-color: #fff;
	margin: 0 auto;
}
.mod3__in {
    border: 1px solid #ccccc2;
}
.mod3__title {
    font-size: 16px;
    line-height: 24px;
    font-family: "LatoBlack";
    padding-left: 10px;
    padding-right: 10px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-56%);
    background-color: #fff;
}
.mod3__in p {
    font-size: 11px;
    line-height: 16px;
    text-align: center;
    margin-bottom: 8px;
	color: #2e2e2e !important;
}
.mod3_in font.notetext, font.notetext{
	color: #2e2e2e !important;
}

.mod3__wrap-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    margin-top: 16px;
}
.btn-yes {
    padding: 1px 15px 5px 15px !important;
    background-color: #ccad7f;
    color: #fff;
    text-decoration: none;
    font-size: 12px !important;
    min-width: 72px;
    display: table;
    text-align: center;
    border-radius: 20px;
    transition: box-shadow .3s;
    margin: 0 8px;
	width: auto !important;
	height: auto !important;
	border: none !important;
	cursor: pointer;
}
#active_tarif, #active_id, #active_uid, #active_name{
	display: none;
}

.btn-no {
    padding: 1px 15px 5px 15px;
    background-color: #6f6f6f;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    min-width: 72px;
    display: table;
    text-align: center;
    border-radius: 20px;
    transition: box-shadow .3s;
    margin-left: 8px;
    margin-right: 8px;
}
.btn-yes:hover,
.btn-no:hover {
    box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.28);
}
.mod3__f-btn, .mod3__footer-btn {
    padding: 1px 15px 5px 15px;
    background-color: #ccad7f;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    min-width: 90px;
    display: table;
    text-align: center;
    border-radius: 20px;
    transition: box-shadow .3s;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(50%);
    position: relative;
	border-color: transparent;
}
.mod3__footer-btn-wrap::after, .mod3__footer-btn::after {
    content: "";
    width: 10px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: -10px;
    top: 0;
}
.mod3__footer-btn-wrap::before, .mod3__footer-btn::before {
    content: "";
    width: 10px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    right: -10px;
    top: 0;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: -12px;
    top: -12px;
    /*right: -5px;
    top: -5px;*/
}
.wrap-tarif-plan {
    padding-top: 40px;
    padding-bottom: 84px;
}
.tarif-plan {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 50px;
}
.tarif-plan:last-child {
    margin-bottom: 84px;
}
.tarif-plan__item1 {
    flex: 0 1 auto;
}
.activated .tarif-plan__item1 img {
    filter:  grayscale(1) brightness(0.6);
    color: #6f6f6f;
}
.tarif-plan__item2 {
    flex: 1 1 auto;
    padding-left: 30px;
    padding-right: 30px;
}
.tarif-plan__item3 {
    flex: 0 1 auto;
}
.tarif-plan__title {
    color: #ccad7e;
    font-family: "LatoBold";
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    margin-bottom: 10px;
}
.activated .tarif-plan__title {
    color: #6f6f6f;
}
.tarif-plan__text {
    font-size: 18px;
    line-height: 24px;
    font-family: "LatoRegular";
    margin-bottom: 20px;
}
.tarif-plan__footnote {
    font-size: 12px;
    line-height: 22px;
    font-family: "Roboto-Light";
}
.tarif-plan__btn {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    background-color: #ccad7e;
    padding: 10px 20px;
    border-radius: 20px;
    display: table;
    min-width: 180px;
    text-decoration: none;
    text-align: center;
    transition: box-shadow .3s;
}
.activated .tarif-plan__btn {
    background-color: #6f6f6f;
}
.tarif-plan__btn:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.tarif-plan__btn-footer {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-family: "LatoRegular";
    background-color: #ccad7e;
    /*background-image: url(../img/btn-gr2.png);*/
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 30px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    transition: box-shadow .3s;
	overflow: hidden;
	position: relative;
}
.tarif-plan__btn-footer:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.accordion-container{
    position: relative;
    width: 100%;
    height: auto;
    margin: 20px auto;
}
.set{
    position: relative;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #d0d0d0;
}
.set > a{
    display: block;
    padding: 20px 30px;
    text-decoration: none;
    color: #d3b88f;
    font-size: 20px;
    line-height: 24px;
    font-family: "LatoBlack";
    background-image: url(../img/arrow-bottom.png);
    background-repeat: no-repeat;
    background-position: center right;
}
.set > a.active{
    background-image: url(../img/arrow-top.png);
}
.set > a.active i{
    color: #fff;
}
.accordion__content{
    position:relative;
    width: 100%;
    height: auto;
    display:none;
}
.doc {
    padding-bottom: 160px;
}
.doc strong {
    font-family: "LatoBold";
}
.doc i {
    font-family: "Lato-Italic";
}
.doc p {
    text-indent: 35px;
}
.doc p,
.doc ul,
.doc ol {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 24px;
}
.doc p.small,
.doc ul.small,
.doc ol.small {
    margin-bottom: 14px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 24px;
}
.doc ul,
.doc ol {
    padding-left: 50px;
}
.doc ul li,
.doc ol li {
    padding-left: 15px;
}
.doc ul.small,
.doc ol.small {
    padding-left: 35px;
}
.doc ul.small li,
.doc ol.small li {
    padding-left: 0;
}
.doc ul li {
    list-style-type: none;
}
.doc ul li:before {
    color: #ccad7e;
    content: "•";
    padding-right: 7px;
    font-size: 16px;
    line-height: 24px;
}
.document__list{
margin-top: 20px;
margin-bottom: 20px;
}

.document__list li {
    background-image: url(../img/check-list.png);
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 40px !important;
    padding-top: 5px;
    padding-bottom: 5px;
	font-size: 18px;
    line-height: 24px;
}
.document__list li:before {
display: none !important;
}

.tarif-plan__btn.disable{
	filter: grayscale(1);
}

#adress__link{
	display: none;
}

.f_n_mob{
	display: none;
}
.auth__form {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
}
.mod3__f-btn{
	transform: translateY(0%);
	cursor: pointer;
}

.mod3__footer-btn-wrap{
	display: table;
    margin-right: auto;
    position: relative;
    transform: translateY(50%);
    margin-left: auto;
}

form.mod3__in .form-group{
	display: block;
	margin: 0 auto;
	max-width: 280px;
	width: 100%;
}

form.mod3__in input.form-control{
	width: 100%;
    height: 46px;
    border: 1px solid #cecece;
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
    font-family: "LatoRegular";
}


.slick-slide{
height: auto;	
}

.bg-front {
	
}

.bg-contact {
	
}

.bg-callme {
	
}

.bg-feedback {
	
}

.bg-consultant {
	
}

.jq-selectbox__select{
	padding: 0 45px 0 15px;
}


.blick:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fa4923;
    opacity: 0;
    z-index: 1;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
}

.blick:after {
    content: "";
    display: block;
    width: 50px;
    height: 300px;
    margin-left: 60px;
    background: rgba(255,255,255,0.1);
	filter: blur(5px);
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -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; } }