@charset "utf-8";

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic.woff2') format('woff2'),
        url('../fonts/CenturyGothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic-Italic.woff2') format('woff2'),
        url('../fonts/CenturyGothic-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic-Bold.woff2') format('woff2'),
        url('../fonts/CenturyGothic-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body{
    font-family: 'Century Gothic';
    color: #fff;
    background: #0A090E;
    font-size: 14px;
    line-height: 1.6;
}

h1,
.title-h1 {
    font-size: 28px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 40px;
}

h2,
.title-h2 {
    font-size: 28px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 40px;
}

h3,
.title-h3 {
    font-size: 22px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 30px;
}

h4,
.title-h4 {
    font-size: 18px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 20px;
}
h5,
.title-h5 {
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 15px;
}
h6,
.title-h6 {
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 10px;
}


@media(max-width: 767px) {
    h1,
    .title-h1 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    h2,
    .title-h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }
    h3,
    .title-h3 {
        font-size: 18px;
        margin-bottom: 25px;
    }
    h4,
    .title-h4 {
        font-size: 16px;
    }
}

a {
    color: #A47527;
}

a:hover {
    color: #fff;
}

a.invert {
    color: #fff;
}

a.invert:hover {
    color: #A47527;
}
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: all 300ms ease-out;
    white-space: nowrap;
    border: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle;
}
.btn--outline{
    position: relative;
    border: none !important;
}
.btn--outline>svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: translateX(0.25px);
}
.btn--outline>svg rect {
    fill: none;
    stroke-width: 1.25;
    width: 100%;
    height: calc(100% - 1px);
    stroke-dasharray: 321%;
    stroke-dashoffset: 642%;
    transition-property: stroke-dashoffset,transform;
    transform-origin: 50% 50%;
    will-change: stroke-dashoffset,transform;
    stroke: #ac835e;
    transition-duration: 1.3s;
    transition-timing-function: cubic-bezier(.74,0,.24,.99);
}
.btn--outline>svg rect+rect {
    stroke-dashoffset: 321%;
    stroke: #f9f0ec;
}
.btn--outline span{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    position: relative;
    z-index: 1;
    height: 100%;
}
.btn--outline:hover>svg rect+rect{
    stroke-dashoffset: 0%;
}
.btn-t1{
    height: 44px;
    padding: 0 15px;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    color: #FFFFFF;
    background: #ED2900;
    position: relative;
    overflow: hidden;
}
.btn-t1:before{
    display: block;
    position: absolute;
    left: -30px;
    top: 0;
    right: 100%;
    height: 100%;
    background-color: #DB0000;
    content: "";
    z-index: 1;
    transition: all .3s linear;
    transform: skew(-30deg);
    opacity: 0;
}
.btn-t1 span{
    position: relative;
    z-index: 2;
}
.btn-t1:hover:before{
    right: -30px;
    opacity: 1;
}
.btn-t1:hover {
    color: #fff;
    box-shadow: 0 0 30px rgb(255 133 133 / 60%);
}
.btn-t2{
    height: 58px;
    padding: 0 20px 0 60px;
    border: 1px solid #444444;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
    color: #bfb8b8;
    background: transparent;
    position: relative;
}
.btn-t2:before{
    content: "";
    width: 36px;
    height: 36px;
    border: 1px solid #444444;
    position: absolute;
    left: 12px;
    top: calc(50% - 18px);
    border-radius: 50%;
    transition: all 200ms ease-out;
}
.btn-t2:after{
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    top: calc(50% - 5px);
    left: 22px;
    border-left: 1px solid #444444;
    border-bottom: 1px solid #444444;
    transition: all 200ms ease-out;
    transform: rotate(225deg) skewX(10deg);
}
.btn-t2:hover,
.btn-t2:hover:after,
.btn-t2:hover:before{
    border-color: #fff;
}

.btn-t3{
    height: 58px;
    padding: 0 55px;
    border: 1px solid #fff;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    background: #a47527;
}
.btn-t3:hover{
    background: #fff;
    color: #A47527;
}
.btn-t4{
    height: 80px;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    background: #A47527;
    width: 100%;
    border: none;
}
.btn-t4:hover{
    filter: brightness(110%);
}
button.btn-t4{
    position: relative;
    overflow: hidden;
}
button.btn-t4:before{
    display: block;
    position: absolute;
    left: -30px;
    top: 0;
    right: 100%;
    height: 100%;
    background-color: #CA9A2A;
    content: "";
    z-index: 1;
    transition: all .3s linear;
    transform: skew(-30deg);
    opacity: 0;
}
button.btn-t4:hover:before{
    right: -30px;
    opacity: 1;
}
button.btn-t4 span{
    position: relative;
    z-index: 2;
}

.btn-t5{
    height: 46px;
    padding: 0 40px;
    border: 1px solid #444444;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
    color: #444444;
    background: transparent;
    position: relative;
}
.btn-t5:hover{
    border-color: #A47527;
    color: #A47527;
}
.btn-t2.btn--outline>svg rect:first-of-type {
    stroke: #434343;
}
.btn-t2.btn--outline>svg rect {
    rx: 30px;
    ry: 30px;
}
.btn-t3.btn--outline:hover{
    color: #FFA81B;
    background: rgba(255,255,255,.1);
}
.btn-t3.btn--outline>svg rect:first-of-type {
    stroke: #fff;
}
.btn-t3.btn--outline>svg rect {
    rx: 30px;
    ry: 30px;
}
.btn-t3.btn--outline>svg rect+rect {
    stroke: #FFA81B;
}

.btn-t6{
    height: 44px;
    padding: 0 44px;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    color: #FFFFFF;
    background: #A47527;
    position: relative;
    overflow: hidden;
}
.btn-t6:before{
    display: block;
    position: absolute;
    left: -30px;
    top: 0;
    right: 100%;
    height: 100%;
    background-color: #CA9A2A;
    content: "";
    z-index: 1;
    transition: all .3s linear;
    transform: skew(-30deg);
    opacity: 0;
}
.btn-t6 span{
    position: relative;
    z-index: 2;
}
.btn-t6:hover:before{
    right: -30px;
    opacity: 1;
}
.btn-t6:hover {
    color: #fff;
}


/* Header */
.header{
    background: #0A090E;
}
.header-top{
    padding: 20px 0 0;
}
.header-bottom{
    background: #0A090E;
}
.header-bottom.fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 400;
}
.header-bottom.fixed + .header-bottom-push{
    height: 76px;
}
.header-bottom-container{
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-links{
    white-space: nowrap;
}
.social-links svg{
    fill: #A47527;
    transition: all 300ms ease-out;
}
.top-menu > ul{
    display: flex;
    align-items: center;
}
.top-menu > ul > li{
    margin: 0 5px;
}
.top-menu > ul > li > a{
    text-transform: uppercase;
    color: #ADADAD;
    font-size: 14px;
}
.top-menu > ul > li.active > a,
.top-menu > ul > li:hover > a{
    color: #A47527;
}
.header-bottom-container .right-part{
    display: flex;
    align-items: center;
}
.header-phone a{
    font-weight: bold;
    font-size: 20px;
    margin: 0 8px;
}
.header-social{
    margin: 0 30px 0 15px;
}
.social-links a{
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #A47527;
    border-radius: 100%;
    margin: 0 3px;
}
.social-links a:hover{
    border-color: #fff;
    opacity: 0.7;
}
.social-links a:hover svg{
    fill: #fff;
}
/* /. Header */

/* accordion-slider-wrapper */
.accordion-slider{
    height: 81vh;
    position: relative;
}
@media(max-width: 1920px){
    .accordion-slider{
        max-height: 755px;
    }
}
#fg,
#bg {
    width: 100%;
    height: 100%;
    color: #fff;
    overflow: hidden;
}
.accordion-slider div{
    position: absolute;
    bottom: 0;
}
.accordion-slider-num{
    padding: 12px;
    right: 0;
    font-size: 54px;
}
/* /. accordion-slider-wrapper */

section{
    padding: 100px 0;
}
section.pt0{
    padding-top: 0;
}
section.pb0{
    padding-bottom: 0;
}
section.pt30{
    padding-top: 30px;
}
section.pb30{
    padding-bottom: 30px;
}
.section-title{
    font-size: 28px;
    line-height: 1.3;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 35px;
    padding-top: 42px;
}
.section-title:before{
    content: "";
    width: 315px;
    max-width: 100%;
    height: 1px;
    background: #A47527;
    position: absolute;
    top: 0;
    left: 0;
}
@media(max-width:767px){
    section {
        padding: 70px 0;
    }
}
/* about-slider-section */
.about-slider-section{
    background: url(../images/bg1.jpg) right top no-repeat;
}
.about-slider-section-container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.about-slider-section-container .col1{
    width: 70%;
    padding-right: 50px;
}
.about-slider-section-container .col2{
    width: 30%;
    padding-left: 60px;
}
.about-images-slider .item{
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.about-images-slider .item img{
    transition: all 1000ms ease-in-out;
    transform: scale(1.25, 1.25);
    width: 100%;
}
.about-images-slider .slick-active img{
    transform: scale(1, 1);
}
.about-content-slider-wrapper{
    width: 420px;
    max-width: 100%;
    overflow: hidden;
}
.about-content-slider-inner{
    margin-left: -30px;
    margin-right: -30px;
}
.about-content-slider{
    padding-bottom: 90px;
}
.about-content-slider .item{
    padding-left: 30px;
    padding-right: 30px;
}
.about-content-slider .item-title{
    color: #A47527;
    font-size: 22px;
    margin-bottom: 50px;
    text-transform: uppercase;
}
.about-content-slider .slick-prev{
    bottom: 0;
    left: 30px;
}
.about-content-slider .slick-next{
    bottom: 0;
    left: 110px;
}
.about-content-slider .slick-dots {
    position: absolute;
    left: 190px;
    bottom: 14px;
    text-align: left;
}

/* /. about-slider-section */

@media(max-width: 1399px){
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    .top-menu > ul > li > a{
        font-size: 13px;
    }
    .header-phone a{
        font-size: 20px;
    }
    .about-slider-section-container .col1{
        padding-right: 25px;
    }
    .about-slider-section-container .col2{
        padding-left: 25px;
    }
    .about-content-slider .item-title{
        margin-bottom: 30px;
    }
    .accordion-slider {
        height: 45vw;
    }
    .slick-prev,
    .slick-next{
        width: 40px;
        height: 40px;
    }
    .about-content-slider .slick-next{
        left: 90px;
    }
    .slick-prev:after, 
    .slick-next:after {
        width: 9px;
        height: 9px;
        margin-top: -4px;
    }
    .slick-prev:after{
        margin-left: -3px;
    }
    .slick-next:after{
        margin-left: -6px;
    }
    .about-content-slider .slick-dots{
        bottom: 10px;
        left: 160px;
    }
    .about-content-slider{
        padding-bottom: 110px;
    }
}
@media(max-width: 1299px){
    .top-menu > ul > li > a {
        font-size: 12px;
    }
    .top-menu > ul > li {
        margin: 0 10px;
    }
    .top-menu > ul > li:first-of-type{
        margin-left: 0;
    }
    .header-phone a {
        font-size: 18px;
        margin: 0 10px;
    }
    .header-social {
        margin: 0 20px 0 10px;
    }
    .social-links svg{
        width: 18px;
        height: 18px;
    }
    .btn-t1 {
        padding: 0 20px;
        height: 40px;
    }
    .about-images-slider .item{
        height: 490px;
    }
    .about-images-slider .item img{
        height: 100%;
        object-fit: cover;
    }
}
@media(max-width: 1099px){
    .top-menu{
        display: none;
    }
    .header-bottom-container{
        justify-content: space-between;
    }
    .menu-button{
        display: inline-flex;
    }
    .accordion-slider {
        min-height: 350px;
    }
    .accordion-slider-num {
        padding: 0 12px 0 0;
        font-size: 44px;
        transition: all ease-out 300ms;
    }
}
@media(max-width: 991px){
    .about-slider-section-container .col1{
        padding-right: 0;
        width: 100%;
        margin-bottom: 40px;
    }
    .about-slider-section-container .col2{
        padding-left: 0;
        width: 100%;
    }
    .about-images-slider .item {
        height: auto;
    }
    .about-content-slider-wrapper{
        width: 100%;
    }
}
@media(max-width: 767px){
    .header-top{
        padding: 20px 0 10px;
    }
    .header-bottom.fixed + .header-bottom-push{
        height: 54px;
    }
    .header-bottom-container{
        padding: 10px 0;
    }
    .header-btn{
        display: none;
    }
    .header-social{
        margin-right: 0;
        margin-left: 0;
    }
    .header-social.social-links a {
        width: 30px;
        height: 30px;
        margin: 2px;
    }
    .header-social.social-links a:last-of-type{
        margin-right: 0;
    }
    .social-links svg {
        width: 16px;
        height: 16px;
    }
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-bottom-container .menu-button {
        height: 30px;
        padding-left: 35px;
        padding-right: 12px;
        font-size: 12px;
        line-height: 1;
    }
    .menu-burger-title{
        position: relative;
        bottom: -1px;
    }
    .header-bottom-container .icon-menu-burger {
        width: 14px;
        left: 12px;
    }
    .header-bottom-container .icon-menu-burger:before{
        top: -5px;
    }
    .header-bottom-container .icon-menu-burger:after{
        bottom: -5px;
    }
    .header-phone a{
        font-size: 12px;
    }
    .accordion-slider {
        min-height: 300px;
    }
    .accordion-slider-num {
        padding: 0 5px 0 0;
        font-size: 24px;
    }
    .section-title{
        font-size: 20px;
        padding-top: 25px;
    }
    .section-title:before{
        width: 130px;
    }
    .about-content-slider .item-title{
        font-size: 16px;
        margin-bottom: 20px;
        min-height: 52px;
    }
    .about-content-slider .item-description{
        font-size: 13px;
    }
}


/** features-section **/
.features-section-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
.features-section-header .section-title{
    margin-right: 75px;
}

/*Plugin liMarquee CSS*/
.str_wrap {
    overflow:hidden;
    width:100%;
    position:relative;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;  
    white-space:nowrap;
}
.str_move { 
    white-space:nowrap;
    position:absolute; 
    top:0; 
    left:0;
    cursor:move;
}
.str_move_clone {
    display:inline-block;
    vertical-align:top;
    position:absolute; 
    left:100%;
    top:0;
}
.str_vertical .str_move_clone {
    left:0;
    top:100%;
}
.str_down .str_move_clone {
    left:0;
    bottom:100%;
}
.str_vertical .str_move,
.str_down .str_move {
    white-space:normal;
    width:100%;
}
.str_static .str_move,
.no_drag .str_move,
.noStop .str_move{
    cursor:inherit;
}
.str_wrap img {
    max-width:none !important;  
}
/* /.Plugin liMarquee CSS */

.features-section-row{
    margin-bottom: 20px;
}
.features-section-row-title{
    color: #444444;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.features-section-row-items .item{
    padding: 0 8px;
    display: inline-flex;
}
.features-section-row-items .item-inner{
    width: 350px;
    height: 180px;
    background: #201F1F;
    position: relative;
	font-weight: 800;
	cursor:pointer;
}
.features-section-row-items .item-inner:before{
    content: "";
    border: 2px solid #A47527;
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    right: 8px;
    transition: all ease-out 300ms;
}
.features-section-row-items .item-inner > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.features-section-row-items .item-inner > a,
.features-section-row-items .item-inner > span{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    color: #A47527;
    transition: all ease-out 300ms;
    z-index: 10;
	font-size: 18px;
	/*background: #00000036;*/
}
.features-section-row-items .item-inner:hover > a,
.features-section-row-items .item-inner:hover > span{
    color: #fff;
}
.features-section-row-items .item-inner:hover:before{
    border-color: #fff;
}

@media(min-width: 1921px){
    .features-section-row-items .item-inner{
        width: 525px;
        height: 300px;
    }
}
@media(min-width: 3840px){
    .features-section-row-items .item-inner{
         width: 700px;
        height: 400px;
    }
}
@media(max-width: 1920px){
    .features-section-row-items{
        height: 180px !important;
    }
}
@media(max-width: 1299px){
    .features-section-row-items{
        height: 170px !important;
    }
    .features-section-row-items .item-inner{
        width: 300px;
        height: 170px;
    }
}
@media(max-width: 991px){
    .features-section-row-items{
        height: 140px !important;
    }
    .features-section-row-items .item-inner{
        width: 250px;
        height: 140px;
    }
    .features-section-row-items .item-inner:before{
        top: 5px;
        bottom: 5px;
        left: 5px;
        right: 5px;
    }
    .features-section-row-items .item-inner > a,
    .features-section-row-items .item-inner > span{
        padding: 10px;
        font-size: 13px;
    }
}
@media(max-width: 767px){
    .features-section-row-items{
        height: 85px !important;
    }
    .features-section-row-items .item-inner{
        width: 150px;
        height: 85px;
    }
    .features-section-header{
        flex-wrap: wrap;
    }
    .features-section-header .btn{
        margin-bottom: 50px;
    }
    .features-section-row-title {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .features-section-header .section-title{
        margin-right: 0;
        width: 100%;
    }
    .features-section-row-items .item-inner:before{
        top: 3px;
        bottom: 3px;
        left: 3px;
        right: 3px;
    }
    .features-section-row-items .item-inner > a,
    .features-section-row-items .item-inner > span{
        padding: 6px;
        font-size: 10px;
    }
}
/** /. features-section **/


/* apartments-section */
.mobile-tab-header {
    display: none;
}
.tabs-container .boxes{
    position: relative;
}
.tabs-container .box{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: -100;
    transition: opacity 300ms ease-out;
}
.tabs-container .box.visible{
    position: static;
    opacity: 1;
    z-index: 1;
}
.tabs{
    display: flex;
    flex-wrap: wrap;
}
.tabs li{
    font-size: 18px;
    line-height: 1;
    color: #a47527;
    margin-right: 105px;
    margin-bottom: 0px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all ease-out 300ms;
}
.tabs li:last-of-type{
    margin-right: 0;
}
.tabs li.current,
.tabs li:hover{
    color: #ffffff;
}
.tabs li span{
    white-space: nowrap;
}
@media(min-width: 768px){
    .tabs.mobile {
        display: flex !important;
    }
}
.apartments{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 36px;
}
.apartments .item{
    text-align: center;
}
.apartments .img-wrapper{
    height: 22vw;
    background: #fff;
    max-height: 425px;
    min-height: 300px;
    text-align: center;
    padding: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5vw;
}
.apartments .img-wrapper img{
    max-height: 100%;
}
.apartments .item-text{
    display: block;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.apartments .item-title{
    display: block;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 1.5vw;
    font-weight: bold;
}
.apartments .item .btn-t3 {
    height: 42px;
    padding: 0 36px;
}
.apartments .item-area{
    min-width: 140px;
    height: 40px;
    color: #A47527;
    position: absolute;
    display: flex;
    align-items: center;
    padding: 0 25px;
    background: #fff;
    left: 0;
    top: 15px;
    font-size: 24px;
    line-height: 1;
	border: 1px solid #a47527;
}
.apartments-carousel > div:not(:first-of-type){
    display: none;
}
.apartments.apartments-carousel.slick-slider{
    display: block;
}
.apartments-carousel-wrapper{
    width: 100%;
    overflow: hidden;
}
.apartments-carousel-inner{
    margin: 0 -18px;
}
.apartments-carousel .item{
    padding: 0 18px;
}

@media(max-width: 1399px){
    .tabs li{
        font-size: 17px;
        margin-right: 70px;
    }
    .apartments{
        grid-gap: 20px;
    }
    .apartments .item-inner > a{
        padding: 20px;
    }
    .apartments .item .btn-t3 {
        height: 42px;
        padding: 0 30px;
    }
    .apartments .item-inner .item-title{
        margin-bottom: 20px;
        font-size: 13px;
    }
    .apartments .item-inner .item-text{
        font-size: 13px;
    }
    .apartments .item-area {
        min-width: 120px;
        height: 36px;
        padding: 0 20px;
        font-size: 18px;
    }
    .apartments-carousel-inner{
        margin: 0 -10px;
    }
    .apartments-carousel .item{
        padding: 0 10px;
    }
}
@media(max-width: 1199px){
    .tabs li{
        font-size: 15px;
        margin-right: 40px;
    }
}
@media(max-width: 1099px){
    .apartments{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width: 991px){
    .apartments .item-inner > a{
        padding: 15px;
        margin-bottom: 15px;
    }
    .apartments .item .btn-t3 {
        height: 36px;
        padding: 0 25px;
    }
    .apartments .item-inner .item-title{
        margin-bottom: 15px;
    }
    .apartments .item-area {
        min-width: 100px;
        height: 32px;
        padding: 0 15px;
        font-size: 16px;
    }
}
@media(max-width: 767px){
    .apartments{
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-tab-header{
        display: flex;
        align-items: center;
        transition: all 300ms ease-out;
        height: 58px;
        padding: 0 60px 0 20px;
        border: 1px solid #444444;
        border-radius: 30px;
        font-size: 13px;
        text-transform: uppercase;
        color: #444444;
        background: transparent;
        position: relative;
        background: #0A090E;
    }
    .mobile-tab-header:before {
        content: "";
        width: 36px;
        height: 36px;
        border: 1px solid #444444;
        position: absolute;
        right: 12px;
        top: calc(50% - 18px);
        border-radius: 50%;
        transition: all 200ms ease-out;
    }
    .mobile-tab-header:after {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        top: calc(50% - 7px);
        right: 25px;
        border-left: 1px solid #444444;
        border-bottom: 1px solid #444444;
        transition: all 200ms ease-out;
        transform: rotate(320deg) skewX(10deg);
    }
    .mobile-tab-header.active{
        border-color: #fff;
        color: #fff;
    }
    .mobile-tab-header.active:after,
    .mobile-tab-header.active:before{
        border-color: #fff;
    }
    .mobile-tab-header.active:after{
        top: calc(50% - 3px);
        right: 25px;
        transform: rotate(140deg) skewX(10deg);
    }
    ul.tabs {
        position: relative;
        display: none;
        border: 1px solid #fff;
        padding: 25px 25px 0;
        border-radius: 30px;
        margin-top: 10px;
        background: #0A090E;
    }
    ul.tabs li{
        width: 100%;
        display: block;
        font-size: 13px;
        color: #fff;
		line-height: 25px;
    }
    ul.tabs li.current{
        display: none;
    } 
    .mobile-tab-header.active + ul.tabs{
        display: block;
    }
}
@media(max-width: 499px){
    .apartments{
        grid-template-columns: 1fr;
    }
}
/* /. apartments-section */


/* callback-section */
.border-section-title{
    position: relative;
    text-align: center;
}
.border-section-title span{
    position: relative;
}
.border-section-title > span{
    z-index: 1;
    padding-left: 40px;
    padding-right: 40px;
}
.border-section-title > span:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 17px;
    height: 1px;
    background: #0A090E;
}
.border-section-title span span{
    z-index: 2;
}
.border-section-title:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    height: 1px;
    background: #A47527;
}
.callback-form{
    padding-top: 40px;
    padding-bottom: 80px;
    border-bottom: 1px solid #A47527;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}
.agreement-text{
    padding-top: 20px;
    font-size: 14px;
    /*color: #444444;*/
}
.agreement-text a{
    /*color: #444444;*/
    text-decoration: underline;
}
.agreement-text a:hover{
    text-decoration: none;
}
@media(max-width: 991px){
    .callback-form{
        grid-template-columns: repeat(2, 1fr);
    }
    .callback-form .form-group:nth-child(3) {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}
@media(max-width: 767px){
    .border-section-title{
        text-align: left;
    }
    .border-section-title > span{
        padding-left: 0;
        padding-right: 0;
    }
    .border-section-title:before,
    .border-section-title > span:before{
        display: none
    }
    .callback-form {
        grid-template-columns: 1fr;
        padding-top: 0;
    }
    .callback-form .form-group:nth-child(3) {
        grid-column-start: 1;
        grid-column-end: 2;
    }
}
/* ./ callback-section */

/* footer */
.footer {
    padding: 35px 0 40px;
    color: #ADADAD;
}
.footer .footer-inner{
    border-bottom: 1px solid #A47527;
}
.footer-container-min{
    width: 1260px;
    max-width: 100%;
    margin: auto;
    padding-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer .copyright{
    margin-top: 15px;
    font-size: 12px;
}
.footer-left{
    width: 200px;
}
.footer-right{
    width: calc(100% - 260px);
}
.footer-right-top,
.footer-right-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-nav {
    margin-right: 30px;
}
.footer-nav ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.footer-nav li{
    margin-bottom: 10px;
}
.footer-nav li:not(:last-of-type){
    margin-right: 40px;
}
.footer-nav a{
    color: #ADADAD;
    font-size: 14px;
}
.footer-nav a:hover{
    color: #A47527;
}
.footer-nav1 a{
    text-transform: uppercase;
}
.footer-right-top{
    margin-bottom: 20px;
}
.footer-contacts{
    display: flex;
    align-items: center;
}
.footer-phone{
    margin-right: 30px;
    white-space: nowrap;
}
.footer-phone a{
    font-weight: bold;
    font-size: 24px;
}
.footer-btn a{
    margin-bottom: 10px;
}
@media(max-width: 991px){
    .footer-right-top, 
    .footer-right-bottom{
        flex-wrap: wrap;
    }
    .footer-nav{
        margin-bottom: 20px;
        margin-right: 0;
        width: 100%;
    }
    .footer-nav1{
        order: 2;
        margin-bottom: 0;
        margin-top: 20px;
    }
}
@media(max-width: 767px){
    .footer-container-min{
        display: block;
    }
    .footer-left{
        width: auto;
        margin-bottom: 30px;
    }
    .footer-right{
        width: 100%;
    }
    .footer-phone a{
        font-size: 18px;
    }
    .footer-contacts{
        display: block;
    }
    .footer-social{
        padding-top: 30px;
    }
}

body.bg2{
    background: #040406;
}
.base-template .main-content{
    background: url(../images/bg1.jpg) right top no-repeat;
}
.base-template.bg2 .main-content{
    background: url(../images/bg2.jpg) right top no-repeat;
}


/* docs-slider-section */
.docs-slider-wrapper{
    width: 100%;
    overflow: hidden;
}
.docs-slider-inner{
    margin-left: -30px;
    margin-right: -30px;
}
.docs-slider .item{
    padding: 0 30px;
    margin-bottom: 45px;
}
.docs-slider .item-inner{
    position: relative;
    display: inline-block;
    padding-left: 55px;
    min-height: 42px;
}
.docs-slider .item-inner:before{
    content: "";
    width: 39px;
    height: 37px;
    position: absolute;
    top: 3px;
    left: 0;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all ease-out 300ms;
}
.docs-slider .item .doc-name{
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
    margin-bottom: 5px;
    transition: all ease-out 300ms;
}
.docs-slider .item .doc-meta{
    color: #939393;
    font-size: 12px;
}
.docs-slider .item-inner:hover .doc-name{
    text-decoration: none;
    color: #956B24;
}
.docs-slider .item-inner[href$=".pdf"]:before{
    background: url(../images/pdf-icon.png) 0 0 no-repeat;
}
.docs-slider .item-inner[href$=".doc"]:before,
.docs-slider .item-inner[href$=".docx"]:before{
    background: url(../images/doc-icon.png) 0 0 no-repeat;
}
.docs-slider .item-inner:hover:before{
    filter: grayscale(0);
    opacity: 1;
}
.docs-slider > div:not(:first-of-type){
    display: none;
}
.docs-slider .slick-dots{
    text-align: left;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 10px;
}
.docs-slider {
    padding-bottom: 112px;
}
.docs-slider .slick-prev{
    top: auto;
    bottom: 0;
    left: 30px;
}
.docs-slider .slick-next{
    top: auto;
    bottom: 0;
    left: 120px;
}
@media(max-width: 1399px){
    .docs-slider .slick-next{
        left: 90px;
    }
    .docs-slider .slick-dots{
        margin-top: 0;
    }
    .docs-slider {
        padding-bottom: 90px;
    }
    .docs-slider .item{
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    .docs-slider {
        padding-bottom: 70px;
    }
    .docs-slider-section{
        padding-bottom: 0;
    }
}
/* /. docs-slider-section */


/* contacts-section */
.contacts-section-container{
    width: 1130px;
    margin: auto;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.contacts-section-content{
    width: 60%;
    padding-left: 50px;
}
.contacts-section-gallery{
    width: 40%;
    display: grid;
    /*grid-template-columns: repeat(3, 1fr);*/
    grid-gap: 20px;
}
.contacts-section-gallery .item{
    height: 100%;
    display: block;
}
.contacts-section-gallery .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contacts-section-gallery .item:hover{
    box-shadow: 0 0 20px rgba(255,255,255,.3);
}
.contacts-section-gallery .col:first-child{
    grid-row-start: 1;
    grid-row-end: 3;

    grid-column-start: 1;
    grid-column-end: 3;
}
.contacts-section .company-name{
    font-size: 18px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #A47527;
}
.contacts-section .contacts-items,
.contacts-section .requisites-items,
.contacts-section .contacts-items a,
.contacts-section .requisites-items a{
    color: #ADADAD;
}
.contacts-section .contacts-items a:hover,
.contacts-section .requisites-items a:hover{
    color: #A47527;
}
.contacts-section .contacts-items .item{
    margin-bottom: 7px;
}
.contacts-section .requisites-items .item{
    margin-bottom: 3px;
}
@media(max-width: 991px){
    .contacts-section-content{
        padding-left: 30px;
    }
}
@media(max-width: 767px){
    .contacts-section-content{
        width: 100%;
        padding-left: 0;
        order: 1;
        margin-bottom: 50px;
    }
    .contacts-section-gallery{
        width: 100%;
        order: 2;
        grid-gap: 10px;
    }
    .contacts-section{
        padding-bottom: 0;
    }
}
/* /. contacts-section */


/* news-slider-section */
.news-slider-wrapper{
    width: 100%;
    overflow: hidden;
}
.news-slider-inner{
    margin-left: -30px;
    margin-right: -30px;
}
.news-slider .item{
    padding: 0 30px;
}
.news-slider.slick-slider .item{
    margin-bottom: 74px;
}
.news-list{
    display: grid;
    grid-column-gap: 60px;
    grid-row-gap: 74px;
    grid-template-columns: repeat(3, 1fr);
}
.news-list.news-slider.slick-slider{
    display: block;
}
.news-list .item-inner{
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
.news-list .item-img{
    width: 190px;
}
.news-list .item-content{
    width: calc(100% - 190px);
    padding-left: 20px;
    position: relative;
    padding-bottom: 65px;
}
.news-list .item-content .item-title{
    display: inline-block;
    color: #fff;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: underline;
    transition: all ease-out 300ms;
}
.news-list .item-content .item-date{
    display: block;
    color: #444444;
    font-size: 11px;
    margin-bottom: 12px;
}
.news-list .item-content .item-text{
    display: block;
    font-size: 12px;
    color: #ADADAD;
}
.news-list .item-inner:hover .item-title{
    text-decoration: none;
    color: #A47527;
}
.news-list .item-inner .btn{
    position: absolute;
    bottom: 0;
    left: 20px;
}
.news-list .item-inner:hover .btn{
    color: #A47527;
    border-color: #A47527;
}

.news-slider .slick-dots{
    text-align: left;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 10px;
}
.news-slider {
    padding-bottom: 112px;
}
.news-slider .slick-prev{
    top: auto;
    bottom: 0;
    left: 30px;
}
.news-slider .slick-next{
    top: auto;
    bottom: 0;
    left: 120px;
}

@media(max-width: 1599px){
    .news-list{
        grid-column-gap: 50px;
        grid-row-gap: 65px;
    }
    .news-list .item-img{
        width: 150px;
    }
    .news-list .item-content{
        width: calc(100% - 150px);
    }
}
@media(max-width: 1399px){
    .news-list{
        grid-column-gap: 30px;
        grid-row-gap: 45px;
    }
    .news-list .item-img{
        width: 100px;
    }
    .news-list .item-content{
        width: calc(100% - 100px);
        padding-bottom: 55px;
    }
    .news-list .item .btn{
        height: 36px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .news-slider .slick-next{
        left: 90px;
    }
    .news-slider .slick-dots{
        margin-top: 0;
    }
    .news-slider {
        padding-bottom: 90px;
    }
    .news-slider .item{
        margin-bottom: 30px;
    }
}
@media(max-width: 1099px){
    .news-list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 767px){
    .news-list{
        grid-template-columns: 1fr;
    }
    .news-list .item-img{
        width: 90px;
    }
    .news-list .item-content{
        width: calc(100% - 90px);
        padding-left: 15px;
    }
    .news-slider {
        padding-bottom: 40px;
    }
    .news-slider-section{
        padding-bottom: 0;
    }
    .news-slider.slick-slider .item {
        margin-bottom: 30px;
    }
}

/* /. news-slider-section */


/* article-section */
.article-container{
    display: flex;
    flex-wrap: wrap;
}
.article-section-img{
    width: 468px;
}
.article-content{
    width: calc(100% - 468px);
    padding-left: 40px;
    max-width: 1000px;
}
.article-date{
    color: #444444;
    margin: -20px 0 30px;
}
.article-content .content{
    color: #ADADAD;
}
@media(max-width: 1499px){
    .article-section-img{
        width: 33.3333%;
    }
    .article-content{
        width: 66.6666%;
        padding-left: 30px;
    }
    .article-section{
        padding-bottom: 30px;
    }
}
@media(max-width: 1499px){
    .article-section-img{
        width: auto;
        margin-bottom: 50px;
    }
    .article-content{
        width: 100%;
        padding-left: 0;
    }
    .article-section{
        padding-bottom: 0;
    }
}
/* /. article-section */


/* features-page-section */
.features-page-container .item{
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.features-page-container .item:last-child{
    margin-bottom: 0;
}
.features-page-container .img-wrapper{
    width: calc(50% - 30px);
}
.features-page-container .item-content{
    width: calc(50% - 30px);
    color: #ADADAD;
    font-size: 13px;
    padding-left: 40px;
}
.features-page-container .item-title{
    color: #A47527;
    font-size: 18px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 30px;
}
@media(min-width: 992px){
    .features-page-container > div:nth-of-type(even) .img-wrapper{
        order: 2;
    }
    .features-page-container > div:nth-of-type(even) .item-content{
        order: 1;
        padding-left: 0;
    }
}

@media(max-width: 1499px){
    .features-page-container .img-wrapper{
        width: calc(50% - 20px);
    }
    .features-page-container .item-content{
        width: calc(50% - 20px);
        font-size: 12px;
        padding-left: 20px;
    }
    .features-page-container .item-title{
        margin-bottom: 20px;
    }
}
@media(max-width: 1299px){
    .features-page-section{
        padding-bottom: 0;
    }
    .features-page-container .item{
        align-items: flex-start;
    }
    .features-page-container .img-wrapper{
        width: calc(50% - 15px);
    }
    .features-page-container .item-content{
        width: calc(50% - 15px);
        padding-left: 0;
    }
    .features-page-container .item-title{
        margin-bottom: 15px;
    }
}
@media(max-width: 991px){
    .features-page-container .img-wrapper{
        width: 100%;
        margin-bottom: 30px;
    }
    .features-page-container .item-content{
        width: 100%;
    }
}
/* /. features-page-section */


/* map-section */
.map-wrapper{
    height: 540px;
}

#mapexMap,
#map{
    height: 100%;
}

.infrastructure-type-list{
    display: flex;
    flex-wrap: wrap;
}
.infrastructure-type-list .item{
    position: relative;
    overflow: hidden;
}
.infrastructure-type-list label{
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    color: #d6d1d1;
    margin-right: 75px;
    margin-bottom: 25px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all ease-out 300ms;
}
.infrastructure-type-list .item:last-child label{
    margin-right: 0;
}
.infrastructure-type-list input{
    opacity: 0;
    z-index: -10;
    width: 1px;
    top: 1px;
    position: absolute;
    top: -1px;
    left: -1px;
    white-space: nowrap;
    text-indent: -9999px;
}
.infrastructure-type-list input:checked + label,
.infrastructure-type-list label:hover{
    color: #A47527;
}
@media (max-width: 1399px){
    .infrastructure-type-list label{
        font-size: 17px;
        margin-right: 60px;
    }
}
@media (max-width: 1199px){
    .infrastructure-type-list label{
        font-size: 15px;
        margin-right: 40px;
    }
}
@media (max-width: 991px){
    .infrastructure-type-list label{
        font-size: 14px;
        margin-right: 30px;
    }
}
@media (max-width: 767px){
    .infrastructure-type-list label{
        font-size: 11px;
        margin-right: 20px;
        margin-bottom: 15px;
    }
}
/* /. map-section */



/* attraction-section*/
.attraction-section .section-title{
    position: absolute;
    left: 0;
    z-index: 10;
    top: 70px;
}
.attraction-boxes{
    height: 800px;
    position: relative;
}
.attraction-box{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: -100;
    transition: opacity 300ms ease-out;
}
.attraction-box.visible {
    position: static;
    opacity: 1;
    z-index: 1;
    height: 85%;
}
.attraction-box-inner{
    position: relative;
    height: 100%;
}
.attraction-bg-slider-container{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.attraction-bg-slider,
.attraction-bg-slider .slick-list,
.attraction-bg-slider .slick-track,
.attraction-bg-slider .item{
    height: 100%;
}
.attraction-bg-slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.attraction-bg-slider > div:not(:first-of-type){
    display: none;
}

.attraction-box-circles{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.attraction-box-circles-inner{
    position: relative;
}
.attraction-box-circles .circle{
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid #fff;
    opacity: 0.3;
}
.attraction-box-circles .circle.active{
    opacity: 1;
}
.attraction-box-circles .circle1{
    width: 300px;
    height: 300px;
    margin-bottom: -150px;
}
.attraction-box-circles .circle2{
    width: 780px;
    height: 780px;
    margin-bottom: -390px;
}
.attraction-box-circles .circle3{
    width: 1230px;
    height: 1230px;
    margin-bottom: -615px;
}
.attraction-content-slider-container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}
.attraction-content-slider-container .container{
    height: 100%;
}
.attraction-content-slider-wrapper{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    height: 100%;
}
.attraction-content-slider-inner{
    width: 510px;
}
.attraction-content-slider{
    height: 110%;
}
.attraction-content-slider > div:not(:first-of-type){
    display: none;
}
.attraction-content-slider .item{
    padding-top: 225px;
    padding-left: 15px;
    padding-right: 15px;
}
.attraction-content-slider .item-title{
    font-size: 35px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    position: relative;
}
.attraction-content-slider .item-title:after{
    content: "";
    width: 310px;
    height: 1px;
    background: #A47527;
    position: absolute;
    bottom: 0;
    left: 0;
}
.attraction-content-slider .item-subtitle{
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.attraction-content-slider .slick-next{
    left: auto;
    top: auto;
    bottom: 140px;
    right: 10px;
}
.attraction-content-slider .slick-prev{
    left: auto;
    top: auto;
    bottom: 140px;
    right: 90px;
}
.attraction-content-slider .slick-dots{
    width: 160px;
    position: absolute;
    bottom: 230px;
    right: 0;
}
.attraction-content-slider .slick-dots li:not(.slick-active) {
    background: #fff;
}

.attraction-nav{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
}
.attraction-nav-btn{
    position: absolute;
    margin-left: -60px;
    bottom: 20px;
    background: #0A090E;
    padding: 4px;
    border-radius: 50%;
    cursor: pointer;
    animation: btnpulse2 3s infinite;
}
.attraction-nav-btn.active{
    background: #fff;
    margin-left: -76px;
    bottom: 0px;
}
.attraction-nav-btn.active,
.attraction-nav-btn:hover{
    animation: none;
}
@keyframes btnpulse2 {
  0% {
    box-shadow: 0 0 0 0 rgba(255,255,255, 0.6);
  }
  50% {
      box-shadow: 0 0 0 20px rgba(255,255,255, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(255,255,255, 0);
  }
}

.attraction-nav-btn:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid #A47527;
    border-radius: 50%;
}
.attraction-nav-btn.active:before {
    top: 5px;
    left: 5px;
    bottom: 5px;
    right: 5px;
    border-width: 1px !important;
}
.attraction-nav-btn-inner {
    width: 104px;
    height: 104px;
    overflow: hidden;
    border-radius: 50%;
}
.attraction-nav-btn.active .attraction-nav-btn-inner {
    width: 134px;
    height: 134px;
}
.attraction-nav-btn.active .img-element {
    display: none;
}
.attraction-nav-btn .img-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.attraction-nav-btn .text-element {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #A47527;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
}
.attraction-nav-btn.active .text-element {
    display: flex;
}
.attraction-nav-num{
    font-size: 41px;
    line-height: 1;
}
.attraction-nav-btn.nav-btn1{
    left: 300px;
}
.attraction-nav-btn.nav-btn2{
    left: 780px;
}
.attraction-nav-btn.nav-btn3{
    left: 1230px;
}
.attraction-nav-btn:hover:before {
    border-width: 5px;
}




@media(max-width: 1499px){
    .attraction-box-circles .circle1{
        width: 200px;
        height: 200px;
        margin-bottom: -100px;
    }
    .attraction-box-circles .circle2{
        width: 580px;
        height: 580px;
        margin-bottom: -290px;
    }
    .attraction-box-circles .circle3{
        width: 1000px;
        height: 1000px;
        margin-bottom: -500px;
    }
    .attraction-nav-btn.nav-btn1{
        left: 200px;
    }
    .attraction-nav-btn.nav-btn2{
        left: 580px;
    }
    .attraction-nav-btn.nav-btn3{
        left: 1000px;
    }
    
    .attraction-boxes{
        height: 750px;
    }
    .attraction-content-slider .item-title{
        font-size: 32px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    .attraction-content-slider .item-subtitle{
        margin-bottom: 10px;
    }
    .attraction-content-slider .item-text{
        line-height: 1.4;
    }
    .attraction-content-slider .slick-next,
    .attraction-content-slider .slick-prev{
        bottom: 110px;
        width: 50px;
        height: 50px;
    }
    .attraction-content-slider .slick-dots{
        bottom: 200px;
    }
}

@media(max-width: 1199px){
    .attraction-boxes{
        height: 700px;
    }
    .attraction-box-circles .circle2{
        width: 480px;
        height: 480px;
        margin-bottom: -240px;
    }
    .attraction-box-circles .circle3{
        width: 700px;
        height: 700px;
        margin-bottom: -350px;
    }
    .attraction-nav-btn.nav-btn2{
        left: 480px;
    }
    .attraction-nav-btn.nav-btn3{
        left: 700px;
    }
}


@media(max-width: 991px){
    .attraction-boxes{
        height: 600px;
    }
    .attraction-content-slider .item-title{
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        margin-top: 20px;
    }
    .attraction-content-slider .item-title:after{
        width: 200px;
    }
    .attraction-content-slider .item-subtitle {
        font-size: 18px;
    }
    .attraction-content-slider-inner{
        width: 700px;
    }
    .attraction-nav-btn-inner{
        width: 80px;
        height: 80px;
    }
    .attraction-nav-btn.active .attraction-nav-btn-inner{
        width: 100px;
        height: 100px;
    }
    .attraction-nav-btn {
        margin-left: -46px;
        bottom: -44px;
    }
    .attraction-nav-btn.active {
        margin-left: -62px;
        bottom: -48px;
    }
    .attraction-box-circles .circle2{
        width: 340px;
        height: 340px;
        margin-bottom: -170px;
    }
    .attraction-box-circles .circle3{
        width: 500px;
        height: 500px;
        margin-bottom: -250px;
    }
    .attraction-nav-btn.nav-btn2{
        left: 340px;
    }
    .attraction-nav-btn.nav-btn3{
        left: 500px;
    }
    .attraction-nav-btn .text-element{
        font-size: 13px;
    }
    .attraction-nav-num{
        font-size: 32px;
    }
}


@media(max-width: 767px){
    .attraction-boxes{
        height: 550px;
    }
    .attraction-box-circles{
        display: none;
    }
    .attraction-section .section-title{
        top: 45px;
		padding: 0px 0px;
    }
    .attraction-content-slider-inner{
        width: 100%;
    }
    .attraction-content-slider .item{
        padding-top: 130px;
        padding-left: 0;
    }
    .attraction-content-slider .item-title{
        font-size: 18px;
        margin-bottom: 10px;
        padding-bottom: 0;
        margin-top: 10px;
    }
    .attraction-content-slider .item-title:after{
        display: none;
    }
    .attraction-content-slider .item-subtitle{
        font-size: 14px
    }
    .attraction-nav-btn-inner{
        width: 60px;
        height: 60px;
    }
    .attraction-nav-btn.active .attraction-nav-btn-inner{
        width: 60px;
        height: 60px;
    }
    .attraction-nav-btn.active .text-element{
        font-size: 10px;
    }
    .attraction-nav-num{
        font-size: 22px;
    }
    .attraction-nav-btn.active:before{
        top: 2px;
        left: 2px;
        bottom: 2px;
        right: 2px;
    }
    .attraction-nav-btn,
    .attraction-nav-btn.active{
        margin-left: -30px;
        bottom: -32px;
    }
    .attraction-nav-btn.nav-btn1 {
        left: 30px;
    }
    .attraction-nav-btn.nav-btn2 {
        left: 50%;
    }
    .attraction-nav-btn.nav-btn3 {
        left: calc(100% - 30px);
    }
    .attraction-content-slider .item-text{
        font-size: 13px;
    }
    .attraction-content-slider .slick-prev{
        left: 0;
    }
    .attraction-content-slider .slick-next{
        right: auto;
        left: 70px;
    }
}
/* /. attraction-section */

/* catalog-section */
.catalog-section{
    background: url(../images/bg3.jpg) right top no-repeat #EDEDED;
    color: #000;
    padding: 100px 0 80px;
}
.catalog-section .container{
    width: 1286px;
    max-width: 100%;
}
.filters-block{
    margin-bottom: 30px;
    position: relative;
    z-index: 100;
}
.filters-block-body{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 8px;
}
.filters-block-footer{
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}
.btn-reset{
    padding: 0;
    border: none;
    background: transparent;
    text-decoration: underline;
}
.btn-reset:hover{
    text-decoration: none;
}
.filters-item-label{
    margin-bottom: 5px;
    height: 23px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.roomsnum-row{
    display: flex;
    flex-wrap: wrap;
}
.roomsnum-check{
    position: relative;
    width: 25%;
    overflow: hidden;
}
.roomsnum-check input{
    position: absolute;
    top: -100px;
    left: -100px;
    opacity: 0;
    width: 1px;
    height: 1px;
    z-index: -10;
}
.roomsnum-check label{
    display: flex;
    width: 100%;
    height: 44px;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #D7D7D7;
    cursor: pointer;
    transition: all ease-out 300ms;
}
.roomsnum-row > div:last-of-type label{
    border-right: none;
}
.roomsnum-check label:hover{
    background: #EDEDED;
}
.roomsnum-check input:checked + label{
    background: #A47527;
    color: #fff;
}
.filter-slider-container{
    position: relative;
}
.filter-slider-body{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
    height: 44px;
    width: 100%;
    padding: 8px;
}
.filter-slider-container .form-group{
    width: 50%;
    display: flex;
    align-items: center;
    padding-left: 15px;
}
.filter-slider-container input{
    width: 30px;
    padding: 0;
    background: transparent;
    border: none;
    margin-left: 5px;
}
.filter-dropdown-container{
    position: relative;
}
.filter-dropdown{
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 20px 20px 10px;
    box-shadow: 0 0 15px -3px #999;
    border-top: 1px solid #D7D7D7;
    z-index: 100;
}
.filter-dropdown-inner{
    max-height: 380px !important;
    overflow: auto;
}
.filter-dropdown-container.active .filter-dropdown{
    display: block;
    z-index: 151;
}
.filter-dropdown-title{
    display: flex;
    align-items: center;
    background: #fff;
    height: 44px;
    width: 100%;
    padding: 0 50px 0 15px;
    cursor: pointer;
    position: relative;
    z-index: 150;
}
.filter-dropdown-container.active .filter-dropdown-title{
    z-index: 152;
}

.filter-dropdown-title:after{
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    right: 20px;
    margin-top: -4px;
    margin-left: -4px;
    border-left: 2px solid #A47527;
    border-bottom: 2px solid #A47527;
    transition: all 200ms ease-out;
    transform: rotate(320deg) skewX(10deg);
}
.filter-dropdown-container.active .filter-dropdown-title:after{
    margin-top: -2px;
    transform: rotate(140deg) skewX(10deg);
}
.svg-sprite{
    display: none;
}

.filter-customcheck{
    position: relative;
    margin-bottom: 15px;
}
.filter-customcheck input{
    position: absolute;
    top: -100px;
    left: -100px;
    opacity: 0;
    width: 1px;
    height: 1px;
    z-index: -10;
}
.filter-customcheck label{
    display: inline-flex;
    flex-wrap: wrap;
    line-height: 1.2;
    transition: all ease-out 300ms;
    cursor: pointer;
}
.filter-customcheck label:hover{
    color: #A47527;
}
.filter-customcheck .checkbox_icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid #C1C1C1;
    margin-right: 10px;
    transition: all ease-out 300ms;
}
.filter-customcheck .checkbox_icon svg{
    fill: none;
    stroke: #fff;
    opacity: 0;
    transition: stroke-dashoffset .3s ease-in .2s,opacity .2s ease-out 0s;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
}
.filter-customcheck .checkbox_title{
    max-width: calc(100% - 26px);
}
.filter-customcheck input:checked + label .checkbox_icon{
    background: #A47527;
    border-color: #A47527;
}
.filter-customcheck input:checked + label .checkbox_icon svg{
    opacity: 1;
    transition-property: stroke-dashoffset;
    transition-delay: 0s;
    stroke-dashoffset: 0;
}

.filters-form .btn-submit{
    display: flex;
    height: 44px;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #A47527;
    color: #fff;
    border: none;
    margin: 28px 0 0;
    position: relative;
    overflow: hidden;
}
.filters-form .btn-submit span{
    position: relative;
    z-index: 2;
}
.filters-form .btn-submit:before{
    display: block;
    position: absolute;
    left: -30px;
    top: 0;
    right: 100%;
    height: 100%;
    background-color: #CA9A2A;
    content: "";
    z-index: 1;
    transition: all .3s linear;
    transform: skew(-30deg);
    opacity: 0;
}
.filters-form .btn-submit:hover:before{
    right: -30px;
    opacity: 1;
}
.filters-block-body fieldset{
    border: none;
    padding: 0;
    margin: 0;
}
.number_slider_wrapper{
    padding: 0 4px;
}

.filters-block-body .ui-slider-handle.ui-state-default.ui-corner-all {
    border-radius: 2px !important;
    background: #a47527 !important;
    border-color: #a47527 !important;
    opacity: 1 !important;
    top: -5px;
}
#mse2_filters .ui-widget-header {
    background: #a47527;
}
#mse2_filters .mse2_number_slider {
    font-size: .7em;
    margin-bottom: 0;
    border: none;
    height: 2px;
    top: -1px;
    background: #9f9f9f;
    border-radius: 0;
}
#mse2_filters .mse2_number_slider:before{
    content: "";
    width: 4px;
    height: 2px;
    position: absolute;
    left: -4px;
    top: 0;
    background: #9f9f9f;
}
#mse2_filters .mse2_number_slider:after{
    content: "";
    width: 4px;
    height: 2px;
    position: absolute;
    right: -4px;
    top: 0;
    background: #9f9f9f;
}


.catalog-columns{
    display: grid;
    grid-gap: 45px;
    grid-template-columns: 1.7fr 1fr;
}
.catalog-header{
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(6, 1fr);
    background: #A47527;
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 1.3;
    height: 54px;
    align-items: center;
    padding: 0 10px;
}
.catalog-row-wrapper{
    position: relative;
    transition: all ease-out 300ms;
    background: #fff;
    border-bottom: 1px solid #fff;
}
.catalog-body .catalog-row{
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(6, 1fr);
    color: #000;
    text-align: center;
    font-size: 12px;
    line-height: 1.3;
    align-items: center;
    padding: 10px;
    min-height: 110px;
    cursor: pointer;
}
.catalog-rows > div:last-of-type.active,
.catalog-rows > div:last-of-type:hover{
    border-bottom-color: #E2E2E2;
}
.catalog-row-wrapper:hover,
.catalog-row-wrapper.active{
    background: #E2E2E2;
}

.aside-sticky{
    position: sticky;
    top: 100px;
}
.aside-room-block{
    margin-bottom: 20px;
}
.aside-room-block-header{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 20px;
}
.aside .residential_complex_name{
    font-size: 18px;
    line-height: 1.4;
}
.aside .room_info{
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 15px;
}
.aside .complex_address{
    font-size: 14px;
    margin-bottom: 20px;
}
.aside .room_img{
    padding: 20px;
    background: #fff;
    border: 1px solid #CACACA;
    transition: all ease-out 300ms;
}
.aside .room_img:hover{
    border-color: #A47527;
}
.application-form-title{
    margin-bottom: 15px;
}
.application-form-inner{
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
}
.application-form-inner .form-control{
    border-left: none;
    border-right: none;
    height: 44px;
    text-transform: none;
    font-size: 14px;
    text-align: left;
    border-color: #A47527 !important;
    color: #000;
}
.application-form-inner .form-group.first .form-control{
    border-left: 1px solid #A47527;
}
.application-form-inner .form-group.first{
    position: relative;
}
.application-form-inner .form-group.first:after{
    content: "";
    width: 1px;
    height: 32px;
    background: #A47527;
    position: absolute;
    right: 0;
    top: calc(50% - (32px / 2) );
}
.application-form-inner .form-control.error,
.application-form-inner .error .form-control{
    color: red;
}
.application-form-inner .form-control.error::-moz-placeholder {
    color: red;
    opacity: 1;
}
.application-form-inner .form-control.error:-ms-input-placeholder {
    color: red;
}
.application-form-inner .form-control.error::-webkit-input-placeholder {
    color: red;
}
.application-form-inner .btn-submit{
    display: flex;
    height: 44px;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #A47527;
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}
.application-form-inner .btn-submit span{
    position: relative;
    z-index: 2;
}
.application-form-inner .btn-submit:before{
    display: block;
    position: absolute;
    left: -30px;
    top: 0;
    right: 100%;
    height: 100%;
    background-color: #CA9A2A;
    content: "";
    z-index: 1;
    transition: all .3s linear;
    transform: skew(-30deg);
    opacity: 0;
}
.application-form-inner .btn-submit:hover:before{
    right: -30px;
    opacity: 1;
}

@media(max-width: 1199px){
    .catalog-section {
        padding: 90px 0 80px;
    }
    .catalog-columns{
        grid-gap: 20px;
        grid-template-columns: 1.8fr 1fr;
    }
    .application-form-inner .form-control{
        font-size: 13px;
        padding: 0 10px;
    }
    .aside .residential_complex_name,
    .aside .room_info{
        font-size: 17px;
    }
    .application-form-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .application-form-inner .col3{
        grid-column-start: 1;
        grid-column-end: 3;
        padding-top: 10px;
    }
    .application-form-inner .col2 .form-control{
        border-right: 1px solid;
    }
}
@media(max-width: 991px){
    .catalog-section {
        padding: 70px 0;
    }
    .aside-sticky{
        position: sticky;
        top: 90px;
    }
    .catalog-columns{
        grid-template-columns: 2.5fr 1fr;
    }
    .aside .room_img{
        padding: 10px;
    }
    .aside .residential_complex_name,
    .aside .room_info{
        font-size: 16px;
    }
    .aside .room_info{
        margin-bottom: 5px;
    }
    .aside .complex_address{
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.3;
    }
    .aside-room-block{
        margin-bottom: 10px;
    }
    .application-form-title{
        margin-bottom: 10px;
    }
    .application-form-inner {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .application-form-inner .col3{
        padding-top: 0;
        grid-column-start: 1;
        grid-column-end: 1;
    }
    .application-form-inner .form-control{
        border: 1px solid;
    }
    .application-form-inner .form-group:after{
        display: none;
    }
    .catalog-header {
        grid-gap: 5px;
        font-size: 11px;
        line-height: 1.2;
        height: 50px;
        padding: 0 5px;
    }
    .catalog-body .catalog-row {
        grid-gap: 15px;
        font-size: 11px;
        line-height: 1.2;
        padding: 5px;
        min-height: 100px;
    }
    .filters-block-body{
        grid-template-columns: repeat(2,1fr);
    }
    .aside-room-block-header{
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .hypothec-btn{
        text-align: left;
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    .catalog-section {
        padding: 60px 0;
    }
    .filters-block-footer {
        justify-content: flex-start;
    }
    .catalog-columns{
        grid-template-columns: 1fr;
    }
    .catalog-header{
        display: none;
    }
    .catalog-rows{
        display: grid;
        grid-gap: 8px;
        grid-template-columns: 1fr 1fr;
    }
    .catalog-body .catalog-row{
        display: block;
        text-align: left;
        padding: 15px;
        font-size: 14px;
        border-bottom: none;
    }
    .catalog-row-wrapper:hover, 
    .catalog-row-wrapper.active{
        background: #fff;
    }
    .catalog-body .catalog-row .item-img{
        margin-bottom: 15px;
    }
    .catalog-body .catalog-row .item-img img{
        width: 100%;
    }
    .catalog-body .catalog-row .item{
        margin-bottom: 5px;
    }
    .aside-room-information-block{
        display: none;
        width: 360px;
        max-width: 100%;
    }
    .aside-room-information-block .aside-sticky{
        position: static;
        background: #fff;
        padding: 35px 25px;
        font-size: 14px;
        color: #000;
    }
    .fancybox-inner .room_img{
        margin: 20px auto;
    }
    .fancybox-inner .residential_complex_name,
    .fancybox-inner .room_info{
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 5px;
    }
    .fancybox-inner .complex_address{
        margin-top: 10px;
    }
    .fancybox-inner .application-form-title{

    }
}

@media(max-width: 699px){
    .catalog-rows{
        grid-gap: 15px;
        grid-template-columns: 1fr;
    }
}

@media(max-width: 499px){
    .filters-block-body {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    .filters-form .btn-submit{
        margin-top: 15px;
    }
    .filters-block{
        margin-bottom: 40px;
    }
}
@media(min-width:768px){
    .aside-room-information-block{
        display: block !important;
        height: 100%;
    }

}
#mse2_results{
    margin-bottom: 0 !important;
}
#mse2_results + #mse2_pagination{
    margin-top: 30px;
}
/* ./ catalog-section */

.filers-not-results-message{
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
}


/* index preloader */
.preloader_logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    transition: all 600ms ease-out;
    opacity: 1;
}
.preloader_logo.hid{
    opacity: 0;
    visibility: hidden;
}
.preloader_logo__wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}
.preloader_logo__img {
    animation: translatepreloader_logo 1s 6s forwards;

    background-color: #000;
}
.preloader_logo__img path {
    stroke-dasharray: 820;
    stroke-dashoffset: 820;
    fill: transparent;
    stroke: #AC835E;
    stroke-width: 1px;
    animation: draw 5s forwards, fillPathpreloader_logo 1s 5s forwards;
}
.preloader_logo__text {
    transform: translateX(-200px);
    animation: translateText 1s 6s forwards;
}
.preloader_logo__text path {
    fill: #ffffff;
    opacity: 0;
    animation: drawText 1s 6s forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes drawText {
    to {
        opacity: 1;
    }
}
@keyframes fillPathpreloader_logo {
    100% {
        fill: #AC835E;
        stroke: transparent;
    }
}
@keyframes fillPathText {
    100% {
        fill: #fff;
        stroke: transparent;
    }
}
@keyframes translatepreloader_logo {
    100% {
        transform: translateX(-120px);
    }
}
@keyframes translateText {
    100% {
        transform: translateX(-120px);
    }
}
@media screen and (max-width: 600px) {
    .preloader_logo__content {
        transform: scale(0.7);
    }
}
/* /. index-preloader */

/* black modal*/
.black-modal{
    display: none;
    width: 790px;
    max-width: 100%;
    color: #535352;
    background: #0A090D;
    padding: 13px;
}

.black-modal-inner{
    padding: 35px 0;
    border: 1px solid #A47527;
}
.black-modal .fancybox-button{
    width: 26px;
    height: 26px;
    padding: 0;
    right: 20px;
    top: 20px;
    color: #A47527;
}
.black-modal-body{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.black-modal-body:after{
    content: "";
    width: 1px;
    height: 100%;
    left: 315px;
    top: 0;
    background: #A47527;
    position: absolute;
}
.black-modal-body .col{
    height: 100%;
    padding: 0 60px;
}
.black-modal-body .col1{
    width: 315px;
    text-align: center;
}
.black-modal-body .col2{
    width: calc(100% - 315px);
}
.black-modal-title{
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #A47527;
}
.black-modal .agreement-text{
    font-size: 10px;
    line-height: 1.3;
    padding: 10px 0 20px;
}
.black-modal .btn-t2:before,
.black-modal .btn-t2:after{
    display: none;
}
.black-modal .btn-t2 {
    height: 46px;
    padding: 0 30px;
    font-size: 11px;
    border-radius: 30px;
    margin-bottom: 0;
}
.black-modal .btn-t2.btn--outline>svg rect {
    rx: 26px;
    ry: 26px;
}
.black-modal .form-control{
    margin-bottom: 10px;
    height: 36px;
    text-transform: none;
    font-size: 12px;
    text-align: left;
}
.black-modal .form-control:not(.error){
    border-color: #535352;
}
@media(max-width:799px){
    .black-modal-inner{
        padding: 25px 0;
    }
    .black-modal-body .col{
        padding: 0 30px;
    }
    .black-modal-body .col1{
        width: 285px;
    }
    .black-modal-body .col2{
        width: calc(100% - 285px);
    }
    .black-modal-body:after{
        left: 285px;
    }
	
	
	.fiexed-catalog-link{
    position: absolute;
    bottom: 40%;
    right: 20px;
    z-index: 100;
    width: 136px;
    height: 136px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ED2900;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.2;
    border-radius: 50%;
    animation: btnpulse 6s infinite;
}
	
}
@media(max-width:659px){
    .black-modal-body .col{
        width: 100%;
        text-align: center;
    }
    .black-modal-body .col1{
        padding-bottom: 10px;
    }
    .black-modal-body:after{
        display: none;
    }
}
/* /. black modal*/

.fiexed-catalog-link{
    position: absolute;
    bottom: 400px;
    right: 20px;
    z-index: 100;
    width: 136px;
    height: 136px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ED2900;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.2;
    border-radius: 50%;
    animation: btnpulse 6s infinite;
}
.fiexed-catalog-link .item-icon{
    margin-bottom: 5px;
}
.fiexed-catalog-link img{
    width: 49px;
    animation: 6s ease-out 0s normal none infinite running trambling-animation;
}
.fiexed-catalog-link:before{
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 1px solid #fff;
}
@keyframes trambling-animation {
    0%, 10%, 20%, 100%{
        transform: rotate(0deg);
    }
    2%, 6% {
        transform: rotate(-10deg);
    }
    4%, 8% {
        transform: rotate(10deg);
    }
}

@keyframes btnpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(237,41,0, 0.8);
  }
  30% {
      box-shadow: 0 0 0 30px rgba(237,41,0, 0);
  }
  50%,100% {
      box-shadow: 0 0 0 0 rgba(237,41,0, 0);
  }
}

.fiexed-catalog-link:hover,
.fiexed-catalog-link:hover img{
    animation: none;
}

@media(max-width: 1649px){
    .fiexed-catalog-link{
        bottom: 90px;
        right: 10px;
        width: 120px;
        height: 120px;
        font-size: 11px;
    }
    .fiexed-catalog-link .item-icon {
        margin-bottom: 2px;
    }
}
@media(max-width: 767px){
    .fiexed-catalog-link{
        bottom: 80px;
        right: 20px;
        width: 100px;
        height: 100px;
        font-size: 10px;
    }
    .fiexed-catalog-link img{
        width: 30.5px;
    }
}























