/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
body {
    margin: 0;
}

a {
    background-color: transparent;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
select {
    text-transform: none;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

body {
    color: #2D3748;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 12px
}

main {
    padding-top: 64px;
}

a {
    color: #2D3748;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:active,
a:visited,
a:focus {
    color: #2D3748;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #D11E29;
}

.underline-link {
    font-weight: bold;
    font-size: 14px;
    text-decoration-line: underline;
    color: #D11E29;
}

.underline-link:active,
.underline-link:visited,
.underline-link:focus {
    color: #D11E29;
    text-decoration-line: underline;
}

.underline-link:hover {
    text-decoration: none;
}

.w100 {
    width: 100%;
}

.mt10 {
    margin-top: 0 !important;
}

.mt10 {
    margin-top: 10px;
}
.mb10 {
    margin-bottom: 10px;
}

.bold {
    font-weight: 600;
}

.twocolumn {
        list-style-position: inside;
    -moz-column-count: 2; /* Firefox */
    -webkit-column-count: 2; /* Safari and Chrome */
    column-count: 2;
    padding: 5px;
}

.twocolumn li {
    margin-bottom: 10px;
    margin-right: 20px;
}

hr {
    border: none;
    border-bottom: 1px solid #CBD5E0;
}

.d-flex {
    display: flex;
}

.d-flex.j-center {
    justify-content: center;
}

.center {
    text-align: center;
}

.m-auto {
    margin-left: auto;
    margin-right: auto;
}

button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
}

button:focus {
    outline: none;
}

.outline-btn,
.outline-btn:visited {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 36px;
    /* width: 100%; */
    background: #FFFFFF;
    border: 1px solid #D11E29;
    font-weight: 600;
    border-radius: 4px;
    padding: 0 12px;
    position: relative;
}

.outline-btn:hover {
    background: rgba(209, 30, 41, 0.9);
    border: 1px solid #D11E29;
    color: #FFFFFF;
}

.outline-btn:active {
    background: #C00F1A;
    border: 1px solid #D11E29;
    color: #FFFFFF;
}

.outline-btn:disabled {
    background: #FFFFFF;
    opacity: 0.5;
    border: 1px solid #D11E29;
}

.outline-btn.outline-btn--big {
    height: 40px;
}

.color-btn,
.color-btn:visited {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    /* width: 100%; */
    background: #D11E29;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 4px;
    padding: 0 12px;
    position: relative;
}

.color-btn:hover {
    background: rgba(209, 30, 41, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

.color-btn:active {
    background: #C00F1A;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

.color-btn:disabled {
    background: #D11E29;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    opacity: 0.5;
}

.white-btn,
.white-btn:visited {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    /* width: 100%; */
    background: #FFFFFF;
    border: 1px solid #CBD5E0;
    color: #2D3748;
    font-weight: 600;
    border-radius: 4px;
    padding: 0 12px;
    position: relative;
}

.white-btn:hover {
    background: #EDF2F7;
    border: 1px solid #CBD5E0;
    color: #2D3748;
}

.white-btn:active {
    background: #DCE4EC;
    border: 1px solid #CBD5E0;
    color: #2D3748;
}

.white-btn:disabled {
    background: #FFFFFF;
    border: 1px solid #CBD5E0;
    color: #2D3748;
    opacity: 0.5;
}

.text-uppercase {
    text-transform: uppercase;
}

.highlight-red {
    color: #D11E29;
}

h1 {
    font-weight: 900;
    font-size: 36px;
    margin: 0 0 36px 0;
}

h2 {
    font-weight: 900;
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 36px 0;
}

p {
    margin: 0 0 24px 0;
}

.title-box--center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
/* Custom select */
.select-hidden {
    display: none;
    visibility: hidden;
    margin: 0;
    border: 0;
}

.select {
    cursor: pointer;
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #2D3748;
    width: 100%;
    min-width: 130px;
    height: 36px;
}

.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #FFFFFF;
    border: 1px solid #CBD5E0;
    border-radius: 4px;
    padding: 8px 12px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.select-styled.select-placeholder {
    color: #8E9093;
}

.select-styled:after {
    content: '';
    width: 8px;
    height: 5px;
    background-image: url(../images/arrow-down-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 16px;
    right: 10px;
}

.select-styled:active:after,
.select-styled.active:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.select-options li {
    margin: 0;
    padding: 8px 20px;
}

.select-options li:hover {
    background: #EDF2F7;
}

.select-options li[rel="hide"] {
    display: none;
}

/* Chosen select */
.chosen-container-single {
    width: 100% !important;
    margin: 0 !important;
}

.chosen-container-single .chosen-single {
    width: 100%;
    padding: 8px 20px 8px 12px;
    height: 36px;
    border: 1px solid #CBD5E0;
    border-radius: 4px;
    background: #FFFFFF;
    background-clip: padding-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #2D3748;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.chosen-container-single .chosen-default {
    color: #8E9093;
}

.chosen-container-single .chosen-single span {
    margin-right: 0;
}

.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 20px;
    height: 100%;
}

.chosen-container-single .chosen-single div b {
    background-image: none;
}

.chosen-container-single .chosen-single div:after {
    content: '';
    width: 8px;
    height: 5px;
    background-image: url(../images/arrow-down-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 16px;
    right: 10px;
}

.chosen-container-active.chosen-with-drop .chosen-single div:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.chosen-container .chosen-drop {
    border: 1px solid #CBD5E0;
    border-top: 0;
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #CBD5E0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-image: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.chosen-container-single .chosen-search input[type=text] {
    margin: 1px 0;
    padding: 4px 8px;
    border: 1px solid #CBD5E0;
    border-radius: 4px;
    background: #fff;
    background-image: none;
    font-size: 14px;
    box-shadow: none;
}

.chosen-container .chosen-results {
    color: #2D3748;
    margin: 0;
    padding: 0;
}

.chosen-container .chosen-results li {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.chosen-container .chosen-results li.highlighted {
    background-color: #EDF2F7;
    background-image: none;
    color: #2D3748;
}

.main-search-select .chosen-container-single .chosen-single,
.main-search-field .chosen-container-single .chosen-single {
    border: none;
    height: 52px;
    padding: 16px 20px 16px 12px;
}

.main-search-select .chosen-container-single .chosen-single div:after,
.main-search-field .chosen-container-single .chosen-single div:after {
    top: 24px;
}

.main-search-select .chosen-container .chosen-drop,
.main-search-field .chosen-container .chosen-drop {
    border: none;
}

select {
    font-weight: 600;
    color: #2D3748;
    background-color: #FFFFFF;
    border: 1px solid #CBD5E0;
    border-radius: 4px;
    padding: 8px 20px 8px 12px;
    height: 36px;
    width: 100%;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    background-image: url(../images/arrow-down-icon.svg) !important;
    background-repeat: no-repeat !important;
    background-position-x: calc(100% - 8px);
    background-position-y: center;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"] {
    font-weight: 600;
    color: #2D3748;
    background: #FFFFFF;
    border: 1px solid #CBD5E0;
    border-radius: 4px;
    padding: 8px 12px;
    height: 36px;
    width: 100%;
}

textarea {
    font-weight: 600;
    color: #2D3748;
    background: #FFFFFF;
    border: 1px solid #CBD5E0;
    border-radius: 4px;
    padding: 8px 12px;
    height: 240px;
    width: 100%;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="number"]:hover,
input[type="tel"]:hover,
input[type="range"]:hover,
input[type="date"]:hover,
input[type="month"]:hover,
input[type="week"]:hover,
input[type="time"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
textarea:hover {
    border: 1px solid #BAC7D5;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    border: 1px solid #BAC7D5;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    outline: none;
}

::placeholder {
    color: #8E9093;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #8E9093;
}

::-ms-input-placeholder {
    color: #8E9093;
}

input[type="submit"] {
    cursor: pointer;
}

input[type="submit"]:focus {
    outline: none;
}


.form-section {
    width: 50%;
    padding-bottom: 28px;
    border-bottom: 1px solid #CBD5E0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section p {
    margin: 0;
}

.form-section__title {
    font-weight: 600;
    font-size: 24px;
    margin: 24px 0;
}

.form-section__table {
    display: table;
    width: 100%;
}

.form-section__row {
    display: table-row;
}

.form-section__cell {
    display: table-cell;
    vertical-align: top;
}

.form-section__cell-label {
    width: 27%;
    padding: 8px 18px 16px 0;
    font-weight: 600;
}

.form-section__cell-field {
    width: 73%;
}

.form-field__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.form-field__col {
    padding: 0 12px 16px 12px;
}

.form-field__col--33 {
    width: 33.3%;
}

.form-field__col--50 {
    width: 50%;
}

.form-field__col--66 {
    width: 66.6%;
}

.form-field__col--100 {
    width: 100%;
}

.switch-field {
    display: -ms-flexbox;
    display: flex;
    background: #F5F7F9;
    width: 100%;
    height: 36px;
    padding: 3px;
    border-radius: 6px;
    overflow: hidden;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    color: #2D3748;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.switch-field label:hover {
    cursor: pointer;
    background: rgba(255, 12, 12, 0.1);
}

.switch-field input:checked + label {
    background: #D11E29;
    color: #FFFFFF;
}

.checkbox-field {
    display: block;
    position: relative;
    line-height: 16px;
    padding-left: 24px;
    cursor: pointer;
}

.checkbox-field input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background: #FFFFFF;
    border: 1px solid #CBD5E0;
    border-radius: 4px;
}

.checkbox-field:hover input ~ .checkmark {
    border: 1px solid #D11E29;
}

.checkbox-field input:checked ~ .checkmark {
    border: 1px solid #D11E29;
    background: #D11E29;
}

.checkmark:after {
    content: '';
    width: 8px;
    height: 6px;
    background-image: url(../images/checkmark.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 4px;
    left: 3px;
    display: none;
}

.checkbox-field input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label {
    line-height: 20px;
}

.checkbox-field input:checked {
    background: transparent;
}

input[type="radio"]:focus,
input[type="checkbox"]:focus,
.checkbox-field:focus,
.checkbox-field:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    outline-width: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

.hidden-field {
    display: none;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: rgba(203, 213, 224, 0.5);
    margin: 0 0 16px 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 995;
}

.header-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
}

.mobile-header-box {
    display: none;
}

.logo-box {
    padding-right: 24px;
}

/* Menu */
.menu-top {
    margin-right: auto;
}

.main-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu > li {
    display: inline-block;
    padding: 21px 12px;
    position: relative;
    cursor: pointer;
}

.main-menu > li:after {
    content: '';
    width: 0;
    height: 4px;
    background: #D11E29;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.main-menu li span {
    font-size: 14px;
    font-weight: 600;
    color: #2D3748;
    display: block;
}

.main-menu > li:hover span,
.main-menu > li.active span {
    color: #D11E29;
}

.main-menu > li.active:after {
    width: 100%;
}

.main-menu .sub-menu {
    margin: 0;
    padding: 8px 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 0 0 6px 6px;
    width: 240px;
    list-style: none;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
    display: block;
}

.main-menu > li.menu-item-has-children:hover .sub-menu {
    left: -8px;
}

.main-menu .sub-menu li {
    padding: 8px 0;
    line-height: 1.4;
}

.main-menu .sub-menu li span {
    color: #2D3748;
}

.main-menu .sub-menu li:hover span a,
.main-menu .sub-menu li.active span a {
    color: #D11E29;
}

.main-menu > li.menu-item-has-children > span,
.main-menu > li.menu-item-has-children > a > span {
    position: relative;
    padding-right: 16px;
}

.main-menu > li.menu-item-has-children > span:before,
.main-menu > li.menu-item-has-children > a > span:before {
    content: '';
    width: 8px;
    height: 5px;
    background-image: url(../images/arrow-down-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 10px;
    right: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.main-menu > li.menu-item-has-children:hover > span:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.main-menu .megamenu {
    margin: 0;
    padding: 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 0 0 6px 6px;
    width: 650px;
    list-style: none;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
    display: block;
}

.main-menu > li.menu-item-has-children:hover .megamenu {
    left: -8px;
}

.megamenu__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.megamenu__col-60 {
    width: 60%;
}

.megamenu__col-40 {
    width: 40%;
}

.megamenu-grid__box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.megamenu-grid__item {
    width: 33.3%;
    padding: 2px;
}

.megamenu-grid__item > a {
    display: block;
    text-align: center;
    padding: 12px;
    height: 100%;
    border-radius: 8px;
}

.megamenu-grid__item > a:hover {
    background: #EDF2F7;
}

.megamenu-grid__item > a > img {
    margin-bottom: 12px;
    height: 48px;
    width: 100%;
}

.main-menu .megamenu-grid__item a span {
    color: #2D3748;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
}

.megamenu-list__box {
    position: relative;
    height: 100%;
    padding-left: 16px;
}

.megamenu-list__box:before {
    content: '';
    width: 1px;
    height: 100%;
    background: #EDF2F7;
    position: absolute;
    top: 0;
    left: 0;
}

.megamenu-list__title {
    font-weight: 600;
    margin-bottom: 4px;
}

.megamenu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.megamenu-list__item {
    padding-top: 8px;
}

.megamenu-list__item a {
    font-weight: 600;
    display: block;
    padding: 8px 20px;
    background: #EDF2F7;
    border-radius: 4px;
}

/* Contacts box */
.contacts-box {
    position: relative;
    padding: 0 16px 0 12px;
    line-height: 64px;
}

.contacts-box a {
    font-size: 20px;
    line-height: 1;
}

.contacts-box:hover > a {
    color: #D11E29;
}

.contacts-box:before {
    content: '';
    width: 8px;
    height: 5px;
    background-image: url(../images/arrow-down-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 31px;
    right: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.contacts-box:hover:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.add-contacts {
    margin: 0;
    padding: 8px 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 0 0 6px 6px;
    width: 164px;
    list-style: none;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
    display: block;
}

.contacts-box:hover .add-contacts {
    left: -8px;
}

.add-contacts .add-contacts__tel {
    margin: 0;
    padding: 0;
    list-style: none;
}

.add-contacts .add-contacts__tel li {
    line-height: initial;
    padding: 4px 0;
}

.add-contacts .add-contacts__tel li a {
    line-height: 1.7;
}

.add-contacts__messenger {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
}

.add-contacts__messenger li {
    display: inline-block;
    padding: 8px 8px 8px 0;
}

.add-contacts__messenger li:last-child {
    padding-right: 0;
}

.add-contacts__messenger li img {
    display: block;
}

/* Language chooser */
.language-chooser-box {
    padding: 0 28px 0 16px;
    position: relative;
}

.language-chooser {
    display: block;
    margin: 0;
    padding: 0 16px 0 12px;
    position: relative;
}

.language-chooser .active {
    position: relative;
    line-height: 64px;
}

.language-chooser a {
    font-weight: 600;
}

.language-chooser-box:hover .language-chooser a {
    color: #D11E29;
}

.language-chooser-box:before {
    content: '';
    width: 8px;
    height: 5px;
    background-image: url(../images/arrow-down-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 31px;
    right: 28px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.language-chooser-box:hover:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.language-select {
    margin: 0;
    padding: 8px 0;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 0 0 6px 6px;
    width: 124px;
    list-style: none;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
    display: block;
}

.language-chooser-box:hover .language-select {
    left: 6px;
}

.language-item {
    padding: 8px 20px;
    line-height: 1.2;
    font-weight: 600;
}

.language-item:hover {
    background: #EDF2F7;
}

.language-item:hover a {
    color: #2D3748;
}

/* Add btn */
.add-btn span {
    padding-left: 8px;
}

.add-btn:hover svg path {
    fill: #FFFFFF;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

/* Wish box */
.wish-box {
    padding-left: 24px;
}

.wish-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}

.wish-button:hover {
    background: #EDF2F7;
}

.wish-button:hover svg path {
    stroke: #2D3748;
    fill: #EDF2F7;
}

.wish-button:active svg path {
    stroke: #D11E29;
    fill: #D11E29;
}

.wish-button-inactive svg path {
    stroke: #D11E29;
    fill: #D11E29;
}

.wish-button:disabled {
    opacity: 0.5;
    cursor: auto;
}

.wish-button.active svg path {
    stroke: #D11E29;
    fill: #D11E29;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background: #2D3748;
}

.footer-top {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-top__wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li {
    display: inline-block;
    padding-right: 24px;
}

.footer-menu li:last-child {
    padding-right: 0;
}

.footer-menu li a {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #BAC7D5;
}

.footer-menu li a:hover {
    color: #D11E29;
}

.footer-menu li a:active,
.footer-menu li a:visited {
    color: #BAC7D5;
}

.footer-contacts-box__inner {
    position: relative;
}

.footer-contacts-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.footer-contacts-box__inner > a {
    color: #BAC7D5;
    font-size: 20px;
    padding: 0;
}

.footer-contacts-box__inner {
    position: relative;
    padding: 0 16px 0 0;
}

/* .footer-contacts-box__inner:after {
    content: '';
    width: 8px;
    height: 5px;
    background-image: url(../images/arrow-down-icon-light.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 14px;
    right: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer-contacts-box__inner:hover:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
} */

.footer-contacts-box__inner .add-contacts {
    display: none;
}

.footer-contacts-box__inner:hover .add-contacts {
    left: -16px;
    display: block;
    bottom: 33px;
    position: absolute;
    top: auto;
    border-radius: 6px 6px 0 0;
}

.footer-contacts-box__inner .add-contacts a {
    font-size: 20px;
}

.footer-contacts-box .add-contacts__messenger {
    padding-left: 24px;
}

.outline-btn.light-add-btn,
.outline-btn.light-add-btn:visited {
    border: 1px solid #CBD5E0;
    color: #BAC7D5;
    background: transparent;
}

.outline-btn.light-add-btn:hover {
    background: rgba(209, 30, 41, 0.9);
    border: 1px solid #D11E29;
    color: #FFFFFF;
}

.outline-btn.light-add-btn:active {
    background: #C00F1A;
    border: 1px solid #D11E29;
    color: #FFFFFF;
}

.outline-btn.light-add-btn:disabled {
    background: #FFFFFF;
    opacity: 0.5;
    border: 1px solid #D11E29;
}

.light-add-btn span {
    padding-left: 8px;
}

.light-add-btn:hover svg path {
    fill: #FFFFFF;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer-bottom {
    padding: 28px 0 32px 0;
}

.footer-bottom__wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 10px;
    color: #CBD5E0;
}

/*--------------------------------------------------------------
# Top form section
--------------------------------------------------------------*/
.top-form-section {
    max-width: 1920px;
    min-height: 400px;
    margin: 0 auto;
    background: #EDF2F7;
    position: relative;
    /* overflow: hidden; */
    /* overflow-x: hidden; */
}

.top-form-section:before {
    content: url(../images/static-header-bg.svg);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    max-width: 100%;
    overflow: hidden;
}

.top-form-section:after {
    content: url(../images/video-decor-2.svg);
    position: absolute;
    bottom: 0;
    right: 0;
}

.top-form__img {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-position: center;
    background-size: cover;
}

.top-form__inner {
    width: calc(50% + 128px);
    padding: 64px 0;
    position: relative;
}

.top-form__title {
    padding-right: 184px;
    line-height: 1.1;
}

/* .video-section{
    position: relative;
    overflow: hidden;
}
#video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.video-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.video-overlay:before {
    content: url(../images/video-decor-1.svg);
    position: absolute;
    top: 0;
    left: 0;
}
.video-overlay:after {
    content: url(../images/video-decor-2.svg);
    position: absolute;
    bottom: 0;
    right: 0;
}
.video-section__inner{
    position: relative;
    padding: 64px 0;
    max-width: 776px;
}
.video-section__title{
    color: #FFFFFF;
    line-height: 1.1;
} */
.main-search-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 6px;
    min-height: 52px;
    padding-right: 136px;
    visibility: hidden;
}

.main-search-btn {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translate(0, -50%);
}

.search-submit-btn,
.search-submit-btn:visited {
    /* display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center; */
    display: block;
    text-align: left;
    height: 40px;
    width: 120px;
    background: #D11E29;
    border: none;
    font-weight: 600;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 8px 0 8px 44px;
    position: relative;
    cursor: pointer;
}

.search-submit-btn:hover {
    background: rgba(209, 30, 41, 0.9);
    color: #FFFFFF;
}

.search-submit-btn:active {
    background: #C00F1A;
    color: #FFFFFF;
}

.search-submit-btn:disabled {
    background: #D11E29;
    color: #FFFFFF;
    opacity: 0.5;
}

.search-submit-label {
    position: absolute;
    top: 10px;
    left: 16px;
}

.main-search-select {
    position: relative;
    width: 22%;
}

.main-search-select:after {
    content: '';
    width: 1px;
    height: 52px;
    background: #E5E5E5;
    position: absolute;
    top: 0;
    right: 0;
}

.main-search-select .select-styled {
    padding-left: 20px;
    border: none;
    border-radius: 0;
}

.main-search-select .select-options {
    top: calc(100% + 8px)
}

.main-search-field {
    width: 56%;
    padding: 0 8px;
}

.main-search-field .select-styled {
    padding-left: 20px;
    border: none;
    border-radius: 0;
}

/* .main-search-field input[type="text"],
.main-search-field input[type="search"]{
    border: none;
    border-radius: 0;
}
.main-search-field input[type="text"]:hover,
.main-search-field input[type="search"]:hover,
.main-search-field input[type="text"]:focus,
.main-search-field input[type="search"]:focus{
    border: none;
    border-radius: 0;
    box-shadow: none;
} */
/********************** .main-search-field START ***********************/
.district-search {
    position: relative;
    min-height: 52px;
    display: block;
    align-items: center;
}

.district-list {
    /*display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;*/
    /* display: flex; */
    overflow: auto;
}

.close {
    display: block;
    width: 30px;
    height: 30px;
    --weight: 3px;
    --aa: 1px; /* anti-aliasing */
    --color: red;
    border-radius: 3px;
    background:
      linear-gradient(45deg, transparent calc(50% - var(--weight) - var(--aa)), var(--color) calc(50% - var(--weight)), var(--color) calc(50% + var(--weight)), transparent calc(50% + var(--weight) + var(--aa))),
      linear-gradient(-45deg, transparent calc(50% - var(--weight) - var(--aa)), var(--color) calc(50% - var(--weight)), var(--color) calc(50% + var(--weight)), transparent calc(50% + var(--weight) + var(--aa)));
}

/* .district-list__res-item {
    position: relative;
    padding: 0px;
    margin: 2px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    float: left;
    white-space: nowrap;
} */

.district-list__res-item {
    position: relative;
    padding: 6px;
    margin: 3px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    float: left;
    white-space: nowrap;
    /* background-color: bisque; */
    background: rgba(255, 12, 12, 0.1);
    border-radius: 4px;
    /* border-radius: 5%; */
}

.delete__res-item {
    position: absolute;
    top: 5px;
    right: 4px;
    cursor: pointer;
}

/*
.district-list__input-item input[type="text"] {
    padding: 4px 12px;
    height: 28px;
}*/
.district-list__input-item {
    position: initial;
    top: 16px;
}

.main-search-field input[type="text"],
.main-search-field input[type="search"] {
    border: none;
    border-radius: 0;
}

.main-search-field input[type="text"]:hover,
.main-search-field input[type="search"]:hover {
    box-shadow: none;
}

.district-select__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    width: calc(100% + 24px);
    left: -8px;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 6px;
    z-index: 1;
}

.district-select__content {
    max-height: 50vh;
    overflow: auto;
}

.tab-content {
    display: none;
    height: 0;
    overflow: hidden;
}

.tab-content.active-tab {
    display: block;
    height: auto;
}

.district-select__tabs {
    background: #F5F7F9;
    border-radius: 6px 6px 0px 0px;
}

.nav-tabs {
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-tabs__link {
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 14px 44px;
    cursor: pointer;
}

.nav-tabs__link.active-link:after {
    content: '';
    width: 100%;
    height: 4px;
    background: #D11E29;
    position: absolute;
    left: 0;
    bottom: 0;
}

.multiselect__box {
    padding: 12px 20px;
    border-bottom: 1px solid #CBD5E0;
}

.multiselect__box:last-child {
    border-bottom: 0;
}

.multiselect__title {
    font-weight: 600;
    font-size: 12px;
    line-height: 32px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #818791;
}

.multiselect__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.multiselect__item-input {
    font-weight: 600;
    padding: 10px 0;
}

.multiselect__item-number {
    font-size: 12px;
    color: #818791;
}

.red-line {
    color: #D11E29;
}

.blue-line {
    color: #4285F4;
}

.green-line {
    color: #26AA82;
}

.red-line__title {
    color: #D11E29;
}

.blue-line__title {
    color: #4285F4;
}

.green-line__title {
    color: #26AA82;
}

.district-select__btn {
    display: none;
    width: 100%;
    background: #fff;
    padding: 12px 20px;
    border-top: 1px solid #CBD5E0;
}

.district-select__btn.visible {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.outline-btn.outline-select-btn {
    max-width: 164px;
    width: 100%;
    border: 1px solid #CBD5E0;
    margin-right: 14px;
    cursor: pointer;
}

.color-btn.color-select-btn {
    max-width: 164px;
    width: 100%;
    height: 36px;
    cursor: pointer;
}

.close {
    /* display: block; */
    width: 10px;
    height: 10px;
    display: inline-block;
    /* background: #d11919;
    opacity: 0.7; */
    margin-right: 2px;
    --weight: 1px;
    --aa: 0px; /* anti-aliasing */
    --color: #818791;
    border-radius: 5px;
    background:
      linear-gradient(45deg, transparent calc(50% - var(--weight) - var(--aa)), var(--color) calc(50% - var(--weight)), var(--color) calc(50% + var(--weight)), transparent calc(50% + var(--weight) + var(--aa))),
      linear-gradient(-45deg, transparent calc(50% - var(--weight) - var(--aa)), var(--color) calc(50% - var(--weight)), var(--color) calc(50% + var(--weight)), transparent calc(50% + var(--weight) + var(--aa)));
}

.district-search__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    width: calc(100% + 24px);
    left: -8px;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgb(45 55 72 / 10%);
    border-radius: 6px;
    z-index: 1;
}

.district-search__content {
    max-height: 50vh;
    overflow: auto;
}

.icon-checkmark {
    position: absolute;
    left: 0;
}

.search-add__box {
    background: #EDF2F7;
}

@media screen and (max-width: 1023px) {
    .district-select__dropdown {
        width: calc(100% + 16px);
    }
}

/********************** .main-search-field END ***********************/
.counter-box__wrap {
    margin-top: 36px;
}

.counter-box__list {
    display: -ms-flexbox;
    display: flex;
}

.counter-box__item {
    padding: 0 40px 0 20px;
}

.counter {
    font-size: 24px;
}

.counter-title {
    font-weight: 300;
    font-size: 12px;
}

/*--------------------------------------------------------------
# Cat-link
--------------------------------------------------------------*/
.cat-link {
    padding: 52px 0 104px 0;
}

.cat-box__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}

.cat-box__item--1 {
    grid-area: 1 / 2 / 2 / 4;
}

.cat-box__item--2 {
    grid-area: 1 / 1 / 3 / 2;
}

.cat-box__item--3 {
    grid-area: 1 / 4 / 2 / 5;
}

.cat-box__item--4 {
    grid-area: 2 / 2 / 3 / 3;
}

.cat-box__item--5 {
    grid-area: 2 / 3 / 3 / 4;
}

.cat-box__item--6 {
    grid-area: 2 / 4 / 3 / 5;
}

.cat-box__item {
    border-radius: 8px;
    overflow: hidden;
    min-height: 274px;
}

.cat-box__item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 274px;
    background-size: cover;
    background-position: center;
    padding: 28px 36px 28px 28px;
    font-weight: 900;
    font-size: 28px;
    color: #FFFFFF;
    border-radius: 8px;
}

.cat-box__item a:before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
}

.cat-box__item a span {
    position: relative;
}

.page-content {
    margin-top: 40px;
    position: relative;
}

.down-content img,
.page-content img {
    max-width: 100%;
}

.object-info {
    position: relative;
    z-index: 1;
}

.page-content.objectpage {
    top: -210px;
    position: relative;
    z-index: 0;
}

.page-content h1 {
    font-weight: 600;
    font-size: 38px;
    line-height: 44px;
    color: #2D3748;
}
.page-content h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #2D3748;
}
.page-content h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    color: #2D3748;
}
.page-content h4 {
    font-weight: 600;
    font-size: 26px;
    line-height: 34px;
    color: #2D3748;
}
.page-content hr {
    padding: 10px;
    margin-bottom: 30px;
}

.down-content {
    position: relative;
    margin-top: -200px;
}

.down-content hr {
    margin-bottom: 40px;
}

.grey_bg {
    background: #F6F8FB;
    border-radius: 8px;
    padding: 20px 0px 26px 24px;
    margin-bottom: 24px;
}

.light_bg {
    background: rgba(237, 242, 247, 0.2);
}

.border_block {
    background: #FFFFFF;
    border: 1px solid rgba(203, 213, 224, 0.5);
    border-radius: 8px;
    padding: 16px 20px 24px 24px;
}

/*--------------------------------------------------------------
# New objects
--------------------------------------------------------------*/
.new-objects {
    background: #EDF2F7;
    padding: 52px 0 72px 0;
}

.title-box__subtitle {
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    color: #D11E29;
    margin-bottom: 16px;
}

.objects__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.objects-item__wrap {
    padding: 0 12px 24px 12px;
    /* height: 100%; */
    max-width: 340px;
}

#chosen-object {
    display: none;
}

#chosen-object .objects-item {
    border: 1px solid #D11E29;
}

#chosen-object .objects-item__features li {
    display: none;
}

.objects__row--50 .objects-item__wrap {
    width: 50%;
}

.objects__row--33 .objects-item__wrap {
    width: 33.3%;
}

.objects__row--25 .objects-item__wrap {
    width: 25%;
}

.objects-item {
    background: #FFFFFF;
    border: 1px solid #fff;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.objects-item:hover {
    border: 1px solid #CBD5E0;
}

/* .objects-item--active .objects-item{
    border: 1px solid #CBD5E0;
} */

.objects-contacts {
    display: flex;
    float: right;
    top: -250px;
    position: relative;
    z-index: 9;
}

.objects-contacts .objects-item {
    padding: 16px 20px 24px;
    max-width: 300px;
    min-width: 260px;
}
.objects-contacts .objects-item .objects-item__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.objects-contacts__content {
    padding: 24px 0px;
}
.objects-contacts__avatar {
    float: left;
    margin-right: 12px;
}
.objects-contacts__avatar img {
    border-radius: 50%;
}
.objects-contacts__name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #2D3748;
}
.objects-contacts__address {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #818791;
}
.objects-contacts__phone {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #2D3748;
}

.objects-contacts__btn .btn-contacts {
    margin-bottom: 12px;
}

#object-map div.active-pin img {
    width: 30px !important;
    height: 30px !important;
}

#object-map div:focus,
#object-map div:active {
    outline: none
}

.objects-item__meta {
    position: relative;
    padding-bottom: 84%;
}

.objects-item__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.objects-item__img-slider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.objects-item__img:after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0.07%, rgba(0, 0, 0, 0.3) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.objects-item__img-slider .slick-list {
    height: 100%;
}

.objects-item__img-slider .slick-track {
    height: 100%;
}

.objects-item__img-item {
    width: 100%;
    height: 100%;
}

.objects-item__img-slider img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.objects-item__img-slider .slick-dots {
    padding: 4px 15px;
    position: absolute;
    bottom: 0;
    z-index: 2;
}

.objects-item__img-slider .slick-dots li button {
    width: 5px;
    height: 5px;
    border: 1px solid #EDA5A9;
}

.objects-item__img-slider .slick-dots li.slick-active button {
    border: 1px solid #D11E29;
}

.objects-item__img-slider .slick-arrow {
    margin: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(237, 242, 247, 0.6);
    box-shadow: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: calc(50% - 18px);
    z-index: 2;
    opacity: 0;
}

.objects-item__img-slider:hover .slick-arrow {
    opacity: 1;
}

.objects-item__img-slider .slick-arrow.slick-prev {
    left: 16px;
}

.objects-item__img-slider .slick-arrow.slick-next {
    right: 16px;
}

.objects-item__type {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 24px;
    min-width: 68px;
    padding: 4px 8px;
    background: #EDF2F7;
    border-radius: 12px;
    position: absolute;
    left: 16px;
    bottom: 20px;
    font-weight: 700;
    font-size: 12px;
    z-index: 1;
}

.objects-item__type--red {
    color: #D11E29;
}

.objects-item__type--normal {
    color: #2D3748;
}

.objects-item__wish-button {
    background: rgba(237, 242, 247, 0.2);
}

.objects-item__wish {
    position: absolute;
    right: 12px;
    bottom: 16px;
    z-index: 1;
}

.objects-item__content {
    padding: 12px 20px 70px 20px;
    position: relative;
}

.objects-item__name {
    font-size: 20px;
    color: #2D3748;
}

.objects-item__address {
    font-size: 12px;
    color: #818791;
    margin-bottom: 12px;
}

.objects-item__features {
    margin: 0 -10px;
    padding: 0;
    list-style: none;
}

.objects-item__features li {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    color: #2D3748;
    position: relative;
    padding: 0 10px;
}

.objects-item__features li:after {
    content: '';
    width: 4px;
    height: 4px;
    background: #D11E29;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: -2px;
}

.objects-item__features li:last-child:after {
    content: none;
}

.objects-item__price {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.regular-price {
    display: block;
    font-size: 32px;
    line-height: 1;
    color: #2D3748;
}

.currency-price {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #8E9093;
    margin-top: 4px;
}

.objects-item__block .regular-price {
    font-size: 28px;
}

.objects__btn {
    text-align: center;
    margin-top: 32px;
}

.objects__btn .btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 40px;
    padding: 0 40px;
}

.objects-slider__wrap {
    position: relative;
    visibility: hidden;
}

.objects-slider .slick-list,
.objects-slider .slick-list .slick-track {
    display: -ms-flexbox;
    display: flex;
}

.objects-slider-nav {
    position: absolute;
    right: 0;
    top: -56px;
}

.slick-arrow {
    display: inline-block;
    margin-left: 16px;
    cursor: pointer;
}

.slick-dots {
    padding: 0;
    list-style: none;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 8px 15px;
}

.slick-dots li {
    display: inline-block;
    padding: 0 2px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    border-radius: 50%;
    outline: none;
    background: transparent;
    border: 2px solid #EDA5A9;
    position: relative;
}

.slick-dots li.slick-active button {
    border: 2px solid #D11E29;
}

.slick-slide:focus {
    outline: none;
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.main-map {
    margin-top: 52px;
    margin-bottom: 124px;
    position: relative;
}

.main-map:before {
    content: url(../images/map-bg-1.svg);
    position: absolute;
    top: -52px;
    left: 0;
}

.main-map:after {
    content: url(../images/map-bg-2.svg);
    position: absolute;
    bottom: -124px;
    right: 0;
}

.main-map-box {
    width: 100%;
    height: 600px;
}

.search-map-box {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 12px);
    height: calc(100vh - 64px);
}

/* .search-map-box.sticky {
    position: fixed;
    top: 64px;
}
.search-map-box.natural {
    position: absolute !important;
    top: 0;
} */

.search-map-box.bottom {
    position: absolute;
}

.map-wrap {
    position: relative;
}

.map-popup {
    display: none;
    position: absolute;
    z-index: 90;
    top: 64px;
    left: 12px;
    width: 256px;
    height: 0;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 6px;
    padding: 16px 16px 4px 16px;
}

.map-popup.open {
    display: block;
    height: auto;
}

.map-popup__item {
    padding-bottom: 12px;
}

.map-popup__label {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(45, 55, 72, 0.6);
    padding: 0 8px 4px 8px;
}

.map-popup__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.map-popup__list li {
    padding: 2px 0;
}

.map-popup__list li a {
    display: block;
    padding: 4px 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #2D3748;
}

.map-popup__list li a:hover {
    color: #2D3748;
    background: #EDF2F7;
    border-radius: 4px;
}

.map-popup__district {
    padding: 0 8px 8px 8px;
    font-weight: 600;
}

.map-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 24px 0;
    font-size: 12px;
}

.breadcrumbs a {
    color: rgba(45, 55, 72, 0.5);
}
.mainfullimg .breadcrumbs,
.mainfullimg .breadcrumbs a {
    color: rgba(255, 255, 255, 0.5);
}
.mainfullimg .current-page {
    color: #fff;
}

/*--------------------------------------------------------------
# Search page
--------------------------------------------------------------*/
.search-box__wrap {
    position: relative;
}

.search-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    min-height: calc(100vh - 64px);
}

.search-box__col {
    width: 50%;
    padding: 0 12px;
}

.not_properties {
    font-weight: 600;
    font-size: 24px;
}

.params-box {
    padding-bottom: 16px;
    border-bottom: 1px solid #CBD5E0;
    margin-bottom: 16px;
}

.params-form__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    /* margin-right: -12px; */
    margin-left: -12px;
    /* gap: 1%; */
}

.params-form__item {
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0 0 12px 12px;
}

.params-form__item--60 {
    /* width: 60%; */
    flex-basis: 60%;
}

.params-form__item--40 {
    /* width: 40%; */
    flex-basis: 40%;
}

.params-form__item--30 {
    width: 30%;
    flex-basis: 30%;
}

.params-form__item .outline-btn,
.params-form__item .color-btn {
    width: 100%;
    cursor: pointer;
    display: block;
}

.params-form__row-btn {
    margin-top: 16px;
}

.text-right {
    text-align: right;
}

.link-btn {
    font-weight: 600;
    font-size: 14px;
    color: #D11E29;
    border: none;
    background: transparent;
    padding: 0;
}

.params-form__section-bottom {
    display: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.sort-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
}

.search-result {
    font-size: 12px;
}

.sort-field {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.sort-field label {
    font-size: 12px;
}

.sort-field .select-styled {
    border: none;
}

.sort-field .select {
    font-size: 12px;
}

.sort-field .select-options li {
    padding: 8px 12px;
}

.sort_created_at,
.sort_price {
    margin: 0px 5px 0px 5px;
}

/* Рagination
.pagination__wrap{
    padding: 40px 0 88px 0;
}
.pagination{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
.page-numbers{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin: 0 4px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: #818791;
}
.page-numbers.current{
    background: #D11E29;
    color: #FFFFFF;
}
.page-numbers:active,
.page-numbers:visited,
.page-numbers:focus {
    color: #818791;
} */

/* Рagination more */
.btn_more {
    margin-bottom: 21px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}

/*--------------------------------------------------------------
# Object page
--------------------------------------------------------------*/
.inner-page {
    position: relative;
}

.inner-page .breadcrumbs {
    padding-right: 140px;
}

.return-box {
    position: absolute;
    top: 24px;
    right: 0;
}

.return-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
}

.return-link:hover svg path {
    stroke: #D11E29;
}

.return-link span {
    padding-left: 8px;
}

.object-info-bottom {
    padding-top: 20px;
}
.object-info-bottom .object-action {
    width: calc(100% - 324px);
}

.object-info-description {
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0;
    width: calc(100% - 324px);
}

.object-content__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 16px;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 20px;
}

.object-description__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 16px;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 52px;
    border-bottom: 1px solid #CBD5E0;
}

.object-description__col {
    width: 50%;
    padding: 0 12px 32px 12px;
}

.object-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 8px;
}

.object-info-title {
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
}

.object-meta {
    margin: 0 -10px 20px -10px;
    padding: 0;
    list-style: none;
}

.object-meta li {
    display: inline-block;
    font-size: 12px;
    color: #818791;
    position: relative;
    padding: 0 10px;
}

.object-meta li:after {
    content: '';
    width: 4px;
    height: 4px;
    background: #D11E29;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: -2px;
}

.object-meta li:last-child:after {
    content: none;
}

.object-specifications {
    margin: 0 -10px 3px -10px;
    padding: 0;
    list-style: none;
}

.object-specifications li {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #2D3748;
    position: relative;
    padding: 0 10px;
}

.object-specifications li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #D11E29;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: -2px;
}

.object-specifications li:first-child::before {
    content: none;
}

.object-action {
    margin: 0 0 16px 0;
    padding: 0 0 24px 0;
    border-bottom: 1px solid #CBD5E0;
    list-style: none;
}

.object-action li {
    position: relative;
    display: inline-block;
    padding-right: 24px;
    margin-right: 24px;
}

.object-action li:after {
    content: '';
    width: 1px;
    height: 16px;
    background: #CBD5E0;
    position: absolute;
    top: 4px;
    right: 0;
}

.object-action li:last-child:after {
    content: none;
}

.object-action__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.object-action__link span {
    padding-left: 8px;
}

.object-action--add:hover svg path {
    stroke: #D11E29;
    fill: #D11E29;
}

.object-action--add-inactive svg path {
    stroke: #D11E29;
    fill: #D11E29;
}

.object-action--share:hover {
    color: #D11E29;
}

.object-action--share:hover svg path {
    stroke: #D11E29;
}

#st-el-2 .st-close {
    padding: 8px !important;
}

.object-features__table {
    display: table;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #CBD5E0;
    width: 100%;
}

.object-features__row {
    display: table-row;
}

.object-features__cell {
    display: table-cell;
}

.object-features__cell--label {
    width: 25%;
    padding: 8px 24px 8px 0;
    color: rgba(45, 55, 72, 0.5);
}

.object-features__cell--value {
    width: 75%;
    padding: 8px 0;
}

.object-price__table {
    padding-bottom: 32px;
    width: 100%;
}

.object-price__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-left: -12px;
    margin-right: -12px;
}

.object-price__cell {
    padding: 0 12px;
}

.object-price__cell--label {
    width: 25%;
    font-size: 20px;
    line-height: 1;
}

.object-price__cell--value {
    width: 40%;
    font-size: 32px;
    line-height: 1;
}

.object-price__cell--value-currency {
    width: 35%;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #8E9093;
}

.object-btn__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.object-btn__col {
    padding: 0 12px;
}

.object-btn__col--65 {
    width: 65%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.object-btn__col--35 {
    width: 35%;
}

.object-btn__col .btn {
    width: 100%;
    display: block;
}

.object-description__title {
    font-weight: normal;
    font-size: 20px;
    margin: 0 0 12px 0;
}

.object-description__text p {
    margin: 0 0 16px 0;
}

.object-description__subtitle {
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.object-gallery {
    position: relative;
}

.object-gallery img {
    width: 100%;
    height: 576px;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.object-info-type {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 24px;
    min-width: 68px;
    padding: 4px 8px;
    background: #FFFFFF;
    border: 1px solid #CBD5E0;
    border-radius: 12px;
    left: 12px;
    top: 12px;
    font-weight: 700;
    font-size: 12px;
    z-index: 1;
    color: #D11E29;
    margin-bottom: 20px;
}

.object-info-price {
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    display: flex;
    align-items: center;
    color: #2D3748;
    white-space: nowrap;
    justify-content: right;
}

.object-type {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 24px;
    min-width: 68px;
    padding: 4px 8px;
    background: #EDF2F7;
    border-radius: 12px;
    position: absolute;
    left: 12px;
    top: 12px;
    font-weight: 700;
    font-size: 12px;
    z-index: 1;
}

.object-type--red {
    color: #D11E29;
}

.object-type--normal {
    color: #2D3748;
}

.gallery__all-items {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    border-radius: 4px;
    height: 36px;
    min-width: 160px;
    padding: 6px 16px;
    font-weight: 600;
    font-size: 14px;
    color: #2D3748;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 0);
    cursor: pointer;
}

.similar-offers {
    margin-bottom: 52px;
}



/*--------------------------------------------------------------
# Static header
--------------------------------------------------------------*/
.static-header {
    max-width: 1920px;
    margin: 0 auto;
    background: #EDF2F7;
    position: relative;
    overflow: hidden;
}

.static-header:before {
    content: url(../images/icon/static-header-bg_top.svg);
    position: absolute;
    top: 0;
    left: -190px;
    /* opacity: 0.5; */
    z-index: 1;
}

.static-header::after {
    content: url(../images/icon/static-header-bg_down.svg);
    position: absolute;
    bottom: 0;
    right: 0;
    /* opacity: 0.5; */
    z-index: 1;
}

.static-header__img {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-position: center;
    background-size: cover;
}

.static-header__fullimg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-position: center;
    background-size: cover;
}



.static-header__content {
    width: 40%;
    position: relative;
    z-index: 10;
    min-height: 400px;
    padding-bottom: 92px;
}

.static-header__description {
    margin: 0 0 20px 0;
}

.static-header__subtitle {
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 28px 0;
}

.static-header .btn {
    min-width: 250px;
}

.small-title {
    font-weight: 600;
    font-size: 24px;
}

/*--------------------------------------------------------------
# Vacancies
--------------------------------------------------------------*/
.vacancies-body {
    padding: 52px 0 100px 0;
}

.vacancies__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.vacancies__col {
    width: 50%;
    padding: 0 12px 24px 12px;
}

.vacancies-item {
    position: relative;
    height: 100%;
    background: #FAFBFC;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 8px;
    padding: 28px 32px 100px 32px;
}

.vacancies-item__title {
    font-size: 20px;
    margin-bottom: 4px;
}

.vacancies-item__meta {
    margin: 0 -10px 14px -10px;
    padding: 0;
    list-style: none;
}

.vacancies-item__meta li {
    display: inline-block;
    font-size: 12px;
    color: #818791;
    position: relative;
    padding: 0 10px;
}

.vacancies-item__meta li:after {
    content: '';
    width: 4px;
    height: 4px;
    background: #D11E29;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: -2px;
}

.vacancies-item__meta li:last-child:after {
    content: none;
}


.vacancies-item__btn.outline-btn {
    position: absolute;
    left: 32px;
    bottom: 40px;
    width: auto;
    min-width: 216px;
    display: block;
}

L_
.vacancies-contacts-info {
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.add-contacts__tel {
    margin: 0 -12px;
    padding: 0;
    list-style: none;
}

.add-contacts__tel li {
    display: block;
    font-size: 20px;
    position: relative;
    padding: 0 10px;
}

.vacancies-item__content .add-contacts__tel li:after {
    content: '';
    width: 4px;
    height: 4px;
    background: #D11E29;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    right: -2px;
}

.add-contacts__tel li:last-child:after {
    content: none;
}

.vacancies-item__content h4 {
    font-weight: bold;
    font-size: 16px;
    margin: 20px 0 8px 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-block {
    padding: 52px 0;
}

.about-block__content .objects-item {
    padding: 24px 40px 36px;
    position: relative;
    width: 100%;
    max-width: 300px;
    font-size: 24px;
    line-height: 32px;
    color: #2D3748;
    text-align: left;
}

.about-block__content .content-box {
    flex-wrap: wrap;
}

.about-block__content .objects-item p {
    font-size: 12px;
    line-height: 24px;
    color: #2D3748;
}

.about-block__content .objects-item hr {
    border-bottom: 2px solid #D11E29;
    position: absolute;
    bottom: 24px;
    width: 80%;
    left: 0;
    right: 0;
}

.about-vacancies-body {
    position: relative;
    padding-top: 52px;
    border-bottom: 1px solid #EDF2F7;
}

.about-vacancies-body:before {
    content: url(../images/about-decor-1.svg);
    position: absolute;
    top: 0;
    left: 0;
}

.about-vacancies-body:after {
    content: url(../images/about-decor-2.svg);
    position: absolute;
    bottom: 0;
    right: 0;
}

.about-vacancies__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    position: relative;
}

.about-vacancies__col {
    width: 50%;
    padding: 0 12px;
}

.about-vacancies__img img {
    display: block;
    max-width: 100%;
}

.content-box__subtitle {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 40px;
}

.about-vacancies__col:last-child {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.content-box .btn {
    padding: 0 24px;
}

/*--------------------------------------------------------------
# Contacts
--------------------------------------------------------------*/
.contacts-body {
    padding: 52px 0;
}

.contacts-map__wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.contacts-map {
    width: 100%;
    height: 600px;
}

.contacts-info {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 1;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 6px;
    padding: 20px 24px 4px 24px;
    width: 272px;
}

.contacts-info__item {
    margin-bottom: 20px;
}

.contacts-info__label {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(45, 55, 72, 0.6);
    margin-bottom: 4px;
}

.contacts-info__content {
    font-weight: 600;
}

.contacts-info__content p {
    margin: 0;
}



/*--------------------------------------------------------------
# Education page
--------------------------------------------------------------*/
.about-education-body {
    position: relative;
    padding: 52px 0;
    border-bottom: 1px solid #EDF2F7;
}

.about-education__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    position: relative;
}

.about-education__col {
    width: 50%;
    padding: 0 12px;
}

.about-education__img img {
    display: block;
    max-width: 90%;
    margin-bottom: 72px;
}

.about-education__logo {
    text-align: center;
}

.about-education__content {
    margin-top: 48px;
    padding-right: 56px;
}

.about-education__content .content-box__subtitle {
    font-weight: 600;
    font-size: 24px;
}

/*--------------------------------------------------------------
# Add item page
--------------------------------------------------------------*/
.add-item__body {
    position: relative;
    border-bottom: 1px solid #CBD5E0;
}

.add-item__body:after {
    content: url(../images/about-decor-2.svg);
    position: absolute;
    bottom: 0;
    right: 0;
}

.add-item__body .container {
    position: relative;
}

.add-item__footer {
    padding: 12px 0;
}

.add-item__btn {
    text-align: right;
}

.add-item__btn .btn {
    margin-left: 20px;
    padding: 0 72px;
}

.file-upload__section {
    position: absolute;
    top: 0;
    right: 0;
    border-bottom: none;
}

.file-upload {
    padding: 0 80px;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.modal {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    overflow: auto;
}

.modal.open {
    visibility: visible;
    opacity: 1;
    transition: 0.7s;
}

.modal-inner {
    width: 100%;
    max-width: 616px;
    height: auto;
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-header {
    padding: 12px 56px 12px 20px;
    box-shadow: 0px 1px 0px #CBD5E0;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    cursor: pointer;
}

.modal-close-btn svg {
    display: block;
}

.modal-title {
    font-size: 20px;
}

.modal-body {
    padding: 24px 36px 40px 36px;
}

.modal-body p {
    margin: 0;
}

.modal-form__table {
    display: table;
    width: 100%;
    margin-top: 24px;
}

.modal-form__row {
    display: table-row;
}

.modal-form__cell {
    display: table-cell;
    padding-bottom: 16px;
}

.modal-form__cell--label {
    width: 35%;
    padding: 0 16px 0 0;
    font-weight: 600;
}

.modal-form__cell--field {
    width: 65%;
}

.modal-btn__box {
    width: 65%;
    margin: 16px 0 0 auto;
}

.modal-btn__row {
    display: -ms-flexbox;
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
}

.modal-btn__col {
    width: 50%;
    padding: 0 12px;
}

.modal-btn__col .btn {
    width: 100%;
    display: block;
}

.object-map-box {
    width: 100%;
    border-radius: 8px;
}

.object-map-box iframe {
    border-radius: 8px;
    border: 1px solid rgba(203, 213, 224, 0.5);
}


.mainfullimg,
.mainfullimg .static-header__content,
.static-header__fullimg .header__mainslider {
    min-height: 512px;
}

.mainfullimg img.slick-slide {
    min-height: 512px;
    object-fit: cover;
}

.mainfullimg .static-header__counter {
    position: absolute;
    bottom: 24px;
}
.mainfullimg .static-header__counter .btn {
    margin-right: 22px;
    min-width: 136px;
}

.header__mainslider .slick-arrow {
    margin: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    
    box-shadow: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: calc(50% - 18px);
    z-index: 990;
    opacity: 1;
    padding-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header__mainslider .slick-arrow.slick-disabled {
    background: rgba(255, 255, 255, 0.5);
}

.header__mainslider .slick-arrow.slick-prev {
    left: 16px;
}

.header__mainslider .slick-arrow.slick-next {
    right: 16px;
}


.object-info-top {
    background: rgba(237, 242, 247, 0.5);
    padding: 0 32px;
}


.fancybox-content {
    padding: 40px 24px 14px;
}

.contactform-block .form-group input, 
.contactform-block .form-group textarea {
    width: 320px;
    max-width: 100%;
}


.ancor-link {
	display: block;
    position: relative;
    top: -70px;
    visibility: hidden;
}


/****************************************** 1200px ************************************************/
@media screen and (max-width: 1200px) {
    /*--------------------------------------------------------------
    # Header
    --------------------------------------------------------------*/

    body.noscroll {
        overflow: hidden;
    }

    .header-box {
        display: none;
    }

    .mobile-header-box {
        display: block;
    }

    .mobile-top-box {
        height: 64px;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
        padding: 20px 0;
    }

    .mobile-logo-box img {
        max-width: 156px;
    }

    .mobile-toggle-btn {
        width: 36px;
        height: 36px;
        margin-left: 8px;
        padding: 9px 0;
        position: relative;
        z-index: 9999;
    }

    .one, .two, .three {
        width: 16px;
        height: 2px;
        background: #2D3748;
        border-radius: .5px;
        margin: 3px auto;
        backface-visibility: hidden;
        -moz-transition-duration: .3s;
        -o-transition-duration: .3s;
        -webkit-transition-duration: .3s;
        transition-duration: .3s;
    }

    .menu-toggle.on .one {
        -moz-transform: rotate(45deg) translate(4px, 4px);
        -ms-transform: rotate(45deg) translate(4px, 4px);
        -webkit-transform: rotate(45deg) translate(4px, 4px);
        transform: rotate(45deg) translate(4px, 4px);
    }

    .menu-toggle.on .two {
        opacity: 0;
    }

    .menu-toggle.on .three {
        -moz-transform: rotate(-45deg) translate(3px, -3px);
        -ms-transform: rotate(-45deg) translate(3px, -3px);
        -webkit-transform: rotate(-45deg) translate(3px, -3px);
        transform: rotate(-45deg) translate(3px, -3px);
    }

    .mobile-top-tel__box {
        position: relative;
        margin-left: auto;
    }

    .mobile-top-tel__inner {
        margin: 0;
        padding: 8px 20px;
        background: #FFFFFF;
        box-shadow: 0px 4px 8px rgba(45, 55, 72, 0.1);
        border-radius: 0 0 6px 6px;
        width: 164px;
        list-style: none;
        position: absolute;
        top: calc(100% + 8px);
        right: -8px;
        z-index: 99999;
        display: none;
    }

    .mobile-top-tel__inner li {
        padding: 4px 0;
    }

    .mobile-top-tel__inner li a {
        font-size: 20px;
    }

    .mobile-wish-box {
        position: relative;
        margin-left: 8px;
        z-index: 9999;
    }

    .mobile-top-tel__btn {
        display: -ms-flexbox;
        display: flex;
    }

    .mobile-nav-box {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        padding-left: 40px;
        z-index: 999;
    }

    .mobile-nav-box.open {
        right: 0;
    }

    .mobile-nav-box__inner {
        position: relative;
        right: -100%;
        width: 100%;
        height: 100%;
        background: #FFFFFF;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .mobile-nav-box.open .mobile-nav-box__inner {
        right: 0;
    }

    .mobile-nav-box__header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 61px;
        border-bottom: 1px solid #CBD5E0;
        background: #FFFFFF;
        padding: 14px 16px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        z-index: 1;
    }

    .mobile-nav-box__title {
        font-size: 20px;
        line-height: 32px;
        padding-right: 16px;
        position: relative;
    }

    .mobile-nav-box__title::after {
        content: '';
        width: 1px;
        height: 16px;
        background: #CBD5E0;
        position: absolute;
        top: 8px;
        right: 0;
    }

    .mobile-nav-box__header .language-chooser-box {
        padding-left: 0;
    }

    .mobile-nav-box__body {
        height: 100vh;
        overflow: auto;
        padding-top: 52px;
        padding-bottom: 200px;
    }

    .mobile-nav {
        padding: 16px;
    }

    .mobile-menu {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-menu > li {
        display: block;
        padding: 12px 16px;
        position: relative;
        border-bottom: 1px solid #EDF2F7;
    }

    .mobile-menu > li.active:after {
        content: '';
        width: 4px;
        height: 48px;
        background: #D11E29;
        position: absolute;
        left: -16px;
        top: 0;
    }

    .mobile-menu li span {
        font-size: 16px;
        line-height: 1.4;
        font-weight: 600;
    }

    .mobile-menu li.menu-item-has-children > span {
        display: block;
        position: relative;
    }

    
    .mobile-menu .hidemobile {
        display: none;
    }

    .mobile-menu .sub-menu {
        margin: 0;
        padding: 10px 20px 0 20px;
        list-style: none;
        /*display: none;*/
    }

    .mobile-menu .sub-menu li {
        padding: 10px 0;
    }

    .mobile-menu li .sub-menu li span {
        font-size: 14px;
    }

    .mobile-menu > li.menu-item-has-children > span:before {
        content: '';
        width: 8px;
        height: 5px;
        background-image: url(../images/arrow-down-icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 10px;
        right: 0;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .mobile-menu li.menu-item-has-children.open > span {
        color: #D11E29;
    }

    .mobile-menu > li.menu-item-has-children.open > span:before {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .mobile-menu .megamenu {
        margin: 0 -16px;
        padding: 10px 0 0 0;
        display: none;
    }

    .megamenu__col-60 {
        width: 100%;
    }

    .megamenu__col-40 {
        width: 100%;
    }

    .megamenu-grid__item > a {
        padding: 16px 4px 10px 4px;
        border: 1px solid #EDF2F7;
    }

    .megamenu-grid__item > a > img {
        margin-bottom: 4px;
        height: 32px;
    }

    .megamenu-grid__item > a > span {
        display: block;
        font-size: 12px;
        line-height: 14px;
    }

    .megamenu-list__box {
        padding-left: 0;
        padding-top: 16px;
    }

    .megamenu-list__box:before {
        content: none;
    }

    .mobile-nav-box__footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #FFFFFF;
    }

    .mobile-add-product {
        padding: 20px 16px;
        border-top: 1px solid #EDF2F7;
    }

    .mobile-add-product .add-product .outline-btn {
        width: 100%;
        height: 48px;
    }

    .mobile-footer-tel {
        padding: 20px 16px;
    }

    .mobile-footer-contacts-box {
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background: #EDF2F7;
        border-radius: 4px;
        padding: 0 48px 0 16px;
        position: relative;
    }

    .mobile-footer-contacts-box__inner a {
        display: block;
        font-size: 20px;
        padding: 8px 0;
    }

    .mobile-add-contacts {
        margin: 0;
        padding: 0;
        list-style: none;
        display: none;
    }

    .mobile-footer-toggle-btn {
        position: absolute;
        top: 14px;
        right: 14px;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .mobile-footer-toggle-btn svg {
        display: block;
    }

    .mobile-footer-toggle-btn.open {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .mobile-add-contacts__messenger {
        margin: 0;
        padding: 8px 0;
        list-style: none;
        line-height: 1;
    }

    .mobile-add-contacts__messenger li {
        display: inline-block;
        padding: 0 8px 0 0;
    }

    .main-map:before {
        content: none;
    }

    .main-map:after {
        content: none;
    }

}

/****************************************** 1023px ************************************************/
@media screen and (max-width: 1023px) {
    h1 {
        font-size: 28px;
        margin: 0 0 24px 0;
    }

    h2 {
        font-size: 24px;
        margin: 0 0 24px 0;
    }

    .container {
        padding: 0 16px;
    }

    /*--------------------------------------------------------------
    # Form
    --------------------------------------------------------------*/
    .form-section {
        width: 100%;
    }

    .form-section:first-child {
        border-bottom: none;
    }

    .object-info-description {
        flex-direction: column;
    }

    .object-description > .object-info-type {
        margin-top: 10px;
    }

    /*--------------------------------------------------------------
    # Top form section
    --------------------------------------------------------------*/
    .top-form-section {
        min-height: 466px;
    }

    .top-form-section:after {
        content: none;
    }

    .top-form__img {
        display: none;
    }

    .top-form__inner {
        width: 100%;
        padding: 40px 0;
        position: relative;
        max-width: 600px;
        margin: 0 auto;
    }

    .top-form__title {
        padding-right: 0;
    }

    .counter-box__wrap {
        margin-top: 32px;
    }

    .counter-box__list {
        margin: 0 -16px;
    }

    .counter-box__item {
        padding: 0 16px;
    }

    /*--------------------------------------------------------------
    # Cat-link
    --------------------------------------------------------------*/
    .cat-link {
        padding: 40px 0 48px 0;
    }

    .cat-box__grid {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: none;
        grid-template-rows: none;
        grid-column-gap: 0;
        grid-row-gap: 0;
    }

    .cat-box__item {
        width: 100%;
        min-height: 292px;
        padding-bottom: 24px;
    }

    /*--------------------------------------------------------------
    # New objects
    --------------------------------------------------------------*/
    .new-objects {
        padding: 40px 0 68px 0;
    }

    .title-box__subtitle {
        margin-bottom: 8px;
    }

    .objects__row--33 .objects-item__wrap {
        width: 50%;
    }

    .objects__row--25 .objects-item__wrap {
        width: 50%;
    }

    /*--------------------------------------------------------------
    # Map
    --------------------------------------------------------------*/
    .search-map-box {
        display: none;
    }



    /*--------------------------------------------------------------
    # Object page
    --------------------------------------------------------------*/
    .object-description__row {
        padding-bottom: 0;
        margin-bottom: 36px;
    }

    .object-description__col {
        width: 100%;
    }

    .object-gallery img {
        height: 500px;
    }



    /*--------------------------------------------------------------
    # Static header
    --------------------------------------------------------------*/
    .static-header__img {
        display: none;
    }

    .static-header__content {
        width: 100%;
        position: relative;
        padding-bottom: 20px;
        min-height: auto;
    }

    .static-header__counter {
        padding-bottom: 0;
        position: absolute;
        bottom: 40px;
        left: 0;
    }

    /*--------------------------------------------------------------
    # Vacancies
    --------------------------------------------------------------*/
    .vacancies-body {
        padding: 24px 0 76px 0;
    }

    .about-education__content {
        padding-right: 0;
    }

    /*--------------------------------------------------------------
    # Add item page
    --------------------------------------------------------------*/
    .add-item__body:after {
        content: none
    }

    .file-upload__section {
        position: relative;
        border-bottom: 1px solid #CBD5E0;
    }

    .file-upload {
        padding: 0;
    }
}

/****************************************** 767px ************************************************/
@media screen and (max-width: 767px) {

    .object-info-description {
        width: 100%;
        padding-bottom: 60px;
    }

    .object-info-bottom .object-action {
        width: 100%;
    }

    .object-description.text-right {
        text-align: left;
    }

    /* .object-description .currency-price {
        float: right;
        padding-top: 14px;
    } */

    .object-description .object-info-price {
        justify-content: left;
    }

    .objectscharacteristics .objects-contacts {
        float: none;
        top: -40px;
        justify-content: center;
    }

    .page-content.objectpage {
        top: 0px;
    }

    .down-content {
        margin-top: 0px;
    }

    .twocolumn {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
        padding: 0px;
    }

    .container {
        padding: 0 3px;
    }

    .object-info-top {
        padding: 3px;
    }

    .object-content__row {
        margin-left: 0;
        margin-right: 0;
    }

    /*--------------------------------------------------------------
    # Form
    --------------------------------------------------------------*/
    .form-section {
        width: 100%;
    }

    .form-section__table {
        display: block;
    }

    .form-section__row {
        display: block;
    }

    .form-section__cell {
        display: block;
    }

    .form-section__cell-label {
        width: 100%;
        padding: 8px 18px 8px 0;
    }

    .form-section__cell-field {
        width: 100%;
    }

    .form-field__row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .form-field__col {
        padding: 0 10px 16px 10px;
    }

    .form-field__col--33 {
        width: 50%;
    }

    .form-field__col--66 {
        width: 100%;
    }

    textarea {
        height: 196px;
    }

    /*--------------------------------------------------------------
    # Footer
    --------------------------------------------------------------*/
    .footer-top {
        padding: 24px 0;
    }

    .footer-menu-box {
        order: 2;
        width: 100%;
        padding: 24px 0;
    }

    .footer-contacts-box {
        order: 1;
        width: 100%;
        order: -3;
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-contacts-box__inner {
        padding: 0 24px 0 0;
    }

    .footer-btn {
        order: 3;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .outline-btn.light-add-btn {
        display: -ms-flexbox;
        display: flex;
    }

    .footer-logo-box {
        width: 100%;
        text-align: center;
        margin-bottom: 28px;
    }

    .footer-copyright {
        width: 100%;
        text-align: center;
    }


    /*--------------------------------------------------------------
    # New objects
    --------------------------------------------------------------*/
    .new-objects {
        padding: 40px 0 24px 0;
    }

    .objects__row--50 .objects-item__wrap {
        width: 100%;
    }

    .objects__row--33 .objects-item__wrap {
        width: 100%;
    }

    .objects__row--25 .objects-item__wrap {
        width: 100%;
    }

    .objects-slider-nav {
        display: none;
    }

    /*--------------------------------------------------------------
    # Map
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
    # Search page
    --------------------------------------------------------------*/
    .params-form__item--60 {
        width: 100%;
    }

    .params-form__item--40 {
        width: 100%;
    }

    .params-form__item--30 {
        width: 50%;
    }

    .params-form__row-btn .params-form__item--60 {
        width: 30%;
    }

    .params-form__row-btn .params-form__item--40 {
        width: 70%;
    }

    .pagination__wrap {
        padding: 24px 0 72px 0;
    }

    .search-box {
        min-height: calc(100vh - 400px);
    }

    /*--------------------------------------------------------------
    # Object page
    --------------------------------------------------------------*/
    .inner-page .breadcrumbs {
        padding-right: 0;
        padding-bottom: 16px;
    }

    .return-box {
        position: relative;
        top: 0;
        right: initial;
        margin-bottom: 24px;
    }

    .object-action li {
        font-size: 12px;
        padding-right: 20px;
        margin-right: 20px;
    }

    .object-action li:last-child {
        padding-right: 0;
        margin-right: 0;
    }

    .object-features__cell--label {
        width: 50%;
    }

    .object-features__cell--value {
        width: 50%;
    }

    .object-price__table {
        padding-bottom: 20px;
    }

    .object-price__cell--label {
        width: 25%;
        margin-bottom: 4px;
    }

    .object-price__cell--value {
        width: 75%;
        margin-bottom: 4px;
    }

    .object-price__cell--value-currency {
        width: 100%;
        margin-left: 25%;
    }

    .object-btn__col--65 {
        width: 100%;
        margin-bottom: 16px;
    }

    .object-btn__col--35 {
        width: 100%;
    }

    .similar-offers {
        margin-bottom: 48px;
    }

    /*--------------------------------------------------------------
    # Chosen page
    --------------------------------------------------------------*/
    .chosen-container {
        margin-bottom: 48px;
    }

    .chosen-sidebar {
        width: 100%;
        margin-bottom: 24px;
    }

    .chosen-main {
        width: 100%;
    }

    .chosen-sidebar__wrap .btn {
        width: 100%;
    }

    .clear-chosen-container img {
        max-width: 100%;
    }

    .clear-chosen__btn-col {
        width: 100%;
    }

    /*--------------------------------------------------------------
    # Static header
    --------------------------------------------------------------*/
    .static-header__content {
        width: 100%;
    }

    .static-header:before {
        top: initial;
        bottom: 0;
    }

    /*--------------------------------------------------------------
    # Vacancies
    --------------------------------------------------------------*/
    .vacancies-body {
        padding: 24px 0 48px 0;
    }

    .vacancies__col {
        width: 100%;
    }

    .vacancies-item {
        padding: 20px 16px 88px 16px;
    }

    .vacancies-item__btn.outline-btn {
        position: absolute;
        left: 16px;
        bottom: 28px;
        width: calc(100% - 32px);
    }

    /*--------------------------------------------------------------
    # About
    --------------------------------------------------------------*/
    .about-vacancies-body {
        padding-top: 40px;
    }

    .about-vacancies-body:before {
        content: none;
    }

    .about-vacancies-body:after {
        content: none;
    }

    .about-vacancies__col {
        width: 100%;
    }

    .about-vacancies__col:first-child {
        order: 2;
    }

    .about-vacancies__col:last-child {
        order: 1;
        margin-bottom: 32px;
    }

    .content-box .btn {
        width: 100%;
    }

    .about-vacancies__img img {
        max-width: 200px;
        margin: 0 auto;
    }

    /*--------------------------------------------------------------
    # Contacts
    --------------------------------------------------------------*/
    .contacts-body {
        padding: 40px 0;
    }

    .contacts-body .container {
        padding: 0;
    }

    .contacts-map__wrap {
        border-radius: 0;
        overflow: visible;
    }

    .contacts-map {
        height: 300px;
    }

    .contacts-info {
        position: relative;
        top: 0;
        left: 16px;
        width: calc(100% - 32px);
        margin-top: -40px;
    }
    /*--------------------------------------------------------------
    # Education page
    --------------------------------------------------------------*/
    .about-education-body {
        padding: 40px 0;
        border-bottom: none;
    }

    .about-education__col {
        width: 100%;
    }

    .about-education__img img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px auto;
    }

    .about-education__logo {
        margin-bottom: 40px;
    }

    .about-education__content {
        margin-top: 0;
    }

    /*--------------------------------------------------------------
    # Add item page
    --------------------------------------------------------------*/
    .add-item__btn {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: space-between;
    }

    .add-item__btn .btn {
        margin-left: 0;
        padding: 0 12px;
        width: 50%;
        width: calc(50% - 12px);
    }

    #add-item__submit-btn {
        display: block;
    }

    /*--------------------------------------------------------------
    # Modal
    --------------------------------------------------------------*/
    .modal-body {
        padding: 24px 16px 40px 16px;
    }

    .modal-form__table {
        display: block;
    }

    .modal-form__row {
        display: block;
    }

    .modal-form__cell {
        display: block;
    }

    .modal-form__cell--label {
        width: 100%;
        padding: 0 0 8px 0;
    }

    .modal-form__cell--field {
        width: 100%;
    }

    .modal-btn__box {
        width: 100%;
        margin: 16px 0 0 0;
    }

}

.mainfullimg .mobileslide {display: none;}

@media screen and (max-width: 600px) {
    .mainfullimg,
    .static-header__fullimg .header__mainslider,
    .mainfullimg img.slick-slide {
        min-height: 350px;
    }

    .mainfullimg .desctopslide {display: none;}
    .mainfullimg .mobileslide {display: block;}


    .mainfullimg .static-header__content {
        min-height: auto;
        height: auto;
        position: absolute;
        bottom: 5px;
        padding-bottom: 0px;
    }

    .static-header:before,
    .static-header::after {
        content: none;
    }

    .mainfullimg .static-header__counter {
        left: 0;
        right: 0;
        text-align: center;
    }

    .mainfullimg .static-header__counter .btn {
        margin-right: 5px;
        margin-left: 5px;
    }
}

@media screen and (max-width: 480px) {
    .mobile-footer-contacts-box {
        flex-direction: column;
    }

    .objects-item__block.d-flex {
        flex-direction: column;
    }
}


/* js-validate */
.input-field label.error {
    font-size: .875rem;
    line-height: 1.333;
    font-weight: 300;
    margin-top: 2px;
    margin-bottom: -8px;
    color: #C00F1A;
    display: block;
}

.chosen-container-multi .chosen-choices {
    padding: 0 24px 0 7px;
}

/*//pavel`s changes*/
.show-params-btn {
    padding: 0 9px;
}

.price-input,
.chosen-container .chosen-drop,
.chosen-container-multi .chosen-choices {
    background: #FFFFFF;
    box-shadow: 0 4px 8px rgba(45, 55, 72, 0.1);
    border-radius: 4px;
    border: 1px solid #CBD5E0;
    display: block;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
    min-height: 32px;
}

.chosen-container.chosen-container-multi:after {
    content: '';
    width: 8px;
    height: 5px;
    background-image: url(../images/arrow-down-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -4px;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
    width: 100% !important;
}

.chosen-container.chosen-container-multi.chosen-container-active:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.chosen-container .chosen-drop .selectallSection > .closeIcon,
.chosen-container .chosen-drop .selectallSection > span {
    cursor: pointer;
}

.chosen-container .chosen-drop .selectallSection {
    display: none;
    /* display: flex; */
    justify-content: space-between;
    padding: 10px 15px;
    text-decoration: underline;
}

.chosen-container .chosen-drop {
    margin-top: 5px;
}

.multi-select-menu input[type="checkbox"],
.chosen-container .checkBox {
    margin-right: 8px;
    height: 16px;
    width: 16px;
    background: #FFFFFF;
    border: 1px solid #CBD5E0;
    border-radius: 3px;
}

.multi-select-menu input:checked,
.chosen-container .checkBox:checked {
    border: 1px solid #D11E29;
    background: #D11E29;
}

.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default;
}

.chosen-container .chosen-results li.active-result,
.chosen-container-multi .chosen-drop .result-selected,
.chosen-container .chosen-results > li {
    display: flex;
    align-items: center;
    padding: 8px 15px;
}

.multi-select-menu input:checked[type="checkbox"],
.chosen-container .checkBox[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    margin-top: 3px;
    margin-right: 8px;
    height: 16px;
    width: 16px;
    background: #FFFFFF;
    border: 1px solid #CBD5E0;
    border-radius: 3px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.multi-select-menu input:checked[type="checkbox"]::before,
.chosen-container .checkBox[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #ffffff;
    /* Windows High Contrast Mode */
    background-color: #ffffff;
}

.chosen-select::before {
    content: attr(data-placeholder);
}

.multi-select-menu input[type="checkbox"]:checked,
.chosen-container .checkBox[type="checkbox"]:checked {
    background: #d11e29;
    border: 1px solid #d11e29;
}

.multi-select-menu input[type="checkbox"]:checked::before,
.chosen-container .checkBox[type="checkbox"]:checked::before {
    transform: scale(1);
}

.multi-select-menu input[type="checkbox"]:focus,
.chosen-container .checkBox[type="checkbox"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
}

.multi-select-menu input[type="checkbox"]:disabled,
.chosen-container .checkBox[type="checkbox"]:disabled {
    color: #959495;
    cursor: not-allowed;
}

.price-input-container {
    padding: 10px 15px 0;
}

.chosen-select-price .chosen-container .chosen-drop {
    padding-top: 50px;
}

.chosen-select-price .chosen-container .selectallSection {
    display: none;
}

.chosen-select-price .switch-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.params-form__item .price-input {
    margin: 0 0 10px;
    padding: 0 10px;
    height: 32px;
    width: 100%;
}

.chosen-container-multi .chosen-choices li.search-choice {
    border: none !important;
    max-width: 100% !important;
    border-radius: 0px !important;
    background-color: transparent !important;
    background-image: none !important;
    background-size: initial !important;
    background-repeat: repeat-x !important;
    background-clip: initial !important;
    box-shadow: none !important;
    color: #333 !important;
}

.pophidden {
    display: none !important;
}

select:focus-visible {
    border: none;
    outline: none;
}

select:focus-visible.q_property_type_eq {
    height: 32px;
    border: 1px solid #CBD5E0;
}

.district-list__res-item input {
    border: none;
    background: rgb(255 12 12 / 0%);
}

.delete__res-item {
    display: none;
}

.checkmark.checked {
    content: '';
    background-image: url(../images/checkmark.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #D11E29;
    border-color: #D11E29;
    display: block;
}