@charset "UTF-8";
:root {
    --accent: #629e00;
    --green: #67a700;
    --light-green: #6eb200;
    --dark: #161616;
    --beige: #e8e6e2;
    --stroke: #a9a8a6;
    --background: #f1f0ed;
    --white: #fff;
    --font-family: "Wix Madefor Display", sans-serif;
    --second-family: "Tenor Sans", sans-serif;
    --third-family: "Jost", sans-serif;
    --font3: "Involve", sans-serif;
    --font4: "Golos Text", sans-serif;
}
@font-face {
    font-family: Wix Madefor Display;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Wix_Madefor_Display/WixMadeforDisplay-Regular.ttf)
        format("woff2");
}
@font-face {
    font-family: Wix Madefor Display;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/Wix_Madefor_Display/WixMadeforDisplay-Medium.ttf)
        format("woff2");
}
@font-face {
    font-family: Wix Madefor Display;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/Wix_Madefor_Display/WixMadeforDisplay-SemiBold.ttf)
        format("woff2");
}
@font-face {
    font-family: Tenor Sans;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Tenor_Sans/TenorSans-Regular.ttf) format("woff2");
}
@font-face {
    font-family: Jost;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Jost/Jost-Regular.ttf) format("woff2");
}
::-webkit-input-placeholder {
    color: #666;
}
::-moz-placeholder {
    color: #666;
}
:-ms-input-placeholder {
    color: #666;
}
::-ms-input-placeholder {
    color: #666;
}
::placeholder {
    color: #666;
}
::-moz-selection {
    background-color: var(--accent);
    color: var(--white);
}
::selection {
    background-color: var(--accent);
    color: var(--white);
}
input,
textarea {
    outline: none;
}
input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: red;
}
input:required:valid,
textarea:required:valid {
    border-color: green;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    color: var(--dark);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    min-width: 320px;
    overflow-x: hidden;
    position: relative;
}
.container {
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 80px;
    width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--second-family);
    font-weight: 400;
    text-transform: uppercase;
}
.h1 {
    font-size: 64px;
}
.h1,
.h2 {
    line-height: 130%;
}
.h2 {
    font-size: 48px;
}
picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
img {
    height: 100%;
    width: 100%;
}
a {
    color: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
}
ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
main.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 200px;
    margin-bottom: 200px;
}
.bg {
    background: var(--beige);
    padding: 80px 0;
}
.mb-42 {
    margin-bottom: 42px;
}
.mt-header {
    margin-top: 160px;
}
.main-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.main-header,
.main-header .back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}
.main-header .back {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--stroke);
    font-weight: 500;
}
.main-header .back,
.main-header .back svg path {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.main-header .back:hover {
    color: var(--accent);
}
.main-header .back:hover svg path {
    stroke: var(--accent);
}
.button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: var(--font-family);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background: var(--beige);
    border: none;
    border-radius: 8px;
    color: var(--dark);
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    justify-content: center;
    line-height: 160%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    outline: none;
    padding: 13.5px 48px;
    text-align: center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.button:hover {
    background-color: var(--white);
}
.button:focus {
    color: var(--light-green);
}
.button-primary {
    background: var(--accent);
    color: var(--white);
}
.button-primary:hover {
    background: var(--light-green);
}
.button-primary:focus {
    background: var(--white);
    color: var(--dark);
}
.input {
    background-color: transparent;
    border: 1px solid var(--stroke);
    border-radius: 8px;
    color: var(--dark);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 500;
    height: 58px;
    line-height: 160%;
    max-width: 100%;
    padding: 10px 24px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 100%;
}
.input ::-webkit-input-placeholder {
    color: var(--stroke);
}
.input ::-moz-placeholder {
    color: var(--stroke);
}
.input :-ms-input-placeholder {
    color: var(--stroke);
}
.input ::-ms-input-placeholder {
    color: var(--stroke);
}
.input ::placeholder {
    color: var(--stroke);
}
.custom-select {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: relative;
    width: 100%;
}
.custom-select.is-open .custom-select__trigger:after {
    -webkit-transform: scale(-1) translateY(50%);
    -ms-transform: scale(-1) translateY(50%);
    transform: scale(-1) translateY(50%);
}
.custom-select--default .custom-select__trigger {
    background-color: transparent;
    border-color: var(--stroke);
    color: var(--dark);
}
.custom-select--default .custom-select__trigger:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'%3E%3Cpath stroke='%23161616' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 1 6 6 6-6'/%3E%3C/svg%3E");
}
.custom-select__trigger {
    background: var(--beige);
    border: 1px solid var(--light-green);
    border-radius: 8px;
    color: var(--accent);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    height: 56px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 15px 64px 15px 32px;
    position: relative;
    text-align: left;
    width: 100%;
}
.custom-select__trigger:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'%3E%3Cpath stroke='%23a9a8a6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m.75.75 6 6 6-6'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 15px;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 15px;
}
.custom-select__dropdown {
    background: var(--white);
    border: 1px solid var(--stroke);
    border-radius: 10px;
    display: none;
    left: 0;
    padding: 15px 0;
    position: absolute;
    top: calc(100% + 6px);
    width: 100%;
    z-index: 10;
}
.custom-select.is-open .custom-select__dropdown {
    display: block;
}
.custom-select__option {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    outline: none;
    padding: 10px 15px;
    text-align: left;
    width: 100%;
}
.custom-select__option.is-active {
    color: var(--accent);
}
.accordeon {
    background: var(--beige);
    border-radius: 20px;
    padding: 32px;
}
.accordeon__summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    color: var(--accent);
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    gap: 24px;
    justify-content: space-between;
    line-height: 130%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.accordeon__summary::marker {
    content: "";
    display: none;
}
.accordeon__summary .arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.accordeon__summary .arrow,
.accordeon__summary .arrow svg path {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.accordeon__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.accordeon__content-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}
.accordeon__details[open] + .accordeon__content {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
}
.accordeon__details[open] .accordeon__summary {
    color: var(--accent);
}
.accordeon__details[open] .arrow {
    background-color: transparent;
}
.accordeon__details[open] .arrow svg {
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1);
}
.accordeon__details[open] .arrow svg path {
    stroke: var(--accent);
}
.footer {
    background: var(--beige);
    padding: 80px 0;
}
.footer .logo {
    max-width: 230px;
    width: 100%;
}
.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 30px;
    position: relative;
}
.footer__inner .made-pixel {
    bottom: 20px;
    color: var(--stroke);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 140%;
    position: absolute;
}
.footer__inner .made-pixel span {
    color: var(--dark);
}
.footer-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border-right: 1px solid var(--stroke);
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 42px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 320px;
    flex: 0 1 320px;
}
.footer-sidebar__nav {
    font-weight: 500;
}
.footer-sidebar__nav a {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.footer-sidebar__nav a:hover {
    color: var(--accent);
}
.footer-sidebar__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}
.footer-info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
.footer-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border-bottom: 1px solid var(--stroke);
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    padding: 30px 0;
}
.footer-info__item:last-child {
    border-bottom: none;
}
.footer-info__item span {
    color: var(--stroke);
    font-weight: 500;
}
.footer-info__item a {
    color: var(--accent);
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.footer-info__item a:hover {
    color: var(--dark);
}
.header {
    border-bottom: 1px solid #bebebe;
    color: var(--white);
    left: 0;
    padding: 16px 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
}
.header .logo {
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.header .logo img:nth-child(2) {
    display: none;
}
.header-fix,
.page .header {
    background: var(--white);
    color: var(--dark);
}
.header-fix .logo img:first-child,
.page .header .logo img:first-child {
    display: none;
}
.header-fix .logo img:nth-child(2),
.page .header .logo img:nth-child(2) {
    display: block;
}
.header-fix .burger-icon__block,
.page .header .burger-icon__block {
    border-color: var(--dark);
}
.header-fix .burger-icon__block span,
.page .header .burger-icon__block span {
    background-color: var(--dark);
}
.header-fix .address svg path,
.page .header .address svg path {
    fill: var(--dark);
}
.header-fix .phone-block__header,
.page .header .phone-block__header {
    border-color: var(--dark);
}
.header-fix .phone-block__header .arrow svg path,
.page .header .phone-block__header .arrow svg path {
    stroke: var(--dark);
}
.header-fix .phone-block__header > svg path,
.page .header .phone-block__header > svg path {
    fill: var(--dark);
}
.header-fix .phone-block__dropdown,
.page .header .phone-block__dropdown {
    background-color: var(--white);
}
.header-columns {
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 20px;
    justify-content: space-between;
}
.header-columns,
.header__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.header__column {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -ms-flex-align: center;
    gap: 24px;
}
.burger {
    cursor: pointer;
    position: relative;
}
.burger-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    gap: 16px;
    line-height: 150%;
    text-transform: uppercase;
}
.burger-dropdown,
.burger-icon__text {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.burger-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: var(--white);
    border-radius: 20px;
    -webkit-box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.1);
    -ms-flex-direction: column;
    flex-direction: column;
    left: -200%;
    opacity: 0;
    overflow: hidden;
    padding: 8px 0;
    position: absolute;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    visibility: hidden;
    width: 367px;
    z-index: -1;
}
.burger-dropdown a {
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    padding: 24px 24px 24px 80px;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.burger-dropdown a:hover {
    background: hsla(40, 2%, 66%, 0.24);
}
.burger.active .burger-dropdown {
    left: 0;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.burger.active .burger-icon__block span {
    width: 20px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}
.burger.active .burger-icon__block span:first-child {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}
.burger.active .burger-icon__block span:nth-child(2) {
    opacity: 0;
}
.burger.active .burger-icon__block span:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
}
.burger-icon__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border: 1px solid var(--white);
    border-radius: 8px;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    height: 48px;
    padding: 12px;
    width: 48px;
}
.burger-icon__block span {
    background-color: var(--white);
    border-radius: 5px;
    height: 2px;
    text-align: left;
    width: 20px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.burger-icon__block span:nth-child(2) {
    width: 15px;
}
.burger-icon__block span:nth-child(3) {
    width: 18px;
}
.address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    gap: 12px;
    justify-content: center;
}
.address,
.address svg path {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.address:hover {
    color: var(--accent);
}
.address:hover svg path {
    fill: var(--accent);
}
.phone-block {
    position: relative;
}
.phone-block__header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid var(--background);
    border-radius: 8px;
    cursor: pointer;
    gap: 12px;
    height: 48px;
    padding: 6px 12px;
}
.phone-block__dropdown,
.phone-block__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.phone-block__dropdown {
    opacity: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border: 1px solid var(--white);
    border-radius: 8px;
    -webkit-box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.1);
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    overflow: hidden;
    position: absolute;
    right: -100%;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    visibility: hidden;
    width: 238px;
    z-index: -1;
}
.phone-block__dropdown a {
    padding: 12px;
}
.phone-block__dropdown a:hover {
    background: hsla(40, 2%, 66%, 0.24);
}
.phone-block .arrow {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.phone-block.active .phone-block__dropdown {
    opacity: 1;
    right: 0;
    visibility: visible;
}
.phone-block.active .arrow {
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1);
}
.mortgage .h2 {
    margin-bottom: 42px;
}
.mortgage__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 420px 24px 1fr;
    gap: 24px;
    grid-template-columns: 420px 1fr;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.mortgage__tabs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 30px;
}
.mortgage__tab {
    background: var(--beige);
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--dark);
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    height: 56px;
    line-height: 160%;
    outline: none;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}
.mortgage__tab.is-active {
    background: var(--background);
    border-color: var(--accent);
    color: var(--accent);
}
.mortgage__tab:active {
    background: var(--background);
    border-color: var(--accent);
    color: var(--accent);
}
.mortgage__select {
    display: none;
}
.mortgage .button {
    max-width: 100%;
    width: 100%;
}
.mortgage__result {
    background: var(--beige);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}
.mortgage__banks {
    display: -ms-grid;
    display: grid;
    gap: 30px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 10px;
    height: 100px;
    scrollbar-width: thin; 
}
.mc__label {
    color: var(--stroke);
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    margin-bottom: 8px;
}
.mc__field {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px auto;
    gap: 10px;
    grid-template-columns: 1fr auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--beige);
    border-bottom: 1px solid var(--stroke);
    border-radius: 12px;
    padding-right: 20px;
}
.mc__input {
    background: transparent;
    border: 0;
    color: var(--accent);
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    min-width: 0;
    outline: none;
    padding: 13px 20px;
    text-transform: uppercase;
    width: 100%;
}
.mc__suffix {
    color: var(--stroke);
    white-space: nowrap;
}
.mc__range {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    -webkit-transform: translate(14px, -20px);
    -ms-transform: translate(14px, -20px);
    transform: translate(14px, -20px);
    width: 93%;
    --progress: 0%;
}
.mc__range::-webkit-slider-runnable-track {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(var(--accent)),
        color-stop(var(--accent)),
        color-stop(var(--stroke)),
        to(var(--stroke))
    );
    background: linear-gradient(
        to right,
        var(--accent) 0,
        var(--accent) var(--progress),
        var(--stroke) var(--progress),
        var(--stroke) 100%
    );
    border-radius: 100px;
    height: 1px;
}
.mc__range::-moz-range-track {
    background: #dcdad5;
    border-radius: 100px;
    height: 1px;
}
.mc__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    height: 14px;
    margin-top: -6px;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition:
        transform 0.2s ease,
        -webkit-transform 0.2s ease;
    width: 14px;
}
.mc__range::-moz-range-thumb {
    background: var(--accent);
    border: none;
    border-radius: 50%;
    height: 14px;
    -moz-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    width: 14px;
}
.mc__range:hover::-webkit-slider-thumb {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.mc__range:hover::-moz-range-thumb {
    transform: scale(1.1);
}
.bank-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.5fr 12px 1fr;
    gap: 12px;
    grid-template-columns: 0.5fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bank-row.active .arrow svg {
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1);
}
.bank-row__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    min-width: 0;
}
.bank-row__left,
.bank-row__left .arrow {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bank-row__left .arrow {
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-color: var(--white);
    border-radius: 50%;
    height: 32px;
    justify-content: center;
    margin-left: auto;
    width: 32px;
}
.bank-row__left .arrow svg {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.bank-row__right {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}
.bank-row__logo {
    background: #d7d3cd;
    border-radius: 50%;
    height: 64px;
    overflow: hidden;
    width: 64px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bank-row__logo img {
    object-fit: contain;
    object-position: center;
    width: 80%;
    height: 80%;
}
.bank-row__name {
    color: var(--dark);
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bank-row__pay,
.bank-row__rate {
    color: var(--stroke);
    font-weight: 500;
    line-height: 160%;
    text-align: center;
}
.bank-row__pay {
    text-align: right;
}
body.lock {
    overflow: hidden;
}
.popup {
    background-color: rgba(51, 51, 51, 0.7);
    height: 100%;
    left: 0;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 20;
}
.popup.open {
    opacity: 1;
    visibility: visible;
}
.popup.open .popup__content {
    opacity: 1;
    -webkit-transform: perspective(600px) translate(0) rotateX(0deg);
    transform: perspective(600px) translate(0) rotateX(0deg);
}
.popup__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px;
}
.popup__body,
.popup__content {
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.popup__content {
    background-color: #fff;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    max-width: 526px;
    opacity: 0;
    padding: 64px 48px 48px;
    position: relative;
    -webkit-transform: perspective(600px) translateY(-100%) rotateX(45deg);
    transform: perspective(600px) translateY(-100%) rotateX(45deg);
    width: 100%;
}
.popup-gallery {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
.popup-gallery .popup__content {
    border-radius: 0;
    height: 100vh;
    max-width: 100%;
    padding: 64px 80px 80px;
}
.popup-gallery .popup__body {
    border-radius: 0;
    padding: 0;
}
.popup-gallery .popup__close {
    right: 80px;
    top: 80px;
}
.popup__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    text-align: left;
}
.popup__title span:not(.h2) {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
}
.popup__title span.h2 {
    font-family: var(--second-family);
    font-weight: 400;
    text-transform: uppercase;
}
.popup__close {
    position: absolute;
    right: 20px;
    text-decoration: none;
    top: 20px;
}
.popup__slider {
    height: 100%;
    max-height: 660px;
    overflow: hidden;
    width: 100%;
}
.social-fixed {
    background: var(--background);
    border-radius: 8px 0 0 8px;
    -webkit-box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: fixed;
    right: 0;
    top: 110px;
    z-index: 10;
}
.social-fixed ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}
.social-fixed svg path {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.social-fixed li:hover svg path {
    fill: var(--accent);
}
.appatments-page,
.appatments-page .header {
    background: var(--background);
}
.apartments-filters {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}
.apartments-filters,
.apartments-filters__inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.apartments-filters__inputs {
    gap: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
.apartments-filters .custom-select,
.apartments-filters .custom-select__trigger {
    max-width: 268px;
    width: 100%;
}
.apartments-filters .custom-select__trigger:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23a9a8a6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}
.checkbox-group {
    border: none;
    gap: 8px;
    margin: 0;
}
.checkbox-group,
.checkbox-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.checkbox-item {
    gap: var(--itc-checkbox-gap);
    position: relative;
}
.checkbox-input {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    z-index: -1;
}
.checkbox-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background: var(--beige);
    border-radius: 8px;
    cursor: pointer;
    height: 56px;
    justify-content: center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 56px;
}
.checkbox-input:checked + .checkbox-label {
    background-color: var(--accent);
    color: var(--white);
}
.visually-hidden {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}
.apartments-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 32px 30px;
    margin-top: 32px;
}
.apartments-list .apartment-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(25% - 22.5px);
    flex: 0 1 calc(25% - 22.5px);
}
.apartment-item__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background: var(--white);
    border-radius: 20px;
    height: 250px;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}
.apartment-item__img img {
    -o-object-fit: contain;
    object-fit: contain;
}
.apartment-item__desc ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background: var(--beige);
    border-radius: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px 0;
    padding: 24px;
}
.apartment-item__desc ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45%;
    flex: 1 1 45%;
    gap: 10px;
}
.apartment-item__desc ul li:nth-child(2n) {
    border-left: 1px solid var(--stroke);
    padding-left: 24px;
}
.apartment-item__desc ul li:nth-child(odd) {
    padding-right: 24px;
}
.apartment-item__desc ul li small {
    color: var(--stroke);
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
}
.apartment-item__desc ul li span {
    color: var(--accent);
}
.apartment-item__desc .button {
    margin-top: 30px;
    max-width: 100%;
    width: 100%;
}
.apartments-more {
    border-top: 1px solid var(--beige);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 32px;
    padding-top: 32px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.main-slider {
    height: 100vh;
    min-height: 650px;
}
.main-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    position: relative;
}
.main-slide__img {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.main-slide__img picture {
    height: 100%;
}
.main-slide__img img {
    -o-object-fit: cover;
    object-fit: cover;
}
.main-slide__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    color: var(--white);
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 64px;
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 20px;
    position: relative;
    text-align: center;
    z-index: 3;
}
.main-slide__info,
.main-slider-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}
.main-slider-nav {
    bottom: 48px;
    gap: 20px;
    left: 50%;
    max-width: 250px;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}
.main-slider-nav .swiper-pagination {
    -webkit-box-flex: 1;
    color: var(--white);
    -ms-flex: 1 1;
    flex: 1 1;
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
}
.main-slider-nav .swiper-button-next,
.main-slider-nav .swiper-button-prev,
.main-slider-nav .swiper-pagination {
    margin: 0;
    padding: 0;
    position: static;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.slider-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 50%;
    height: 64px;
    justify-content: center;
    min-width: 56px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 64px;
}
.slider-arrow svg path {
    fill: var(--white);
}
.slider-arrow:hover {
    background-color: var(--light-green);
    border-color: var(--light-green);
}
.slider-arrow:hover svg path {
    fill: var(--white);
}
.slider-arrow:active {
    background-color: var(--dark);
    border-color: var(--dark);
}
.slider-arrow.swiper-button-disabled {
    background: transparent;
    border: 1px solid #777;
}
.slider-arrow.swiper-button-disabled svg path {
    fill: #777;
}
.slider-arrow:after,
.slider-arrow:before {
    display: none;
}
.slider-arrow svg {
    width: 22px;
}
.slider-arrow svg path {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.slider-arrow.swiper-button-next {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.new-collection {
    background: var(--beige);
    padding: 80px 0;
}
.new-collection .new-collection-numbers {
    margin-top: 30px;
}
.new-collection__inner {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.new-collection__desc,
.new-collection__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
.new-collection__desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-weight: 500;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
.new-collection__desc span {
    border-top: 1px solid #d9d5ce;
    color: var(--accent);
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    padding-top: 30px;
    text-transform: uppercase;
}
.new-collection__img {
    -webkit-box-flex: 0;
    border-radius: 20px;
    -ms-flex: 0 1 716px;
    flex: 0 1 716px;
    overflow: hidden;
}
.new-collection__img picture {
    height: 100%;
}
.new-collection__img img {
    aspect-ratio: 716/455;
    -o-object-fit: cover;
    object-fit: cover;
}
.new-collection-numbers {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    background-color: var(--white);
    border-radius: 20px;
    justify-content: space-between;
    padding: 33px 42px;
}
.new-collection-numbers,
.new-collection-numbers ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.new-collection-numbers ul {
    gap: 72px;
}
.new-collection-numbers ul li {
    border-right: 1px solid var(--stroke);
    padding-right: 42px;
}
.new-collection-numbers ul li:last-child {
    border: none;
    padding-right: 0;
}
.new-collection-numbers ul li span {
    color: var(--dark);
    font-family: var(--second-family);
    font-size: 64px;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
    white-space: nowrap;
}
.new-collection-numbers ul li p {
    color: var(--accent);
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
}
.new-collection-numbers__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    max-width: 262px;
}
.new-collection-numbers__btn p {
    color: var(--stroke);
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
}
.genplan__img {
    position: relative;
}
.genplan__img img {
    aspect-ratio: 1920/800;
    height: calc(100vh - 81px);
    -o-object-fit: cover;
    object-fit: cover;
}
.genplan__img svg {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 2;
}
.genplan__img .st0 {
    cursor: pointer;
    fill: transparent;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.genplan__img .st0:hover {
    fill: hsla(0, 0%, 9%, 0.5);
}
.genplan-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 42px;
}
.promo__inner {
    position: relative;
}
.promo-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 42px;
}
.promo-header .main-slider-nav {
    position: static;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.promo-header .main-slider-nav .swiper-pagination {
    color: var(--dark);
}
.promo-header .main-slider-nav .swiper-pagination-total {
    color: var(--stroke);
}
.promo-slide {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.promo-slide picture {
    height: 100%;
}
.promo-slide img {
    aspect-ratio: 566/350;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.advantages__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 100px;
}
.advantages-block {
    background: var(--beige);
    padding: 80px 0;
}
.advantages-block .h2 {
    margin-bottom: 42px;
}
.advantages-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
}
.advantages-list .advantage-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(25% - 22.5px);
    flex: 0 1 calc(25% - 22.5px);
}
.advantage-item {
    background-color: var(--white);
    border-radius: 20px;
    min-height: 345px;
    overflow: hidden;
}
.advantage-item.active .advantage-item__content {
    background-color: var(--light-green);
    color: var(--white);
}
.advantage-item.active .advantage-item__content span {
    color: var(--white);
}
.advantage-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    padding: 30px;
    position: relative;
}
.advantage-item__content span {
    color: var(--accent);
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
}
.advantage-item__content p {
    font-weight: 500;
}
.advantage-item__content .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    bottom: 20px;
    justify-content: center;
    position: absolute;
    right: 30px;
}
.advantage-item__content .icon img {
    height: auto;
    width: auto;
}
.advantage-item > img {
    aspect-ratio: 417/375;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.imperia-grid {
    display: -ms-grid;
    display: grid;
    margin: 0 auto;
    max-width: 100%;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr
        30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
    gap: 30px;
    grid-template-columns: repeat(12, 1fr);
    -ms-grid-rows: auto 30px auto;
    grid-template-areas: "a a a a a a b b b c c c" "d d d e e e f f f f f f";
}
.about-block {
    border-radius: 20px;
    overflow: hidden;
}
.about-block--img {
    position: relative;
}
.about-block--img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}
.about-block--text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 42px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}
.about-block--text span {
    color: var(--accent);
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 12px;
}
.a {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-column-span: 11;
    grid-area: a;
    min-height: 280px;
}
.b {
    -ms-grid-column: 13;
    -ms-grid-column-span: 5;
    grid-area: b;
}
.b,
.c {
    -ms-grid-row: 1;
}
.c {
    -ms-grid-column: 19;
    -ms-grid-column-span: 5;
    grid-area: c;
    min-height: 280px;
}
.d {
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-area: d;
    min-height: 450px;
}
.d,
.e {
    -ms-grid-row: 3;
}
.e {
    -ms-grid-column: 7;
    -ms-grid-column-span: 5;
    grid-area: e;
}
.f {
    -ms-grid-column: 13;
    -ms-grid-row: 3;
    -ms-grid-column-span: 11;
    grid-area: f;
    min-height: 450px;
}
.buy-variable__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 30px;
    justify-content: space-between;
}
.buy-variable__desc {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 716px;
    flex: 0 1 716px;
    min-width: 700px;
}
.buy-variable__desc .h2 {
    margin-bottom: 42px;
}
.buy-variable__img {
    -webkit-box-flex: 0;
    border-radius: 20px;
    -ms-flex: 0 1 865px;
    flex: 0 1 865px;
    overflow: hidden;
}
.buy-variable__img img,
.buy-variable__img picture {
    aspect-ratio: 865/627;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.variables-list {
    border: 1px solid var(--stroke);
    border-radius: 20px;
}
.variable-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-bottom: 1px solid var(--stroke);
    justify-content: space-between;
    padding: 30px;
}
.variable-item:last-child {
    border-bottom: none;
}
.variable-item span {
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
}
.const-progress__inner {
    padding-bottom: 40px;
    position: relative;
}
.progress-header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 32px;
}
.progress-header,
.progress-header__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.progress-header__filter {
    gap: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
.progress-header__filter .custom-select {
    max-width: 417px;
    width: 100%;
}
.progress-header__filter .custom-select__trigger {
    max-width: 100%;
    width: 100%;
}
.progress-header .main-slider-nav {
    position: static;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.progress-header .main-slider-nav .swiper-pagination {
    color: var(--dark);
}
.progress-header .main-slider-nav .swiper-pagination-total {
    color: var(--stroke);
}
.progress-slide a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}
.progress-slide a:hover .play {
    -webkit-transform: scale(1.1) translate(-50%, -50%);
    -ms-transform: scale(1.1) translate(-50%, -50%);
    transform: scale(1.1) translate(-50%, -50%);
}
.progress-slide a:hover strong {
    color: var(--accent);
}
.progress-slide__img img,
.progress-slide__img picture {
    aspect-ratio: 417/300;
    border-radius: 20px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
}
.progress-slide__img.video {
    position: relative;
}
.progress-slide__img.video .play {
    border-radius: 50%;
    height: 64px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 64px;
    will-change: transform;
}
.progress-slide__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 10px;
    justify-content: space-between;
}
.progress-slide__desc strong {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.progress-slide__desc span {
    color: var(--stroke);
}
.docs-sect__list {
    border: 1px solid var(--stroke);
    border-radius: 20px;
    padding: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}
.docs-header,
.docs-sect__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.docs-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.docs-header .custom-select,
.docs-header .custom-select__trigger {
    max-width: 430px;
    width: 100%;
}
.documnet-item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 50px;
    justify-content: space-between;
}
.documnet-item,
.documnet-item--left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.documnet-item--left {
    gap: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
.documnet-item--left img {
    border-radius: 50%;
    height: 64px;
    overflow: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 64px;
    will-change: transform;
}
.documnet-item--left strong {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.documnet-item--right {
    -webkit-box-flex: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: none;
    flex: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
}
.documnet-item--right time {
    color: var(--stroke);
    width: 200px;
}
.request-sect__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    background: var(--beige);
    border-radius: 20px;
    gap: 0;
    justify-content: space-between;
}
.request-sect__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 1014px;
    flex: 0 1 1014px;
}
.request-sect__img img,
.request-sect__img picture {
    aspect-ratio: 1014/469;
    border-radius: 20px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
}
.request-sect__desc {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 660px;
    flex: 0 0 660px;
    padding: 64px 70px;
}
.request-sect__desc .title {
    text-align: center;
}
.request-sect__desc .title p {
    color: var(--stroke);
    margin-top: 16px;
}
.req-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}
.req-form .button {
    max-width: 100%;
    width: 100%;
}
.success {
    color: var(--stroke);
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
}
.gallery-slider {
    border-radius: 20px;
    height: 100%;
    min-height: auto;
    position: relative;
}
.gallery-slider .main-slider-nav {
    background-color: var(--white);
    border-radius: 20px;
    bottom: 32px;
    left: 50%;
    max-width: 300px;
    padding: 16px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.gallery-slider .main-slider-nav .swiper-pagination {
    color: var(--dark);
}
.gallery-slider .main-slider-nav .swiper-pagination-total {
    color: var(--stroke);
}
.gallery-slide img,
.gallery-slide picture {
    aspect-ratio: 1760/659;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.page-about__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 30px;
    margin-top: 42px;
}
.page-about__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 418px;
    flex: 0 0 418px;
}
.page-about__sidebar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}
.page-about__sidebar ul .button {
    border: 1px solid var(--beige);
    max-width: 100%;
    width: 100%;
}
.page-about__sidebar ul .button.active {
    border-color: var(--accent);
    color: var(--accent);
    pointer-events: none;
}
.page-about__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-weight: 500;
    gap: 32px;
    margin-top: 85px;
}
.page-about__desc span {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
}
.page-about__desc .button {
    margin-top: 48px;
}
.page-about__img {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
.page-about__img img,
.page-about__img picture {
    aspect-ratio: 1312/600;
    border-radius: 20px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
}
.page-about__slider {
    margin-top: 100px;
    position: relative;
}
.about-slide {
    position: relative;
}
.about-slide__img img {
    aspect-ratio: 417/300;
    border-radius: 20px;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
}
.about-slide__desc {
    background-color: var(--white);
    border-radius: 20px;
    bottom: 20px;
    left: 20px;
    padding: 20px;
    position: absolute;
    right: 20px;
}
.about-slide__desc span {
    color: var(--accent);
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 10px;
}
.about-steps__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.about-steps__list .step-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(25% - 22.5px);
    flex: 0 1 calc(25% - 22.5px);
}
.step-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}
.step-item__count {
    border: 1px solid var(--accent);
    border-radius: 50%;
    height: 120px;
    width: 120px;
}
.step-item__count,
.step-item__count span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.step-item__count span {
    background-color: var(--accent);
    border-radius: 50%;
    color: var(--white);
    font-family: var(--second-family);
    font-size: 52px;
    font-weight: 400;
    height: 100px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    width: 100px;
}
.step-item__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}
.step-item__desc span {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
}
.faq-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
}
.faq-block__form {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 419px;
    flex: 0 0 419px;
}
.faq-block__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}
.faq-block .text,
.faq-block__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
.faq-block .text {
    border-top: 1px solid #cecece;
    margin-top: 24px;
    padding-top: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.faq-block .text__block {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    gap: 16px;
}
.faq-block .text__block,
.faq-block .text__block ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.faq-block .text__block ul {
    gap: 4px;
}
.faq-block .text__block ul li {
    padding-left: 32px;
    position: relative;
}
.faq-block .text__block ul li:before {
    content: "—";
    left: 0;
    position: absolute;
}
.faq-block .text__important {
    background: var(--light-green);
    border-radius: 16px;
    color: var(--white);
    max-width: 383px;
    padding: 20px;
    width: 100%;
}
.faq-block .text__important span {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 8px;
}
.faq-form {
    background: var(--beige);
    border-radius: 20px;
    color: var(--stroke);
    overflow: hidden;
}
.faq-form span {
    color: var(--dark);
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.faq-form form {
    margin-top: 64px;
}
.faq-form--top {
    padding: 42px 42px 0;
}
.faq-form--bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.request-sect--v2 .request-sect__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 753px;
    flex: 0 1 753px;
    margin-top: -140px;
}
.request-sect--v2 .request-sect__desc {
    margin: 0 auto;
}
.about-desc__img {
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}
.about-desc__img img,
.about-desc__img picture {
    aspect-ratio: 1760/980;
    -o-object-fit: cover;
    object-fit: cover;
}
.about-desc__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 18px;
    font-weight: 500;
    gap: 42px;
    line-height: 160%;
    max-width: 1163px;
    width: 100%;
}
.about-desc__text span {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.advatages__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
}
.advatages__list .advatage-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(25% - 22.5px);
    flex: 0 1 calc(25% - 22.5px);
}
.advatage-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background: var(--beige);
    border-radius: 20px;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
}
.advatage-item,
.advatage-item__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.advatage-item__icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    height: 175px;
    justify-content: center;
    margin-top: -55px;
    width: 175px;
}
.advatage-item__desc {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    text-align: center;
    text-transform: uppercase;
}
@media screen and (max-width: 1600px) {
    .h1 {
        font-size: 52px;
    }
    main.main {
        gap: 160px;
        margin-bottom: 160px;
    }
    .mortgage__grid {
        -ms-grid-columns: 407px 1fr;
        grid-template-columns: 407px 1fr;
    }
    .apartments-list {
        gap: 24px 30px;
        margin-top: 24px;
    }
    .apartments-list .apartment-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(33.33333% - 20px);
        flex: 0 1 calc(33.33333% - 20px);
    }
    .main-slide__info {
        max-width: 1300px;
    }
    .new-collection__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 407px;
        flex: 0 1 407px;
    }
    .new-collection-numbers ul li span {
        font-size: 52px;
    }
    .imperia-grid {
        grid-template-areas: "a a a a b b b b b c c c" "d d d e e e f f f f f f";
    }
    .about-block--text {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 516px;
        flex: 0 1 516px;
    }
    .buy-variable__desc {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 517px;
        flex: 0 1 517px;
    }
    .request-sect__desc {
        padding: 64px 60px;
    }
    .page-about__sidebar {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 407px;
        flex: 0 0 407px;
    }
    .page-about__slider {
        margin-top: 70px;
    }
    .faq-block__form {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 407px;
        flex: 0 0 407px;
    }
    .faq-block .text__important {
        max-width: 265px;
    }
    .a {
        -ms-grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-column-span: 4;
    }
    .b {
        -ms-grid-column: 5;
        -ms-grid-row: 1;
        -ms-grid-column-span: 5;
    }
    .c {
        -ms-grid-column: 10;
        -ms-grid-row: 1;
        -ms-grid-column-span: 3;
    }
    .d {
        -ms-grid-column: 1;
        -ms-grid-row: 2;
        -ms-grid-column-span: 3;
    }
    .e {
        -ms-grid-column: 4;
        -ms-grid-row: 2;
        -ms-grid-column-span: 3;
    }
    .f {
        -ms-grid-column: 7;
        -ms-grid-row: 2;
        -ms-grid-column-span: 6;
    }
}
@media screen and (max-width: 1439.5px) {
    body {
        font-size: 16px;
    }
    .container {
        padding: 0 48px;
    }
    .h1 {
        font-size: 30px;
    }
    .h2 {
        font-size: 28px;
    }
    main.main {
        gap: 130px;
        margin-bottom: 130px;
    }
    .bg {
        padding: 48px 0;
    }
    .mb-42 {
        margin-bottom: 32px;
    }
    .mt-header {
        margin-top: 140px;
    }
    .button,
    .input {
        font-size: 16px;
    }
    .accordeon__summary {
        font-size: 20px;
    }
    .footer {
        padding: 48px 0;
    }
    .footer__inner .made-pixel {
        bottom: 0;
        font-size: 12px;
    }
    .footer-sidebar {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 270px;
        flex: 0 0 270px;
    }
    .footer-info {
        padding: 14px 0;
    }
    .footer-info__item {
        padding: 20px 0;
    }
    .burger-icon,
    .footer-info__item a {
        font-size: 18px;
    }
    .address {
        border: 1px solid var(--white);
        border-radius: 8px;
        height: 48px;
        width: 48px;
    }
    .address span {
        display: none;
    }
    .phone-block__header {
        gap: 9px;
    }
    .phone-block__header span {
        display: none;
    }
    .mortgage .h2 {
        margin-bottom: 32px;
    }
    .mortgage__grid {
        -ms-grid-columns: 336px 1fr;
        grid-template-columns: 336px 1fr;
    }
    .mortgage__tabs {
        gap: 20px;
        margin-bottom: 20px;
    }
    .mortgage__tab {
        font-size: 16px;
    }
    .mortgage__result {
        padding: 20px;
    }
    .mc__label {
        font-size: 16px;
    }
    .mc__range {
        -webkit-transform: translate(14px, -18px);
        -ms-transform: translate(14px, -18px);
        transform: translate(14px, -18px);
    }
    .bank-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .bank-row__left .arrow {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .bank-row__right {
        background-color: var(--white);
        border-radius: 8px;
        display: none;
        padding: 20px;
    }
    .bank-row__right.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 32px;
    }
    .bank-row__name {
        font-size: 20px;
    }
    .bank-row__pay,
    .bank-row__rate {
        font-size: 16px;
        text-align: left;
    }
    .bank-row__pay {
        border-left: 1px solid var(--stroke);
        padding-left: 32px;
        text-align: left;
    }
    .popup-gallery .popup__content {
        padding: 48px;
    }
    .popup-gallery .popup__close {
        right: 48px;
        top: 48px;
    }
    .popup__title span:not(.h2) {
        font-size: 18px;
    }
    .popup__slider {
        max-height: 536px;
    }
    .social-fixed {
        padding: 16px;
    }
    .social-fixed ul {
        gap: 20px;
    }
    .social-fixed svg {
        height: 24px;
        width: 24px;
    }
    .apartments-filters__inputs {
        gap: 20px;
    }
    .apartments-filters .custom-select,
    .apartments-filters .custom-select__trigger {
        max-width: 217px;
        min-width: 175px;
        white-space: nowrap;
    }
    .apartments-list {
        gap: 24px 20px;
    }
    .apartments-list .apartment-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
        flex: 0 1 calc(50% - 10px);
    }
    .apartment-item__desc .button {
        margin-top: 20px;
    }
    .apartments-more {
        margin-top: 24px;
        padding-top: 24px;
    }
    .main-slide__info {
        max-width: 770px;
    }
    .main-slider-nav {
        max-width: 220px;
    }
    .main-slider-nav .swiper-pagination {
        font-size: 22px;
    }
    .slider-arrow {
        height: 56px;
        width: 56px;
    }
    .new-collection {
        padding: 48px 0;
    }
    .new-collection .new-collection-numbers {
        margin-top: 20px;
    }
    .new-collection__inner {
        gap: 20px;
    }
    .new-collection__desc {
        gap: 24px;
    }
    .new-collection__desc span {
        font-size: 18px;
        padding-top: 20px;
    }
    .new-collection__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 335px;
        flex: 0 1 335px;
    }
    .new-collection-numbers {
        padding: 24px;
    }
    .new-collection-numbers ul {
        gap: 40px;
    }
    .new-collection-numbers ul li {
        padding-right: 20px;
    }
    .new-collection-numbers ul li span {
        font-size: 30px;
    }
    .new-collection-numbers ul li p {
        font-size: 18px;
    }
    .promo__inner {
        padding-bottom: 42px;
    }
    .promo-header {
        margin-bottom: 32px;
    }
    .promo-header .main-slider-nav {
        bottom: 0;
        left: 50%;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
        position: absolute;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .promo-header .main-slider-nav .swiper-pagination {
        line-height: 100%;
    }
    .promo-header .main-slider-nav .slider-arrow {
        display: none;
    }
    .promo-header .swiper-pagination {
        background: var(--beige);
        border-radius: 20px;
        bottom: 0;
        height: 10px;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }
    .promo-header .swiper-pagination .swiper-pagination-bullet {
        background-color: transparent;
        border-radius: 0;
        height: 10px;
        margin: 0;
        padding: 0;
        -webkit-transform: translateY(-9px);
        -ms-transform: translateY(-9px);
        transform: translateY(-9px);
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        width: 20px;
    }
    .promo-header .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent);
        border-radius: 20px;
    }
    .advantages-block {
        padding: 48px 0;
    }
    .advantages-block .h2 {
        margin-bottom: 32px;
    }
    .advantages-list {
        gap: 20px;
    }
    .advantages-list .advantage-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
        flex: 0 1 calc(50% - 10px);
    }
    .advantage-item {
        min-height: 250px;
    }
    .advantage-item__content {
        padding: 24px;
    }
    .advantage-item__content span {
        font-size: 20px;
    }
    .advantage-item__content .icon {
        bottom: 6px;
        max-width: 115px;
        right: 20px;
    }
    .advantage-item__content .icon img {
        height: 100%;
        width: 100%;
    }
    .advantage-item > img {
        aspect-ratio: 454/250;
    }
    .imperia-grid {
        gap: 20px;
        grid-template-areas: "a a a b b b b b b c c c" "d d d e e e e f f f f f";
    }
    .about-block--text {
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
        gap: 24px;
    }
    .about-block--text span {
        font-size: 20px;
    }
    .buy-variable__desc {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 573px;
        flex: 0 1 573px;
        min-width: 570px;
    }
    .buy-variable__desc .h2 {
        margin-bottom: 32px;
    }
    .variable-item {
        padding: 20px;
    }
    .variable-item span {
        font-size: 18px;
    }
    .progress-header .main-slider-nav {
        bottom: 0;
        left: 50%;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
        position: absolute;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .progress-header .main-slider-nav .swiper-pagination {
        line-height: 100%;
    }
    .progress-header .main-slider-nav .slider-arrow {
        display: none;
    }
    .progress-header .swiper-pagination {
        background: var(--white);
        border-radius: 20px;
        bottom: 0;
        height: 10px;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }
    .progress-header .swiper-pagination .swiper-pagination-bullet {
        background-color: transparent;
        border-radius: 0;
        height: 10px;
        margin: 0;
        padding: 0;
        -webkit-transform: translateY(-9px);
        -ms-transform: translateY(-9px);
        transform: translateY(-9px);
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        width: 20px;
    }
    .progress-header .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent);
        border-radius: 20px;
    }
    .progress-slide a {
        gap: 20px;
    }
    .progress-slide__desc strong {
        font-size: 20px;
    }
    .docs-sect__list {
        padding: 24px;
    }
    .docs-header .custom-select,
    .docs-header .custom-select__trigger {
        max-width: 288px;
    }
    .documnet-item--left {
        gap: 20px;
    }
    .documnet-item--left img {
        height: 56px;
        width: 56px;
    }
    .documnet-item--left strong {
        font-size: 20px;
    }
    .documnet-item--right time {
        width: auto;
    }
    .request-sect__desc,
    .request-sect__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 454px;
        flex: 0 1 454px;
    }
    .success {
        font-size: 12px;
    }
    .gallery-slider .slider-arrow {
        height: 48px;
        min-width: 48px;
        width: 48px;
    }
    .page-about__inner {
        gap: 20px;
        margin-top: 32px;
    }
    .page-about__sidebar {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 336px;
        flex: 0 0 336px;
    }
    .page-about__desc {
        margin-top: 64px;
    }
    .page-about__desc span {
        font-size: 20px;
    }
    .page-about__desc .button {
        margin-top: 0;
    }
    .page-about__slider {
        margin-top: 60px;
    }
    .page-about__slider .swiper-pagination {
        background: var(--beige);
        border-radius: 20px;
        bottom: 0;
        height: 10px;
        left: 50%;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .page-about__slider .swiper-pagination .swiper-pagination-bullet {
        background-color: transparent;
        border-radius: 0;
        height: 10px;
        margin: 0;
        padding: 0;
        -webkit-transform: translateY(-9px);
        -ms-transform: translateY(-9px);
        transform: translateY(-9px);
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        width: 20px;
    }
    .page-about__slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent);
        border-radius: 20px;
    }
    .about-slider {
        padding-bottom: 42px;
    }
    .about-slide__desc span {
        font-size: 20px;
    }
    .about-steps__list {
        gap: 20px;
    }
    .about-steps__list .step-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
        flex: 0 1 calc(50% - 10px);
    }
    .step-item {
        gap: 20px;
    }
    .step-item__count {
        height: 80px;
        width: 80px;
    }
    .step-item__count span {
        font-size: 30px;
        height: 67px;
        width: 67px;
    }
    .step-item__desc span {
        font-size: 20px;
    }
    .faq-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
    .faq-block__form {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .faq-block__list {
        gap: 20px;
    }
    .faq-block .text {
        margin-top: 20px;
        padding-top: 20px;
    }
    .faq-block .text__important {
        padding: 16px;
    }
    .faq-block .text__important span {
        font-size: 20px;
    }
    .faq-form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
    .faq-form span {
        margin-bottom: 20px;
    }
    .faq-form form {
        margin-top: 32px;
    }
    .faq-form--top {
        padding: 32px;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 486px;
        flex: 0 1 486px;
    }
    .faq-form--bottom {
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
    }
    .faq-form--bottom img {
        aspect-ratio: 685/458;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: top;
        object-position: top;
    }
    .request-sect--v2 .request-sect__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 454px;
        flex: 0 1 454px;
        margin-top: -70px;
    }
    .request-sect--v2 .request-sect__img img {
        -o-object-position: 0;
        object-position: 0;
    }
    .request-sect--v2 .request-sect__desc {
        padding: 48px;
    }
    .about-desc__text {
        font-size: 16px;
    }
    .about-desc__text span {
        font-size: 18px;
    }
    .advatages__list {
        gap: 20px;
    }
    .advatages__list .advatage-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
        flex: 0 1 calc(50% - 10px);
    }
    .advatage-item {
        gap: 10px;
    }
    .advatage-item__icon {
        height: 150px;
        width: 150px;
    }
    .advatage-item__desc {
        font-size: 18px;
    }
    .a {
        -ms-grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-column-span: 5;
    }
    .b {
        -ms-grid-column: 7;
        -ms-grid-row: 1;
        -ms-grid-column-span: 11;
    }
    .c {
        -ms-grid-column: 19;
        -ms-grid-row: 1;
        -ms-grid-column-span: 5;
    }
    .d {
        -ms-grid-column: 1;
        -ms-grid-row: 3;
        -ms-grid-column-span: 5;
    }
    .e {
        -ms-grid-column: 7;
        -ms-grid-row: 3;
        -ms-grid-column-span: 7;
    }
    .f {
        -ms-grid-column: 15;
        -ms-grid-row: 3;
        -ms-grid-column-span: 9;
    }
}
@media screen and (max-width: 1439.5px) and (max-width: 767.5px) {
    .progress-header .swiper-pagination .swiper-pagination-bullet,
    .promo-header .swiper-pagination .swiper-pagination-bullet {
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    .page-about__slider .swiper-pagination .swiper-pagination-bullet {
        -webkit-transform: translateY(-7px);
        -ms-transform: translateY(-7px);
        transform: translateY(-7px);
    }
}
@media screen and (max-width: 1023.5px) {
    .footer__inner {
        gap: 20px;
    }
    .footer-info {
        padding: 0;
    }
    .header .logo {
        max-width: 200px;
    }
    .header-fix .address,
    .page .header .address {
        border-color: var(--dark);
    }
    .header__column {
        gap: 20px;
    }
    .mortgage .h2 {
        margin-bottom: 20px;
    }
    .mortgage__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .mortgage__banks {
        height: 380px;
    }
    .mortgage__tabs {
        display: none;
    }
    .mortgage__select {
        display: block;
        margin-bottom: 20px;
    }
    .apartments-list .apartment-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .main-slide__info {
        max-width: 710px;
    }
    .new-collection__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .new-collection__img img {
        aspect-ratio: 672/300;
    }
    .new-collection-numbers {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
        padding: 32px;
    }
    .new-collection-numbers ul,
    .new-collection-numbers__btn {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
    }
    .new-collection-numbers__btn {
        max-width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .new-collection-numbers__btn p {
        font-size: 12px;
        max-width: 170px;
    }
    .advantages-list .advantage-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .advantage-item {
        min-height: 200px;
    }
    .advantage-item--icon p {
        max-width: 80%;
    }
    .imperia-grid {
        grid-template-areas: "a a a a a b b b b b b b" "c c c c c c d d d d d d" "e e e e e e f f f f f f";
    }
    .c,
    .d {
        height: 300px;
        min-height: 250px;
    }
    .buy-variable__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
    .buy-variable__desc {
        min-width: auto;
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .buy-variable__img {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 300px;
        flex: 1 1 300px;
    }
    .progress-header__filter > * {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 45%;
        flex: 1 1 45%;
    }
    .progress-header__filter .custom-select {
        max-width: 100%;
    }
    .progress-header__filter .button {
        max-width: 100%;
        width: 100%;
    }
    .docs-sect__list {
        gap: 24px;
        padding: 20px;
    }
    .request-sect__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .request-sect__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 206px;
        flex: 0 1 206px;
    }
    .request-sect__img img,
    .request-sect__img picture {
        aspect-ratio: 672/206;
    }
    .request-sect__desc {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        padding: 32px;
    }
    .page-about__sidebar {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 326px;
        flex: 0 0 326px;
    }
    .faq-block .text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
    }
    .faq-block .text__block {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        width: 100%;
    }
    .faq-block .text__important {
        max-width: 100%;
    }
    .faq-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .faq-form span {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .faq-form--top {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .faq-form--bottom {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 210px;
        flex: 0 0 210px;
        position: relative;
    }
    .faq-form--bottom img {
        aspect-ratio: 548/367;
        -o-object-position: 50px -21px;
        object-position: 50px -21px;
        position: absolute;
    }
    .a {
        -ms-grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-column-span: 5;
    }
    .b {
        -ms-grid-column: 6;
        -ms-grid-row: 1;
        -ms-grid-column-span: 7;
    }
    .c {
        -ms-grid-column: 1;
        -ms-grid-row: 2;
        -ms-grid-column-span: 6;
    }
    .d {
        -ms-grid-column: 7;
        -ms-grid-row: 2;
        -ms-grid-column-span: 6;
    }
    .e {
        -ms-grid-column: 1;
        -ms-grid-row: 3;
        -ms-grid-column-span: 6;
    }
    .f {
        -ms-grid-column: 7;
        -ms-grid-row: 3;
        -ms-grid-column-span: 6;
    }
}
@media screen and (max-width: 767.5px) {
    body {
        font-size: 15px;
    }
    .container {
        padding: 0 24px;
    }
    .h1 {
        font-size: 23px;
    }
    .h2 {
        font-size: 22px;
    }
    main.main {
        gap: 110px;
        margin-bottom: 110px;
    }
    .bg {
        padding: 24px 0;
    }
    .mb-42 {
        margin-bottom: 20px;
    }
    .button,
    .input {
        font-size: 15px;
    }
    .custom-select {
        max-width: 100%;
    }
    .custom-select__trigger {
        font-size: 15px;
        max-width: 100%;
        padding: 15px 48px 15px 24px;
        width: 100%;
    }
    .custom-select__option {
        font-size: 15px;
    }
    .accordeon {
        padding: 24px;
    }
    .accordeon__summary {
        font-size: 18px;
    }
    .footer {
        padding: 32px 0;
    }
    .footer .logo {
        margin: 0 auto;
    }
    .footer__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer__inner .made-pixel {
        position: static;
    }
    .footer-sidebar {
        -webkit-box-flex: 1;
        border-right: none;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
    .footer-info__item {
        padding: 16px 0;
    }
    .footer-info__item:first-child {
        padding-top: 0;
    }
    .footer-info__item:last-child {
        border-bottom: 1px solid var(--stroke);
    }
    .footer-info__item a {
        font-size: 14px;
    }
    .header .address {
        display: none;
    }
    .header .logo {
        max-width: 160px;
    }
    .burger-icon__text {
        display: none;
    }
    .mortgage__tab {
        font-size: 15px;
    }
    .mc__input {
        font-size: 18px;
        line-height: 130%;
    }
    .mc__range {
        -webkit-transform: translate(14px, -17px);
        -ms-transform: translate(14px, -17px);
        transform: translate(14px, -17px);
    }
    .bank-row__right.active {
        gap: 24px;
    }
    .bank-row__pay,
    .bank-row__rate {
        font-size: 15px;
    }
    .bank-row__pay {
        padding-left: 24px;
    }
    .popup__content {
        max-width: 368px;
        padding: 35px;
    }
    .popup-gallery .popup__content {
        padding: 24px;
    }
    .popup-gallery .popup__close {
        right: 24px;
        top: 24px;
    }
    .popup__title {
        margin-bottom: 28px;
    }
    .popup__title span:not(.h2) {
        font-size: 16px;
    }
    .apartments-filters__inputs {
        gap: 16px;
    }
    .apartments-filters .custom-select,
    .apartments-filters .custom-select__trigger {
        min-width: auto;
    }
    .apartments-filters .button {
        max-width: 100%;
        width: 100%;
    }
    .apartment-item__desc ul li small {
        font-size: 12px;
    }
    .main-slider-nav {
        max-width: 190px;
    }
    .main-slider-nav .swiper-pagination {
        font-size: 14px;
    }
    .new-collection__img img {
        aspect-ratio: 366/250;
    }
    .new-collection-numbers {
        gap: 20px;
        padding: 16px;
    }
    .new-collection-numbers ul {
        gap: 10px;
    }
    .new-collection-numbers ul li {
        padding-right: 10px;
    }
    .new-collection-numbers ul li span {
        font-size: 23px;
    }
    .new-collection-numbers ul li p {
        font-size: 14px;
    }
    .new-collection-numbers__btn {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
    }
    .new-collection-numbers__btn .button {
        max-width: 100%;
        width: 100%;
    }
    .new-collection-numbers__btn p {
        max-width: 100%;
    }
    .promo-header {
        margin-bottom: 20px;
    }
    .advantages-block {
        padding: 24px 0;
    }
    .advantages-block .h2 {
        margin-bottom: 20px;
    }
    .advantage-item {
        min-height: 256px;
    }
    .advantage-item--icon p {
        max-width: 100%;
    }
    .advantage-item__content {
        padding: 20px;
    }
    .advantage-item__content .icon {
        bottom: 0;
        margin-left: auto;
        position: relative;
        right: 0;
    }
    .imperia-grid {
        -ms-grid-columns: 1fr;
        grid-template-areas: "a" "b" "c" "d" "e" "f";
        grid-template-columns: 1fr;
    }
    .about-block--text span {
        font-size: 18px;
    }
    .a {
        min-height: auto;
    }
    .a,
    .c,
    .d,
    .f {
        height: 250px;
    }
    .f {
        min-height: auto;
    }
    .buy-variable__desc .h2 {
        margin-bottom: 20px;
    }
    .buy-variable__img {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 256px;
        flex: 1 1 256px;
    }
    .variable-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 20px;
    }
    .variable-item span {
        font-size: 14px;
        line-height: 130%;
    }
    .variable-item .button {
        max-width: 100%;
        width: 100%;
    }
    .progress-header {
        margin-bottom: 24px;
    }
    .progress-header__filter {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 16px;
    }
    .progress-header__filter > * {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .docs-header .custom-select,
    .docs-header .custom-select__trigger {
        max-width: 100%;
    }
    .documnet-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 20px;
    }
    .documnet-item--left strong {
        font-size: 18px;
    }
    .documnet-item--right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 12px;
    }
    .documnet-item--right,
    .documnet-item--right .button {
        max-width: 100%;
        width: 100%;
    }
    .request-sect__desc {
        padding: 24px 32px 32px;
    }
    .gallery-slider .main-slider-nav {
        max-width: 210px;
    }
    .gallery-slide img,
    .gallery-slide picture {
        aspect-ratio: 366/592;
    }
    .page-about__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .page-about__sidebar {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        width: 100%;
    }
    .page-about__sidebar ul {
        gap: 10px;
    }
    .page-about__desc {
        gap: 16px;
        margin-top: 24px;
    }
    .page-about__desc span {
        font-size: 18px;
    }
    .page-about__desc .button {
        margin-top: 8px;
        max-width: 100%;
        width: 100%;
    }
    .page-about__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
        flex: 0 0 300px;
    }
    .page-about__slider {
        margin-top: 40px;
    }
    .about-slider {
        padding-bottom: 34px;
    }
    .about-slide__desc span {
        font-size: 18px;
    }
    .about-slide__desc p {
        font-size: 15px;
    }
    .about-steps__list .step-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .step-item__count span {
        font-size: 23px;
    }
    .step-item__desc {
        font-size: 15px;
    }
    .step-item__desc span {
        font-size: 18px;
    }
    .faq-block .text {
        gap: 16px;
        margin-top: 16px;
        padding-top: 16px;
    }
    .faq-block .text__important span {
        font-size: 18px;
    }
    .faq-form--bottom img {
        -o-object-position: 0 0;
        object-position: 0 0;
    }
    .request-sect--v2 .request-sect__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
        flex: 0 0 250px;
        margin-top: -50px;
    }
    .request-sect--v2 .request-sect__desc {
        padding: 24px;
    }
    .about-desc__text,
    .about-desc__text span {
        font-size: 15px;
    }
    .advatages__list .advatage-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .advatage-item__icon {
        height: 140px;
        width: 140px;
    }
    .advatage-item__desc {
        font-size: 14px;
    }
    .a {
        -ms-grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-column-span: 1;
    }
    .b {
        -ms-grid-column: 1;
        -ms-grid-row: 2;
        -ms-grid-column-span: 1;
    }
    .c {
        -ms-grid-column: 1;
        -ms-grid-row: 3;
        -ms-grid-column-span: 1;
    }
    .d {
        -ms-grid-column: 1;
        -ms-grid-row: 4;
        -ms-grid-column-span: 1;
    }
    .e {
        -ms-grid-column: 1;
        -ms-grid-row: 5;
        -ms-grid-column-span: 1;
    }
    .f {
        -ms-grid-column: 1;
        -ms-grid-row: 6;
        -ms-grid-column-span: 1;
    }
}
