html {
    font-family: var(--font_1);
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    min-height: 100vh;
}


body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    overflow-y: auto;

    transition: padding 0s;
}

main {
    display: block;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
    display: block;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

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

button,
input {
    overflow: visible;
    width: 100%;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

:is(ul, ol) {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

a,
button,
label,
input[type="submit"] {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: unset;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    vertical-align: baseline;
    -webkit-tap-highlight-color: transparent;

    transition: padding .2s, gap .2s, color .2s;
}

body.__mobileMenuActive {}

body.__stopScrolling {}

.swiper-slide {
    width: fit-content;
}

.swiper-button-lock {
    display: none !important;
}

p {
    font-weight: 400;
    font-size: 22px;
    line-height: 140%;
    color: #25252A;
}

















/*
//////////////////
/////////////
/////////
VAR
/////////
/////////////
////////////////
*/
:root {
    --sidePadding: clamp(16px, 6vw, 76px);
    --baseVW: 5vw;
    --font_1: 'Commissioner';
}

strong {
    font-weight: 700;
}
























/*
//////////////////
/////////////
/////////
DEFAULT SCROLLBAR STYLE
/////////
/////////////
////////////////
*/
.scrollbarStyle::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}


.scrollbarStyle::-webkit-scrollbar-track {
    background: #ededed;
    border-radius: 80px;
    transition: transform .6s;
}

.scrollbarStyle::-webkit-scrollbar-thumb {
    background-image: linear-gradient(48.86deg, rgb(191, 118, 50) 0.003%, rgb(255, 192, 94) 95.132%);
    border-radius: 80px;
    height: 6px;
    width: 6px;

    transition: transform .6s;
}


.scrollbarStyle::-webkit-scrollbar-track:disabled,
.scrollbarStyle::-webkit-scrollbar-thumb:disabled {
    background: #fff0;
}

























/*
//////////////////
/////////////
/////////
BTN
/////////
/////////////
////////////////
*/

.btnsCont {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
}

.btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: max-content;
    max-width: 100%;
    box-sizing: border-box;

    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    cursor: pointer;

    /*------------------------------------*/
    color: #D05539;
    font-family: var(--font_1);
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;

    padding: 15px 0;
    height: min-content;

    
    background: transparent;

    opacity: 1;

    transition: all .2s;
}

.btn--dark {
	border-radius: 5px;
	background: #FF862F;
	padding: 18px 60px;
	
	font-weight: 700;
	font-size: 18px;
	line-height: 110%;
	color: #FFFFFF;
}

.btn--white {
    color: rgb(59, 183, 45);

    box-sizing: border-box;
    border: 1px solid rgb(223, 239, 222);
    border-radius: 5px;
    background: rgb(255, 255, 255);
}

.btn--white:active {
    background: rgb(241, 241, 241);
}

.btn--text {
    border: unset;
    color: #D05539;
    background: none;
    padding: 0px;
    text-align: left;
    
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
}

.btn--slider {
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 3px;

    max-width: 52px;
    min-width: 52px;
    aspect-ratio: 1/1;

    background: rgb(243, 243, 243);
}

.btn--slider::before {
    content: '';
    display: block;
    position: absolute;

    width: 24px;
    height: 24px;

    background: #D05539;
    mask: url(../img/arrow_thin.svg) center / contain no-repeat;
    -webkit-mask: url(../img/arrow_thin.svg) center / contain no-repeat;
}

.btn--slider.swiper-button-disabled {
    filter: grayscale(100%);
    opacity: .6;
}

.btn--slider--next::before {
    rotate: -90deg;
}

.btn--slider--prev::before {
    rotate: 90deg;
}

.btn--slider--next:not(.swiper-button-disabled):active {
    translate: 5px 0;
}

.btn--slider--prev:not(.swiper-button-disabled):active {
    translate: -5px 0;
}

.btn:not(.swiper-button-disabled):hover {
    opacity: .8;
}

.btn:not(.btn--text, .swiper-button-disabled):active {
    opacity: .7;
}

.btn--text:not(.swiper-button-disabled):active {
    opacity: .7;
}
























/*
//////////////////
/////////////
/////////
TAPOGRAPHY
/////////
/////////////
////////////////
*/

.h2 {
    color: rgb(21, 21, 21);
    font-family: var(--font_1);
    font-size: clamp(28px, var(--baseVW) + 10px, 50px);
    font-weight: 400;
    line-height: clamp(46px, var(--baseVW) + 20px, 60px);
    letter-spacing: 0%;
    text-align: center;

    word-break: break-word;
}













/*
//////////////////
/////////////
/////////
CONTAINER
/////////
/////////////
////////////////
*/
.container {
    width: 100%;
    padding: 0 var(--sidePadding);
    box-sizing: border-box;
    margin: 0 auto;

    min-width: 0;
}

.container--1180 {
    max-width: calc(1180px + (var(--sidePadding) * 2));
}

.container--1360 {
    max-width: calc(1360px + (var(--sidePadding) * 2));
}

.container--1420 {
    max-width: calc(1420px + (var(--sidePadding) * 2));
}

.container--510 {
    max-width: calc(510px + (var(--sidePadding) * 2));
}




















/*
//////////////////
/////////////
/////////
POPUP
/////////
/////////////
////////////////
*/
.popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    opacity: 0;
    z-index: 199;

    pointer-events: none;
    transition: opacity .1s;
}

.popup--article {
    align-items: flex-start;
}

.popup.popup--active {
    opacity: 1;
    pointer-events: all;
    transition: opacity .3s;
}

.popup:not(.popup.popup--active) * {
    pointer-events: none;
}

.popup::before {
    content: '';
    display: block;
    position: fixed;

    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100vw;
    height: 100vh;

    background: rgb(193, 178, 162, 0.7);
    backdrop-filter: blur(0px);

    transition: backdrop-filter 0s;

    z-index: -1;
}

.popup--active::before {
    transition: backdrop-filter 2s;
    backdrop-filter: blur(10px);
}

.popup__inner {
    position: relative;

    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}

.popup--article .popup__inner {
    width: 100%;
}

.popup__close {
    position: absolute;
    top: 0;
    left: calc(100% + 24px);

    display: flex;
    justify-content: center;
    align-items: center;

    width: 56px;
    aspect-ratio: 1/1;

    border-radius: 8px;
    background: rgb(185, 137, 9);

    opacity: 1;
    cursor: pointer;
    transition: all .1s;

    z-index: 1;
}

.popup__close::after {
    content: '';
    position: absolute;

    width: 32px;
    height: 32px;

    background: #ffffff;
    mask: url(../img/Close_32.svg) center center / contain no-repeat;
    -webkit-mask: url(../img/Close_32.svg) center center / contain no-repeat;
}

.popup__close:hover {
    opacity: .8;
}























/*
//////////////////
/////////////
/////////
BREADCRUMB
/////////
/////////////
////////////////
*/
.breadcrambs {
    width: 100%;
    padding: 0 0 15px;
    box-sizing: border-box;
}

.breadcrambs:first-child {
    margin-top: 0;
}

.breadcrambs__content {
    display: flex;
	justify-content: center;
	
    flex-wrap: wrap;
    gap: 5px;

    width: 100%;

    background: transparent;
}

.breadcrambs__elem {
    display: flex;
    align-items: center;

    color: #6b6964;
    font-family: 'Commissioner';
    font-size: 15px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: left;

    transition: all .1s;
    cursor: pointer;
}

.breadcrambs__elem.breadcrambs__elem--active {
    color: #242320;
}

.breadcrambs__elem:not(.breadcrambs__elem--active):hover {
    color: #b0b0b0;
}

.breadcrambs__elem:not(:first-child)::before {
    content: '-';
    display: block;
    margin-right: 5px;
    white-space: nowrap;
}



















/*
//////////////////
/////////////
/////////
LIGHTBOX
/////////
/////////////
////////////////
*/
.lightbox {
    --maxHeight: clamp(0px, 100% - 100px, 700px);
    --maxWidth: clamp(0px, 100% - var(--sidePadding) * 4, 1420px);

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 0;
    width: 100vw;
    max-width: 100vw;

    height: 100vh;
    box-sizing: border-box;
    margin: 0 auto;

    opacity: 0;
    z-index: 200;

    pointer-events: none;
    transition: opacity .3s;

    overflow: hidden;
}

.lightbox.ag-lightbox-active {
    opacity: 1;
    pointer-events: all;
}

.lightbox::before {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 100vh;

    background: #25262bb3;

    z-index: -1;
}

.lightbox__container {
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;

    min-width: 0;
    width: 100%;
    height: 100%;
    max-height: var(--maxHeight);
    max-width: var(--maxWidth);
}

.lightbox__inner {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    max-width: 100%;
}

.lightbox__wrapper {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
    width: 100%;
}

.lightbox .ag-lightbox-slide {
    overflow: hidden;

    opacity: 0;

    height: 100%;
    width: 100%;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.lightbox .ag-lightbox-slide-active {
    position: relative;
    opacity: 1;
}

.lightbox .ag-lightbox-img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/*lightbox__btn*/
.lightbox__btn {
    position: absolute;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 50px;
    aspect-ratio: 1/1;

    background: #ffffff;

    opacity: 1;
    cursor: pointer;
    transition: all .1s;

    transform: translate(0, 0);

    z-index: 1;
}

.lightbox__btn--prev {
    right: calc(100% + 41px);
    mask: url(../img/Arrow_left_24.svg) center / 24px no-repeat;
    -webkit-mask: url(../img/Arrow_left_24.svg) center / 24px no-repeat;
}

.lightbox__btn--next {
    left: calc(100% + 41px);
    mask: url(../img/Arrow_right_24.svg) center / 24px no-repeat;
    -webkit-mask: url(../img/Arrow_right_24.svg) center / 24px no-repeat;
}

.lightbox__btn.ag-lightbox-btn-disabled {
    opacity: .4;
}

.lightbox__btn:not(.ag-lightbox-btn-disabled):hover {
    opacity: .8;
}

.lightbox__btn:not(.ag-lightbox-btn-disabled):active {
    opacity: 1;
}

.lightbox__btn--prev:not(.ag-lightbox-btn-disabled):active {
    transform: translate(-2px, 0);
}

.lightbox__btn--next:not(.ag-lightbox-btn-disabled):active {
    transform: translate(2px, 0);
}

/*lightbox__close*/
.lightbox__close {
    position: absolute;
    top: 0;
    left: clamp(100% + 5px, 100% + 64px, (100% + var(--sidePadding) * 2) - 61px);

    display: flex;
    justify-content: center;
    align-items: center;

    width: 56px;
    height: 56px;
    aspect-ratio: 1/1;

    border-radius: 8px;
    background: rgb(160, 136, 89);

    opacity: 1;
    cursor: pointer;
    transition: all .1s;

    z-index: 1;
}

.lightbox__close::after {
    content: '';
    position: absolute;

    width: 32px;
    height: 32px;

    background: #ffffff;
    mask: url(../img/Close_32.svg) center center / contain no-repeat;
    -webkit-mask: url(../img/Close_32.svg) center center / contain no-repeat;
}

.lightbox__close:hover {
    opacity: .8;
}



















/*
//////////////////
/////////////
/////////
OTHER
/////////
/////////////
////////////////
*/
.desctopHidden:not(.__mobile .desctopHidden) {
    display: none;
}

.__mobile .mobileHidden {
    display: none;
}


















/*
//////////////////
/////////////
/////////
LOGO
/////////
/////////////
////////////////
*/
.logo {
    display: flex;
    align-items: center;
    max-width: max-content;
}

.logo--footer {
    align-items: flex-start;
    margin-bottom: 31px;
}

.footer__top .logo--footer {
    display: none;
}

.logo__textContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 5px 15px;
}

.logo--header .logo__textContainer>* {
    max-width: max-content;
    flex: 1;
}

.logo--footer .logo__textContainer {
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
}

.logo__title {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 24px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -1px;
    text-align: left;

    white-space: nowrap;
}

.logo__desc {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 15px;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
    text-wrap: balance;
}

.logo--footer .logo__desc {
    max-width: 203px;
}

.logo__orange {
    color: #ED7632;
}

.logo__green {
    color: #3BB72D;
}


















/*
//////////////////
/////////////
/////////
pagination
/////////
/////////////
////////////////
*/
.pagination {
    display: flex;
    justify-content: center;
    gap: clamp(5px, var(--baseVW) - 20px, 10px);
    width: 100%;
}

.pagination a,
.pagination span {
    color: #9696A0;
    font-family: 'Commissioner';
    font-size: clamp(20px, var(--baseVW) - 14px, 26px);
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: clamp(40px, var(--baseVW) + 16px, 70px);
    max-width: clamp(40px, var(--baseVW) + 16px, 70px);
    aspect-ratio: 1/1;

    box-sizing: border-box;
    border: 1px solid #0000001A;
    border-radius: 5px;
    background: #F5F5F5;

    transition: all .2s;
}

.pagination span,
.pagination a:hover {
    border: 1px solid #0000001A;
    background: #FF862F;
    color: #fff;
}
































/*
//////////////////
/////////////
/////////
HEADER
/////////
/////////////
////////////////
*/

.header {
    position: relative;
    width: 100%;
}

.header__inner {
    width: 100%;
}

.header__top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0px 14px;
}

.header__top__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__top__right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 40px;
}

.mediaIcons {
    display: flex;
    gap: 10px;
}

.mediaIcons-icon {
    max-width: 35px;
    min-width: 35px;
    aspect-ratio: 1/1;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    background-color: #fff0;

    opacity: 1;
    cursor: pointer;
    transition: all .2s;
}

.mediaIcons-icon:hover {
    opacity: .8;
}

.mediaIcons-icon:active {
    opacity: .7;
}

.mediaIcons-icon--whatsapp {
    background-image: url(../img/whatsapp_35.svg);
}

.mediaIcons-icon--telegram {
    background-image: url(../img/telegram_35.svg);
}

.header__phone {
	display: flex;
	flex-direction: column;
	gap: 5px;
	
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}

.header__phone a {
	font-size: 24px;
    font-weight: 700;
    
    transition: all .5s;
}

.header__phone a:hover {
    opacity: .75;
}

.header__btn {}

.header__bottom {}

































/*
//////////////////
/////////////
/////////
header__NAV
/////////
/////////////
////////////////
*/
.header__nav {
    display: flex;
    gap: 30px;

    padding: 14px 0;

    --submenuPaddingTopBottom: 15px;
    --submenuPaddingLeftRight: 15px;
}

.header__nav .mobile {
    display: none;
}

.header__nav__ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;

    width: 100%;
}

.header__nav .menu-item {
    display: flex;
    position: relative;

    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    transition: all .1s;
}

.header__nav .menu-item>a {
    display: block;
    height: 100%;
    text-align: left;

    transition: all .1s;
}

.header__nav .menu-item-has-children {}

.header__nav .menu-item-has-children>a {
    display: flex;
    align-items: center;
    position: relative;
}

.header__nav .menu-item-has-children>a::after {
    content: '';
    display: block;

    max-width: 14px;
    min-width: 14px;
    aspect-ratio: 1/1;
    height: 100%;
    margin-left: 9px;

    background: url(../img/arrow_thin.svg) center / contain no-repeat;

    transition: all .1s;
}

.header__nav .menu-item--active>a::after {
    transform: scale(1, -1);
}

.header__nav .sub-menu {
    min-width: 280px;

    position: absolute;
    top: 100%;
    left: calc(-1 * var(--submenuPaddingLeftRight));

    display: flex;
    flex-direction: column;

    border-radius: 0px 0px 5px 5px;
    background: #fff;

    -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.07);

    opacity: 0;
    pointer-events: none;
}

.header__nav .sub-menu.menu-item--active {
    opacity: 1;
    pointer-events: all;

    z-index: 10;
}

.header__nav .sub-menu .menu-item {
    font-size: 18px;
}

.header__nav .sub-menu>.menu-item>a {
    width: 100%;
    padding: 5px var(--submenuPaddingLeftRight);
}

.header__nav .sub-menu>.menu-item:first-child>a {
    padding-top: var(--submenuPaddingTopBottom);
}

.header__nav .sub-menu>.menu-item:last-child>a {
    padding-bottom: var(--submenuPaddingTopBottom);
}


.header__nav .menu-item:hover {
    color: rgba(86, 85, 81, 0.6);
}

/* .header__nav .menu-item.current-menu-item {
    color: rgb(177, 133, 17);
}

.header__nav .menu-item.current-menu-item::before {
    content: '';
    position: absolute;

    display: block;

    width: 100%;
    left: 0;
    bottom: 0;

    height: 4px;

    background: linear-gradient(48.86deg, rgb(191, 118, 50) 0.014%, rgb(255, 192, 94) 95.129%);
} */

.header__nav__mobileBlock {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}


































/*
//////////////////
/////////////
/////////
MENU BUTTON
/////////
/////////////
////////////////
*/
.menuBtn {
    align-self: center;

    display: none;
    align-items: center;
    justify-content: center;
    position: relative;

    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    max-height: 30px;

    cursor: pointer;
}

.menuBtn__cont {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;

    width: 100%;
    height: 22px;

    box-sizing: border-box;
}

.menuBtn__cont::after,
.menuBtn__cont::before,
.menuBtn__span {
    display: block;

    width: 100%;
    min-height: 4px;
    max-height: 4px;

    background: #FF862F;
    border-radius: 100px;

    transition: all .2s;
}

.menuBtn__span {
    position: relative;
}

.menuBtn__cont::after,
.menuBtn__cont::before {
    content: '';
    position: absolute;
    transform: rotate(0deg);
}

.menuBtn__cont::after {
    top: 0;
}

.menuBtn__cont::before {
    bottom: 0;
}

.menuBtn--active .menuBtn__span {
    background: #3bb72d00;
}

.menuBtn--active .menuBtn__cont::after,
.menuBtn--active .menuBtn__cont::before {}

.menuBtn--active .menuBtn__cont::after {
    top: calc(50% - 1px);
    transform: rotate(45deg);
}

.menuBtn--active .menuBtn__cont::before {
    bottom: calc(50% - 1px);
    transform: rotate(-45deg);
}





















/*
//////////////////
/////////////
/////////
MAIN
/////////
/////////////
////////////////
*/
.main {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    min-height: 500px;
}

.main>*:not(.breadcrambs) {
    margin-bottom: 100px;
}

.main>*:not(.breadcrambs):last-child {
    margin-bottom: 0;
}




















/*
//////////////////
/////////////
/////////
CTA_Block
/////////
/////////////
////////////////
*/
.CTA_Block {
    width: 100%;
    margin: 80px 0 30px;
}

.CTA_Block__inner {
    width: 100%;
    height: auto;
    box-sizing: border-box;

    border-radius: 30px;

    overflow: hidden;
}

.CTA_Block.CTA_Block--1 {
    margin: 0 0 120px;
}

.CTA_Block--1 .CTA_Block__inner {
    background: #F5F5F5 center / cover no-repeat;
}

.CTA_Block--4 .CTA_Block__inner {
	position: relative;
	overflow: unset;
    padding: clamp(30px, var(--baseVW), 50px) 50px clamp(30px, var(--baseVW) + 10px, 50px);  
	background: #25252A;
    gap: 60px;
	border-radius: 15px;
}

.CTA_Block--4.CTA_Block--main .CTA_Block__content {
    max-width: 55%;
}

.CTA_Block--4 .CTA_Block__inner::before {
	content: '';
	background: url(../img/lead-bg-4.png) center / cover no-repeat;
	width: 710px;
	height: 353px;
	position: absolute;
	right: 0;
	bottom: 0;
}

.CTA_Block--4.CTA_Block--main .CTA_Block__inner::before {
	content: '';
	background: url(../img/lead-main.png) center / cover no-repeat;
	width: 625px;
	height: 459px;
	position: absolute;
	right: 40px;
	bottom: 0;
}

.CTA_Block--4.CTA_Block--main .CTA_Block__title {
    line-height: 100%;
}

.CTA_Block--5 .CTA_Block__inner {
    position: relative;
    background: url(../img/form_bg_2.png) center / cover no-repeat;
    gap: 30px;
}

.CTA_Block--5 .CTA_Block__inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(820px);

    width: 545px;

    aspect-ratio: 546/453;

    background: url(../img/form_img_1.png) center / contain no-repeat;
}

.CTA_Block__content {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
    padding: 45px clamp(20px, var(--baseVW) + 5px, 45px);
    height: auto;
    box-sizing: border-box;

    border-radius: 15px;

    z-index: 1;
}

.CTA_Block--1 .CTA_Block__content {
    padding: 55px 90px;
    max-width: 780px;
    
    margin: 0 auto;
}

.CTA_Block--1 .CTA_Block__inner {
    position: relative;
}

.CTA_Block--1 .CTA_Block__inner:before {
    content: '';
    width: 430px;
    height: 379px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(../img/banner-top_left.png);
}

.CTA_Block--1 .CTA_Block__inner:after {
    content: '';
    
    width: 450px;
    height: 387px;
    
    position: absolute;
    bottom: 0;
    left: 0;
    
    background: url(../img/banner-top_right.png);
}

.CTA_Block--2 .CTA_Block__content {
    background: url(../img/form_bg_1.png) center / cover no-repeat;
}

.CTA_Block--3 .CTA_Block__content {
    background: url(../img/form_bg_2.png) center / cover no-repeat;
}

.CTA_Block--4 .CTA_Block__content {
    padding: 0px;
    max-width: 50%;
}

.CTA_Block--5 .CTA_Block__content {
    padding: 90px 90px;
    max-width: 907px;
}

.CTA_Block--4 .form {
    flex: 360;
    min-width: 360px;
}

:is(.CTA_Block--3, .CTA_Block--5) .form__inner {
    border-radius: 0px;
    background: unset;
    padding: 0px;
}

.CTA_Block--5 .form__inputsCont {
    align-self: flex-start;
}

.CTA_Block--5 .form__submit {
    max-width: unset;
}

.CTA_Block__content>* {
    margin-bottom: 20px;
}

.CTA_Block__content>*:last-child {
    margin-bottom: 0px;
}

.CTA_Block__content__footer {
    display: flex;
    align-items: flex-end;
    flex: 1;
}

.CTA_Block__title {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: 27px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 10px;
}

.CTA_Block--1 .CTA_Block__title {
    font-size: clamp(38px, var(--baseVW) + 10px, 50px);
    font-weight: 700;
    text-align: center;

    margin-bottom: 10px;
}

.CTA_Block--1 .CTA_Block__title strong {
      color: #D05539; 
}

:is(.CTA_Block--4, .CTA_Block--5) .CTA_Block__title {
    color: rgb(255, 255, 255);
    font-family: 'Commissioner';
    font-size: clamp(36px, var(--baseVW) + 8px, 60px);
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 10px;
}

.CTA_Block__subtitle {
    position: relative;

    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 20px;
}

.CTA_Block--1 .CTA_Block__subtitle {
    font-size: clamp(16px, var(--baseVW) - 14px, 22px);
    text-align: center;
    
    margin-bottom: 35px;
}

.CTA_Block--4 .CTA_Block__subtitle {
    color: #F5F5F5;
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 20px;
}

.CTA_Block--5 .CTA_Block__subtitle {
    font-size: 20px;
}

.CTA_Block__ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 25px;

    width: 100%;

    margin-top: 50px;
}

.CTA_Block--1 .CTA_Block__ul {
    justify-content: space-between;
    gap: 30px;
}

.CTA_Block--4 .CTA_Block__ul {
    flex-direction: column;
    gap: 9px;
}

.CTA_Block__li {
    position: relative;

    margin-left: 30px;

    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    text-wrap: balance;
}

.CTA_Block--1 .CTA_Block__li {
    flex: 1;
    margin-left: 0;
    font-size: 20px;
    text-align: center;
    
    background: #F5F5F5;
    border-radius: 10px;
    padding: 35px 25px 25px 25px;
}

.CTA_Block--4 .CTA_Block__li {
    flex: 1;
    margin-left: 35px;
    font-size: 20px;
    white-space: pre-line;
}

.CTA_Block__li::before {
    position: absolute;
    top: -2px;
    left: -30px;

    content: '';
    display: block;

    min-width: 70px;
    max-width: 70px;
    height: 70px;

    background: url(../img/list-ok.svg) center / contain no-repeat;
}

.CTA_Block--1 .CTA_Block__li::before {
    top: -32px;
    left: calc(50% - 35px);
}

.CTA_Block--4 .CTA_Block__li::before {
    top: -2px;
    left: -35px;

    max-width: 25px;
    min-width: 25px;
}

.CTA_Block__btn {
    color: rgb(255, 255, 255);
    font-family: 'Commissioner';
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;

    padding: 16px 39px;
}

.CTA_Block--1 .CTA_Block__btn {
    margin: 0 auto;
    
    font-size: 18px;
    padding: 25px clamp(20px, var(--baseVW) + 1px, 41px);
    border-radius: 10px;
}


















/*
//////////////////
/////////////
/////////
CTA_Grid
/////////
/////////////
////////////////
*/
.CTA_Grid {
    width: 100%;
}

.CTA_Grid__inner {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.CTA_Grid__inner>* {
    flex: 1;
    height: auto;
}


















/*
//////////////////
/////////////
/////////
form
/////////
/////////////
////////////////
*/
.form {
    width: 100%;
}

.form__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.CTA_Grid .form__inner .form__inputCont {
    display: flex;
    align-items: center;
    gap: 10px;
}

.CTA_Block.CTA_Block--4 .form__inputCont {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.CTA_Block.CTA_Block--4 .form__inputCont .form__input {
    width: 100%;
}

.form__inner {
    border-radius: 10px;
    background: rgb(255, 255, 255);
    padding: 35px 30px;
    box-sizing: border-box;
}

.popup .form__inner {
    padding: 50px clamp(20px, var(--baseVW) + 5px, 45px);
}

.reviewsBlock__content__right .form__inner {
    padding: 40px clamp(20px, var(--baseVW), 40px);
    height: max-content;
    box-sizing: border-box;
    border-radius: 10px;
    background: rgb(246, 246, 246);
}

.form__title {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;

    margin-bottom: 10px;
}

.popup .form__title {
    font-size: clamp(28px, var(--baseVW) - 8px, 32px);

    margin-bottom: 15px;
}

.reviewsBlock__content__right .form__title {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
    width: 100%;

    margin-bottom: 15px;
}


.form__subtitle {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;

    margin-bottom: 20px;

    max-width: 600px;
}

.form__inputsCont {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    width: 100%;
}

.popup .form__inputsCont {
    justify-content: center;
}

.form__inputsCont:not(:last-child) {
    margin-bottom: 15px;
}

.reviewsBlock__content__right .form__inputsCont {
    flex-direction: column;
}

.form__inputsCont>* {
    flex: 1;
}

.form__input {
    min-width: 240px;
    padding: 15px 20px 18px;

    box-sizing: border-box;
    border: 1px solid rgb(237, 233, 229);
    border-radius: 5px;

    background: rgb(255, 255, 255);
}

.form__input[data-error="true"] {
    border: 1px solid #FF2F2F;
}

.popup .form__input {
    max-width: 370px;
}

.form__input--file {
    display: flex;
    align-items: center;
    position: relative;

    padding-right: 45px;
}

.form__input--file::after {
    content: '';
    position: absolute;
    right: 17px;
    display: block;

    width: 21px;
    height: 21px;

    background: url(../img/clip_21.svg) center / contain no-repeat;
}

.form__input--file input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;

    opacity: 0;
    pointer-events: none;
    z-index: -1000;

    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.form__input--textarea {
    width: 100%;
    resize: none;
    min-height: 260px;
}

.form__footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 10px;

    width: 100%;
}

.form__footer__left {
    flex: 1;
}

.form__footer__right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 10px;
}

.form__submit {
    flex: 1;
    font-size: 16px;
    padding: 16px 44.5px;
    max-width: max-content;

    margin-bottom: 15px;
}

.popup .form__submit {
    max-width: 370px;
    width: 100%;
}

.form__submit:last-child {
    margin-bottom: 0px;
}

.CTA_Block--4 .form__submit {
    width: 100%;
    max-width: 100%;
}

.reviewsBlock__content__right .form__submit {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0px;
    padding: 16px 20px;
}


.form__phone {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}

.form__confidencial {
    color: rgb(107, 105, 100);
    font-family: 'Commissioner';
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
}

.form__confidencial a {
    color: #000;
    font-weight: 700;
}

.form__confidencial a:hover {
    color: rgb(107, 105, 100);
}

.reviewsBlock__content__right .form__confidencial {
    margin-top: 5px;
}

.popup .form__confidencial {
    max-width: 370px;
    width: 100%;
}

.form__close {
    content: '';

    position: absolute;
    top: 0;
    right: 0;

    width: 60px;
    aspect-ratio: 1/1;

    background: url(../img/close.svg) center / 30px no-repeat;

    cursor: pointer;
    opacity: 1;

    transition: all .2s;
}

.form__close:hover {
    opacity: .6;
}

















/*
//////////////////
/////////////
/////////
figuresBlock
/////////
/////////////
////////////////
*/
.figuresBlock {
    width: 100%;
}

.figuresBlock__inner {
    width: 100%;
    
    margin: 0;
}

.archive .figuresBlock__inner {
    margin: 20px 0;
}

.figuresBlock__title {
    text-align: center;
    margin-bottom: 26px;
    
    font-weight: 700;
    font-size: clamp(28px, var(--baseVW) + 10px, 50px);
    line-height: 110%;
    text-align: center;
}

.figuresBlock__title strong,
.figuresBlock__title span {
    color: #D05539;
}

.figuresBlock__subtitle {
    text-align: center;
    margin-bottom: 32px;
}

.figuresBlock__grid {
    --gapTopBottom: 20px;
    --gapLeftRight: 20px;
    --elemsCount: 3;
    --maxElemsWidth: 280px;

    --elemsWidth: calc((100% - var(--gapLeftRight) * var(--elemsCount)) / var(--elemsCount));
    display: grid;
    gap: var(--gapTopBottom) var(--gapLeftRight);
    grid-template-columns: repeat(auto-fill, minmax(clamp(clamp(0px, 100%, var(--maxElemsWidth)), var(--elemsWidth), 100%), 1fr));

    width: 100%;
}

.figuresBlock__grid--5 {
    --elemsCount: 5;
    --maxElemsWidth: 200px;
}

.figuresBlock__grid--4 {
    --elemsCount: 4;
}

.figuresBlock__grid--3 {
    --elemsCount: 3;
}

.figuresBlock__grid--2 {
    --elemsCount: 2;
}

.figuresBlock-figure {
    position: relative;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    background: rgb(255, 255, 255);

    width: 100%;
    height: auto;

    transition: all .2s;

    z-index: 1;
}

.figuresBlock-figure:hover .figuresBlock-figure__btn {
    color: #FFF;
    background: #FF862F;
    border: 1px solid #FF862F;
}

.figuresBlock__grid--noborder .figuresBlock-figure {
    border: 0px;
    border-radius: 0px;
}

.figuresBlock-figure__link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    -webkit-box-shadow: 0px 14px 20px -7px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 14px 20px -7px rgba(0, 0, 0, 0.0);
    box-shadow: 0px 14px 20px -7px rgba(0, 0, 0, 0.0);
    border: 1px solid rgba(237, 233, 229, 0);
    border-radius: 10px;

    transition: all .2s;

    z-index: 2;
}

.figuresBlock-figure__link:hover {
    border: 1px solid rgb(193, 192, 192);
    -webkit-box-shadow: 0px 14px 20px -7px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 14px 20px -7px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 14px 20px -7px rgba(0, 0, 0, 0.07);
}

.figuresBlock-figure__contImg {
    min-width: 100%;
    max-width: 100%;
    border-radius: 15px 15px 0px 0px;
    overflow: hidden;
}

.figuresBlock__grid--noborder .figuresBlock-figure__contImg {
    border-radius: 0px;
}

.figuresBlock-figure__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.figuresBlock-figure__text {
    flex: 1;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

    width: 100%;
    padding: 25px 35px;
    box-sizing: border-box;
    
    border-left: 1px solid #0000001A;
    border-right: 1px solid #0000001A;
    border-bottom: 1px solid #0000001A;
    border-radius: 0 0 15px 15px;
}

.figuresBlock-figure__text>*:last-child {
    margin: 0px;
}

.figuresBlock-figure__title {
    flex: 1;

    color: rgb(0, 0, 0);
    font-family: 'Commissioner';
    font-size: clamp(22px, var(--baseVW) - 16px, 24px);
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 20px;
    width: 100%;
}

.figuresBlock-figure__ul {
    display: flex;
    flex-direction: row;
    gap: 9px;

    width: 100%;
    margin-bottom: 20px;
}

div.figuresBlock-figure__ul {
    margin-bottom: 10px;
}

.figuresBlock-figure__li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    
    color: #9696A0;
    font-family: 'Commissioner';
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    width: 100%;
}

.figuresBlock-figure__li__key {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #9696A0;
}

.figuresBlock-figure__li__value {
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    color: #25252A;
}

.figuresBlock-figure__price {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: clamp(24px, var(--baseVW) - 14px, 26px);
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 20px;
    width: 100%;
}

.figuresBlock-figure__btn {
    color: #FF862F;
    font-family: 'Commissioner';
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;

    max-height: max-content;
    min-width: 100%;
    border: 1px solid #FF862F;
    
    position: unset;
}

.figuresBlock-figure__btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.figuresBlock-figure__textBtn {
    display: inline;
    width: fit-content;
    text-align: center;
    padding: 15px 35px;
    border-radius: 5px;
    
    border: 1px solid #FF862F;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0%;
    color: #FF862F;
}

/*figuresSlider*/
.figuresSlider {
    position: relative;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    min-width: 0px;
}

.figuresSlider:not(:last-child) {
    margin-bottom: 35px;
}

.figuresSlider__container {
    overflow: hidden;
}

.figuresSlider__wrapper {
    height: auto;
}

.figuresSlider__container .figuresBlock-figure__title {
    font-size: 22px;
}

.figuresSlider__btn {
    position: absolute;
}

.figuresSlider__btn--next {
    left: calc(100% + 20px);
}

.figuresSlider__btn--prev {
    right: calc(100% + 20px);
}


















/*
//////////////////
/////////////
/////////
reviewsSliderBlock
/////////
/////////////
////////////////
*/
.reviewsSliderBlock {
    width: 100%;
}

.reviewsSliderBlock__inner {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    min-width: 0px;
}

.reviewsSliderBlock__title {
    margin-bottom: 30px;
    text-align: center;
    text-wrap: balance;

    max-width: 600px;
    
    font-weight: 700;
}

.reviewsSliderBlock__title strong {
    color: #D05539;
}

.reviewsSlider {
    position: relative;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    width: 100%;
    min-width: 0px;
}

.reviewsSlider__container {
    overflow: hidden;
}

.reviewsSlider__container .figuresBlock-figure__title {
    font-size: 22px;
}

.reviewsSlider__wrapper {}

.reviewsSlider__btn {
    position: absolute;
}

.reviewsSlider__btn--next {
    left: calc(100% + 20px);
}

.reviewsSlider__btn--prev {
    right: calc(100% + 20px);
}



















/*
//////////////////
/////////////
/////////
reviewCard
/////////
/////////////
////////////////
*/
.reviewCard {
    display: flex;
    flex-direction: column;
    gap: 15px;

    width: 100%;
    height: auto;
    padding: 30px 30px;
    box-sizing: border-box;

    border: 1px solid #FF862F;
    border-radius: 10px;

    background: rgb(255, 255, 255);
}

.cardBlock--review .cardBlock__header__right .reviewCard {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 45px clamp(20px, var(--baseVW), 45px);

    border: 0px;
    border-radius: 10px;
    background: rgb(246, 246, 246);
}

.cardBlock--review .cardBlock__header__right .reviewCard::before {
    content: '';
    display: block;

    position: absolute;
    top: -28px;

    width: clamp(45px, var(--baseVW), 57px);

    aspect-ratio: 1/1;

    background: url(../img/quotes.svg) center / contain no-repeat;
}

.reviewCard__top {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    width: 100%;
}

.reviewCard__photo {
    min-width: 80px;
    max-width: 80px;

    aspect-ratio: 1/1;
    border-radius: 5px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgb(237, 118, 50);
    font-family: 'Commissioner';
    font-size: 47px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;

    background: rgb(246, 246, 246);
}

.cardBlock__header__right .reviewCard__photo {
    background: #fff;
}

.reviewCard__photo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewCard__reviewerInfo {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;

    width: 100%;
    padding-bottom: 12px;
    
    border-bottom: 1px solid #D9D9D9;
}

.reviewCard__name {
    color: #25252A;
    font-size: 26px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}

.cardBlock--review .cardBlock__header__right .reviewCard__name {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: 26px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: left;
}

.cardBlock--review .cardBlock__title {
    margin: 0;
}

.reviewCard__publicDate {
    color: #9696A0;
    font-family: 'Commissioner';
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: left;
}

.cardBlock--review .cardBlock__header__right .reviewCard__publicDate {
    color: rgb(131, 129, 123);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}

.reviewCard__text {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    display: -webkit-box;
    line-clamp: 6;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;

    width: 100%;
}

.cardBlock--review .cardBlock__header__right .reviewCard__text {
    display: block;

    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;

    white-space: pre-line;
}

.reviewCard__btn {
    flex: 1;
    align-items: flex-end;
}



















/*
//////////////////
/////////////
/////////
aboutUsBlock
/////////
/////////////
////////////////
*/
.aboutUsBlock {
    width: 100%;
}

.aboutUsBlock__inner {
    width: 100%;
}

.aboutUsBlock__header {
    margin-bottom: 25px;
}

.aboutUsBlock__content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.aboutUsBlock__contImg {
    height: auto;
    border-radius: 10px;
    overflow: hidden;

    flex: 580;
}

.aboutUsBlock__contImg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutUsBlock__text {
    display: flex;
    flex-direction: column;
    gap: 21px;

    width: 100%;

    flex: 560;
}

.aboutUsBlock__text h2 {
    color: rgb(21, 21, 21);
    font-family: var(--font_1);
    font-size: clamp(40px, var(--baseVW) + 10px, 50px);
    font-weight: 400;
    line-height: clamp(46px, var(--baseVW) + 20px, 60px);
    letter-spacing: 0%;
    text-align: left;
    word-break: break-word;
}

.aboutUsBlock__text p {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: clamp(17px, var(--baseVW) - 22px, 18px);
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    white-space: pre-line;
}

.aboutUsBlock__title {
    text-align: left;
}

.aboutUsBlock__header .aboutUsBlock__title {
    text-align: center;
}

.aboutUsBlock__desc {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: clamp(17px, var(--baseVW) - 22px, 18px);
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    white-space: pre-line;
}

.aboutUsBlock__ul {}

.aboutUsBlock--1 .aboutUsBlock__ul {
    --gapTopBottom: 20px;
    --gapLeftRight: 20px;
    --elemsCount: 4;
    --maxElemsWidth: 250px;

    --elemsWidth: calc((100% - var(--gapLeftRight) * var(--elemsCount)) / var(--elemsCount));
    display: grid;
    gap: var(--gapTopBottom) var(--gapLeftRight);
    grid-template-columns: repeat(auto-fit, minmax(clamp(clamp(0px, 100%, var(--maxElemsWidth)), var(--elemsWidth), 100%), 1fr));
    width: 100%;
}

.aboutUsBlock--2 .aboutUsBlock__ul {
    --gapTopBottom: 20px;
    --gapLeftRight: 20px;
    --elemsCount: 4;
    --maxElemsWidth: 220px;

    --elemsWidth: calc((100% - var(--gapLeftRight) * var(--elemsCount)) / var(--elemsCount));
    display: grid;
    gap: var(--gapTopBottom) var(--gapLeftRight);
    grid-template-columns: repeat(auto-fit, minmax(clamp(clamp(0px, 100%, var(--maxElemsWidth)), var(--elemsWidth), 100%), 1fr));
    width: 100%;
}

.aboutUsBlock__li {
    padding: clamp(25px, var(--baseVW) - 5px, 35px) clamp(20px, var(--baseVW) - 5px, 35px);
    box-sizing: border-box;

    border-radius: 10px;

    background: rgb(245, 241, 235);
}

.aboutUsBlock__li>*:last-child {
    margin-bottom: 0px;
}

.aboutUsBlock__li__title {
    color: rgb(59, 183, 45);
    font-family: 'Commissioner';
    font-size: clamp(27px, var(--baseVW) - 8px, 32px);
    font-weight: 800;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 10px;
}

.aboutUsBlock__li__title::before {
    content: '';
    display: inline-block;

    min-width: 30px;
    max-width: 30px;
    margin-right: 10px;
    margin-bottom: -3px;
    aspect-ratio: 1/1;

    background: url(../img/check_on_30.svg) center / contain no-repeat;
}

.aboutUsBlock__li__desc {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}


/*aboutUsBlock--2*/
.aboutUsBlock--2 .aboutUsBlock__inner {
    flex-wrap: wrap;
    gap: 20px;
}

.aboutUsBlock--2 .aboutUsBlock__contImg {
    flex: 480;
    min-width: 380px;
}

.aboutUsBlock--2 .aboutUsBlock__ul {
    flex: 680;
}

.aboutUsBlock--2 .aboutUsBlock__li {
    padding: 30px;
}

.aboutUsBlock--2 .aboutUsBlock__li__title {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 5px;
}

.aboutUsBlock--2 .aboutUsBlock__li__title::before {
    content: '';
    display: inline-block;

    min-width: 20px;
    max-width: 20px;
    margin-right: 8px;
    margin-bottom: -2px;
    aspect-ratio: 1/1;

    background: url(../img/check_on_30.svg) center / contain no-repeat;
}


















/*
//////////////////
/////////////
/////////
aboutContract
/////////
/////////////
////////////////
*/
.aboutContract {
    width: 100%;
}

.aboutContract__inner {
    width: 100%;
    border-radius: 20px;
    padding: clamp(50px, var(--baseVW), 90px) 90px;
    box-sizing: border-box;

    background: url(../img/form_bg_2.png) center / cover no-repeat;
}

.aboutContract__title {
    text-align: center;
    margin-bottom: 42px;
}

.aboutContract__ul {
    display: flex;
    gap: 20px 10px;
    width: 100%;
}

.aboutContract__li {
    flex: 1;
}

.aboutContract__li__icon {
    height: 120px;
    width: 100%;
    margin-bottom: 13px;
}

.aboutContract__li__icon--contract {
    background: url(../img/icon_doc.png) left / contain no-repeat;
}

.aboutContract__li__icon--money {
    background: url(../img/icon_money.png) left / contain no-repeat;
}

.aboutContract__li__icon--house {
    background: url(../img/icon_house.png) left / contain no-repeat;
}

.aboutContract__li__icon--phone {
    background: url(../img/icon_phone.png) left / contain no-repeat;
}

.aboutContract__li__title {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 15px;
}

.aboutContract__li__desc {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
}


















/*
//////////////////
/////////////
/////////
howWeWorkBlock
/////////
/////////////
////////////////
*/
.howWeWorkBlock {
    width: 100%;
}

.howWeWorkBlock__inner {
    width: 100%;
}

.howWeWorkBlock__title {
    text-align: center;
    width: 100%;
    margin-bottom: 35px;
    font-weight: 700;
}

.howWeWorkBlock__title strong {
    color: #D05539;
}


















/*
//////////////////
/////////////
/////////
numericList
/////////
/////////////
////////////////
*/
.numericList {
    --gapTopBottom: 20px;
    --gapLeftRight: 20px;
    --elemsCount: 3;
    --maxElemsWidth: 170px;

    --elemsWidth: calc((100% - var(--gapLeftRight) * var(--elemsCount)) / var(--elemsCount));
    display: grid;
    gap: var(--gapTopBottom) var(--gapLeftRight);
    grid-template-columns: repeat(auto-fit, minmax(clamp(clamp(0px, 100%, var(--maxElemsWidth)), var(--elemsWidth), 100%), 1fr));

    justify-content: center;
    width: 100%;

    counter-reset: numericList;
}

.numericList.numericList--second {
    margin: 20px 0 0;
    grid-template-columns: 1fr 330px 1fr;
    counter-reset: numericList 3;
}

.numericList__li {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    
    justify-self: flex-start;
    counter-increment: numericList;
    
    background: #F5F5F5;
    padding: 35px;
    border-radius: 15px;
}

.numericList__li::before {
    content: counter(numericList);

    color: rgb(255, 255, 255);
    font-size: 32px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0%;
    text-align: left;
    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    min-width: 60px;
    max-width: 60px;

    background: #FF862F center / cover no-repeat;

    margin-bottom: 20px;
}

.numericList__title {
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    text-align: left;

    margin-bottom: 8px;
}

.numericList__desc {
    color: #25252A;
    font-family: 'Commissioner';
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: left;
}


















/*
//////////////////
/////////////
/////////
FAQBlock
/////////
/////////////
////////////////
*/
.FAQBlock {
    width: 100%;
}

.FAQBlock__inner {
    width: 100%;
}

.FAQBlock__title {
    text-align: center;
    margin-bottom: 30px;
    
    font-weight: 700;
    color: #000000;
}

.FAQBlock__title strong {
    color: #D05539;
}

.FAQBlock__content {
    width: 100%;
}


















/*
//////////////////
/////////////
/////////
accordeon
/////////
/////////////
////////////////
*/
.accordeonBlock {
    width: 100%;
}

.accordeonBlock__inner {
    --gapTopBottom: 20px;
    --gapLeftRight: 20px;
    --elemsCount: 2;
    --maxElemsWidth: 350px;

    --elemsWidth: calc((100% - var(--gapLeftRight) * var(--elemsCount)) / var(--elemsCount));
    display: grid;
    gap: var(--gapTopBottom) var(--gapLeftRight);
    grid-template-columns: repeat(auto-fit, minmax(clamp(clamp(0px, 100%, var(--maxElemsWidth)), var(--elemsWidth), 100%), 1fr));
}

.accordeon {
    height: max-content;
    padding: 20px clamp(20px, var(--baseVW) - 10px, 25px);
    box-sizing: border-box;

    border-radius: 5px;

    background: #F5F5F5;
}

.accordeon__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding-right: 35px;

    cursor: pointer;

    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 22px;
    line-height: 110%;
}

.accordeon__btn::selection {
    background: #fff0;
}

.accordeon__btn::-moz-selection {
    background: #fff0;
}

.accordeon__btn::-webkit-selection {
    background: #fff0;
}

.accordeon__btn::after {
    content: '';
    display: block;

    min-width: 25px;
    max-width: 25px;
    min-height: 13px;
    max-height: 13px;

    margin-right: -35px;

    background: #D05539;
    mask: url(../img/faq_plus.svg) center / contain no-repeat;
    -webkit-mask: url(../img/faq_plus.svg) center / contain no-repeat;

    transition: all .2s;
}

.accordeon--active .accordeon__btn::after {
    scale: 1 -1;
}

.accordeon__text {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: left;

    max-height: 0px;
    padding: 0px;

    transition: all .3s, max-height .2s, padding .2s ease-in, border .1s;

    overflow: hidden;
}

.accordeon--active .accordeon__text {
    max-height: 1000px;
    padding: 22px 0px 0px 0px;
    transition: all .3s, max-height .6s ease-in-out, padding .2s ease-in-out, border .1s;
}


















/*
//////////////////
/////////////
/////////
categoryBlock
/////////
/////////////
////////////////
*/
.categoryBlock {
    width: 100%;
    margin: 0 0 30px;
}

.categoryBlock__inner {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
	gap: 20px;
}

.categoryBlock__title {
    margin-bottom: 30px;
    text-align: center;
}

.categoryBlock__content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: max-content;
}

.categoryPlate {
    border: 1px solid #0000001A;
    color: #9696A0;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;

    padding: 16px 17px;
    border-radius: 5px;
    background: rgb(255, 255, 255);

    transition: all .5s;
}

.categoryPlate:hover {
    color: #FF862F;
    border: 1px solid #FF862F;
}
















/*
//////////////////
/////////////
/////////
catalogBlock
/////////
/////////////
////////////////
*/
.catalogBlock {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.catalogBlock__inner {
    width: 100%;
}

.catalogBlock__header {
    width: 100%;
    margin-bottom: 45px;
}

.catalogBlock__title {
    width: 100%;
    margin-bottom: 0;
    text-align: left;
}

.catalogBlock__header .categoryBlock {
    margin-bottom: 30px;
}

.categoryBlock p {
    margin: 0 0 10px;
    
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    color: #000000;
}

.catalogBlock__sort {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;

    /* white-space: nowrap; */
}

.catalogBlock__sort__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.catalogBlock__sort__title {
    color: rgb(107, 105, 100);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: left;
}

.catalogBlock__sort__btn {
    display: flex;
    gap: 3px;

    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: left;

    cursor: pointer;
}

.catalogBlock__sort__btn--arrow {}

.catalogBlock__sort__btn--arrow::after {
    content: '↓';
    display: block;

    font-weight: 800;
    white-space: nowrap;

    color: #3BB72D;

    scale: 1 1;
    transition: all .2s;
}

.catalogBlock__sort__btn--arrow.catalogBlock__sort__btn--active::after {

    scale: 1 -1;
}

.catalogBlock__main {
    display: flex;
    gap: 40px 20px;
    width: 100%;
}

.catalogBlock__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.catalogBlock__filtersBtn {
    display: none;
    padding: 5px 20px 7px;
}

.catalogBlock__sidebar {
    width: 100%;
    height: max-content;
    max-width: 280px;
}

.catalogBlock__sidebar__close {
    display: none;
}


















/*
//////////////////
/////////////
/////////
filtersBlock
/////////
/////////////
////////////////
*/
.filtersBlock {
    width: 100%;
}

.filtersBlock__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;

    width: 100%;
    box-sizing: border-box;

    border-radius: 10px;
    background: rgb(245, 241, 235);
    padding: 23px 25px 25px;
}

.filtersBlock__section {
    display: none;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.filtersBlock__section--active {
    display: flex;
}

.filtersBlock__title {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}

.filtersBlock__settings {
    width: 100%;
}

.filtersBlock__range {
    display: flex;
    flex-direction: column;

    width: 100%;
}

.filtersBlock__range__sliders {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 22px;
    max-height: 22px;
    width: 100%;
    margin-top: -11px;
}

.filtersBlock__range__sliders__track {
    position: relative;

    width: 100%;
    height: 7px;

    background: #3BB72D;
    border-radius: 100px;
}

.filtersBlock__range__sliders__input {
    position: absolute;
    left: 0;

    width: 100%;
}

.filtersBlock__range__sliders__input {
    position: absolute;
    top: 0;
    bottom: 0;

    margin: auto;
    width: 100%;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    outline: none;
    background-color: transparent;

    pointer-events: none;
    cursor: pointer;
    z-index: 1;
}

.filtersBlock__range__sliders__input::-webkit-slider-runnable-track {
    -webkit-appearance: none;
}

.filtersBlock__range__sliders__input::-moz-range-track {
    -moz-appearance: none;
}

.filtersBlock__range__sliders__input::-ms-track {
    appearance: none;
}

.filtersBlock__range__sliders__input::-webkit-slider-thumb {
    -webkit-appearance: none;

    min-width: 22px;
    max-width: 22px;

    aspect-ratio: 1/1;

    border-radius: 50%;

    background: #ffffff;
    border: 4px solid #3BB72D;

    pointer-events: auto;
    transition: all .2s, background .1s, border .1s;
}

.filtersBlock__range__sliders__input::-moz-range-thumb {
    -moz-appearance: none;

    min-height: 24px;
    max-height: 24px;
    min-width: 24px;
    max-width: 24px;
    border-radius: 50%;

    background: #3BB72D;
    pointer-events: auto;
}

.filtersBlock__range__sliders__input::-ms-thumb {
    appearance: none;

    min-height: 24px;
    max-height: 24px;
    min-width: 24px;
    max-width: 24px;
    border-radius: 50%;

    background: #3BB72D;
    pointer-events: auto;
}

.filtersBlock__range__sliders__input::-webkit-slider-thumb:hover {
    border: 11px solid #3BB72D;
}

.filtersBlock__range__sliders__input::-moz-range-thumb:hover {
    border: 11px solid #3BB72D;
}

.filtersBlock__range__sliders__input::-ms-thumb:hover {
    border: 11px solid #3BB72D;
}

.filtersBlock__range__sliders__input.rangeActive {
    z-index: 2;
}


.filtersBlock__rangeLimits {
    display: flex;
    gap: 1px;

    width: calc(100% + 30px);
    margin-left: -15px;
}

.filtersBlock__rangeLimits__input {
    flex: 1;

    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    background: rgb(255, 255, 255);
    width: 100%;
}

.filtersBlock__rangeLimits__input:first-child {
    border-radius: 5px 0px 0px 5px;

    padding: 14px 15px;
}

.filtersBlock__rangeLimits__input:last-child {
    border-radius: 0px 5px 5px 0px;

    padding: 14px 15px;
}

.filtersBlock__checkboxes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.checkbox {
    position: relative;

    display: flex;
    /* align-items: flex-start; */
    justify-content: flex-start;

    padding-left: 26px;
    min-height: 20px;
    box-sizing: border-box;

    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
}

.checkbox__input {

    display: flex;
    align-items: center;

    min-width: 0;
    max-width: 0;
    min-height: 0;
    max-height: 0;

    margin: 0;
    padding: 0;
    cursor: pointer;
}

.checkbox__input::after {
    content: '';
    display: block;
    position: absolute;

    left: 0;
    top: 0;

    min-width: 20px;
    max-width: 20px;
    aspect-ratio: 1/1;

    margin-bottom: -1px;
    margin-right: 6px;
    box-sizing: border-box;

    border: 1px solid rgb(107, 105, 100);
    border-radius: 2px;
    background: rgb(255, 255, 255);
}

.checkbox__input:checked::after {
    background: url(../img/check_on_30.svg) center / 24px 24px no-repeat, #ffffff;
    border: 0px;
}

.checkbox__label {
    cursor: pointer;
}

.filtersBlock__btnExpand {
    position: relative;

    color: rgb(237, 118, 50);
    font-family: 'Commissioner';
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    width: 100%;
    padding-bottom: 10px;

    border-bottom: 1px solid rgb(237, 118, 50);

    cursor: pointer;
}

.filtersBlock__btnExpand::after {
    content: '';
    display: inline-block;

    max-width: 12px;
    min-width: 12px;
    aspect-ratio: 1/1;
    margin-left: 9px;

    background: rgb(237, 118, 50);
    mask: url(../img/arrow_thin.svg) center / contain no-repeat;
    -webkit-mask: url(../img/arrow_thin.svg) center / contain no-repeat;

    transform: scale(1, 1);

    transition: all .2s, background .2s;
}

.filtersBlock--active .filtersBlock__btnExpand::after {
    transform: scale(1, -1);
}

.filtersBlock__btnSubmit {
    color: rgb(255, 255, 255);
    font-family: 'Commissioner';
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;

    border-radius: 5px;
    background: rgb(59, 183, 45);
}

.table {
    width: 100%;
}

.table thead {
    background: rgb(237, 233, 229);
}


.table thead th {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 20px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: left;

    vertical-align: middle;
    white-space: pre-line;
    padding: 17px 5px 17px 5px;
}

.table thead th span {
	width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 400;
}

.table thead th:first-child {
    font-size: 22px;
    padding-left: 25px;
}

.table thead th:last-child {
    padding-right: 25px;
}

.table tbody>* {
    border-bottom: 1px solid rgb(237, 233, 229);
    border-top: 1px solid rgb(237, 233, 229);
}

.table tbody th {
    color: rgb(107, 105, 100);
    font-family: 'Commissioner';
    font-size: 20px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: left;
    vertical-align: middle;
    white-space: pre-line;

    padding: 17px 25px;

    background: rgb(246, 246, 246);
}

.table tbody td {
    color: rgb(107, 105, 100);
    font-family: 'Commissioner';
    font-size: 20px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: left;
    vertical-align: middle;
    white-space: pre-line;
    padding: 17px 5px 17px 0px;
}

.table tbody td:last-child {
    padding: 17px 0px 17px 0px;
}


















/*
//////////////////
/////////////
/////////
cardBlock
/////////
/////////////
////////////////
*/
.cardBlock {
    width: 100%;
    margin-bottom: 100px;
}

.cardBlock--product {}

.cardBlock--review {}

.cardBlock--object {}

.cardBlock__inner {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.cardBlock__title {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: clamp(40px, 5vw + 2px, 44px);
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    width: 100%;

    margin: 0 0 24px 0;
}

.cardBlock__content {
    display: flex;
    flex-direction: column;
    gap: 24px;

    width: 100%;
}

.cardBlock__header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    
    margin: 0 0 60px;
}

.cardBlock__header__top {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cardBlock__header__bottom {
    display: flex;
    width: 100%;
    gap: 30px;
}

.cardBlock--object .cardBlock__header__bottom {
    gap: 0px;
}

.cardBlock--review .cardBlock__header__bottom {
    gap: 20px;
}

.cardBlock__header__left {
    flex: 770;
    max-width: 770px;
    min-width: 0px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cardBlock--review .cardBlock__header__left {
    flex: 580;
}

.cardBlock--object .cardBlock__header__left {
    flex: 780;
    max-width: 780px;
}

.cardBlock__slider {
    width: 100%;
}

.cardBlock__slider__container {}

.cardBlock__slider__wrapper {}

.cardBlock__slider__slide {
    width: 100%;
    aspect-ratio: 75/48;
    border-radius: 10px;
    overflow: hidden;
}

.cardBlock__slider__img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.cardBlock__sliderThumbs {
    display: flex;
    gap: 10px;
}

.cardBlock__sliderThumbs__btns__btn {
    position: static;
    max-width: 35px;
    height: auto;
    max-height: 100%;

    background: #F5F5F5;
    
    border-radius: 5px;
}

.cardBlock__sliderThumbs__btns__btn::before {
    background: #FF862F;
}

.cardBlock__sliderThumbs__btns__btn--next {}

.cardBlock__sliderThumbs__btns__btn--prev {}

.cardBlock__sliderThumbs__container {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.cardBlock__sliderThumbs__wrapper {}

.cardBlock__sliderThumbs__slide {
    width: auto;
    max-width: 120px;
    aspect-ratio: 120 / 82;

    border-radius: 10px;

    opacity: 0.6;

    overflow: hidden;
    cursor: pointer;
    transition: all .2s;
}

.cardBlock__sliderThumbs__slide::after {
    content: '';
    display: block;
    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    background: transparent;
    opacity: 0;
    border-radius: 10px;
    border: 1px solid #fff0;

    transition: all .2s;
}

.cardBlock__sliderThumbs__slide.swiper-slide-thumb-active::after {
    border: 1px solid #FF2F2F;
    opacity: 1;
}

.cardBlock__sliderThumbs__slide.swiper-slide-thumb-active {
    opacity: 1;
}

.cardBlock__sliderThumbs__slide-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.cardBlock__header__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 400;
}

.cardBlock--review .cardBlock__header__right {
    flex: 580;
}

.cardBlock--object .cardBlock__header__right {
    flex: 400;
}

.characteristicsHouse {
    width: 100%;
    box-sizing: border-box;

    height: max-content;
}

.characteristicsHouse .breadcrambs__content {
    justify-content: start;
}

.characteristicsHouse__title {
    color: rgb(0, 0, 0);
    font-family: 'Commissioner';
    font-size: clamp(32px, var(--baseVW) - 10px, 50px);
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;

    margin: 20px 0;
}

.characteristicsList {
    display: flex;
    justify-content: flex-start;	
    flex-wrap: wrap;
    gap: 20px;

    width: 100%;
    
    background: #F5F5F5;
    padding: 25px 30px;
    box-sizing: border-box;
    
    border-radius: 10px;
}

.cardBlock .characteristicsList {
    margin-bottom: 25px;
    max-width: 95%;
}

.characteristicsList__li {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;

    color: #9696A0;
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}

.characteristicsList__key {
    max-width: 170px;
    position: relative;

    flex: 1;

    display: inline-flex;
    gap: 10px;
    order: 1;

    max-width: max-content;

}

.characteristicsList__value {
    display: flex;
    align-items: flex-end;
    order: 3;
    
    font-weight: 700;
    font-size: 26px;
    line-height: 130%;
    color: #25252A;
}

.cardBlock__priceList {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;

    margin: 15px 0;
}

.cardBlock__priceList__priceCont {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 10px;

    width: 100%;
    padding: 21px 20px;
    box-sizing: border-box;
    background: #F5F5F5;
    
    
}

.cardBlock__priceList__key {
    max-width: 170px;
    width: 100%;
    
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #25252A;
}

.cardBlock__priceList__value {
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    color: #FF862F;
}

.cardBlock__priceList__ipo {
    margin: 15px 0 0;
    
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #000000;
}

.cardBlock__priceList__ipo:before {
    content: 'В ипотеку';
    position: absolute;
    top: -15px;
    left: 0;
    
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #9696A0;
}

.cardBlock__btn {
    max-width: 210px;
    border-radius: 5px;
    
    padding: 27px 20px;
    width: 100%;
    margin: 30px 0 0;
    
    background: #FF862F;
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    color: #FFFFFF;
}

.cardBlock__content {
    width: 100%;
}

.cardBlock__tabsBtns {
    width: 100%;
}

.cardBlock__tabsBtns__wrapper {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.cardBlock__tabsBtns__btn {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;

    padding: 22px 25px;
    width: 100%;
    border-radius: 5px;

    color: #9696A0;
    font-family: 'Commissioner';
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    text-align: center;

    cursor: pointer;

    transition: all .2s, font-weight 0s;
}

.cardBlock__tabsBtns__btn--active {
    background: #D05539;
    color: #fff;
}

.cardBlock__tabs {
    position: relative;
    width: 100%;
}

.cardBlock__tabs__tab {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: max-content;

    opacity: 0;
    pointer-events: none;

    transition: all .2s, opacity .1s, height .2s;
}

.cardBlock__tabs__tab--active {
    position: relative;
    pointer-events: all;
    opacity: 1;
}

/*cardBlock__productDesc*/
.cardBlock__productDesc {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
}

.cardBlock__productDesc__elem {
    min-width: 280px;
    width: 100%;
}

.cardBlock__productDesc__elem:nth-child(odd) {
    flex: 650;
}

.cardBlock__productDesc__elem:nth-child(even) {
    flex: 427;
}

.cardBlock__productDesc__title {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 15px;
}

.cardBlock__productDesc__ul {
    display: flex;
    flex-direction: column;
    gap: 2px;

    margin-left: 10px;

    list-style: disc;
    list-style-position: inside;
}

.cardBlock__productDesc__li {
    position: relative;

    color: rgb(107, 105, 100);
    font-family: 'Commissioner';
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}


















/*
 //////////////////
 /////////////
 /////////
 reviewsBlock
 /////////
 /////////////
 ////////////////
 */
.reviewsBlock {
    width: 100%;
}

.reviewsBlock__inner {
    width: 100%;
}

.reviewsBlock__header {
    width: 100%;
    margin-bottom: 30px;
}

.reviewsBlock__title {
    text-align: left;
}

.reviewsBlock__content {
    display: flex;
    gap: 20px;
}

.reviewsBlock__content__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-basis: 780px;
}

.reviewsBlock__content__right {
    flex-basis: 380px;
    height: max-content;
}

.reviewsBlock__content__right__title {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
    width: 100%;

    margin-bottom: 15px;
}

.reviewsGrid {
    --gapTopBottom: 20px;
    --gapLeftRight: 20px;
    --elemsCount: 2;
    --maxElemsWidth: 280px;

    --elemsWidth: calc((100% - var(--gapLeftRight) * var(--elemsCount)) / var(--elemsCount));
    display: grid;
    gap: var(--gapTopBottom) var(--gapLeftRight);
    grid-template-columns: repeat(auto-fill, minmax(clamp(clamp(0px, 100%, var(--maxElemsWidth)), var(--elemsWidth), 100%), 1fr));

    width: 100%;
}

.reviewsGrid--2 {
    --elemsCount: 2;
}


















/*
//////////////////
/////////////
/////////
objectCharacteristics
/////////
/////////////
////////////////
*/
.objectCharacteristics {
    display: flex;
    flex-direction: column;
    gap: 20px;

    border-radius: 10px;
    background: rgb(245, 241, 235);
    width: 100%;
    padding: clamp(30px, var(--baseVW) - 5px, 35px) clamp(20px, var(--baseVW), 40px);
    box-sizing: border-box;
}

.cardBlock--object .objectCharacteristics {
    background: unset;
    padding: 20px 50px;
    border-radius: 0px;

    min-width: 400px;
}

.objectCharacteristics__row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.objectCharacteristics__row--btns {
    gap: 15px 20px;
}

.cardBlock--object .objectCharacteristics__row {
    flex-direction: column;
    gap: 25px;
}

.cardBlock--object .objectCharacteristics__row--btns {
    gap: 15px 20px;
}

.objectCharacteristics__li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.objectCharacteristics__li__key {
    color: rgb(107, 105, 100);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: left;
}

.objectCharacteristics__li__value {
    color: #242320;
    font-family: 'Commissioner';
    font-size: 26px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: left;
}

.cardBlock--object .objectCharacteristics__li__value {
    color: #9696A0;
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: left;
}

.objectCharacteristics .btn {
    max-width: 100%;
    width: 100%;
    padding: 22px 20px;
}

.cardBlock--object .objectCharacteristics .btn {
    padding: 18px 20px;
}


















/*
//////////////////
/////////////
/////////
NEWBLOCK
/////////
/////////////
////////////////
*/
article.article {}

article.article h1 {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: clamp(30px, var(--baseVW) - 6px, 34px);
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
    white-space: pre-line;
}

/* article.article h1:not(:first-child) {
    margin-top: 24px;
}

article.article h1:not(:last-child) {
    margin-bottom: 24px;
} */

article.article h2 {
    color: rgb(0, 0, 0);
    font-family: 'Commissioner';
    font-size: clamp(24px, var(--baseVW) - 14px, 30px);
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: left;

    margin: 0 0 24px 0;
}

article.article h2:not(:first-child) {
    margin: 24px 0;
}

/* article.article h2:not(:last-child) {
    margin-bottom: 24px;
} */

article.article h3 {
    white-space: pre-line;
    margin: 40px 0 15px;
    
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
}

/* article.article h3:not(:first-child) {
    margin-top: 24px;
}

article.article h3:not(:last-child) {
    margin-bottom: 24px;
} */

article.article p {
    color: rgb(0, 0, 0);
    font-family: 'Commissioner';
    font-size: clamp(18px, var(--baseVW) - 20px, 20px);
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;

    margin-top: 20px;
}

article.article h1+p {
    margin-top: 20px;
}

article.article :is(h2, h3)+p {
    margin-top: 10px;
}

/* article.article p:not(:first-child) {
    margin-top: 24px;
}

article.article p:not(:last-child) {
    margin-bottom: 24px;
} */

article.article ol {
    counter-reset: numericList;
    margin: 20px;
}

/* article.article ol:not(:first-child) {
    margin-top: 24px;
}

article.article ol:not(:last-child) {
    margin-bottom: 24px;
} */

article.article ol li {
    width: 100%;
    display: inline-block;
    position: relative;

    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: clamp(18px, var(--baseVW) - 20px, 20px);
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;

    counter-increment: numericList;
}


article.article ol li::before {
    content: counters(numericList, '.') ".";
    display: inline-block;
    margin: 7px 0px 0px 0px;
    min-width: 25px;
}

article.article p+ul {
    margin-top: 20px;
}

article.article ol li ul {
	margin: 10px 20px;
}

article.article ol li ul li {
	width: 100%;
    display: inline-block;
    position: relative;
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: clamp(18px, var(--baseVW) - 20px, 20px);
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
}

article.article ol li ul li::before {
	min-width: 12px;
}

/* article.article ul:not(:first-child) {
    margin-top: 24px;
}

article.article ul:not(:last-child) {
    margin-bottom: 24px;
} */

article.article ul li {
    position: relative;

    color: rgb(0, 0, 0);
    font-family: 'Commissioner';
    font-size: clamp(18px, var(--baseVW) - 20px, 20px);
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
    white-space: pre-line;
}


article.article ul li::before {
    content: '•';

    margin: 0px 7px;
}

article.article h2+ :is(ul, ol) {
    margin-top: 10px;
}

article.article figure {}

/* article.article figure:not(:first-child) {
    margin-top: 24px;
}

article.article figure:not(:last-child) {
    margin-bottom: 24px;
} */

article.article figcaption {
    white-space: pre-line;
}

article.article blockquote {
    padding: 20px;
    border-left: 4px solid #D05539;
}

article.article blockquote p {
    margin: 0 0 5px;
}

article.article blockquote p:last-child {
    margin: 0;
}

article.article blockquote footer {
    margin: 5px 0 0;
}

article.article table {
    width: 100%;
}

article.article table th,
article.article table td {
    padding: 10px;
    border: 1px solid #e1e1e1;
}














/*
//////////////////
/////////////
/////////
contactsBlock
/////////
/////////////
////////////////
*/
.contactsBlock {
    width: 100%;
}

.contactsBlock__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.cardBlock__header,
.catalogBlock__header,
.defaultBlock__header,
.contactsBlock__header {
    width: 100%;
	
	padding: 75px 30px;
	box-sizing: border-box;
	
	background: #F5F5F5;
	border-radius: 15px;
}

.cardBlock__title,
.catalogBlock__title,
.defaultBlock__title,
.contactsBlock__title {
    color: rgb(0, 0, 0);
    font-family: 'Commissioner';
    font-size: clamp(32px, var(--baseVW) + 10px, 66px);
    font-weight: 700;
    line-height: 105%;
    text-align: center;

    width: 100%;
}

.cardBlock__header .cardBlock__title {
    margin: 0;
}

.contactsBlock__content {
    width: 100%;
}

.contactsBlock__content__left {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 40px;
	
	margin: 100px 0 60px 0;
	
	background: #F5F5F5;
	border-radius: 20px;
	padding: 50px 40px;
	
	position: relative;
	z-index: 3;
}

.contactsBlock__phone {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    width: 100%;
    margin-bottom: 20px;
}

.contactsBlock__btn {
    font-size: 16px;
    padding: 16px 20px 17px;
    line-height: 120%;
    max-width: max-content;
    max-height: 52px;

    margin-bottom: 20px;
}

.contactsBlock__text {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 0;
}

.contactsBlock__text p:nth-child(1) {
	margin: 0 0 5px;
	
	font-weight: 300;
	font-size: 20px;
	line-height: 110%;
	color: #25252A;
}

.contactsBlock__text p:nth-child(2) {
	font-weight: 700;
	font-size: 26px;
	line-height: 110%;
	color: #25252A;
}

.contactsBlock .mediaIcons {
    margin-bottom: 45px;
}

.contactsBlock .mediaIcons-icon {
    max-width: 52px;
    min-width: 52px;
}

.contactsBlock__content__right {
    display: flex;
    gap: 20px;
}


















/*
//////////////////
/////////////
/////////
map
/////////
/////////////
////////////////
*/
.map {
    width: 100%;
    max-height: 420px;
    min-height: 350px;
    aspect-ratio: 674/420;
    position: relative;
}

.map iframe {
	border-radius: 10px;
}

.map>div {
    height: 100%;
}


















/*
//////////////////
/////////////
/////////
NEWBLOCK
/////////
/////////////
////////////////
*/
.defaultBlock {
    width: 100%;
}

.defaultBlock__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.defaultBlock__header {
    width: 100%;
}

.defaultBlock__content {
    width: 100%;
}
















/*
//////////////////
/////////////
/////////
FOOTER
/////////
/////////////
////////////////
*/
.footer {
    width: 100%;
    background: transparent;
}

.footer__inner {
    width: 100%;
    padding: 60px 0px;
    box-sizing: border-box;
}

.footer__top {
    width: 100%;
    padding-bottom: 0;
    box-sizing: border-box;
}

.footer__grid {

    width: 100%;

}

.footer__grid--4 {
    --gapTopBottom: 20px;
    --gapLeftRight: 20px;
    --elemsCount: 4;
    --maxElemsWidth: 200px;

    --elemsWidth: calc((100% - var(--gapLeftRight) * var(--elemsCount)) / var(--elemsCount));
    display: grid;
    gap: var(--gapTopBottom) var(--gapLeftRight);
    grid-template-columns: repeat(auto-fit, minmax(clamp(clamp(0px, 100%, var(--maxElemsWidth)), var(--elemsWidth), 100%), 1fr));
}

.footer__grid--5 {
    --gapTopBottom: 20px;
    --gapLeftRight: 50px;
    --elemsCount: 5;
    --maxElemsWidth: 200px;

    --elemsWidth: calc((100% - var(--gapLeftRight) * var(--elemsCount)) / var(--elemsCount));
    display: grid;
    gap: var(--gapTopBottom) var(--gapLeftRight);
    grid-template-columns: repeat(auto-fit, minmax(clamp(clamp(0px, 100%, var(--maxElemsWidth)), var(--elemsWidth), 100%), 1fr));
}

.footer__grid--2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}

.footer__grid--2>*:first-child {
    flex: 1;
}

.footer__grid--2>*:last-child {
    flex: 613;
    max-width: 613px;
}

.footer__grid__column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer__title {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 20px;
}

.footer__ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer .menu-item {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}

.footer .menu-item a {

    transition: all .2s;
}

.footer .menu-item a:hover {
    color: rgba(86, 85, 81, 0.6);
}

.footer__phone {
    color: rgb(36, 35, 32);
    font-family: 'Commissioner';
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    white-space: nowrap;

    margin-bottom: 10px;
}

.footer__text.footer__address {
	font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 120% !important;
}

.footer__text.footer__text-p {
	margin: 0 0 15px !important;
	
	font-size: 20px;
    font-weight: 700;
    line-height: 120%;
	color: #000000;
}

.footer__text.footer__text-p a {
	font-size: 18px;
    font-weight: 700;
    line-height: 120%;
	color: #000000;    
}

.footer__text-p a {
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	color: #000000;
}

.footer .mediaIcons {
    margin-bottom: 20px;
}

.footer__text {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
}

.footer__text:not(:last-child) {
    margin-bottom: 5px;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding-top: 29px;
}

.footer__copyright {
    color: rgb(107, 105, 100);
    font-family: 'Commissioner';
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: left;
}

.footer__desc {
    color: #25252A;
    font-family: 'Commissioner';
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: left;

    margin-bottom: 17px;
}

.footer__conf {
    color: rgb(86, 85, 81);
    font-family: 'Commissioner';
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;

    cursor: pointer;

    transition: all .2s;
}

.footer__conf:hover {
    color: rgb(86, 85, 81, 0.6);
}

.catalogBlock__content .figuresBlock-figure__img {
	object-fit: cover;
	border-radius: 15px 15px 0 0;
}

.footer .logo__desc {
	margin: 20px 0 45px;
	font-weight: 400;
	font-size: 18px;
	line-height: 120%;
	color: #25252A;
}

.map--title {
	margin: 15px 0 0;

	font-weight: 700;
	font-size: 28px;
	line-height: 100%;
	color: #000000;
}

.defaultBlock__content--text {
    margin: 45px 0;
    
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    
    font-weight: 400;
    font-size: 22px;
    line-height: 140%;
    color: #25252A;
}

.defaultBlock__content--text p {
    margin: 0 0 20px;
}

.defaultBlock__content--text p:last-child {
    margin: 0;
}

.defaultBlock__content--text img {
    max-width: 100%;
    width: auto;
    height: auto;
    
    border-radius: 15px;
}

.defaultBlock__content--text .defaultBlock__content--text__item:nth-child(1) img {
    margin: 0 0 60px 0;
}

.defaultBlock__content--text .defaultBlock__content--text__item:nth-child(2) img {
    margin: 60px 0 0;
}

.defaultBlock__content--text h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 100%;
    color: #25252A;
    margin: 0 0 15px;
}

.defaultBlock__title h2 {
    font-weight: 700;
    font-size: 60px;
    line-height: 110%;
    text-align: center;
}

h2.defaultBlock__title {
    margin: 70px 0 35px;
}

.home h2.defaultBlock__title {
    margin: 0 0 35px;
}

h2.defaultBlock__title span {
    color: #D05539;
}

.defaultBlock__content--adv {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ����� ������������ 1fr ������ 50% */
    gap: 20px;
    margin: 35px 0 100px;
    box-sizing: border-box; /* ���������, ��� padding � border ����������� � ������ */
    width: 100%; /* ��� max-width: 100%; ���� ����� ���������� */
}

.home .defaultBlock__content--adv {
    margin: 35px 0 0;
}

.defaultBlock__content--adv .defaultBlock__content--adv__item {
    display: flex;
    box-sizing: border-box;
    
    border: 1px solid #25252A1A;
    border-radius: 15px;
    padding: 30px;
    
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #25252A;
}

.defaultBlock__content--adv .defaultBlock__content--adv__item p:nth-child(1) {
    margin: 0 0 5px;
    
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    color: #000000;
}

.defaultBlock__content--adv .defaultBlock__content--adv__item--left {
    width: 65px;
    margin: 0 20px 0 0;
}

.defaultBlock__content--adv .defaultBlock__content--adv__item--right {
    width: calc(100% - 85px);
}

.defaultBlock__content--adv .defaultBlock__content--adv__item--left__icon {
    width: 65px;
    height: 65px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: #F5F5F5;
    border-radius: 10px;
}

.projectItem .figuresBlock-figure__text {
    padding: 15px 0 20px;
    border: none;
    border-radius: 0;
}

.projectItem .figuresBlock-figure__img {
    object-fit: cover;
    border-radius: 15px;
}

.projectItem .figuresBlock-figure__li__value {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #9696A0;
}

.characteristicsList__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 105%;
    color: #000000;
}

        .project-purchase-block {
            width: 100%;
            margin: 50px 0 100px;
            
            background-color: #25252A;
            border-radius: 15px;
            padding: 30px 40px;
            box-sizing: border-box;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 100%;
            color: #fff;
        }

        .project-purchase-block .text-section {
            font-weight: 400;
            font-size: 20px;
            line-height: 125%;
            color: #fff;
        }
        
        .project-purchase-block .text-section p:nth-child(1) {
            font-weight: 700;
            font-size: 37px;
            line-height: 100%;
            color: #fff;
        }

        .project-purchase-block p {
            margin: 0 0 5px 0;
            font-weight: 700;
            color: #fff;
        }
        
        

        .project-purchase-block ul {
            margin: 0;
            padding-left: 30px;
        }

        .project-purchase-block li {
            list-style: disc;
            margin-bottom: 0;
        }

        .price-section {
            text-align: left;
            padding: 10px;
            background-color: #000;
            border-radius: 5px;
            min-width: 220px;
        }

        .price-section .price {
            font-weight: 600;
            font-size: 20px;
            line-height: 105%;
            color: #9696A0;
            
            margin: 0 0 5px;
        }

        .price-section .currency {
            font-weight: 700;
            font-size: 36px;
            line-height: 100%;
            color: #FFFFFF;
        }

        .buy-button {
            padding: 20px 60px;
            border-radius: 5px;
            
            font-weight: 700;
            font-size: 20px;
            line-height: 110%;
            color: #25252A;
            transition: background-color 0.3s;
        }

        .buy-button:hover {
            background-color: #FF862F;
            color: #fff;
        }
        
        .right-section {
            display: flex;
            border-radius: 10px;
            padding: 28px;
            background: #000000;
            gap: 30px;
        }
        
        .tabTitle {
            display: block;
            margin: 0 auto;
            
            max-width: 770px;
            font-weight: 700;
            font-size: clamp(28px, var(--baseVW) + 10px, 50px);
            line-height: 110%;
            text-align: center;
            color: #000000;
        }
        
        .tabTitle span {
             color: #D05539;
        }
        
        .catalogBlock .loadmore {
            margin: 0 auto;
        }
        
.CTA_Block__content .CTA_Block__desc {
    max-width: 420px;
    margin: 10px auto 0;
    
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #25252A;
}  

.promo-block {
            background-color: #222;
            border-radius: 16px;
            padding: 55px;
            display: flex;
            align-items: start;
            gap: 40px;
            max-width: 100%;
            margin: 0 auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .promo-text {
            flex: 1;
        }

        .promo-title {
            font-size: 50px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            line-height: 100%;
        }

        .promo-subtitle {
            font-size: 22px;
            color: #F5F5F5;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .btn-more {
            max-width: 270px;
            
            background-color: #ff7a00;
            color: white;
            border: none;
            padding: 17px 24px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-more:hover {
            background-color: #e66c00;
        }

        .bank-logos {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            flex: 0 0 auto;
        }

        .bank-card {
            min-width: 250px;
            box-sizing: border-box;
            
            background-color: #333;
            border-radius: 8px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.2s;
        }

        .bank-card:hover {
            transform: translateY(-2px);
        }

        .bank-logo {
            width: 80px;
			height: 80px;
			display: flex;
			align-items: center;
			justify-content: center;
			background-color: white;
			border-radius: 6px;
			overflow: hidden;
			padding: 10px;
			box-sizing: border-box;
        }

        .bank-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .bank-info {
            flex: 1;
        }

        .bank-name {
            color: #fff;
			font-size: 22px;
			font-weight: 700;
			margin-bottom: 10px;
			overflow-wrap: break-word;
			max-width: 145px;
        }

        .bank-rate {
            display: flex;
            flex-direction: column;
            gap: 1px;
            
            font-weight: 400;
            font-size: 14px;
            line-height: 100%;
            color: #F5F5F5;
        }

        .bank-rate span {
            font-weight: 700;
            font-size: 22px;
            line-height: 90%;
            color: #FF862F;
        }
        
        .related_projects {
            margin: 80px 0 120px;
        }
        
        .specs-wrapper {
            width: 100%;
            padding: 70px;
            box-sizing: border-box;
            
            margin: 20px 0 80px;
            background: #F5F5F5;
            border-radius: 15px;
        }
        
        .specs-wrapper .specs-wrapper__item {
            display: flex;
            gap: 50px;
        }
        
        .specs-wrapper .specs-table {
            flex: auto;
        }
        
        .specs-wrapper .right-image {
            max-width: 675px;
            width: 100%;
        }
        
        .specs-wrapper .right-image img {
             max-width: 100%;
             height: auto;
            border-radius: 10px;
        }
        
        .specs-table .row-table {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            border-bottom: 1px solid #0000001A;
            
            padding: 0 0 15px;
            margin: 0 0 15px;
            
            font-weight: 600;
            font-size: 26px;
            line-height: 130%;
            color: #25252A;
        }
        
        .specs-wrapper__title {
            margin: 60px 0 15px;
            
            font-weight: 700;
            font-size: 36px;
            line-height: 130%;
            color: #25252A;
        }
        
        .comparison-table__wrapper {
            width: 100%;
            overflow: auto;
        }
        
.comparison-table {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            font-family: Arial, sans-serif;
            max-width: 100%;
            width: 100%;
            margin: 20px auto 80px auto;
            border-top: 1px solid #D05539;
        }

        .comparison-table__header {
            padding: 15px 10px;
            background-color: #fff;
            text-align: left;
            border-bottom: 1px solid #D05539;
            
            font-weight: 600;
            font-size: 26px;
            line-height: 130%;
            color: #D05539;
        }

        .comparison-table__row {
            display: grid;
            grid-template-columns: 1fr;
            align-items: center;
            padding: 20px 10px;
            background-color: #fff;
            border-bottom: 1px solid #f0f0f0;
        }

        .comparison-table__item {
            display: flex;
            align-items: center;
            gap: 8px;
            
            font-weight: 600;
            font-size: 22px;
            line-height: 130%;
            color: #25252A;
        }

        .comparison-table__item.comparison-table__item--disabled {
            font-weight: 600;
            font-size: 22px;
            line-height: 130%;
            color: #9696A0;
        }

        .comparison-table__icon {
            min-width: 20px;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;    
            justify-content: center;
            position: relative;
            top: -2px;
        }

        .comparison-table__icon--check {
            background: url(../img/circle-ok.svg);
        }

        .comparison-table__icon--cross {
            background: url(../img/circle-error.svg);
        }
        
        .main>*:not(.breadcrambs).FAQBlock {
            margin-bottom: 40px;
        }
        
        .big-table {
	overflow: auto;
	position: relative;
}

.categoryBlock--wrapper {
	display: grid;
    grid-template-columns: 1fr 1fr;
}

.cardBlock--product {
    padding-top: 40px;
}

.cardBlock--product .breadcrumbs {
    padding-top: 20px;    
}

.form__department {
	display: none;
}