/* базовые стили */
*{
    box-sizing: border-box;
    outline: none;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
caption,th {
    text-align: left;
}
h1,h2,h3,h4,h5,h6 {
    font-size: 100%;
    font-weight: normal;
}
q:before,q:after {
    content:'';
}
abbr,acronym {
    border: 0;
}
/* cyrillic */
@font-face {
    font-family: 'DMSans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/DMSans-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'DMSans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/DMSans-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'DMSans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/DMSans-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'DMSans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/DMSans-Italic.ttf') format('truetype');
}
@font-face {
    font-family: 'PlayfairDisplay';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/PlayfairDisplay-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'PlayfairDisplay';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/PlayfairDisplay-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'PlayfairDisplay';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/PlayfairDisplay-ExtraBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/gilroy-semibold.ttf') format('truetype');
}
@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
}
body{
    font: 16px 'Gilroy', sans-serif;
    font-weight: 400;
    color: #2C2C2C;
    min-width: 360px;
    background: #fff;
    position: relative;
}
body.no-overflow {
    overflow: hidden;
}
.clearfix:after{
    content: '';
    display: block;
    clear: both;
    overflow: hidden;
}
.modal{
    display: none;
}
a{
    cursor: pointer;
    text-decoration: none;
    color: #2C2C2C;
    transition: .2s;
}
textarea{
    resize: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance:none;
}
.scroller {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    visibility: hidden;
}
.page_wp{
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}
.page_wp img{
    display: inline-block;
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}
a:hover{
    text-decoration: none;
}
.scroller {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    visibility: hidden;
}
.flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.justify-content-start {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.justify-content-end {
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}
.scroller {
    width: 100%;
    height: 1px;
    visibility: hidden;
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    opacity: 0;
}
.wrapper{
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    min-width: 360px;
}
.ml_subtitle{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #D5846E;
    margin-bottom: 20px;
}
h1{
    font: 72px 'PlayfairDisplay';
    font-weight: 600;
    line-height: 1.1;
}
.logo{
    font: 20px 'PlayfairDisplay';
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
    color: #ba9a63;
}
.screen_1{
    background: #EEEBE6;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}
.screen_1:before{
    content: '';
    width: 100%;
    height: 100%;
    background: url("../images/bg1.png") repeat center 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}
header{
    padding: 25px 0;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8900;
}
.main_left{
    width: calc(100% - 600px);
}
.main_right{
    width: 500px;
    height: 580px;
    background: url("../images/bg2.png") no-repeat center 0;
    background-size: auto 100%;
    position: relative;
    text-align: center;
}
.main_right img{
    animation: 18s linear infinite rotate;
    max-height: 100%;
    width: auto;
}
@keyframes rotate {
    100% {transform: rotate(360deg);}
}
.ml_text{
    width: 80%;
    font-size: 20px;
    line-height: 1.3;
    color: #4F4F4F;
    margin-top: 30px;
}
.ai_ico{
    width: 100px;
}
.ai_info{
    width: calc(100% - 100px);
    padding-left: 20px;
}
.advantage_item{
    width: 28%;
}
.advantage_item h2{
    font: 22px 'PlayfairDisplay';
    font-weight: 700;
}
.advantage_item p{
    margin-top: 15px;
}
.advantages_line{
    padding: 100px 0;
}
.main_left h2{
    font: 62px 'PlayfairDisplay';
    font-weight: 600;
    line-height: 1.1;
}
.content_wp{
    background: #EEEBE6;
    position: relative;
    padding: 120px 0 100px 0;
}
.content_wp:before{
    content: '';
    width: 100%;
    height: 100%;
    background: url("../images/bg1.png") repeat center 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}
.breadcrumbs li{
    list-style: none;
    position: relative;
    margin-right: 30px;
}
.breadcrumbs li:before{
    content: '';
    width: 10px;
    height: 10px;
    background: url("../images/ico-star.svg") no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    top: 6px;
    right: -20px;
}
.breadcrumbs li:last-child:before{
    display: none;
}
.breadcrumbs li a{
    color: #ba9a63;
    border-bottom: 1px solid #ba9a63;
}
.breadcrumbs li a:hover{
    border-bottom: 1px solid rgba(255,255,255,0);
}
.content{
    width: calc(100% - 430px);
    background: #fff;
    padding: 30px;
    position: relative;
}
.right_menu{
    width: 400px;
    margin-left: auto;
    background: #fff;
    padding: 30px;
}
.content_block{
    margin-top: 50px;
    position: relative;
}
.content_block ul li{
    list-style: none;
    position: relative;
    padding-left: 30px;
    background: url("../images/ico-star.svg") no-repeat 0 3px;
    background-size: 15px auto;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.3;
}
.content_block ul li:first-child{
    margin-top: 0;
}
.content h1{
    font: 38px 'Gilroy', sans-serif;
    font-weight: 700;
    width: calc(100% - 270px);
    padding-right: 30px;
    line-height: 1.2;
}
.content img{
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.content p img{
    margin-top: 10px;
}
.content p{
    font-size: 18px;
    font-wright: 400;
    line-height: 1.4;
    margin-top: 20px;
}
.content p strong{
    font-weight: 700;
}
.content h2{
    font-size: 28px;
    font-weight: 600;
    margin-top: 30px;
}
.content_block ul{
    margin-top: 30px;
}
.top_s_block{
    position: absolute;
    top: 43px;
    right: 50px;
}
.sb_input{
    width: calc(100% - 90px);
    height: 50px;
    background: #EEEBE6;
    padding: 0 15px;
    font: 14px 'DMSans', sans-serif;
    border: none;
    outline: none;
}
.sb_btn{
    width: 90px;
    height: 50px;
    background: #ba9a63;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #ba9a63;
    color: #fff;
}
.premium_block{
    display: block;
    margin-top: 20px;
    position: relative;
}
.quote{
    border: 3px dashed #ba9a63;
    padding: 20px;
    margin-top: 30px;
}
.quote p:first-child{
    margin-top: 0;
}
.pb_title{
    text-align: center;
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #EEEBE6;
}
.adv_block{
    width: 100%;
    height: 500px;
    background: #EEEBE6;
    margin-top: 20px;
}
.articles_page_wp .article_item_wp{
    width: 50%;
}
.articles_page_wp .article_item img{
    margin: 0;
}
.topmenu li{
    list-style: none;
    margin-left: 25px;
    position: relative;
}
.topmenu{
    margin-left: auto;
}
.topmenu>li>a{
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 2px dashed #ba9a63;
}
.topmenu>li>a:hover{
    color: #ba9a63;
}
.topmenu>li>a.active{
    color: #ba9a63;
}
.topmenu>li>a>span{
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../images/arrow-down.svg") no-repeat center center;
    background-size: 100% auto;
    margin-left: 5px;
}
.topmenu>li>a:hover>span{
    background: url("../images/arrow-down-2.svg") no-repeat center center;
    background-size: 100% auto;
}
.toggle_menu{
    width: 360px;
    background: #fff;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 1000;
    padding: 20px;
    display: none;
}
.toggle_menu a{
    display: block;
    padding: 5px 10px;
    border-bottom: 1px solid #ccc;
}
.toggle_menu a:last-child{
    border-bottom: none;
}
.toggle_menu a:hover{
    background: #EEEBE6;
    color: #ba9a63;
}
.logo img{
    width: 55px;
    height: auto;
    margin-right: 6px;
}
.error_block{
    width: 500px;
    height: 500px;
    background: url("../images/bg4.png") no-repeat center center;
    background-size: 100% auto;
    margin: 0 auto;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: #ba9a63;
}
.error_block div{
    position: relative;
    left: -15px;
}
.error_wp{
    background: #21212C;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
}
.error_wp:before{
    content: '';
    width: 100%;
    height: 100%;
    background: url("../images/bg1.png") repeat center 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}
.error_text{
    font: 28px 'PlayfairDisplay';
    font-weight: 600;
    color: #ba9a63;
    text-align: center;
}
.error_text_2{
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin-top: 30px;
}
.error_text_2 a{
    color: #ba9a63;
    border-bottom: 1px solid #ba9a63;
}
.error_text_2 a:hover{
    border-bottom: 1px solid transparent;
}
.alphabet_block a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ba9a63;
    margin: 10px 5px 0 5px;
}
.alphabet_block a.active{
    background: #ba9a63;
    color: #fff;
}
.alphabet_block a:hover{
    background: #ba9a63;
    color: #fff;
}
.ds_pole{
    margin-top: 30px;
}
.alphabet_block{
    margin-top: 20px;
}
.divider{
    width: 100%;
    height: 1px;
}
.dream_catalog_item{
    width: 33.333%;
    margin-top: 30px;
}
.dream_catalog_item>a{
    display: block;
    font-size: 18px;
    padding-left: 30px;
    background: url("../images/ico-star.svg") no-repeat;
    background-size: 15px auto;
    margin-top: 7px;
}
.dream_catalog_item>a:hover{
    color: #ba9a63;
}
.dream_catalog_title{
    font: 24px 'PlayfairDisplay';
    font-weight: 600;
    color: #ba9a63;
    margin-bottom: 15px;
}
.dc_more{
    margin-top: 20px;
}
.dc_more a{
    font-size: 20px;
    font-style: italic;
    border-bottom: 1px dashed #000;
}
.dc_more a:hover{
    border-bottom: 1px dashed #fff;
}
.dream_list{
    column-count: 3;
    margin-top: 30px;
}
.dream_list li{
    list-style: none;
    margin-top: 7px;
}
.dream_list li a{
    font-size: 18px;
}
.dream_list li a:hover{
    color: #ba9a63;
}
.mm_link{
    width: 38px;
    height: 38px;
    background: url("../images/ico-burger.svg") no-repeat center center;
    display: none;
}
.mm_link.active{
    background: url("../images/ico-close.svg") no-repeat center center;
}
.articles_page_wp{
    margin-left: -15px;
    margin-right: -15px;
}
.ml_author{
    margin-top: 10px;
    font-size: 15px;
    font-weight: 300;
}
.catalog_btn{
    width: 300px;
    height: 50px;
    margin-top: 30px;
}
.filter_wp{
    margin-top: 30px;
}
.filter_left{
    width: 200px;
    font-size: 18px;
    font-weight: 600;
}
.filter_item_wp{
    width: calc(100% - 200px);
}
.filter_item{
    position: relative;
}
.fi_top{
    width: 100%;
    height: 50px;
    border: 1px solid #ba9a63;
    padding: 0 8px 0 15px;
    cursor: pointer;
}
.fi_top div{
    width: calc(100% - 30px);
    padding-right: 10px;
    font-size: 18px;
}
.fi_top span{
    width: 30px;
    height: 30px;
    background: url("../images/arrow-down-2.svg") no-repeat center center;
    background-size: 15px auto;
}
.fi_toggle{
    border: 1px solid #ccc;
    border-top: none;
    padding: 10px;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 8000;
    display: none;
}
.fi_toggle div{
    cursor: pointer;
    padding: 7px 15px;
    margin-top: 7px;
    background: rgba(204,204,204,0.3);
    transition: .2s;
}
.fi_toggle div:hover{
    background: rgba(204,204,204,0.6);
}
.fi_toggle div:first-child{
    margin-top: 0;
}
.filter_item.active .fi_toggle{
    display: block;
}
.filter_item.active .fi_top span{
    transform: rotate(-180deg);
}
.quote h2:first-child{
    margin-top: 0;
}
@media only screen and (max-width: 767px) {
    .filter_left{
        width: 100%;
        font-size: 16px;
    }
    .filter_item_wp{
        width: 100%;
        margin-top: 10px;
    }
    .fi_top div{
        font-size: 16px;
    }
}
@media only screen and (max-width: 479px) {
    .fi_top div{
        font-size: 13px;
    }
}