﻿/*#region font-faces */
@font-face {
    font-family: 'Roboto Black';
    src: url('/assets/fonts/Roboto/Roboto-Black.ttf');
}
@font-face {
    font-family: 'Roboto Black Italic';
    src: url('/assets/fonts/Roboto/Roboto-BlackItalic.ttf');
}
@font-face {
    font-family: 'Roboto Bold';
    src: url('/assets/fonts/Roboto/Roboto-Bold.ttf');
}
@font-face {
    font-family: 'Roboto Bold Italic';
    src: url('/assets/fonts/Roboto/Roboto-BoldItalic.ttf');
}
@font-face {
    font-family: 'Roboto Italic';
    src: url('/assets/fonts/Roboto/Roboto-Italic.ttf');
}
@font-face {
    font-family: 'Roboto Light';
    src: url('/assets/fonts/Roboto/Roboto-Light.ttf');
}
@font-face {
    font-family: 'Roboto Light Italic';
    src: url('/assets/fonts/Roboto/Roboto-LightItalic.ttf');
}
@font-face {
    font-family: 'Roboto Medium';
    src: url('/assets/fonts/Roboto/Roboto-Medium.ttf');
}
@font-face {
    font-family: 'Roboto Medium Italic';
    src: url('/assets/fonts/Roboto/Roboto-MediumItalic.ttf');
}
@font-face {
    font-family: 'Roboto';
    src: url('/assets/fonts/Roboto/Roboto-Regular.ttf');
}
@font-face {
    font-family: 'Roboto Thin';
    src: url('/assets/fonts/Roboto/Roboto-Thin.ttf');
}
@font-face {
    font-family: 'Roboto Thin Italic';
    src: url('/assets/fonts/Roboto/Roboto-ThinItalic.ttf');
}

/*#endregion font-faces */

/*#region variables */
:root {
    --primary-color: #E63637;
    --primary-darked-color: #B60607;
    --secondary-color: #44944f;
    --text-color: #000;
    --link-hover-color: #000;
    --main-text-color: #fff;
    --main-text-darked-color: #eee;
    --main-border: #dedede;
    --button-background: #f3f3f3;
    --secondary-text-color: #ababab;
    --transparent-gray-color: #A6A6A6;
}
/*#endregion*/

/*#region ---- common ---- */

body {
    max-width: 1440px;
    margin: 0 auto;
    color: var(--text-color);
    font-family: 'Roboto', 'Segoe UI', 'Open Sans', sans-serif;
    font-size: 18px;
    overflow-x: hidden;
    position: relative;
}

h1{
    font-size: 2.2em;
}

h2 {
    font-size: 2.2em;
}

h3 {
    font-size: 2em;
}

h4 {
    font-size: 1.44em;
}

h5{

}

h6{

}

@media (max-width: 575.98px) {
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.8em;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.8em;
    }
}

 section{
    padding-top: 4em;
    padding-bottom: 3em;
}

a{
    color: var(--text-color);
    text-decoration: none;
}

a:hover{
    color: var(--link-hover-color);
    text-decoration: none;
}

p{
    font-family: 'Roboto Light';
    font-size: 1em;
    line-height: 1.22em;
}


select,
option,
input[type="text"],
button
{
    font-size: 0.8em;
    /*height: 35px;*/
    height: 50px;
    border-radius: 0;
    border-style: solid;
    border: 1px solid var(--main-border);
    padding: 0 15px;
}
/* 
.select-container:before {
    content: 'Квартира';
    font-size: 0.8em;
    top: 8px;
    left: 16px;
    position: absolute;
    pointer-events: none;
} */

.select-container:after {
    content: '▸';
    color: var(--primary-color);
    height: 9px;
    width: 12px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 7px;
    top: 12px;
    position: absolute;
    pointer-events: none;
}

.select-container span{
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.8em;
    pointer-events: none;
}

.select-container span+select{
    text-align: right;
    text-align: -webkit-right;
    direction: rtl;
    padding-right: 40px;
    
}


select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    -ms-word-break: normal;
    word-break: normal;
  }

.bg-green {
    background: var(--secondary-color);
}

.bg-red {
    background: var(--primary-color);
}

.bg-green-red{
    background: linear-gradient(to right, var(--secondary-color) 50%, var(--primary-color) 50%);
}


.bg-black-23t{
    background-color: black;
    opacity: 0.23;
}

.w-200px{
    width: 200px;
    display: block;
    position: relative;
}

.w-200px *{
    width: 100%;
}

.w-150px{
    width: 150px;
    display: block;
    position: relative;
}
.w-130px{
    width: 130px;
    display: block;
    position: relative;
}

.w-150px *{
    width: 100%;
}
.w-130px *{
    width: 100%;
}

.title{
    color: var(--text-color);
}

.small-table{
 font-size: 0.9em;
 font-family: 'Roboto Light';
}

.small-table td{
 margin: 0;
 padding: 0;
 border: 0;
}

.text-secondary{
    color: var(--secondary-text-color);
}

.text-green {
    color: var(--secondary-color);
}

.text-black{
    color: var(--text-color);
}

.text-cutted {
    white-space: nowrap; /* Отменяем перенос текста */
    overflow: hidden; /* Обрезаем содержимое */
    padding: 5px; /* Поля */
    text-overflow: ellipsis; /* Многоточие */
}

    /*.text-cutted:hover {
        background: #f0f0f0;*/ /* Цвет фона */
        /*white-space: normal;*/ /* Обычный перенос текста */
    /*}*/

.image-background{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.font-size-2{
    font-size: 2em;
}

.font-size-2-5{
    font-size: 2.5em;
}

.font-size-3{
    font-size: 3em;
}

.error-text-1{
    color: var(--main-text-color)
}
.error-text-2{
    color: var(--primary-color)
}

.success-text-1{
    color: var(--main-text-color)
}
.success-text-2{
    color: var(--secondary-text-color)
}

/*#endregion ---- common ---- */

/*#region ---- top menu ---- */
.topmenu__container{
    height: 56px;
}

.topmenu__row__city{
    height: 56px;
    color: var(--main-text-color);
    font-family: 'Roboto Light';
    font-size: 1.1em;
}

    .topmenu__row__city img{
        height: 15px;
    }
    .topmenu__row__city a{
        color:var(--main-text-color);
    }

.topmenu__row__contacts {
    color: var(--main-text-color);
    font-family: 'Roboto Light';
    white-space: nowrap;
    /*font-size: 18px;*/
    /*font-size: 1.15vw;*/
    font-size: 1em;
}

.topmenu__row__contacts nav li a {
    color:  var(--main-text-color);
    font-family: 'Roboto Light';
    font-size: 1.1em;
}

.topmenu__row__contacts nav li a:hover {
    color: var(--link-hover-color);
}

/*#endregion ---- top menu ---- */

/*#region ---- top menu ---- */
#mainmenu{
    height: 126px;
}

.mainmenu__container{
    height: 126px;
}

.mainmenu-logo__row{
    height: 126px;
}

.mainmenu__col{

}

.mainmenu .nav-link{
    color: var(--text-color);
}

.mainmenu .nav-link.active{
    color: var(--primary-color);
}

.mainmenu .nav-link:hover{
    color: var(--primary-color);
}

.nav-link img{
    height: 22px;
}


.mainmenu li a{
    font-weight: 400;
    font-size: 0.9em;
}

.mainmenu li a{
    font-weight: 400;
    font-size: 0.9em;
    padding: .5em .6em;
}
.mainmenu li:hover{
    background-color: transparent;
}
.mainmenu li a:hover{
    color: var(--primary-color);
    background-color: transparent;
}

/*#endregion ---- top menu ---- */


/* ---- MAIN PAGE begin ---- */
/*#region ---- main page top banner ---- */
.landing__ti {
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    height: 70vh;
}

    .landing__ti h1 {
        z-index: 2;
        text-align: center;
        margin-top: 40vh;
        font-size: 4em;
    }

.page-title{
    display: block;
    position: absolute;
    bottom: 2em;
    color: var(--main-text-color);
    font-family: 'Roboto Light';
}

@media (max-width: 575.98px) 
{
    .page-title {
        text-align: center;
        font-size: 2.5rem;
    }

    .landing__ti {
        height: 40vh;
    }

    .landing__ti h1 {
        margin-top: 0vh;
        font-size: 2em;
    }

}
@media (min-width: 576px) and (max-width: 767.98px) {
    .page-title {
        text-align: center;
        font-size: 2.5rem;
    }


    .landing__ti {
        height: 40vh;
    }

    .landing__ti h1 {
        margin-top: 0vh;
        font-size: 2em;
    }
}

.page-title2{
    display: block;
    position: relative;
    top: 0.5em;
    color: var(--text-color);
    font-family: 'Roboto Light';
}

.page-title3{
    display: block;
    position: relative;
    top: 4em;

    color: var(--text-color);
    font-family: 'Roboto Light';
}

/*#endregion ---- main page top banner ---- */

/*#region ---- main page about ---- */


.btn {
    /*font-size: 1.4vh;*/
    font-size: 25px;
}


.btn-widget{
    color: var(--main-text-color);
    background-color: var(--primary-color);
    height: 77px;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.3);
    font-family: 'Roboto Bold';
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 0;
}

.btn-action.landing{
    padding-left: 50px;
    padding-right: 50px;
    height: 77px;
}

.btn-widget:hover{
    background-color: var(--primary-darked-color);
    color: var(--main-text-darked-color);
}

.btn-standart{
    color: var(--main-text-color);
    background-color: var(--primary-color);
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.3);
    font-family: 'Roboto Bold';
    padding-left: 30px;
    padding-right: 30px;
    height: 50px;
    font-size: 0.9em;
    border-radius: 0;
}

.btn-standart:hover{
    background-color: var(--primary-darked-color);
    color: var(--main-text-darked-color);
}

.btn-main {
    background: #44944F;
    height: 3em;
    width: 100%;
    color: white;
    vertical-align: middle;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
    .btn-main:hover {
        background: #33833E;
        color: white;
    }

.btn-second {
    background: #F3F3F3;
    height: 3em;
    width: 100%;
    color: #44944F;
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
    .btn-second:hover {
        background: #E2E2E2;
    }

.btn-big {
    font-size: 25px;
    padding: 0em 3em;
    height: 77px;
}

.btn-reset:hover{
    background-color: var(--primary-color);
    color: var(--main-text-color);
}


.object-input {
    max-width: 300px;
}

.bid-input{
    max-width: 200px;
}

.modal-backdrop {
    background-color: #dedede;
    /*background-color: black;*/
    opacity: 0.9 !important;
}

.margin_mt27px {
    margin-top: -27px;
}

.margin_mt38px {
    margin-top: -38px;
}
.margin_half_btn_top {
    margin-top: -38px;
}

@media (max-width: 576px) {
    .btn {
        font-size: 17px;
    }

    .btn-widget{
        height: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .margin_half_btn_top {
        margin-top: -25px;
    }
}
@media (max-width: 768px) {
    .btn {
        font-size: 17px;
    }

    .btn-widget{
        height: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .margin_half_btn_top {
        margin-top: -25px;
    }
}

@media (max-width: 992px) {
    .btn {
        font-size: 17px;
    }

    .btn-widget{
        height: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .margin_half_btn_top {
        margin-top: -25px;
    }
}
/*#endregion ---- main page about ---- */

/*#region ----  coworking with us ---- */

.main-coworking-with-us-list div img{
    width: 40px;
}

.main-coworking-with-us-list h6{
    font-weight: 600;
    color: var(--text-color);
}

/*#endregion ---- coworking with us ---- */

/*#region ---- main page agents ---- */

#main-agents-block{
    background-color: var(--secondary-color);
}

.main-agents-container__title{
    color:var(--main-text-color);
}


.main-agents-list div img{
    width: 90%;
}

.main-agents-list h4{
    color: var(--main-text-color);
    display: block;
}
.fixed-height-img {
    height: 16em;
    background-repeat: no-repeat;
    width: 90%;
    background-size: cover;
    background-position: top;
}   

.main-agents-list p{
    color: var(--main-text-color);
    line-height: 1.3em;
    margin: 0;
    padding: 0;
}

.main-agents-container___link{
    color: var(--main-text-color);
}

.main-agents-container___link:hover{
    color: var(--primary-color);
}

/*#endregion ---- main page agents ---- */

/*#region ---- main page reviews ---- */

.main-reviews-list__card{
    padding: 15px;
    box-shadow: 0px 0px 5px 0px lightgray;
}

.main-reviews-list__card img{
    width: 40px;
}

.main-reviews-list__card h6{
    color: var(--secondary-color);
    font-size: 0.9em;
    font-weight: 600;;
}

.main-reviews-list__card a{
    background-color: var(--secondary-color);
    border: 0;
    border-radius: 0;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

.main-reviews-list__card a:hover{
    background-color: var(--primary-color);
}

.review .name{
    color: var(--secondary-color);
}

.review .date{
    color: var(--transparent-gray-color);
}

.review .text{
    color: var(--text-color);
}

/*#endregion ---- main page reviews ---- */
/* ---- MAIN PAGE end ---- */



/* ---- CATALOGUE PAGE begin ---- */
/*#region ---- catalogue breadcrumbs ---- */


.beadcrumbs__list span, .beadcrumbs__list a{
    color: var(--secondary-text-color);
    font-size: 0.9em;
    font-family: 'Roboto Light';
}
    .beadcrumbs__list a:hover{
        color: var(--primary-color);
    }

/*#endregion ---- catalogue breadcrumbs ---- */

/*#region ---- catalogue filters ---- */


.filters__service-list span{
    margin-right: 15px;
    padding: 0 0 3px 0;
    
}

.filters__service-list span, .filters__service-list a{
    color: var(--text-color);
    font-family: 'Roboto';
}


.filters__service-list span:hover{
    color: var(--text-color);
    border-bottom: 4px solid var(--primary-color);
    font-family: 'Roboto';
}

.filters__service-list span.active{
    color: var(--text-color);
    border-bottom: 4px solid var(--primary-color);
    font-family: 'Roboto';
}
    .filters__service-list a:hover{
        color: var(--primary-color);
    }

.filters__field-list {
    margin: 15px 0;
    flex-direction: row;
    justify-content: space-between;
}

    .filters__field-list div {
        width: 100%;
        white-space: nowrap;
    }

@media (max-width: 992px){

    .filters__field-list{
        margin: 15px 0;
        flex-direction: column;
    }
}

.filters__field-list .col, 
.filters__field-list .col-1, 
.filters__field-list .col-2{
    margin: 0;
    padding: 0;
}

.filters__field-list select,
.filters__field-list option,
.filters__field-list input,
.filters__field-list button,
.filters__field-list span,
.filters__field-list a{
    background-color: transparent;
    width:100%;
}

.filters__field-list span,
.filters__field-list a{
    font-size: 0.8em;
    height: 35px;
    width:100%;
    border-radius: 0;
    border-style: solid;
    border: 1px solid var(--secondary-text-color);
    padding: 0 0px;
    border: none;
    white-space: nowrap
}

.filters__field-list button
{
    background-color: var(--secondary-color);
    color:var(--main-text-color);
    font-family: 'Roboto Medium';
}
.filters__field-list button:hover
{
    background-color: var(--primary-color);
}



.filters__field-list select:focus-visible,
.filters__field-list option:focus-visible,
.filters__field-list input:focus-visible,
.filters__field-list button:focus-visible,
.filters__field-list span:focus-visible,
.filters__field-list a:focus-visible{
    outline: none;

}

/*#endregion ---- catalogue filters ---- */

/*#region ---- card ---- */

.card_realty{
    border: 0;
}

.card_realty .card-body{
    padding: 0;
    margin-top: 1rem;
}

.card_realty .card-body div, .card_realty .card-body p{
    padding-top: 0.5rem;
}

.card_realty .card-body .row div:first-child{
    text-align: left;
}

.card_realty .card-body .row div:last-child{
    text-align: right;
}

.card_realty .card-text{
    color: var(--secondary-text-color);
}

.realty_filter_input{
    display: inline;
}

/*#endregion ---- card ---- */

/*#region ---- product list controls ---- */

.product-list-controls__block select,
.product-list-controls__block button{
    color: var(--text-color);
    background-color: transparent;
}

/*#endregion ---- product list controls ---- */

/*#region ---- product list items ---- */


.product-list-item{
    margin-bottom: 4em;
}

.product-list-item button{
    background-color: var(--button-background);
    border: 0;
    color: var(--secondary-color);
}

.product-list-item img{
    width: 100%;
}

.product-list-item__under-img{
    background-color: var(--secondary-color);
    width: 100%;
    margin:auto 0;
    text-align: center;
    padding: 10px;
}

.product-list-item__under-img a{
    color: var(--main-text-color)
}


.product-list-item__price{
    color: var(--secondary-color);
}

.product-list-item__price-area{
    color: var(--secondary-text-color);
}


/*#endregion ---- product list items ---- */

/*#region ---- product list controls ---- */

.product-pagination{
    background-color: transparent;
}

.product-pagination li{
    color: var(--text-color);
    border: 0;
}

.product-pagination li .active{
    background-color: var(--secondary-color);
    color: var(--main-text-color);
}

.product-pagination li a{
    position: relative;
    display: block;
    padding: .6rem .9rem;
    margin: 0 .5em;
    line-height: 1.25;
    color:var(--text-color);
    background-color: #fff;
    border: 0;
}

.product-pagination li.active a{
    background-color: var(--secondary-color);
    color: var(--main-text-color);
}

.product-pagination li a:hover{
    background-color: var(--primary-color);
    color: var(--main-text-color);
}


/*#endregion ---- product list controls ---- */
/* ---- CATALOGUE PAGE end ---- */



/* ---- CARD PAGE begin ---- */
/*#region ---- card ---- */

.product-card{
    margin-bottom: 4em;

}

.product-card__under-img{
    background-color: var(--secondary-color);
    width: 100%;
    margin: auto 0;
    text-align: left;
    padding: 10px;
}

.product-card__under-img a{
    margin: 0 18px;
}

.product-card__under-img a{
    color: var(--main-text-color);
}

.product-card img{
    width: 100%;
}

.product-card__title{

}

.product-card__under-title{
    color: var(--secondary-text-color);
    font-family: 'Roboto';
}
.product-card__code{
    color: var(--text-color);
    font-family: 'Roboto';
}

.product-card__disabled{
    font-size: 3em;
    color: var(--secondary-text-color);
}

.product-list-item__agent {
    max-width: 100px;
}

.product-card__price{
    color: var(--secondary-color);
    font-size: 2.5em;
    font-family: 'Roboto Medium';
    white-space: nowrap;
}

.product-card__price-area{
    font-size: 1.3em;
    font-family: 'Roboto Thin';
}

.product-card__secondary-block .btn-main {
    font-size:16px;
}
.product-card__secondary-block .btn-second {
    font-size: 16px;
}


/*#endregion ---- card ---- */
/*#region gallery ----*/
#mainCarousel {
    width: 100%;
    margin: 0 auto 0 auto;
    --carousel-button-color: #170724;
    --carousel-button-bg: #fff;
    /* --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
      0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%); */

    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    --carousel-button-svg-stroke-width: 2.5;
}

    #mainCarousel .carousel__slide {
        width: 100%;
        padding: 0;
        background-color: #f3f3f3;
        /* border: 1px solid #dedede;
  }
  
  #mainCarousel .carousel__button.is-prev {
    /* left: -1.5rem; */
    }
  
  #mainCarousel .carousel__button.is-next {
    /* right: -1.5rem; */
  }
  
  #mainCarousel .carousel__button:focus {
    outline: none;
    /* box-shadow: 0 0 0 4px #A78BFA; */
  }
  
  #thumbCarousel .carousel__slide {
    opacity: 0.5;
    padding: 0;
    margin: 23px 13px 0 0;
    width: 96px;
    height: 64px;
  }
  
  #thumbCarousel .carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 4px; */
  }

  .carousel__nav .carousel__button{
      border-radius: 0;
      opacity: 0.7;
  }

  .carousel__nav .carousel__button:hover{
    opacity: 1;
  }
  
  #thumbCarousel .carousel__slide.is-nav-selected {
    opacity: 1;
  }

/*#endregion gallery ----*/


/* ---- CARD PAGE end ---- */



/* ---- CATALOGUE PAGE begin ---- */
/*#region ---- agents list  ---- */

.agents-list-item{
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    padding: 0;
    color: var(--main-text-color);
    box-shadow: 0px 5px 5px 0px var(--main-border);
    position: relative;
}

.agents-list-item div{
    flex-basis: 100%;
    padding: 5px 15px 10px;
    background-color: var(--secondary-color);
   cursor: pointer;

}

.agents-list-item .button{
   text-align: center;
   padding: 0;
   font-family: 'Roboto Medium';
}

.agents-list-item .button span{
   line-height: 40px;
    font-size: .8em;
}

    .agents-list-item .details {
        position: absolute;
        /* bottom: calc(-1 * 40px); */
        width: 100%;
        bottom: -120px;
        height: 10rem;
        display: none;
        z-index: 1;
    }

.agents-list-item img {
    max-width: 100%;
    height: auto;
}

.agents-list-item_name {
    z-index: 0;
    color: var(--text-color);
    text-align: left;
    font-family: 'Roboto';
    margin-top: 0.7em;
    font-size: 1.1em;
}

.agents-list-item__details_name{
    margin: 0px 0;
    font-family: 'Roboto';
}
.agents-list-item__details_tel{
    margin: 7px 0;
    font-size: .9em;
    font-family: 'Roboto Thin';
    white-space: nowrap;
   overflow: hidden;
}
.agents-list-item__details_email, .agents-list-item__details_action{
    font-size: .7em;
    margin: 7px 0;
   font-family: 'Roboto Thin';
   white-space: nowrap;
   overflow: hidden;

    /* padding:0; */

}



/*#endregion ----  agents list ---- */

/*#region ---- agents list  ---- */

.professionals-list-item {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    padding: 0;
    color: var(--text-color);
    /*box-shadow: 0px 5px 5px 0px var(--main-border);*/
    position: relative;
}

    .professionals-list-item div {
        flex-basis: 100%;
        padding: 5px 15px 10px;
        /*background-color: var(--secondary-color);
        cursor: pointer;*/
    }

    .professionals-list-item .button {
        text-align: center;
        padding: 0;
        font-family: 'Roboto Medium';
    }

        .professionals-list-item .button span {
            line-height: 40px;
            font-size: .8em;
        }

    /*.professionals-list-item .details {
        position: absolute;*/
        /* bottom: calc(-1 * 40px); */
        /*width: 100%;
        bottom: -100px;
        height: 7rem;
        display: none;
        z-index: 1;
    }*/

    .professionals-list-item img {
        max-width: 100%;
        height: auto;
    }

.professionals-list-item_name {
    z-index: 0;
    color: var(--text-color);
    text-align: left;
    font-family: 'Roboto';
    margin-top: 0.7em;
    font-size: 1.1em;
}

.professionals-list-item__details_name {
    margin: 0px 0;
    font-family: 'Roboto';
}

.professionals-list-item__details_tel {
    margin: 7px 0;
    font-size: .9em;
    font-family: 'Roboto Thin';
    white-space: nowrap;
    overflow: hidden;
}

.professionals-list-item__details_email, .professionals-list-item__details_action {
    font-size: .7em;
    margin: 7px 0;
    font-family: 'Roboto Thin';
    white-space: nowrap;
    overflow: hidden;
    /* padding:0; */
}



/*#endregion ----  agents list ---- */

/* ---- CATALOGUE PAGE end ---- */


/* ---- WORK PAGE begin ---- */
/*#region ----  advantages ---- */

.work-advantages-list figure{
    max-width:80%;
}

.work-advantages-list div img {
    height: 50px;
}

.work-advantages-list h4{
    font-weight: 600;
    color: var(--text-color);
}

.work-advantages-list p{
    color: var(--text-color);
    font-family: 'Roboto';
    margin-top: 1em;
}

.calculator label {
    color: var(--transparent-gray-color);
}
/*#endregion ----  advantages ---- */
/*#region ----  gallery ---- */
.work-gallery-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.work-gallery-item{
    margin:2%;
    width: 20%;
}

.work-gallery-item img{
    width: 100%;
    height: 100%;
}
/*#endregion ----  gallery ---- */

/*#region ----  bid ---- */

#work-bid{
    color: var(--main-text-color);
}

/*#endregion ----  bid ---- */


/*#region  */
/*#endregion */


/* ---- WORK PAGE end ---- */

/* ----- FORMS ----- */
/*#region  */

.form-title{
    font-size: 1.4em;
    font-family: "Roboto Medium";
    
    color: var(--primary-color)
}

/*endregion */

/*#region ---- footer ---- */
/* ----- FORMS end ----- */

.bottommenu__row__city{
    height: 56px;
    color: var(--text-color);
    font-family: 'Roboto Light';
    font-size: 1.1em;
}

.bottommenu__row__contacts{
    color:  var(--text-color);
    font-family: 'Roboto Light';
    font-size: 1.1em;
}

.footer__container{

}

.footer__leftmenu{

}

.footer__leftmenu li a{
    color: var(--main-text-color);
}

.footer__leftmenu li a:hover{
    color: var(--link-hover-color);
}

.footer__centerblock__text, .footer__centerblock__copyright, .footer__centerblock__title{
    color:  var(--main-text-color);
}

.footer__centerblock__text {
    font-size: 0.6em;
    opacity: 0.5;
    font-family: "Roboto Light";
}

.footer__centerblock__menu li a{
    color: var(--main-text-color);
}

.footer__centerblock__menu li a:hover{
    color: var(--link-hover-color);
}


/*#endregion ---- footer ---- */


/* ----- MODALS ----- */
/*#region modal-info  */

.modalInfoLink {
    color: var(--main-text-color);
    cursor: pointer;
}

.modal-title{
    color: var(--primary-color)
}
.modal-body {
    color: var(--text-color)
}

.max-w-350px{
    max-width: 350px;
}

/*endregion */

/*#region ---- modal-info ---- */
/* ----- MODALS end ----- */


.filter__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.filters__field-list .col {
    height: 35px;
}

.simplepage-content p {
    font-size: 1em;
    line-height: 1.5em;
    text-align: justify;
}

.h-3-5em {
    height: 3.5em;
}

.h-35 {
    height: 35px;
}

.radios {
    box-shadow: 0px 0px 1px black;
}

.radios span input {
    display: none;

}
.radios span {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
    .radios span label {
        cursor: pointer;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
        margin: 0 10px;
        width:100%;
    }

.j-c-start span {
    justify-content: start;
}
.j-c-end span {
    justify-content: end;
}
.j-c-start span label {
    justify-content: start;
}
.j-c-end span label {
    justify-content: end;
}
.radios span:hover{
    background-color: var(--secondary-color);
    color: var(--main-text-color);
}

.radios input[type=checkbox]:checked {
    display: block;
    margin: 0 10px 0 10px;
    padding: 0;
    width: auto;
}


/*адаптивное меню*/
body.open, body:after {
    overflow: hidden
}

.b-nav, body:after {
    position: absolute;
    right: 0;
}

.b-brand, .b-link {
    font-size: 18px;
    font-weight: 700;
    margin-left: 0;
    text-decoration: none;
    text-transform: uppercase;
    ;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(345px, 0, 0);
        transform: translate3d(345px, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(345px, 0, 0);
        transform: translate3d(345px, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

* {
    box-sizing: border-box
}

body:after {
    background: #000;
    content: '';
    height: 100%;
    left: 0;
    opacity: 0;
    padding: 0;
    top: 0;
    visibility: hidden;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    width: 100%;
}

body.open:after {
    z-index: 10;
    opacity: 0.65;
    height: 100000%;
    visibility: visible
}

.b-nav {
    background: var(--secondary-color) none repeat scroll 0 0;
    position: absolute;
    top: 0;
    width: 320px;
    z-index: 12;
}

    .b-nav:not(.open) {
        animation-duration: 0.4s;
        animation-fill-mode: both;
        -webkit-animation-name: slideOutLeft;
        animation-name: slideOutLeft
    }

.b-nav {
    animation-duration: .4s;
    animation-fill-mode: both;
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

    .b-nav ul {
        padding-left: 0px;
    }

    .b-nav li {
        color: #fff;
        list-style-type: none;
        padding: 10px 10px 10px 0;
        text-align: left;
        -webkit-transform: translateX(345px);
        -ms-transform: translateX(345px);
        transform: translateX(345px)
    }

        .b-nav li:not(.open) {
            animation-duration: 0.4s;
            animation-fill-mode: both;
            -webkit-animation-name: slideOutLeft;
            animation-name: slideOutLeft
        }

        .b-nav li:not(.open), .b-nav.open li {
            -webkit-animation-duration: 0.4s;
            -webkit-animation-fill-mode: both
        }

        .b-nav li:first-child {
            margin-top: 0px
        }

    .b-nav.open {
        visibility: visible;
        animation-duration: 0.4s;
        animation-fill-mode: both;
        -webkit-animation-name: slideInLeft;
        animation-name: slideInLeft;
    }

    .b-nav:not(.open) {
        visibility: hidden;
        animation-duration: 0.4s;
        animation-fill-mode: backwards;
        -webkit-animation-name: slideOutLeft;
        animation-name: slideOutLeft
    }

    .b-nav.open li {
        padding-left: 30px;
        animation-duration: 0.2s;
        animation-fill-mode: both;
        -webkit-animation-name: slideInLeft;
        animation-name: slideInLeft
    }

.b-link {
    background: 0 0;
    border-left: rgba(255, 255, 255, 0)solid 2px;
    color: #fff;
    transition: all .4s ease;
    width: auto
}

.b-link, .b-menu {
    -webkit-transition: all .4s ease;
}

.b-nav li {
    border-left: 5px solid #e00a12;
}

/*.b-link--active,
.b-link:hover {
    border-left: #e00a12 solid 5px;
    padding-left: 30px
}*/

.b-menu {
    cursor: pointer;
    display: block;
    height: 66px;
    padding-top: 20px;
    position: relative;
    top: -20px;
    transition: all 0.4s ease 0s;
    width: 43px;
    z-index: 12;
    right: 10px;
}

.b-bun--bottom, .b-bun--mid, .b-bun--top {
    height: 2px;
    width: 25px
}

.b-container.open .b-main, .b-menu:hover {
}

.b-bun {
    background: #fff;
    transition: all .4s ease
}

.b-brand, .b-bun {
    position: relative;
    -webkit-transition: all .4s ease
}

.b-bun--top {
    top: 0
}

.b-bun--mid {
    top: 8px
}

.b-bun--bottom {
    top: 16px
}

.b-brand {
    color: #2196f3;
    top: -21.43px;
    transition: all .4s ease;
    z-index: 13
}

.b-container {
    position: absolute;
    right: 0;
    top: 20px;
}

    .b-container:hover:not(.open) .bun-bottom, .b-container:hover:not(.open) .bun-mid, .b-container:hover:not(.open) .bun-top {
        background: #2196f3
    }

    .b-container.open .b-bun--top {
        background: #e00a12;
        top: 9px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .b-container.open .b-bun--mid {
        opacity: 0
    }

    .b-container.open .b-bun--bottom {
        background: #e00a12;
        top: 5px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    .b-container.open .b-brand {
        color: #fff
    }