
.clearfix:before, .clearfix:after {
    content: '';
    display: table;
}
.clearfix:after {
    clear: both;
}

*::-webkit-input-placeholder {
	color: #000;
	opacity: .8;
}

*:-moz-placeholder {
	color: #000;
	opacity: .8;
}
*::-moz-placeholder {
	color: #000;
	opacity: .8;
}
*:-ms-input-placeholder {
	color: #000;
	opacity: .8;
}

*{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    width: 100%;
    font-size: 16px;
    font-family: 'Onest', sans-serif;
    background: #f9f9f9;
    line-height: 1.3;
    position: relative;
}

.container{
    width: 100%;
    max-width: 1650px;
    min-width: 320px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hidden {
  display: none !important;
}


input[type='text'],
input[type='password'],
input[type='search']{
    width: 100%;
    height: 33px;
    padding: 0 12px;
    color: #707070;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    background-color: #fff;
    border: 1px solid #00728A;
    border-radius: 0;
    transition: .3s;
}

textarea{    
    width: 100%;
    height: 120px;
    padding: 12px;
    color: #707070;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    background-color: #fff;
    border: 1px solid #00728A;
    border-radius: 0;
    resize: none;
}

input:focus{
    outline: none;
}

textarea:focus{
    outline: none;
}

.cols{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col{
    padding: 0 15px;
}

.btns{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.btns__item{
    padding: 16px 8px 0;
}

.btn{
    display: inline-block;
    border: medium none;
    background: transparent;
    cursor: pointer;
    transition: .3s;
    font-family: 'Onest', sans-serif;
}

.btn-black{
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 35px;
    background: #3a3a3a;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.btn-black:hover,
.btn-black:active{
    opacity: .8;
}

.btn-border-black{
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 35px;
    background: transparent;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #3a3a3a;
}

.btn-border-black:hover,
.btn-border-black:active{
    opacity: .8;
}

.btn-more{
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #3a3a3a;
}

.btn-more i{
    width: 56px;
    height: 30px;
    display: block;
    flex-shrink: 0;
    margin-left: 14px;
    background: url(../img/icons/more.svg) center no-repeat;
}

.btn-more:hover{
    opacity: .8;
}

.i-arrow-top-right{
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
    background: url(../img/icons/arrow-top-right.svg) center no-repeat;
}

button:focus{
    outline: none;
}

.slick-dots{
    position: absolute;
    text-align: center;
    bottom: 25px;    
    width: 100%;
    margin: 0 auto !important;
    padding: 0 !important;
}

.slick-dots li{
    width: auto;
    height: auto;
    margin: 0 6px!important;
    padding: 0!important;
}

.slick-dots li:before{
    display: none;
}

.slick-dots li button{
    width: 15px;
    height: 15px;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #00B9E8;
    opacity: 1;
    text-indent: -9999px;
    transition: .3s;
}

.slick-dots li.slick-active button{
    background-color: #00B9E8;
    border-color: #00B9E8;
}

.slick-dots li button:hover,
.slick-dots li button:focus{
    border-color: #00B9E8;
}

.slick-prev, 
.slick-next{
    width: 28px;
    height: 20px;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    border-radius: 0;
    background-position: center !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
}

.slick-prev:before,
.slick-next:before{
    content: none;
    
}

.slick-prev{
    left: 0;
    background-image: url(../img/icons/prev.svg)!important;
}

.slick-prev:hover{
    opacity: .8;
}

.slick-next{
    right: 0;
    background-image: url(../img/icons/next.svg)!important;
}

.slick-next:hover{
    opacity: .8;
}

.slick-dotted.slick-slider{
    margin-bottom: 0;
}

.arrows-append{
    width: 116px;
    height: 20px;
    position: relative;
}

.arrows-append .slick-prev,
.arrows-append .slick-next{
    transform: none;
}

.arrows-append .slick-prev{
    top: 0;
    left: 0;
}

.arrows-append .slick-next{
    top: 0;
    right: 0;
}

.border{
    height: 1px;
    border-top: 1px solid #c7b299;
    padding-top: 20px;
}

.section{
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.overflow-hidden{
    overflow: hidden;
}

.section__top{
    padding-bottom: 40px;
}

.section-tit{
    margin-bottom: 20px;
    font-family: "Morganite", sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 16px;
    color: #c7b299;
}

.section-tit a{
    color: inherit;
}

.title-block{
    margin-bottom: 35px;
    font-weight: 500;
    font-size: 52px;
    line-height: 0.94231;
    color: #3a3a3a;
}

.title-block span{
    font-family: "Morganite", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 40px;
    color: #c7b299;
}

.p-text{
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 18px;
    text-align: justify;
    color: #3a3a3a;
}

.p-text-indent{
    text-indent: 65px;
}

.max-530{
    max-width: 530px;
    margin-left: auto;
}

.block-head{
    padding-bottom: 40px;
}

.block-head .cols{
    flex-wrap: nowrap;
    justify-content: space-between;
}

.block-head .cols.end{
    align-items: flex-end;
}

.flex-bot{
    display: flex;
    justify-content: center;
    padding-top: 35px;
}

.burger{
    width: 32px;
    display: none;
    margin-left: auto;
}

.burger span{
    display: block;
    height: 3px;
    background: #3a3a3a;
    margin: 7px 0;
}

.menu-close{
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    background: transparent url(../img/header/close.svg) center no-repeat;
    background-size: contain;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.menu-mob{
    width: 100%;
    position: fixed;
    top: 0;
    height: 100%;
    padding: 48px 15px 25px;
    overflow: auto;
    background: #fff;
    z-index: 99;
    display: none;
}

.menu-mob__item{
    margin-top: 20px;
}

/**HEADER**/
.header{
    width: 100%;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 8;
}

.header .cols{
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.header .logo img{
    width: 202px;
    display: block;
}

.nav{

}

.nav > ul{
    list-style: none;
    display: flex;
    gap: 44px;
}

.nav > ul > li{

}

.nav > ul > li > a{
    display: block;
    padding: 3px 0;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #3a3a3a;
    transition: .3s;
}

.nav > ul > li:hover > a,
.nav > ul > li.active > a{
    color: #c7b299;
}

.header__phone{
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    color: #3a3a3a;
}

.header__phone a{
    color: inherit;
}

/**INTRO**/
.intro{
    width: 100%;
    display: block;
    padding-top: 0;
    padding-bottom: 100px;
    position: relative;
    z-index: 3;
}

.intro .pic{
    position: relative;
}

.intro .pic > img,
.intro .pic .intro-slider .slide img{
    width: 100%;
    display: block;
}

.intro .intro-slider{
    width: 100%;
}

.intro .intro-slider .slide .in{
    line-height: 0;
}

.intro .intro-slider .slick-prev,
.intro .intro-slider .slick-next{
    z-index: 2;
    width: 48px;
    height: 48px;
}

.intro .intro-slider .slick-prev{
    left: 16px;
}

.intro .intro-slider .slick-next{
    right: 16px;
}

.intro .intro-slider .slick-dots{
    bottom: 16px;
    z-index: 2;
}

.intro .subtitle{
    margin-top: 20px;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #3a3a3a;
}

.intro__cols{
    display: flex;
    justify-content: space-between;
    padding-top: 35px;
}

.intro__left{
    padding-right: 30px;
}

.intro__right{
    flex-basis: 800px;
    padding-right: 80px;
}

/**CONTENT**/
.content{
    width: 100%;
    display: block;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.breadcrumbs{
    margin-bottom: 55px;
}

.breadcrumbs ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs ul li{
    padding-right: 20px;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: #c7b299;
}

.breadcrumbs ul li:before{
    content: "/";
    color: #291715;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
}

.breadcrumbs ul li:last-child:before{
    content: none;
}

.breadcrumbs ul li a{
    display: block;
    color: #291715;
}

/**MORTAGE**/
.mortage{

}

.mortage__cols{
    display: flex;
    justify-content: space-between;
}

.mortage__left{
    flex-basis: 830px;
    padding-right: 30px;
}

.mortage__right{
    flex-basis: 445px;
}

.mortage__item{

}

.mortage__item .in{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 15px 0;
    border-top: 1px solid #3a3a3a;
    font-weight: 500;
    font-size: 18px;
    color: #3a3a3a;
    transition: .3s;
}

.mortage__item .in:hover{
    color: #c7b299;
}

.mortage__item:last-child .in{
    border-bottom: 1px solid #3a3a3a;
}

.mortage__item i{
    margin-left: 12px;
}

/**ABOUT**/
.about{

}

.about__cols{
    display: flex;
    justify-content: space-between;
}

.about__left{
    flex-basis: 830px;
    padding-right: 30px;
}

.about__right{
    flex-basis: 663px;
}

.about__sub{
    padding-top: 15px;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #3a3a3a;
    text-align: right;
}

.about .pic{

}

.about .pic img{
    width: 100%;
    display: block;
}

/**PRODUCTS**/
.products{

}

.products .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.products .item{
    width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.products .item .in{

}

.products .item .pic{
    margin-bottom: 28px;
}

.products .item .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.products .item .title{
    padding-right: 20px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #3a3a3a;
}

.products .item .title a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: inherit;
    transition: .3s;
}

.products .item .title a:hover{
    color: #c7b299;
}

.products .item .title i{
    margin-left: 12px;
}

/**ADVANTAGES**/
.advantages{

}

.advantages .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.advantages .item{
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.advantages .item .in{
    min-height: 300px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 45px 85px 45px 40px;
    background: #fff;
    border-right: 8px solid #00b9e8;
}

.advantages .item .in.orange{
    border-color: #ff6e07;
}

.advantages .item .in.green{
    border-color: #5fc61c;
}

.advantages .item .top{
    width: 100%;
}

.advantages .item .bottom{
    width: 100%;
}

.advantages .item .title{
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #3a3a3a;
}

.advantages .item p{
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #3a3a3a;
}

/**TEAM**/
.team{

}

.team .items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -55px;
}

.team .item{
    width: 25%;
    padding: 0 55px;
    margin-bottom: 50px;
}

.team .item .in{

}

.team .item .section-tit{
    margin-bottom: 15px;
}

.team .item .pic{
    height: 320px;
    margin-bottom: 28px;
}

.team .item .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.team .item .title{
    padding-right: 20px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #3a3a3a;
}

.team .item .title a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: inherit;
    transition: .3s;
}

.team .item .title a:hover{
    color: #c7b299;
}

.team .item .title i{
    margin-left: 12px;
}

/**CARD**/
.card{

}

.card__cols{
    display: flex;
    flex-wrap: wrap;
}

.card__left{
    width: 545px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    flex-shrink: 0;
    padding-right: 30px;
}

.card__right{
    width: calc(100% - 545px);
}

.card__left .top{
    width: 100%;
}

.card__left .bottom{
    width: 100%;
}

.card p{
    margin-top: 20px;
    font-weight: 400;
    font-size: 18px;
    color: #3a3a3a;
}

.card .pic{
    margin-right: -150px;
}

.card .pic img{
    width: 100%;
    display: block;
}

/**GALLERY**/
.gallery{
    height: 400px;
    position: relative;
    z-index: 5;
}

.gallery .slider-wrap{
    margin: 0 -10px;
}

.gallery .item{
    padding: 0 10px;
}

.gallery .item .in{
    position: relative;
}

.gallery .item .pic{
    height: 300px;
    transition: .3s;
}

.gallery .slick-slide.slick-current.slick-active .item .pic{
    height: 400px;
}

.gallery .item .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .3s;
}

.gallery .arrows-append{
    position: absolute;
    bottom: 50px;
    right: 150px;
}

/**STORY**/
.story{
    padding-bottom: 60px;
}

.story__cols{
    display: flex;
    flex-wrap: wrap;
}

.story__left{
    width: calc(100% - 720px);
    padding-right: 30px;
}   

.story__right{
    width: 720px;
    flex-shrink: 0;
}

.story p{
    max-width: 500px;
    margin-top: 0;
}

.story__left .title-block{
    margin-bottom: 35px;
}

.story__left .p-text{
    margin-top: 0;
}

.story__right .video img{
    width: 100%;
    display: block;
}

.story__right .video--embed{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #1a1a1a;
}

.story__right .video--embed iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.section--story .what{
    margin-top: 0;
}

/**ARTICLE**/
.section--article{
    padding-bottom: 20px;
}

.section--article-more{
    padding-top: 40px;
    padding-bottom: 60px;
}

.block-head--article{
    padding-bottom: 30px;
}

.article-detail__top{
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: space-between;
}

.article-detail__head-col{
    flex: 1 1 0;
    min-width: 0;
    max-width: 530px;
}

.article-detail__hero-col{
    flex: 0 0 auto;
    width: 42%;
    max-width: 520px;
}

.article-detail__head .title-block{
    margin-bottom: 28px;
}

.article-detail__head .max-530{
    margin-left: 0;
    margin-bottom: 8px;
}

.article-detail__head .p-text{
    margin-bottom: 20px;
}

.article-detail__head .btn{
    margin-top: 8px;
}

.article-detail__date{
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #c7b299;
}

.article-detail__hero{
    margin-bottom: 0;
}

.article-detail__hero .pic img{
    width: 100%;
    display: block;
    object-fit: cover;
}

.article-detail__inner-pic{
    margin-bottom: 32px;
}

.article-detail__inner-pic img{
    width: 100%;
    display: block;
}

.article-detail{
    padding-bottom: 20px;
}

.article-detail__body{
    max-width: 830px;
}

.article-detail__body.max-530{
    max-width: 530px;
}

.article-detail__body > p,
.article-detail__body p.p-text{
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 18px;
    text-align: justify;
    color: #3a3a3a;
}

.article-detail__body h2,
.article-detail__body .article-detail__subtitle{
    margin: 40px 0 20px;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1;
    color: #3a3a3a;
}

.article-detail__body h2 span,
.article-detail__body .article-detail__subtitle span{
    font-family: "Morganite", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 28px;
    color: #c7b299;
}

.article-detail__body ul,
.article-detail__body .article-detail__list{
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.article-detail__body li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.35;
    color: #3a3a3a;
}

.article-detail__body li::before{
    content: "/";
    position: absolute;
    left: 0;
    top: 0;
    color: #c7b299;
}

/**WHAT**/
.what{

}

.what .items{
    display: flex;
    margin: 0 -15px;
}

.what .item{
    flex-grow: 1;
    padding: 0 15px;
    margin-bottom: 20px;
}

.what .item .in{
    min-height: 400px;
    height: 100%;
    padding: 30px 40px;
    background: #fff;
    border-right: 8px solid #00b9e8;
}

.what .item .in.orange{
    border-color: #ff6e07;
}

.what .item .in.green{
    border-color: #5fc61c;
}

.list{
    padding-left: 18px;
}

.list li{
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 16px;
    color: #3a3a3a;
}

.sorting{
    display: flex;
    padding-bottom: 55px;
    border-top: 1px solid #c7b299;
}

.sorting__item{
    margin-right: 65px;
}

.sorting__item .in{
    padding-top: 12px;
    font-family: "Morganite", sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    line-height: 1.15;
    color: #c7b299;
    position: relative;
    white-space: nowrap;
}

.sorting__item.active .in{
    padding-top: 40px;
    padding-left: 10px;
}

.sorting__item.active .in:before{
    content: "";
    width: 1px;
    height: 54px;
    background: #c7b299;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.sorting__item.active .in:after{
    content: "";
    width: 7px;
    height: 7px;
    background: #ff6e07;
    border-radius: 100%;
    position: absolute;
    top: 52px;
    left: -3px;
    z-index: 3;
}

/**PROJECTS**/
.projects{

}

.projects .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -50px;
}

.projects .item{
    width: 50%;
    padding: 0 50px;
    margin-bottom: 55px;
}

.projects .item .in{

}

.projects .item .pic{

}

.projects .item .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.projects .item .title{
    padding: 15px 0 0 20px;
    position: relative;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #3a3a3a;
}

.projects .item .title:before{
    content: "";
    width: 1px;
    height: 27px;
    background: #c7b299;
    position: absolute;
    top: 0;
    left: 7px;
    z-index: 1;
}

.projects .item .title:after{
    content: "";
    width: 7px;
    height: 7px;
    background: #ff6e07;
    border-radius: 100%;
    position: absolute;
    top: 23px;
    left: 4px;
    z-index: 3;
}

.projects .item .title a{
    color: inherit;
}

/**SDELKA**/
.sdelka{
    border-top: 1px solid #c7b299;
}

.sdelka .items{
    display: flex;
    flex-wrap: wrap;
}

.sdelka .item{
    width: 20%;
}

.sdelka .item .in{
    height: 100%;
    padding: 100px 15px 15px 15px;
    position: relative;
}

.sdelka .item .in:before{
    content: "";
    width: 1px;
    height: 180px;
    background: #c7b299;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.sdelka .item .in:after{
    content: "";
    width: 7px;
    height: 7px;
    background: #ff6e07;
    border-radius: 100%;
    position: absolute;
    top: 174px;
    left: -3px;
    z-index: 3;
}

.sdelka .item .num{
    font-weight: 500;
    font-size: 52px;
    color: #c7b299;
    opacity: .3;
}

.sdelka .item p{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375;
    color: #3a3a3a;
}

/**SERVICES**/
.services{

}

.services .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -100px;
}

.services .item{
    width: 33.33%;
    padding: 0 100px;
    margin-bottom: 100px;
}

.services .item .in{

}

.services .item .section-tit{
    font-size: 22px;
}

.services .item .pic{
    height: 390px;
    margin-bottom: 20px;
}

.services .item .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.services .item .title{
    min-height: 66px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375;
    color: #3a3a3a;
}

.services .item .title a{
    color: inherit;
}

.services .item .bottom{
    display: flex;
    justify-content: flex-end;
}

/**FOOTER**/
.footer{
    width: 100%;
    display: block;
    position: relative;
    background: #3a3a3a;
    z-index: 3;
}

.footer__top{
    padding-top: 60px;
}

.footer__top .cols{
    flex-wrap: nowrap;
    justify-content: space-between;
}

.footer .logo-1 img{
    width: 285px;
    display: block;
}

.footer .subtitle{
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c7b299;
}

.footer .subtitle a{
    color: inherit;
}

.footer-nav{
    list-style: none;
}

.footer-nav li{
    margin-bottom: 20px;
}

.footer-nav li a{
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.footer__phone{
    font-weight: 400;
    font-size: 40px;
    line-height: 0.7;
    text-transform: uppercase;
    color: #fff;
}

.footer__phone a{
    color: inherit;
}

.footer__middle{
    padding-top: 60px;
    padding-bottom: 25px;
}

.footer__middle .cols{
    flex-wrap: nowrap;
    justify-content: space-between;
}

.footer .logo-2 img{
    width: 200px;
    display: block;
}

.footer .logo-3 img{
    width: 220px;
    display: block;
}

.footer__bottom{
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #c7b299;
}

.footer__bottom .cols{
    flex-wrap: nowrap;
    justify-content: space-between;
}

.footer__bottom p{
    font-weight: 400;
    font-size: 14px;
    color: #c7b299;
}

.footer__bottom p a{
    color: inherit;
}