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;
}

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;
}



















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

























/*
//////////////////
/////////////
/////////
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: #fff;
    font-family: var(--font_1);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    
    text-align: center;

    padding: 14px 20px 15px;
    height: min-content;

    /* border: 1px solid rgb(31, 31, 31); */
    border-radius: 15px;
    background: #4746D6;

    opacity: 1;

    transition: all .2s;
}

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

    box-sizing: border-box;
    border-radius: 15px;
    background: rgb(255, 255, 255);
}

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

.btn--text {
    border: unset;
    color: rgb(59, 183, 45);
    background: none;
    padding: 0px;
    text-align: left;
}

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

    border-radius: 50%;

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

    background: #E83B80;
}

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

    width: 24px;
    height: 24px;

    background: rgb(255, 255, 255);
    mask: url(../img/arrow_slide.svg) center / contain no-repeat;
    -webkit-mask: url(../img/arrow_slide.svg) center / contain no-repeat;
}

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

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

.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: #0A153A;
    font-family: var(--font_1);
    font-size: clamp(40px, var(--baseVW) + 10px, 50px);
    font-weight: 700;
    line-height: clamp(46px, var(--baseVW) + 20px, 50px);
    
    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--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: 15px 0;
    box-sizing: border-box;
}

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

.breadcrambs__content {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;

    width: 100%;

    background: transparent;
}

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

    color: #84878F;
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    
    text-align: left;

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

.breadcrambs__elem.breadcrambs__elem--active {
    color: #0A153A;
}

.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: Manrope;
    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: Manrope;
    font-size: 15px;
    font-weight: 300;
    line-height: 120%;
    
    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: #0A153A;
    font-family: Manrope;
    font-size: clamp(20px, var(--baseVW) - 14px, 26px);
    font-weight: 700;
    line-height: 120%;
    
    text-align: center;

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

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

    box-sizing: border-box;
    border: 1px solid #F2F2F5;
    border-radius: 5px;
    background: rgb(255, 255, 255);

    transition: all .2s;
}

.pagination span:not(.current):hover,
.pagination a:not(.current):hover {
    background: rgb(248, 248, 247);
}

.pagination span,
.pagination a:hover {
    border: 1px solid #4746D6;
    color: #4746D6;
}
































/*
//////////////////
/////////////
/////////
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: 20px;
}

.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;
	
	border-radius: 18px;
}

.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 {
    color: #0A153A;
    font-family: Manrope;
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    
    text-align: left;
}

.header__btn {}

.header__bottom {}

































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

    padding: 16px 0;

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

.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: #0A153A;
    font-family: Manrope;
    font-size: 19px;
    font-weight: 500;
    line-height: 120%;
    
    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: #4746D6;
    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: 120px;
}




















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

.CTA_Block__inner {
    display: flex;
    justify-content: space-between;

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

    border-radius: 30px;

    overflow: hidden;
    position: relative;
}

.CTA_Block__image {
	max-width: 334px;
	
	position: relative;
	z-index: 99;
	
    margin: 50px 80px;
	
	display: flex;
    align-items: center;
}

.CTA_Block__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	
	border-radius: 40px;
}

.CTA_Block__content--topimg {
	max-width: 440px;
	height: 56px;
	
	box-shadow: 0px 4px 30px 0px #302F530D;

border-radius: 10px;
	
	margin: 0;

}

.CTA_Block__content--topimg img {
	width: 100%;
	height: 100%;
	object-fit: cover;border-radius: 10px;
}

/* .CTA_Block__image:before {
	content: '';
    background: #FBFBFB;
    border-radius: 40px;
    position: absolute;
    top: 30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% - 80px);
} */

.CTA_Block--4 .CTA_Block__inner {
    padding: clamp(60px, var(--baseVW), 90px) 90px clamp(30px, var(--baseVW) + 10px, 80px);
    background: url(../img/form_bg_3.png) center / cover no-repeat;
    gap: 60px;
}

.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: 30px;

    z-index: 1;
}

.CTA_Block--1 .CTA_Block__content {
    padding: 55px;
    max-width: 660px;
}

.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;
    flex: 761;
}

.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--1 .CTA_Block__inner::before {
    content: '';
    display: block;

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

    width: calc(100% * 2);

    background: #f2f2f5;

    z-index: -1;
	
	border-radius: 50px;
}

.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: Manrope;
    font-size: 27px;
    font-weight: 600;
    line-height: 120%;
    
    text-align: left;

    margin-bottom: 10px;
}

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

    margin-bottom: 20px;
}

.CTA_Block--1 .CTA_Block__title span {
	color: #4746D6;
}

:is(.CTA_Block--4, .CTA_Block--5) .CTA_Block__title {
    color: rgb(36, 35, 32);
    font-family: Manrope;
    font-size: clamp(35px, var(--baseVW) + 8px, 48px);
    font-weight: 400;
    line-height: 120%;
    
    text-align: left;

    margin-bottom: 25px;
}

.CTA_Block__subtitle {
    position: relative;

    color: #4C5056;
    font-family: Manrope;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    
    text-align: left;

    margin-bottom: 20px;
}

.CTA_Block--1 .CTA_Block__subtitle {
    font-size: clamp(16px, var(--baseVW) - 14px, 20px);

    margin-bottom: 30px;
}

.CTA_Block--1 .CTA_Block__subtitle span {

font-weight: 700;

}

.CTA_Block--4 .CTA_Block__subtitle {
    color: rgb(36, 35, 32);
    font-family: Manrope;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    
    text-align: left;

    margin-bottom: 14px;
}

.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: 80px 0 0;
}

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

.CTA_Block--1 .CTA_Block__text {
    display: flex;
    gap: 30px;
}

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

.CTA_Block__li {
    position: relative;

    margin-left: 30px;

    color: #4C5056;
    font-family: Manrope;
    font-weight: 400;
    line-height: 24px;
    
    text-align: left;

    text-wrap: balance;
	
	background: #F5F5F5;
	border-radius: 30px;
	
	text-align: center;
}

.CTA_Block--1 .CTA_Block__li {
    flex: 1;
    margin-left: 0;
    font-size: 20px;
	
	padding: 60px 25px 25px 25px;
}

.CTA_Block--1 .CTA_Block__li span {
	font-weight: 700;
}

.CTA_Block--1 .CTA_Block__li img {
	max-width: 160px;
	
    position: absolute;
    top: -60px;
    left: calc(50% - 80px);
}

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

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

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

.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: Manrope;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    

    padding: 16px 39px;
}

.CTA_Block--1 .CTA_Block__btn {
    font-size: 19px;
    padding: 20px clamp(20px, var(--baseVW) + 1px, 60px);
    border-radius: 15px;
}


















/*
//////////////////
/////////////
/////////
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: 0;
}

.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: Manrope;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    
    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: Manrope;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    
    text-align: left;
    width: 100%;

    margin-bottom: 15px;
}


.form__subtitle {
    color: rgb(86, 85, 81);
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    
    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: Manrope;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    
    text-align: left;
}

.form__confidencial {
    color: rgb(107, 105, 100);
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    
    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%;
}

.figuresBlock__title {
    text-align: left;
    margin-bottom: 26px;
}

.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;
    border-radius: 25px;

    background: #F2F2F5;


    width: 100%;
    height: auto;

    transition: all .2s;

    z-index: 1;
    
    overflow: hidden;
}

.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 {
    max-width: 280px;
    min-width: auto;
    border-radius: 15px;
    overflow: hidden;
    
    padding: 15px;
    box-sizing: border-box;
}

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

.figuresBlock-figure__img {
    max-width: 250px;
    
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.worksList .figuresBlock-figure__contImg {
    max-width: 280px;   
    padding: 0;
}

.worksList .figuresBlock-figure__contImg .figuresBlock-figure__img {
    max-width: 280px;   
}

.figuresBlock-figure__text {
    flex: 1;

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

    width: 100%;
    
    padding: 0 clamp(20px, var(--baseVW) - 12px, 28px) 22px clamp(20px, var(--baseVW) - 12px, 28px);
    
    box-sizing: border-box;
}

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

.figuresBlock-figure__title {
    flex: 1;

    color: rgb(36, 35, 32);
    font-family: Manrope;
    font-size: clamp(22px, var(--baseVW) - 16px, 24px);
    font-weight: 600;
    line-height: 120%;
    
    text-align: left;

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

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

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

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

.figuresBlock-figure__li {
    color: rgb(86, 85, 81);
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    
    text-align: left;

    width: 100%;
}

.figuresBlock-figure__li__key {
    font-weight: 400;
}

.figuresBlock-figure__li__value {
    font-weight: 700;
}

.figuresBlock-figure__price {color: #E83B80;

    font-family: Manrope;
    font-size: clamp(24px, var(--baseVW) - 14px, 24px);
    font-weight: 700;
    line-height: 29px;
    text-align: left;

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

.figuresBlock-figure__btn {
    position: inherit;

    color: rgb(255,255,255);
    font-family: Manrope;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    
    text-align: center;

    max-height: max-content;
    min-width: 100%;background: #4746D6;

}

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

.figuresBlock-figure__textBtn {
    flex: 1;

    justify-content: flex-start;
    align-items: flex-end;

    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}

/*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-family: Manrope;
font-size: 20px;
font-weight: 600;
line-height: 23px;
text-align: left;
color: #0A153A;

}

.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;
}

.reviewsSlider {
    position: relative;

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

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

.worksSlider__container,
.reviewsSlider__container {
    overflow: hidden;
}

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

.reviewsSlider__wrapper {}

.worksSlider__btn,
.reviewsSlider__btn {
    position: absolute;
}

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

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



















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

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

    border-radius: 25px;
    
    background: #F2F2F5;
}

.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__sub {
    margin: 5px 0;
}

.reviewCard__sub a, .reviewCard__sub span {
    font-family: Manrope;
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    color: #0A153A;
    
    transition: all .5s;
}

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

.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: Manrope;
    font-size: 47px;
    font-weight: 500;
    line-height: 110%;
    
    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;
    justify-content: space-between;
    align-items: center;
    gap: 8px;

    width: 100%;
    padding-top: 4px;
}

.reviewCard__name {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 10px 20px;
    
    color: #0A153A;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 700;
    line-height: 110%;
    
    text-align: left;
}

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

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

.reviewCard__publicDate {
    color: rgb(131, 129, 123);
    font-family: Manrope;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    
    text-align: left;
}

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

.reviewCard__text {
    color: #666666;
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    
    text-align: left;

    width: 100%;
}

.reviewCard__text img {
	max-width: 100%;
	height: auto;
    border-radius: 25px;
}

.reviewCard__text h2,
.reviewCard__text h3,
.reviewCard__text h4,
.reviewCard__text h5,
.reviewCard__text h6,
.reviewCard__text p {
    margin: 10px 0 0;
}

.reviewCard__text p:first-child {
    margin: 0;    
}

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

    color: rgb(86, 85, 81);
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    
    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);
    
    text-align: left;
    word-break: break-word;
}

.aboutUsBlock__text p {
    color: rgb(86, 85, 81);
    font-family: Manrope;
    font-size: clamp(17px, var(--baseVW) - 22px, 18px);
    font-weight: 400;
    line-height: 140%;
    
    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: Manrope;
    font-size: clamp(17px, var(--baseVW) - 22px, 18px);
    font-weight: 400;
    line-height: 140%;
    
    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: Manrope;
    font-size: clamp(27px, var(--baseVW) - 8px, 32px);
    font-weight: 800;
    line-height: 120%;
    
    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: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    
    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: Manrope;
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    
    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: Manrope;
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    
    text-align: left;

    margin-bottom: 15px;
}

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


















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

.howWeWorkBlock__inner {
    width: 100%;
}

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



















/*
//////////////////
/////////////
/////////
numericList
/////////
/////////////
////////////////
*/
.numericList {
    --gapTopBottom: 20px;
    --gapLeftRight: 30px;
    --elemsCount: 6;
    --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__li {
    position: relative;

    justify-self: flex-start;
    flex: 1;

    counter-increment: numericList;
}

.numericList__li:not(:last-child)::after {
    content: '';

    position: absolute;

    top: 41px;
    right: calc((100% - 165px) / 2);

    display: block;
    min-width: 31px;
    max-width: 31px;
    aspect-ratio: 31/26;

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

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

    color: rgb(237, 118, 50);
    font-family: Manrope;
    font-size: 62px;
    font-weight: 700;
    line-height: 90%;
    
    text-align: left;

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

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

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

    margin-bottom: 12px;
}

.numericList__title {
    color: rgb(36, 35, 32);
    font-family: Manrope;
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    
    text-align: left;

    margin-bottom: 7px;
}

.numericList__desc {
    color: rgb(86, 85, 81);
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    
    text-align: left;
}


















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

.FAQBlock__inner {
    width: 100%;
}

.FAQBlock__title {
    text-align: left;
    margin-bottom: 30px;
}

.FAQBlock__content {
    width: 100%;
}


















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

.accordeonBlock__inner {
    --gapTopBottom: 20px;
    --gapLeftRight: 20px;
    --elemsCount: 1;
    --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: 21px clamp(20px, var(--baseVW) - 10px, 30px);
    box-sizing: border-box;

    border-radius: 10px;

    background: #F5F5F5;
}

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

    padding-right: 35px;

    cursor: pointer;

    color: rgb(36, 35, 32);
    font-family: Manrope;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    
    text-align: left;
}

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

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

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

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

    width: 30px;
    height: 30px;

    margin-right: -35px;

   	background: url(../img/plus.svg);
    transition: all .2s;
}

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

.accordeon__text {
    color: rgb(86, 85, 81);
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    
    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;
}

.accordeon--active .accordeon__text p {
    margin: 10px 0 0;
}

.CTA_Block__inner--right ul,
.accordeon--active .accordeon__text ul {
    margin: 0 0 0 30px;
}

.CTA_Block__inner--right ul + p {
    margin: 20px 0;
}

.CTA_Block__inner--right ul li,
.accordeon--active .accordeon__text ul li {
    position: relative;
    margin: 10px 0;   
}

.CTA_Block__inner--right ul li::before,
.accordeon--active .accordeon__text ul li::before {
    content: '➛';    
    position: absolute;
    top: 0;
    left: -30px;
    font-size: 24px;
    color: #E83B80;
}

.CTA_Block__inner--right ul li {
    font-family: Manrope;
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    color: #0A153A;
}












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

.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 {
    color: rgb(86, 85, 81);
    font-family: Manrope;
    font-size: 15px;
    font-weight: 400;
    line-height: 120%;
    
    text-align: center;

    padding: 12px;
    border-radius: 5px;
    background: rgb(248, 248, 248);

    transition: all .5s;
}

.categoryPlate:hover {
    opacity: .75;
}
















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

.catalogBlock__inner {
    width: 100%;
}

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

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

.catalogBlock__title span {
    color: #4746D6;
}

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

.catalogBlock__sort {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    
    background: #F2F2F5;
    border-radius: 15px;
    padding: 15px 20px;
	box-sizing: border-box;

    /* 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: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 110%;
    
    text-align: left;
}

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

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

    cursor: pointer;
}

.catalogBlock__sort__btn--arrow {
    color: #0A153A;
    font-weight: 700;
}

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

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

    color: #E83B80;

    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: 15px;
    background: #F2F2F5;
    padding: 25px 25px 25px;
}

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

.filtersBlock__section--active {
    display: flex;
}

.filtersBlock__title {
    color: #0A153A;
    font-family: Manrope;
    font-size: 23px;
    font-weight: 700;
    line-height: 26px;
    text-align: left;
}

.filtersBlock__settings {
    width: 100%;
}

.filtersBlock__settings ul {
    margin-top: 15px;
}

.filtersBlock__settings ul li {
    margin-bottom: 15px;
}

.filtersBlock__settings ul li a {
    font-family: Manrope;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #4C5056;
    transition: all .5s;
}

.filtersBlock__settings ul li span {
    font-family: Manrope;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #4C5056;
    transition: all .5s;
    opacity: .5;
}

.filtersBlock__settings ul li a:hover {
    color: #0A153A;
}

.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: #4746D6;
    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 #4746D6;

    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: #4746D6;
    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: #4746D6;
    pointer-events: auto;
}

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

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

.filtersBlock__range__sliders__input::-ms-thumb:hover {
    border: 11px solid #4746D6;
}

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


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

    width: 100%;
    margin-left: 0;
}

.filtersBlock__rangeLimits__input {
    flex: 1;

    color: rgb(86, 85, 81);
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    
    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: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    
    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: 2px solid #C8C8C8;
    border-radius: 4px;
    background: rgb(255, 255, 255);
}

.checkbox__input:checked::after {
    background: #E83B80;
    border: 0px;
}

.checkbox__label {
    cursor: pointer;
}

.filtersBlock__btnExpand {
    position: relative;

    color: rgb(237, 118, 50);
    font-family: Manrope;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    
    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: Manrope;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    
    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: Manrope;
    font-size: 20px;
    font-weight: 700;
    line-height: 110%;
    
    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: Manrope;
    font-size: 20px;
    font-weight: 700;
    line-height: 110%;
    
    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: Manrope;
    font-size: 20px;
    font-weight: 500;
    line-height: 110%;
    
    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 {
    position: relative;
}

.cardBlock--review {}

.cardBlock--object {}

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

.cardBlock__title {
    color: rgb(36, 35, 32);
    font-family: Manrope;
    font-size: clamp(40px, 5vw + 2px, 44px);
    font-weight: 700;
    line-height: 120%;
    
    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: 20px;
}

.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: 700;
    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;
}

.cardBlock__slider {
    width: 100%;
}

.cardBlock__slider__container {}

.cardBlock__slider__wrapper {}

.cardBlock__slider__slide {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    
    border: 10px solid #F2F2F5;
    border-radius: 20px;
    box-sizing: border-box;
}

.cardBlock__slider__img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

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

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

    background: rgb(237, 233, 229);
}

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

.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 #e1e1e1;
    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%;
    padding: 0 clamp(20px, var(--baseVW), 20px);
    box-sizing: border-box;

    height: max-content;
}

.characteristicsHouse.works .block--lead {
    margin: 0 0 30px;
}

.characteristicsHouse.works .title {
    font-family: Manrope;
    font-size: 22px;
    font-weight: 600;
    line-height: 25.3px;
    text-align: left;
    color: #0A153A;
}

.characteristicsHouse.works p {
    margin: 10px 0 0 0;
}

.characteristicsHouse__title {
    color: #0A153A;
    font-family: Manrope;
    font-size: clamp(28px, var(--baseVW) - 10px, 32px);
    font-weight: 700;
    line-height: 36px;
    text-align: left;

    margin-bottom: 20px;
}

.characteristicsHouse p {
    font-family: Manrope;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #0A153A;
}

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

    width: 100%;
}

.cardBlock .characteristicsList {
    margin-bottom: 35px;
}

.characteristicsList__li {
    position: relative;

    display: flex;
    justify-content: space-between;
    gap: 10px;

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

.characteristicsList__key {
    position: relative;

    flex: 1;

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

    max-width: max-content;

}

.characteristicsList__li::after {
    content: '';
    flex: 1;
    order: 2;
    display: inline;
    margin-bottom: 5px;
    min-width: 10px;
    border-bottom: 1px dashed rgb(172, 171, 166);
}

.characteristicsList__value {
    display: flex;
    align-items: flex-end;
    order: 3;
}

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

    margin-bottom: 25px;
}

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

    width: 100%;
    padding: 20px 0 0;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
}

.cardBlock__priceList__priceCont:first-child {
    border-radius: 10px 10px 0px 0px;
}

.cardBlock__priceList__priceCont:last-child {
    border-radius: 0px 0px 10px 10px;
}

.cardBlock__priceList__key {
    color: rgb(107, 105, 100);
    font-family: Manrope;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    
    text-align: left;

    white-space: nowrap;
}

.cardBlock__priceList__value {
    color: #E83B80;
    font-family: Manrope;
    font-size: 28px;
    font-weight: 800;
    line-height: 32px;
    text-align: right;

    white-space: nowrap;
}

.cardBlock__btn {
    padding: 18px 20px;
    width: 100%;
    max-width: 210px;
    border-radius: 15px;
    
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
}

.cardBlock__content {
    width: 100%;
    margin: 40px 0 0;
}

.cardBlock__tabsBtns {
    width: 100%;
}

.cardBlock__tabsBtns__wrapper {
    display: flex;
    align-items: flex-end;
    
    background: #F2F2F5;
    
    border-radius: 15px;
    gap: 15px;
    padding: 15px;
    
    box-sizing: border-box;
}

.cardBlock__tabsBtns__btn {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #FFFFFF;

    padding: 18px 20px;
    width: 100%;

    color: #4746D6;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 20px;

    cursor: pointer;

    transition: all .2s, font-weight 0s;
    
    border-radius: 10px;
}

.cardBlock__tabsBtns__btn:not(.cardBlock__tabsBtns__btn--active):hover {
    background: #4746D6;
    
    color: #ffffff;
}

.cardBlock__tabsBtns__btn--active {
    background: #4746D6;
    
    color: #ffffff;
    font-weight: 500;
}

.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: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.cardBlock__productDesc p {
    font-family: Manrope;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
}

.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: Manrope;
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    
    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;

    font-family: Manrope;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    
    color: #0A153A;
}


















/*
 //////////////////
 /////////////
 /////////
 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: Manrope;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    
    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;
}

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


















/*
//////////////////
/////////////
/////////
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: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 110%;
    
    text-align: left;
}

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

.cardBlock--object .objectCharacteristics__li__value {
    color: rgb(86, 85, 81);
    font-family: Manrope;
    font-size: 26px;
    font-weight: 600;
    line-height: 110%;
    
    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: #0A153A;
    font-family: Manrope;
    font-size: clamp(32px, var(--baseVW) - 6px, 50px);
    font-weight: 700;
    line-height: 120%;
    
    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: #0A153A;
    font-family: Manrope;
    font-size: clamp(23px, var(--baseVW) - 14px, 26px);
    font-weight: 700;
    line-height: 110%;
    
    text-align: left;
    white-space: pre-line;

    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;
}

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

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

article.article p {
    color: #0A153A;
    font-family: Manrope;
    font-size: clamp(18px, var(--baseVW) - 20px, 20px);
    font-weight: 400;
    line-height: 140%;
    
    text-align: left;
    white-space: pre-line;

    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;
}

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

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

article.article ol li {
    display: inline-flex;
    position: relative;

    color: rgb(86, 85, 81);
    font-family: Manrope;
    font-size: clamp(18px, var(--baseVW) - 20px, 20px);
    font-weight: 400;
    line-height: 140%;
    
    text-align: left;
    white-space: pre-line;

    counter-increment: numericList;
}


article.article ol li::before {
    content: counters(numericList, '.') ".";

    margin: 0px 0px 0px 7px;
    min-width: 25px;
}

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

article.article ul {}

/* 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(86, 85, 81);
    font-family: Manrope;
    font-size: clamp(18px, var(--baseVW) - 20px, 20px);
    font-weight: 400;
    line-height: 140%;
    
    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;
}


















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

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

.contactsBlock__header {
    width: 100%;
}

.contactsBlock__title {
    color: rgb(36, 35, 32);
    font-family: Manrope;
    font-size: 44px;
    font-weight: 700;
    line-height: 120%;
    
    text-align: left;

    width: 100%;
}

.contactsBlock__content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.contactsBlock__content__left {
    flex-basis: 400px;

    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0px 15px;

    height: max-content;
}

.contactsBlock__phone {
    color: #0A153A;
    font-family: Manrope;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    
    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: #4C5056;
    font-family: Manrope;
    font-size: 22px;
    font-weight: 400;
    line-height: 120%;
    
    text-align: left;

    margin-bottom: 20px;
}

.contactsBlock__text span {
    color: #0A153A;
    font-weight: 700;
}

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

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

.contactsBlock__content__right {
    flex-basis: 675px;
    
}

.contactsBlock__content__right iframe {
    border-radius: 20px;
}


















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

.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%;
}

.footer__inner {
    width: 100%;
    padding:  0 0 80px;
    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--2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.footer__title {
    color: #0A153A;
    font-family: Manrope;
    font-size: 50px;
    font-weight: 700;
    line-height: 58px;
    
    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: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    
    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: Manrope;
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    
    text-align: left;

    white-space: nowrap;

    margin-bottom: 10px;
}

.footer__address {}

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

.footer__text {
    color: #4C5056;
    font-family: Manrope;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    
    text-align: left;
}

.footer__text span {
    color: #0A153A;
    font-weight: 700;
}

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

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

.footer__bottom .footer__grid--2>*:last-child {
    justify-content: center;
}

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

.footer__desc {
    color: #4C5056;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    text-align: left;
}

.footer__conf {
    color: #4C5056;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-align: right;

    cursor: pointer;

    transition: all .2s;
}

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

.catalogBlock__content .figuresBlock-figure__img {
	object-fit: cover;
}

.footer__grid__column .footer__logo {
    max-width: 224px;
    height: 32px;
}

.footer__grid__column--flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer__top .footer__grid__column {
    border-radius: 40px;
    background: #F2F2F5;
    padding: 50px;
}

.footer--form .title {
    font-family: Manrope;
font-size: 28px;
font-weight: 700;
line-height: 33.6px;
text-align: left;
color: #0A153A;

}

.footer--form .desc {
    margin: 20px 0;
    
    font-family: Manrope;
font-size: 20px;
font-weight: 400;
line-height: 24px;
text-align: left;
color: #4C5056;

}

.footer--form .form--elem input[type=text] {
	width: 100%;
border-radius: 10px;
background: #FFFFFF;
padding: 12px 15px;

font-family: Manrope;
font-size: 18px;
font-weight: 400;
line-height: 22px;
text-align: left;
color: #4C5056;

margin: 0 0 3px 0;

box-sizing: border-box;
}

.footer--form .form--elem textarea {
    width: 100%;
    height: 70px;
    border-radius: 10px;
    background: #FFFFFF;
    padding: 12px 15px;
    
    box-sizing: border-box;
}

.footer--form .form--elem input[type=submit] {
    width: 100%;
    display: inline-block;
    margin: 6px 0 0;
    border-radius: 10px;
background: #4746D6;

padding: 15px 0;
text-align: center;

font-family: Manrope;
font-size: 19px;
font-weight: 400;
line-height: 22px;
color: #FFFFFF;

box-sizing: border-box;
}

.CTA_Block__inner--left,
.CTA_Block__inner--right {
    flex: 1;
}

.CTA_Block__inner--right p {
    font-family: Manrope;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #0A153A;
}

.CTA_Block__inner--right h2 {
    font-family: Manrope;
    font-size: 50px;
    font-weight: 700;
    line-height: 57.5px;
    text-align: left;
    color: #0A153A;
    
    margin: 0 0 20px;
}

.CTA_Block__inner--right h2 strong {
    color: #4746D6;
}

.CTA_Block__inner--left img {
    max-width: 560px;
    width: 100%;
border-radius: 40px;


}

.CTA_Block__inner--right img {
    max-width: 300px;
    width: 100%;
    height: auto;
    
    margin: 0 0 40px;
}

.CTA_Block__inner--right p {
    font-family: Manrope;
font-size: 20px;
font-weight: 400;
line-height: 28px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color: #0A153A;

margin:0 0 20px ;
}

.block--lead {
    margin: 30px 0 0;
    border-radius: 20px;
    background: #E83B80;
    padding: 30px;
}

.block--lead p:nth-child(1) {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    margin: 0 0 10px;
}

.block--lead p:nth-child(2) {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}

.block--lead .cardBlock__btn {
    max-width: 100%;
    
    margin: 20px 0 0;
    
    background: #fff;
    color: #4746D6;
    
    box-sizing: border-box;
    text-align: center;
    
    cursor: pointer;
    
    transition: all .5s;
}

.block--lead .cardBlock__btn:hover {
    opacity: .9;
}

.sidebar.fixed {
  position: fixed;
    max-width: 420px;
}

.catalogBlock__header.flex--block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.catalogBlock__header--left {
	flex: 1;
}

.catalogBlock__header--right {
    max-width: 660px;
    display: flex;
    align-items: center;
    gap: 30px;
    
    background: #E83B80;
    border-radius: 20px;
    padding: 20px;
}

.catalogBlock__header--right.short--block {
    max-width: 414px;
}

.catalogBlock__header--right .catalogBlock--btn {
       display: inline-block;
    padding: 20px 45px;
    
       background: #ffffff;
    border-radius: 10px;
       
       
       font-family: Manrope;
font-size: 23px;
font-weight: 600;
line-height: 25.99px;
text-align: center;
color: #4746D6;
transition: all .5s;
}

.catalogBlock__header--right .catalogBlock--btn:hover {
    opacity: .7;
    cursor: pointer;
}

.catalogBlock__header--right p:nth-child(1) {
    font-family: Manrope;
font-size: 24px;
font-weight: 700;
line-height: 26px;
text-align: left;
color: #FFFFFF;

margin: 0 0 5px;

}
.catalogBlock__header--right p:nth-child(2) {
    font-family: Manrope;
font-size: 18px;
font-weight: 400;
line-height: 20px;
text-align: left;
color: #FFFFFF;


}

.reviewsBlock__content--reviews .pagination,
.services--block__archive .pagination {
    margin: 30px 0 0;
}

.services--block__archive .figuresBlock-figure__title {
    font-size: clamp(22px, var(--baseVW) - 16px, 28px);
    font-weight: 600;
    line-height: 34px;
    color: #0A153A;
}

.services--block__archive .figuresBlock-figure__btn {
    max-width: 140px;
    min-width: auto;
}

.services--block__archive .figuresBlock-figure__contImg {
    max-width: 160px;
    min-width: auto;
    border-radius: 15px;
    overflow: hidden;
    
    box-sizing: border-box;
    padding: 0;
    
    position: absolute;
    bottom: -20px;
    right: -20px;
}

.services--block__archive .figuresBlock-figure__img {
    max-width: 160px;
    min-width: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 30px 0;
}

.services--block__archive .figuresBlock-figure__text {
    min-height: 280px;
    overflow: hidden;
    
    padding: 22px clamp(20px, var(--baseVW) - 12px, 28px) 22px clamp(20px, var(--baseVW) - 12px, 28px);
}

.cardBlock--product .btn--slider {
    border-radius: 15px;
}

.figuresBlock__list .figuresBlock-figure {
	display: flex;
	flex-direction: row;
	gap: 30px;
	
	padding: 30px;
	
	background: none;
	border: 1px solid #F2F2F5;
	
	margin-bottom: 30px;
}

.figuresBlock__list .figuresBlock-figure .figuresBlock-figure__title {
    flex: 0;
    
	font-family: Manrope;
	font-size: 28px;
	font-weight: 600;
	line-height: 30.8px;
	text-align: left;
	color: #0A153A;
	
	margin: 0 0 15px;
}

.figuresBlock__list .figuresBlock-figure .figuresBlock-figure__text {
	gap: 10px;	
	
	font-family: Manrope;
	font-size: 18px;
	font-weight: 400;
	line-height: 25.2px;
	text-align: left;
	color: #0A153A;
	
	padding: 0;
}

.figuresBlock__list .figuresBlock-figure .title {
	font-family: Manrope;
	font-size: 22px;
	font-weight: 600;
	line-height: 24.2px;
	text-align: left;
	color: #0A153A;
	
	margin: 15px 0 0;
}

.figuresBlock__list .figuresBlock-figure .title + p {
    margin-top: 7px;
}

.figuresBlock__list .figuresBlock-figure .figuresBlock-figure__btn {	
	background: none;
	width: auto;
    min-width: auto;
	padding: 0;
	
	font-family: Manrope;
	font-size: 20px;
	font-weight: 600;
	line-height: 22px;
	text-align: left;
	color: #4746D6;	
	
	transition: all .5s;
}

.figuresBlock__list .figuresBlock-figure .figuresBlock-figure__btn:hover {
	cursor: pointer;	
	opacity: .75;
}

.figuresBlock-figure__text--bottom {
	margin: 20px 0 0 !important;
	
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.figuresBlock-figure__text--bottom span {
	font-family: Manrope;
	font-size: 18px;
	font-weight: 400;
	line-height: 25.2px;
	text-align: left;
	color: #8F8F8F;
}

.typesBlock {
    width: 100%;
}

.typesBlock__title {
    text-align: left;
    
    margin: 0 0 30px;
}

.typesBlock__desc {
    margin: 0 0 30px;
    
    font-family: Manrope;
    font-size: 22px;
    font-weight: 400;
    line-height: 30.8px;
    text-align: left;
    color: #4C5056;
}

.typesBlock__list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
}

.typesBlock__footer--text {
    margin: 20px 0 0;
    
    background: #EFF2FB;
    padding: 20px 0;
    border-radius: 20px;
    
    font-family: Manrope;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #4C5056;
}

.typesBlock__list .typesBlock__list--item img {
    max-width: 100%;
    border-radius: 20px;
}

.productsBlock {
    width: 100%;
}

.productsBlock__title {
    text-align: left;
    
    margin: 0 0 30px;
}

.productsBlock__desc {
    margin: 0 0 30px;
    
    font-family: Manrope;
font-size: 20px;
font-weight: 400;
line-height: 24px;
text-align: left;
color: #0A153A;

}

.productsBlock__desc ul {
    margin: 0 0 0 30px;
}

.productsBlock__desc li {
    position: relative;
    margin: 10px 0;   
}

.productsBlock__desc li a {
	text-decoration: underline;
	transition: all .5s;
}

.productsBlock__desc li a:hover {
	text-decoration: none;
	color: #999;
}

.productsBlock__desc li::before {
    content: '➛';    
    position: absolute;
    top: 0;
    left: -30px;
    font-size: 24px;
    color: #E83B80;
}

.productsBlock__inner {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.productsBlock__gallery {
    display: grid;
    align-items: center;
    grid-template-columns: 210px 176px 184px;
    gap: 10px;
}

.productsBlock__gallery img {
    margin: 10px 0;   
}

.productsBlock__gallery .productsBlock__gallery--col:nth-child(1) img {
    max-width: 210px;
    width: 100%;
}

.productsBlock__gallery .productsBlock__gallery--col:nth-child(2) img {
    max-width: 176px;
    width: 100%;
}

.productsBlock__gallery .productsBlock__gallery--col:nth-child(3) img {
    max-width: 184px;
    width: 100%;
}

.servicesBlock {
    width: 100%;
}

.servicesBlock__title {
    text-align: left;
}

.servicesBlock__footer--text {
    margin: 20px 0 0;
    background: #E83B80;

    padding: 20px 0;
    border-radius: 20px;
    font-family: Manrope;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.servicesBlock__inner--right {
    margin: 20px 0 0;
}

.servicesBlock__gallery .servicesBlock__gallery--col:nth-child(1) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 0 20px;
}

.servicesBlock__gallery .servicesBlock__gallery--col:nth-child(2) {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 20px;
    margin: 0 0 20px;
}

.servicesBlock__gallery .servicesBlock__gallery--col:nth-child(3) {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 20px;
    margin: 0 0 20px;
}

.servicesBlock__gallery .figuresBlock-figure__title {
    font-size: clamp(20px, var(--baseVW) - 16px, 26px);
    font-weight: 600;
    line-height: 30px;
    color: #0A153A;
}

.servicesBlock__gallery .figuresBlock-figure__btn {
    max-width: 140px;
    min-width: auto;
}

.servicesBlock__gallery .figuresBlock-figure__contImg {
    max-width: 220px;
    min-width: auto;
    border-radius: 15px;
    overflow: hidden;
    
    box-sizing: border-box;
    padding: 0;
    
    position: absolute;
    bottom: -20px;
    right: -20px;
}

.servicesBlock__gallery .figuresBlock-figure__img {
    max-width: 220px;
    min-width: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 30px 0;
}

.servicesBlock__gallery .figuresBlock-figure__text {
    min-height: 280px;
    
    padding: 22px clamp(20px, var(--baseVW) - 12px, 28px) 22px clamp(20px, var(--baseVW) - 12px, 28px);
}

.servicesForm {
    background: #F2F2F5;
    border-radius: 15px;
    padding: 25px;
    
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    color: #80858B;
}

.servicesForm--item .servicesForm--item__form p {
    margin: 0;
}

.servicesForm--item p {
    margin: 10px 0 0;
}

.servicesForm--item__form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.servicesForm input[type=text] {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 15px 20px;
    box-sizing: border-box;
    
    color: #4C5056;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
}

.servicesForm input[type=submit] {
    border-radius: 10px;
    padding: 15px 40px;
    box-sizing: border-box;
    
    background: #4746D6;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 700;
    line-height: 18.08px;
    text-align: center;
    color: #FFFFFF;
}

.service--thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 100%;
    max-width: 560px;
    max-height: 350px;
    background: #F2F2F5;
    
    text-align: center;
    box-sizing: border-box;
}

.service--thumb img {
    top: 30px;
    position: relative;   
	border-radius: 20px;
}

.catalogBlock__header.flex--block.service--block {
    align-items: flex-end;
}

.priceTable {
    width: 100%;    
}

.priceTable__title {
    text-align: left;
}

.priceTable table {
    margin: 30px 0 0;
    width: 100%;
}

.priceTable table thead tr {
    background: #F2F2F5;
}

.priceTable table tr th {
    text-align: left;
    padding: 20px 15px;
    
    font-family: Manrope;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    color: #0A153A;
}

.priceTable table tr th:nth-child(1) {
    border-radius: 10px 0  0 10px;
}

.priceTable table tr th:last-child {
    border-radius: 0 10px 10px 0 ;
}

.priceTable table tr td {
    text-align: left;
    padding: 15px;
    
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #0A153A;
    
    border-bottom: 1px solid #EBEEF5;
}

.footer--form input[data-error=true] {
    background: #fff1f1;
}
.footer--form input[data-error=true]::placeholder {
    color: #f44336;
}

.figuresBlock__list,
.reviewsBlock .reviewsList {
	margin-top: 30px;
    position: relative;
}

.videoSlider .videoSlider__btn--next,
.videoSlider .videoSlider__btn--prev,
.figuresBlock__list .worksSlider__btn--next,
.figuresBlock__list .worksSlider__btn--prev, 
.reviewsBlock .reviewsList .reviewsSlider__btn--next,
.reviewsBlock .reviewsList .reviewsSlider__btn--prev {
	top: calc(50% - 26px);
}

.worksList,
.reviewsList {
position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0px;
}

.post_table {
    width: 100%;
    margin: 20px 0 0 0;
    
    text-align: right;
    font-family: Manrope;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #0A153A;
    
    font-style: italic;
}

.servicesBlock__list--item__4 .figuresBlock-figure__contImg {
    bottom: 0;
    right: 0;
}

.servicesBlock__list--item__5 .figuresBlock-figure__contImg {
    max-width: 280px;
    bottom: 0;
    right: 0;
}

.servicesBlock__list--item__5 .figuresBlock-figure__contImg .figuresBlock-figure__img {
     max-width: 280px;   
}

.galleryBlock {
    width: 100%;
}

.galleryBlock__title {
    text-align: left;
    margin: 0 0 30px;
}

.galleryBlock__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.galleryBlock__list .galleryBlock__list--item {
}

.galleryBlock__list .galleryBlock__list--item img {
    max-width: 100%;
    width: auto;
    border-radius: 20px;
}

.galleryBlock__text {
    margin: 0 0 30px;
    font-family: Manrope;
    font-size: 22px;
    font-weight: 400;
    line-height: 30.8px;
    text-align: left;
    color: #4C5056;
}




.videoBlock {
    width: 100%;
}

.videoBlock__title {
    text-align: left;
    margin: 0 0 30px;
}

.videoBlock .videoElement p {
    margin: 20px 0 0;
    
    font-family: Manrope;
    font-size: 20px;
    font-weight: 600;
    line-height: 23px;
    text-align: left;
    color: #0A153A;
}




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

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

    min-width: 0px;
}

.videoSlider video {
    border-radius: 30px;
}

.videoBlock__inner {
    width: 100%;   
}

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

.videoSlider__container {
    overflow: hidden;
}

.videoSlider__wrapper {
    height: auto;
}

.videoSlider__container .figuresBlock-figure__title {

    
    font-family: Manrope;
font-size: 20px;
font-weight: 600;
line-height: 23px;
text-align: left;
color: #0A153A;

}

.videoSlider__btn {
    position: absolute;
}

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

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

input.city {
	display: none;
}