@font-face {
    font-family: "TenorSans";
    src: url("fonts/TenorSans-Regular.ttf");
    font-weight: 400;
    font-display:swap;
}

@font-face {
    font-family: "Involve";
    src: url("fonts/Involve-Regular.ttf");
    font-weight: 400;
    font-display:swap;
}

@font-face {
    font-family: "Involve";
    src: url("fonts/Involve-Medium.ttf");
    font-weight: 500;
    font-display:swap;
}

@font-face {
    font-family: "Involve";
    src: url("fonts/Involve-SemiBold.ttf");
    font-weight: 600;
    font-display:swap;
}

@font-face {
    font-family: "Involve";
    src: url("fonts/Involve-Bold.ttf");
    font-weight: 700;
    font-display:swap;
}

@font-face {
    font-family: "OpenSans";
    src: url("fonts/OpenSans-Light.ttf");
    font-weight: 300;
    font-display:swap;
}

@font-face {
    font-family: "OpenSans";
    src: url("fonts/OpenSans-Regular.ttf");
    font-weight: 400;
    font-display:swap;
}

@font-face {
    font-family: "OpenSans";
    src: url("fonts/OpenSans-Medium.ttf");
    font-weight: 500;
    font-display:swap;
}

@font-face {
    font-family: "OpenSans";
    src: url("fonts/OpenSans-SemiBold.ttf");
    font-weight: 600;
    font-display:swap;
}

@font-face {
    font-family: "OpenSans";
    src: url("fonts/OpenSans-Bold.ttf");
    font-weight: 700;
    font-display:swap;
}

@font-face {
    font-family: "OpenSans";
    src: url("fonts/OpenSans-ExtraBold.ttf");
    font-weight: 800;
    font-display:swap;
}

* {
    margin: 0px;
    padding: 0px;
    outline: none;
    box-sizing: border-box;
    font-family: "OpenSans";
    font-weight:400;
}

main {
    background: #F6F5F4;
}

a {
    color: #000;
    text-decoration: none;
    transition:all ease-out .2s;
}

a:hover {
    color:#0A102E;
}

ul {
    list-style:none;
}

li {
    text-decoration:none;
}

.bg-white {
    background:#fff;
}

.bg-gray {
    background:#f6f5f4 !important;
}

@media (min-width:1300px) {
    .swiper-block .swiper {
        margin-left: -40px !important;
        margin-right: -40px !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

.scroll-hidden {
    overflow:hidden;
}

.blur-elements {
    filter: blur(5px);
    z-index: -1;
    position: relative;
}

.wrapper {
    max-width: 1636px;
    margin:auto;
}

.big-wrapper {
    max-width: 1792px;
    margin:auto;
}

.section-paddings {
    padding-top:90px;
    padding-bottom:75px;
}

.big-paddings {
    padding-top:112px;
    padding-bottom:60px;
}

.button {
    border-radius: 5px;
    background: #3F4B7F;
    display: flex;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    color:#fff;
    font-family: "Involve";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    outline:none;
    border:none;
    cursor:pointer;
    opacity:1;
    transition:opacity ease-out .2s;
    overflow:hidden;
    position:relative;
}

.button:after {
    content: '';
    height: 104px;
    width: 10px;
    display: block;
    background: linear-gradient(90deg, rgb(255 255 255) 0%, #ffffff 49%, rgb(255 255 255) 100%);
    position: absolute;
    top: -30px;
    bottom: 0;
    left: 0;
    filter: blur(25px);
    animation: moveRight 4s infinite;
    transform: rotate(45deg);
    z-index: 1;
}

@keyframes moveRight {
    0% {
        left:-60%;
    }
    100% {
        left:120%;
    }
}

.secondary-button {
    border-radius: 5px;
    border: 2px solid #3F4B7F;
    color: #3F4B7F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 14px 32px;
    display: block;
    width: fit-content;
    font-size:16px;
    cursor:pointer;
    transition: all ease-out .2s;
}

.main-white {
    background:#fff;
}

.secondary-button:hover {
    color:#fff;
    background:#3F4B7F;
}

.button:hover {
    opacity:.8;
    color:#fff;
}

.title {
    color: #000;
    text-align: center;
    font-family: "Involve";
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* padding-bottom:65px; */
    padding-bottom: 15px;
}

.title-rubric {
    display:flex;
    justify-content:space-between;
}

.title-rubric .title {
    padding-bottom:0;
}

.title-rubric__more {
    color: #3F4B7F;
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    align-items: center;
    display: flex;
}

.title-rubric__more svg {
    margin-left:25px;
}

.title-rubric__more:hover svg path {
    fill:#0A102E;
}

.swiper-rubric-arrows {
    display:flex;
    justify-content: flex-end;
    
}

.swiper-rubric-arrows > .swiper-rubric-arrow:first-child {
    margin-right:20px;
}

.swiper-rubric-arrow {
    background:#945C65;
    border-radius:50%;
    padding:17px;
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.swiper-rubric-arrow:hover {
    opacity:.8;
}

.swiper-mobile-navigations {
    display:none;
}

header {
    background:#fff;
    position:relative;
    z-index:1;
    border-bottom: 1px solid #BBB;
}

body.header-no-border header, body.header-sticked header {
    border-bottom:0;
}

.header-burger {
    display:none;
}

.header {
    display:flex;
    justify-content:space-between;
    align-items: center;
    height: 119px;
}


.header * {
    font-family: "Involve";
    font-weight:400;
}

.header-menu__item-1 {
    display:none;
}

.header-menu__item a svg, .header-menu__mobile-contacts {
    display:none;
}

.header .header-button {
    color: #fff;
}

.header-logo {
    height: fit-content;
    width: fit-content;
}

.header-menu {
    display:flex;
}

.header-menu__list {
    display:flex;
}

.header-menu__list > .header-menu__item {
    width: fit-content;
    text-align: center;
    margin-right: 15px;
}

.header-menu__list > .header-menu__item:last-child {
    margin-right: 0;
}

.header-menu__item {
    color: #000;
    text-align: center;
    font-family: "Tenor Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.header-menu__item a {
    padding: 0 15px;
}

.header-menu__item a svg path:not([stroke]) {
    fill:#868686 !important;
}

.header-menu__item a svg path[stroke] {
    stroke:#868686 !important;
}

.header-menu__item.active a svg path:not([stroke]), .header-menu__item:hover a svg path:not([stroke]) {
    fill:#3F4B7F !important;
}

.header-menu__item.active a svg path[stroke], .header-menu__item:hover a svg path[stroke] {
    stroke:#3F4B7F !important;
}

.header-contacts__phone-intro {
    display:none;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 10px;
    color:#ACACAC;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size:16px;
}

.header-contacts > * {
    margin-bottom:4px;
}

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

.header-contacts__social {
    display:flex;
    justify-content: flex-end;
}

.header-contacts__social-item {
    margin-right:10px;
    border-radius:50%;
    width: 33px;
    height: 33px;
}

.header-contacts__social-item img {
    max-width:27px;
}

.header-contacts__social > .header-contacts__social-item:last-child {
    margin-right:0;
}

header.header-sticky-load {
    position:fixed;
    left:0;
    right:0;
    top:0;
    z-index:99;
    opacity:0;
    visibility:hidden;
    transform: translateY(-100%);
    box-shadow: -1px 5px 18px 0px #d4d4d4;
}

header.header-sticky-load .header {
    height:90px;
}

header.header-sticky-load .header-contacts__address, header.header-sticky-load .header-contacts__social {
    display:none;
}

header.header-sticky-load .header-contacts__phone-intro {
    display:block;
    margin-bottom: 2px;
}

header.header-sticky-load .header-contacts__phone {
    margin-bottom:0;
}

header.header-sticky-load .header-logo {
    max-width:200px;
}

header.header-sticky-loaded {
    opacity:1;
    visibility:visible;
    transform: translateY(0%);
    transition:all ease-out .2s;
}

.header-sticked main {
    margin-top:119px;
}

.promo-swiper__image {
    height:auto;
    max-width: 100%;
    display:block;
    width:100%;
}

.promo-swiper__image.mobile {
    display:none;
}

section.utps {
    background: #F6F5F4;
}

.utps-list {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}

.utps-item {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
    padding: 30px 32px 60px 32px;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    max-width:349px;
}

.utps-item__icon {
    background:rgba(148, 92, 101, 0.20);
    padding:19px;
    border-radius:50%;
    width:90px;
    height:90px;
    margin-bottom:20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.utps-item__title {
    color: #000;
    text-align: center;
    font-family: "Involve";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom:25px;
    letter-spacing: 1px;
}

.utps-item__description {
    color: #696984;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
}

section.banner {
    height:842px;
    padding-bottom:107px;
}

section.banner.about {
    background: url('/templates/img/main/main-about-banner.png');
}

section.banner.action {
    background: url('/templates/img/main/main-action-banner.png');
}

section.banner .wrapper {
    display:flex;
    justify-content:flex-start;
    align-items:flex-end;
    height:100%;
}

.banner-content {
    display:flex;
    flex-direction:column;
}

.banner-content__title {
    text-align:left;
    padding-bottom:0;
}

.banner-content__description {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.72px;
    text-transform: uppercase;
}

section.services-events {
    background: #F7F6FA;
}

.events-listing {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
}

.events-item {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
    padding:0 45px 30px 30px;
    position:relative;
    overflow:hidden;
}


.events-item__title {
    color: #000;
    font-family: "Involve";
    margin-bottom:15px;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.events-item__description {
    margin-bottom:20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    z-index: 1;
}

.events-item__link {
    color: #2348A3;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    z-index: 1;
    width:fit-content;
    transition: all ease-out .2s;
}

.events-item__link svg {
    margin-left:25px;
}

.events-listing__other {
    display:flex;
    flex-wrap:wrap;
    width:1120px;
    justify-content: space-between;
}

.events-listing > .events-item {
    height:640px;
    width:640px;
}

.events-item__image {
    position:absolute;
    right:0;
    bottom:0;
    z-index:0;
    pointer-events:none;
    transition:all ease-out .3s;
}

.events-listing__other .events-item > * {
    max-width:580px;
}

.events-listing__other .events-item:nth-child(1) {
    height:304px;
    width:1120px;
    margin-bottom: 32px;
}

.events-listing__other .events-item:nth-child(2) {
    height:304px;
    width:544px;
}

.events-listing__other .events-item:nth-child(3) {
    height:304px;
    width:544px;
}

.events-item:hover .events-item__image {
    transform:scale(1.05);
}

.events-item:hover .events-item__link {
    color:#0A102E;
}

.events-item__link svg path {
    transition: all ease-out .2s;
}

.events-item:hover .events-item__link svg path {
    fill:#0A102E;
}

.services-listing {
    display:flex;
    justify-content:space-between;
    margin-top:112px;
}

.services-item {
    display:flex;
    flex-direction:column;
    width:192px;
    text-align:center;
    margin:auto;
    display:block;
}

.services-item img {
    border-radius:50%;
    width: 100%;
    transition:all ease-out .3s;
}

.services-item__title {
    display:block;
    margin-top:9px;
    font-size:20px;
    font-family: "Involve";
    display:flex;
    align-items:center;
    justify-content:center;
    height: 100%;
}

.services-item:hover img {
    transform:scale(1.05);
}

#servicesSwiper {
    padding-top:10px;
}

section.principles .wrapper {
    position:relative;
    height: 100%;
}

section.principles {
    background: #EBE7E3;
    padding-top:55px;
    height:789px;
}

section.principles .title {
    padding-bottom:45px;
}

section.principles p {
    margin-bottom:10px;
}

.principles-content {
    padding-top:0;
    margin-top: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
}

.principles-content__description {
    max-width:670px;
    margin-top:45px;
    position: relative;
    z-index: 1;
}

.principles-content__description * {
    color: #696984;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.36px;
}

.principles-content__description strong {
    font-weight:700;
    text-transform: uppercase;
}

.principles-image {
    position:absolute;
    bottom:0;
    right:0;
    pointer-events:none;
}

.principles-image-mobile {
    display:none;
}

.specialists {
    background: #F6F5F4;
}

.specialists-listing {
    padding-top:50px;
}

.specialists-listing .swiper-wrapper {
    padding-bottom:50px;
}

.specialists-item {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
    padding: 20px 20px 35px 20px;
}

.specialists-item__image {
    border-radius: 20px;
    max-height:350px;
    object-fit:cover;
    width:100%;
    margin-bottom:20px;
    object-position:top;
}

.specialists-item__post {
    display:flex;
    align-items:center;
    color: #696984;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 0.28px;
    margin-bottom:20px;
    min-height:51px;
}

.specialists-item__post svg {
    margin-right:10px;
    height:24px;
    min-width:33px;
}

.specialists-item__name {
    color: #252641;
    font-family: "Involve";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom:20px;
    display:block;
}

.specialists-item__name > span {
    text-transform: uppercase;
    display:block;
}

.specialists-item__button {
    width: fit-content;
}

.specialists-item__links {
    display: flex;
    align-items: center;
    flex-wrap:wrap;
}

.specialists-item__link {
    margin-left:0;
    color: #3F4B7F;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 14px 32px;
    text-align:center;
    width: fit-content;
    transition:all ease-out .2s;
}

.specialists-item__link:hover {
    color:#0A102E;
}


section.gallery {
    background:#fff;
}

#mainGallerySwiper .swiper-wrapper, #aboutGallerySwiper .swiper-wrapper {
    transition-timing-function: linear;
}

#mainGallerySwiper img {
    border-radius:20px;
    box-shadow: 0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
    width:100%;
}

#mainGallerySwiper {
    padding-bottom:50px;
}

.gallery-listing {
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery-listing img {
    width:100%;
    object-fit:cover;
    border-radius:20px;
    height:100%;
}

.gallery-listing > .gallery-item {
    height:632px;
    width: 530px;
}

.gallery-listing__other {
    display:flex;
    flex-wrap:wrap;    
    width:1056px;
    justify-content: space-between;
}

.gallery-listing__other .gallery-item:nth-child(1) {
    height: 407px;
    width:100%;
    margin-bottom: 50px;
}

.gallery-listing__other .gallery-item:nth-child(1) img {
    object-position: bottom;
}

.gallery-listing__other .gallery-item:nth-child(2) {
    width:502px;
    height:175px;
}

.gallery-listing__other .gallery-item:nth-child(3) {
    width:502px;
    height:175px;
}

section.ratings {
    background: #E1D9D0;
}

.ratings-listing {
    display:flex;
    justify-content:space-between;
}

.rating-item {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
    display: flex;
    width: 512px;
    height: 339px;
    padding: 14px 21px 14px 37px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--padding-10, 10px);
    flex-shrink: 0;
}

.rating-item:hover {
    text-decoration:none;
}

.rating-item-count {
    color: #212121;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    margin-left:30px;
}

.rating-item-rating {
    color: #212121;
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    line-height: 80px; 
    text-transform: uppercase;
}

.rating-item-stars {
    height: 40.5px;
    width: 200px;
    overflow: hidden;
    position: relative;
}

.rating-item-stars-blank {
    background: url(/templates/img/icons/star_blank.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    display: block;
}

.rating-item-stars > span {
    position: absolute;
    left: 0;
    top: 0;
}

.rating-item-stars-full {
    background: url(/templates/img/icons/star_full.png);
    height: 100%;
    display: block;
    background-size: contain;
}

.rating-item-stars-outer {
    display:flex;
    align-items: flex-end;
}

.rating-item img {
    margin-bottom:18px;
    width:100%;
    max-width:250px;
}

.rating-item .rating-item-stars-outer {
    margin-bottom:18px;
}

section.reviews {
    background: #F6F5F4;
    overflow:hidden;
}

section.reviews .swiper {
    overflow: visible;
    max-width: 120%;
    margin-left: -150px;
    margin-right: -180px;
}

.reviews-item {
    background:#FAFAFA;
    border: 1px solid #CCC;
    border-radius: 20px;
    padding:24px;
    box-shadow:0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
}

.reviews-item__rating {
    display:flex;
}

.reviews-item__row {
    display:flex;
    justify-content: space-between;
    margin-bottom:24px;
    align-items: center;
}

.reviews-item__name {
    color: var(--Base-Grey-100, #262D33);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-bottom:5px;
}

.reviews-item__date {
    color: var(--Gray_1, #777E90);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
}

.reviews-item__text {
    color: var(--Gray_1, #777E90);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

section.reviews .title-rubric {
    margin-bottom:65px;
}

.swiper-rubric-navigations {
    margin-top:32px;
    position:relative;
}

.swiper-rubric-navigations .swiper-pagination {
    width:fit-content !important;
    left:0 !important;
}

.swiper-pagination-bullet-active {
    background: #3F4B7F !important;
}

section.form-section {
    height:739px;
    background:url('/templates/img/main/bg_form.png');
    position:relative;
}

.form-section__form {
    position:absolute;
    top:0;
    bottom:0;
    margin:auto;
    height:fit-content;
    right: 244px;
    width:505px;
    border-radius: 15px;
    background: #FFF;
    display: inline-flex;
    padding: 30px 35px 60px 35px;
    flex-direction: column;
    align-items: flex-start;
}

.form-section__title {
    color: #000;
    font-family: "Involve";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom:15px;
}

.form-section__description {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom:45px;
}

.form-group {
    display:flex;
    flex-direction:column;
    width: 100%;
    margin-bottom:24px;
    position:relative;
}

.form-group-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; 
    margin-bottom:12px;
}

.form-input {
    border-radius: 5px;
    border: 1px solid #ccc;
    background: #FFF;
    width:100%;
    height:48px;
    padding:12px;
    background: #FAFAFA;
    font-weight: 500;
    font-size: 16px;
}

.form-input.is-invalid, .form-group.has-error input, .form-group.has-error textarea {
    border: 1px solid #F38A8A;
}

.form-input::placeholder {
    color: #797979;
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    font-size: 16px;
}

.form-group .form-input-error, .ec-error.help-block {
    font-size:10px;
    color:#E50000;
    position:absolute;
    top:5px;
    right:10px;
}

.reviews-form__stars .ec-error.help-block {
    top: -15px;
    right: 0;
}

.ec-form .alert.alert-success {
    color: #000;
    font-family: 'Involve';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-section__privacy {
    padding-top:15px;
    color: #696984;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
}

.form-section__privacy a {
    color: #3F4B7F;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    text-decoration-line: underline;
    transition: all ease-out .2s;
}

.form-section__privacy a:hover {
    color:#0A102E;
}

section.map {
    background:#fff;
}

footer {
    background: #3F4B7F;
}

footer a:hover {
    color:#fff;
}

.footer-columns {
    display:flex;
    padding-bottom:80px;
    border-bottom:1px solid #fff;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-info {
    margin-right:auto;
}

.footer-column-info__cls {
    display:flex;
    flex-direction:column;
}

.footer-logo {
    margin-bottom:32px;
}

.footer-columns * {
    color:#fff;
}

.footer-column-info__title {
    color: var(--white-a100, #FFF);
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom:4px;
}

.footer-column-info__content {
    color: var(--white-a100, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: underline;
}

.footer-column-info-spacer {
    height:24px;
}

.social-row {
    display:flex;
}

.social-row a {
    width:24px;
    height:24px;
    display:block;
    margin-right:12px;
}

.social-row a img {
    width:100%;
    height:100%;
}

.footer-column-nav {
    width:347px;
}

.footer-column-nav__title {
    color: var(--white-a100, #FFF);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom:6px;
}

.footer-column-nav a {
    color: var(--white-a100, #FFF);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding:6px 0;
    display:block;
    width:100%;
}

.footer-line {
    padding-top:32px;
    display:flex;
    justify-content:space-between;
}

.footer-line * {
    color:#fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.footer-line a {
    text-decoration:underline
}

.swiper-button-next, .swiper-button-prev {
    color: #3f4b7f !important;
}

.page-title {
    text-align:left;
    /* padding-top:35px; */
    line-height: 65px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.breadcrumbs-section {
    padding-top:30px;
    padding-bottom:15px;
    /* padding-bottom:30px; */
}

.breadcrumbs {
    display:flex;
}

.breadcrumb__space {
    margin:0 8px;
    display: flex;
    align-items: center;
}

.breadcrumb__item a {
    color: #696984;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.breadcrumb__item.active a {
    color: #3F4B7F;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

section.reviews-form {
    padding-bottom:50px;
}

.reviews-form__outer {
    border-radius: 15px;
    background: #FFF;
    padding: 30px 70px 60px 35px;
}

.reviews-form__title {
    color: #000;
    font-family: "Involve";
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom:55px;
}

.reviews-form__form {
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.form-group textarea {
    height:159px;
    resize: none;
}

.reviews-form__column {
    flex-direction:column;
}

.reviews-form__form .reviews-form__column:nth-child(1) {
    width:1031px;
}

.reviews-form__form .reviews-form__column:nth-child(2), .reviews-button {
    width:435px;
}

.form-section__privacy-row {
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.form-group-stars {
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row;
    margin-bottom:8px;
}

.form-group-stars .form-group-label {
    margin-bottom:0px;
}

.reviews-form__stars {
    display:flex;
}

.reviews-form__star.active svg path {
    fill:#FFA34D;
    cursor:pointer;
}

.reviews-form__star.selected svg path {
    fill:#FFA34D;
    cursor:pointer;
}

.reviews-messages__listing {
    background:#fff;
    border-radius:15px;
    margin-bottom:75px;
}

.reviews-messages {
    padding-bottom:65px;
}

.reviews-messages__item {
    display: flex;
    padding: 40px 28px;
    border-bottom: 1px solid #E6E8EC;
}

.reviews-messages__listing:last-child {
    border-bottom:0;
}

.reviews-messages__item-rating svg {
    width:15px;
}

.reviews-messages__item-rating-row {
    display:flex;
    padding-bottom:46px;
}

.reviews-messages__item-subject {
    color: var(--Gray_1, #777E90);
    text-align: right;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.reviews-messages__item-info {
    padding-left:22px;
}

.reviews-messages__item-name {
    color: var(--Base-Grey-100, #262D33);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-bottom:5px;
}

.reviews-messages__item-date {
    color: var(--Gray_1, #777E90);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    margin-bottom:20px;
}

.reviews-messages__item-text {
    color: var(--Gray_1, #777E90);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.reviews-messages__item-subject-mobile {
    display:none;
}

.pagination {
    display:flex;
    margin:auto;
    justify-content: center;
    align-items: center;
}

.pagination li:not(.control) {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pagination li:not(.control) a {
    color: #BFBEC0;
    padding: 12px 30px;
}

.pagination li:not(.control).active a {
    color: #6B6B6B;
}

.pagination .control a {
    background: #945C65;
    border-radius:50%;
    width: 50px;
    height: 50px;
    display:flex;
    align-items: center;
    justify-content: center;
}

.pagination .control a {
    display:block;
    height:50px;
    width:50px;
    text-align: center;
}

.pagination .control svg {
    height: 100%;
    width: 10px;
}

.pagination .control svg path {
    fill:#CAAEB2;
}

.pagination .control.disabled a {
    background: rgba(148, 92, 101, 0.50);
}

.pagination .control.disabled a {
    pointer-events:none;
}

.pagination .control.disabled svg path {
    fill:#945C65;
}

section.specialists-page {
    padding-bottom:75px;
}

.specialists-page__row {
    display:flex;
    flex-wrap:Wrap;
    margin:-30px;
    margin-bottom:50px;
}

.specialists-page__row > .specialists-item {
    margin: 25px;
    width: calc(33% - 50px);
}

.specialist-main__content {
    display:flex;
    padding-bottom:90px;
    padding-top:35px;
}

.specialist-main__content-photo {
    margin-right:70px;
    min-width: 600px;
}

.specialist-main__content-photo img {
    border-radius: 20px;
    width:100%;
    object-fit:cover;
}

.specialist-main__content-info {
    width:100%;
    display:flex;
    flex-direction:column;
}

.specialist-main__content-name {
    color: #000;
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: 73px;
    padding-bottom:25px;
    font-family: "Involve";
}

.specialist-main__content-name > span {
    text-transform: uppercase;
    display:block;
}

.specialist-main__content-post {
    display:flex;
    align-items:center;
    color: #696984;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 0.48px;
    padding-bottom:20px;
}

.specialist-main__content-post svg {
    margin-right:10px;
    height: 24px;
}

.specialist-main__content-info-title {
    color: #252641;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom:10px;
    font-family: "Involve";
}

.specialist-main__content-inf {
    color: #696984;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.48px;
    margin-bottom:20px;
}

.specialist-main__content-inf ul {
    list-style: "•";
    margin-left: 15px;
}

.specialist-main__content-inf li {
    padding-left:10px;
}

.specialist-main__content .button {
    width: fit-content;
}

.specialist-about {
    background:#fff;
}

.specialist-about .title {
    text-align:left;
}

.specialist-about__sidebar-titles {
    display:flex;
    flex-direction: column;
    padding-right:40px;
}

.specialist-about__sidebar-title {
    font-family: "Involve";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    
    display:flex;
    align-items:center;
    margin-bottom:30px;
}

.specialist-about__sidebar-title.active {
    color: #3F4B7F;
}

.specialist-about__sidebar-title svg {
    opacity:0;
    visibility:hidden;
    margin-right:15px;
    max-width:0;
    transition: all ease-out .4s;
}

.specialist-about__sidebar-title.active svg {
    visibility:visible;
    opacity:1;
    max-width:50px;
}

.specialist-about__content {
    visibility:hidden;
    opacity:0;
    height:0px;
    transition:opacity ease-out .6s;
}

.specialist-about__content.active {
    visibility:visible;
    opacity:1;
    height:fit-content;
}

.specialist-about__columns {
    display:flex;
    justify-content:space-between;
}

.specialist-about__contents {
    width:943px;
    
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    height:0;
    transition: all ease-out .4s;
}

.specialist-about__contents p {
    margin-bottom: 30px;
}

.specialist-about__content-mobile-button {
    display:none;
}

.contacts-page {
    /* padding: 60px 0 75px; */
    padding: 0px 0 75px;
}
.contacts-columns {
    display:flex;
    justify-content:space-between;
}

.contacts-columns > * {
    width:50%;
}

.contacts__info .title {
    text-align:left;
}

.contacts__info-content {
    color: #696984;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.contacts__info-content {
    margin-bottom:24px;
}

.contacts__info-content a {
    transition: all ease-out .2s;
}

.contacts__info-content a:hover {
    color:#0A102E;
    text-decoration:underline;
}

.contacts__info .contacts__info-content:last-child {
    margin-bottom:0;
}

.contacts__info .button {
    width:fit-content;
}

.contacts__info-content a {
    color: #696984;
}

.contacts__map {
    border-radius: 20px;
    box-shadow: 0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
    height:fit-content;
    overflow:hidden;
}

section.contacts-order {
    padding:90px 0 120px 0;
    background:url('/templates/img/main/contacts-order-pc.jpg');
    background-size:cover;
    background-repeat:no-repeat;
    background-position:right;
}

.contacts-order__title {
    color: var(--Black, #000);
    font-family: "Involve";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom:24px;
    text-transform: uppercase;
}  

.contacts-order__desc {
    color: var(--Black, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width:768px;
    margin-bottom:40px;
}

section.contacts-order .button {
    width:fit-content;
}

section.about-main {
    /* padding-top:60px; */
    padding-top:0;
    padding-bottom:75px;
}

section.about-main .title {
    text-align:left;
    padding-bottom:25px;
    line-height:normal;
}

.about-main__columns {
    display:flex;
}

.about-main__photo {
    overflow:hidden;
    width:100%;
    max-width:667px;
}

.about-main__photo img {
    border-radius:20px;
    width:100%;
    height:fit-content;
    object-fit:cover;
}

.about-main__info {
    padding-left:50px;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    color: #696984;
    max-width: 50vw;
}


.about-main__info p {
    margin-bottom:10px;
}

.about-offer {
    background:#fff;
}

.about-offer__snake {
    text-align:center;
    margin-bottom:45px;
}

.about-offer__text {
    color: #000;
    text-align: center;
    font-family: "Involve";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.about-numbers__columns {
    display:flex;
    justify-content:space-between;
}

.about-numbers__info {
    width:100%;
    max-width:621px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}    

.about-numbers__gallery {
    width:100%;
    max-width:925px;
    overflow:hidden;
}

.about-numbers__gallery .swiper {
    overflow: visible;
    max-width: 100%;
}
    
.about-numbers__gallery img {
    width:100%;
    border-radius:20px;
}

.about-numbers__info-text {
    color: #000;
    font-family: "Involve";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.about-numbers__info-nums {
    display:flex;
    justify-content:space-between;
}

.about-numbers__info-num {
    display:flex;
    flex-direction:column;
    max-width: 180px;
}

.about-numbers__info-num > span:nth-child(1) {
    color: #945C65;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom:7px;
}

.about-numbers__info-num > span:nth-child(2) {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.about-brands {
    background:#fff;
}

section.about-brands .wrapper {
    overflow:hidden;
}

.about-brands__title {
    color: #000;
    font-family: "Involve";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom:25px;
}

.about-brands__swiper.swiper {
    max-width: 100%;
    margin-left: 0;
    overflow: visible;
}

.about-brands__swiper.swiper img {
    width:100%;
}

.about-requisits__title {
    color: #000;
    font-family: "Involve";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom:25px;
}

.about-requisit__row {
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.about-requisit__item {
    width:32%;
    display:flex;
    flex-direction:column;
    margin-bottom:24px;
}

.about-requisit__name {
    color: #ACACB0;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.about-requisit__value {
    color: #696984;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.about-documents__title {
    color: #000;
    font-family: "Involve";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 73px;
    text-transform: uppercase;
    margin-bottom:25px;
}

.about-documents__listing {
    display:flex;
    flex-wrap:wrap;
}

.about-documents__item {
    display:flex;
    flex-direction:column;
    flex: 1 1 33%;
    margin-bottom:48px;
}

.about-documents__item img {
    max-width:49px;
    margin-bottom:24px;
}

.about-documents__item-name {
    color: var(--Black, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom:12px;
    max-width: 70%;
}

.about-documents__item-name i {
    color: #adadad;
    font-size: 12px;
    display:block;
}

.about-documents__item-buttons {
    display:flex;
}

.about-documents__item-download {
    border-radius: 5px;
    border: 1px solid #3F4B7F;
    color: #3F4B7F;
    font-family: "Involve";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    
    padding:12px 24px;
    transition:all ease-out .2s;
}

.about-documents__item-download:hover {
    background: #3F4B7F;
    color:#fff;
}

.about-documents__item-open {
    display: flex;
    align-items: center;
    padding-left:24px;
    color: #3F4B7F;
    font-family: Involve;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    transition: all ease-out .2s;
}

.about-documents__item-open:hover {
    color:#0A102E;
}

.about-documents__item-open svg {
    height:18px;
    width:18px;
    padding-top:4px;
}

.modal-accent {
    max-width:800px;
}

.modal-accent__info {
    padding-right:250px;
    z-index:1;
    position:relative;
}

.modal-accent__image {
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    user-select:none;
    pointer-events:none;
}

.modal-accent__image img {
    width:100%;
    height:100%;
    display:block;
}

.modal-accent-fancybox {
    position:Relative;
}

.modal-accent__info-title {
    color: #000;
    font-family: "Involve";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom:24px;
}

.modal-accent__info .button {
    width:fit-content;
    margin-top:24px;
}  

.default-modal {
    border-radius:20px;
}

.modal-title {
    color: var(--Black, #000);
    text-align: center;
    font-family: Involve;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom:14px;
}

.modal-title__description {
    color: var(--Black, #000);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom:32px;
}

.modal-forms {
    width:480px !important;
}

.modal-forms .button {
    width:100%;
}

.modal-forms .form-section__privacy {
    text-align: center;
}

.modal-submit {
    display:flex;
}

.modal-submit__icon {
    border-radius: var(--radius-1000, 1000px);
    border: 2px solid #9FB4CF;
    box-shadow: 0px 1px 2px 0px var(--black-a5, rgba(0, 0, 0, 0.05));
    padding:8px;
    width:48px;
    height:48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-submit__message {
    padding-left:16px;
}

.modal-submit__message-title {
    color: var(--Black, #000);
    font-family: Involve;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom:4px;
}    

.modal-submit__message-description {
    color: #000;
    font-size: var(--size-body-md, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom:16px;
}

.modal-submit__message-button {
    color:#3F4B7F;
    font-weight:600;
    cursor:pointer;
}

*[data-form-content] {
    height:fit-content;
    opacity:1;
    visibility:visible;
    transition:opacity ease-out .4s;
}

*[data-form-content].submited {
    height:0;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
}

*[data-form-success] {
    height:0;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transition:opacity ease-out .4s;
}

*[data-form-success].submited {
    height:fit-content;
    opacity:1;
    visibility:visible;
}

.form-submit {
    display:flex;
    flex-direction:column;
}

.form-submit__message-title {
    color: #000;
    font-family: "Involve";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.form-submit__message-description {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.form-submit__icon {
    border-radius: var(--radius-1000, 1000px);
    border: 2px solid #9FB4CF;
    box-shadow: 0px 1px 2px 0px var(--black-a5, rgba(0, 0, 0, 0.05));
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.form-submit__icon svg {
    width: 37px;
    height: 37px;
}

.services-page-listing {
    display:flex;
    flex-wrap:wrap;
    margin:-25px;
}

.services-page-listing__item {
    width:calc(33% - 50px);
    margin:25px;
    
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
    padding:20px 20px 35px 20px;
}

section.services-page {
    padding-bottom:75px;
}

.services-page__content {
    margin-bottom: 35px;
}

.services-page-listing__item-name {
    margin-bottom:20px;
    color: #252641;
    font-family: "Involve";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display:block;
}

.services-page-listing__item-image {
    margin-bottom:20px;
}

.services-page-listing__item-image {
    height:300px;
    overflow:hidden;
    border-radius: 20px;
    display:block;
}

.services-page-listing__item-image img {
    height:100%;
    width:100%;
    object-fit:cover;
    object-position: center;
    display: block;
}

.service-detail {
    padding-bottom:75px;
}

.service-detail__columns {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.service-detail__photo {
    width:50%;
    max-width:820px;
    border-radius:20px;
    overflow:hidden;
}

.service-detail__photo img {
    width:100%;
    max-height:340px;
    object-fit:cover;
}

.service-detail__info {
    width:49%;
    max-width:775px;
    color: var(--Black, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

section.prices-page {
    padding-bottom:75px;
}

.prices-search {
    background: #F6F5F4;
    padding:16px;
    position:relative;
    margin-bottom:20px;
}

.prices-search svg {
    position:absolute;
    left:25px;
    top:0;
    bottom:0;
    margin:auto;
}

.prices-search__input {
    width:100%;
    background: #F6F5F4;
    border: 1px solid #9E9E9E;
    padding:18px 9px 18px 33px;
    border-radius:8px;
}

.prices-search__input::placeholder {
    color: #9E9E9E;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.prices-search__result .price-category__item-prices {
    margin-bottom:20px;
}

.prices-search__result-query {
    font-size:14px;
    color: #9E9E9E;
    padding-bottom:10px;
    display:block;
}

.price-category__item {
    display:none;
    flex-direction:column;
    width:100%;
}

.price-category__item.active {
    display:flex;
}

.price-category__item-title {
    color: var(--white-a100, #FFF);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: #758990;
    padding:16px;
}

.price-category__item-prices table {
    width:100%;
    border-spacing: 0;
}

.price-category__item-prices-price {
    width:300px;
}

.price-category__item-prices {
    text-align:left;
}

.price-category__item-prices thead {
    background: #D8E0E3;
}  

.price-category__item-prices thead th {
    font-weight:600;
    padding:16px;
}

.price-category__item-prices td {
    padding:16px;
    font-size:14px;
    font-weight:500;
}

.price-category__item-prices tbody > tr:nth-child(2n) {
    background:#F6F5F4;
}

.price-category__item-prices-name-dop {
    font-style:italic;
    font-size:12px;
    margin-top:5px;
}

.price-category__item-prices-name-dop ul {
    list-style: disc;
    padding-left: 17px;
    color: #646464;
    font-size: 14px;
}

.price-category__item-prices-name-dop ol {
    padding-left: 17px;
}

.prices-filters {
    display:flex;
    flex-wrap:wrap;
    margin-bottom:40px;
}  

.prices-filter {
    border-radius: var(--radius-8, 8px);
    border: 2px solid #C1C4E3;
    padding: 12px 18px;
    color: #6B6B6B;
    font-size: 16px;
    font-weight: 400;
    margin-right:30px;
    margin-bottom:10px;
    display: flex;
    align-items: center;
    cursor:pointer;
    font-family: Involve;
    transition: all ease-out .2s;
}

.prices-filter.active {
    background: #3F4B7F;
    color:#fff;
    border:none;
}

.prices-filter:not(.active):hover {
    background: #f3f3f3;
}

.error-404__outer {
    display:flex;
    justify-content:space-around;
    padding-bottom:100px;
}    

.error-404__nums-404 {
    font-size:300px;
    font-family: "Involve";
    color:#3F4B7F;
}

.error-404__nums-desc {
    font-size:24px;
    font-family: "Involve";
    color:#3F4B7F;
}

.error-404__nums {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.error-404__links {
    display:flex;
    flex-direction:column;
    justify-content:center;
}    

.error-404__links-title {
    font-size:24px;
    font-family: "Involve";
    padding-bottom:10px;
    margin-bottom:24px;
}

.error-404__links ul a {
    font-family: "Involve";
    font-size:18px;
}

.error-404__links .button {
    margin-top:24px;
}

.error-404__links .button svg {
    margin-left:10px;
}

.error-404__links ul a {
    padding-bottom:7px;
    display:flex;
    align-items:center;
}
.error-404__links ul a svg {
    margin-right:10px;
    width:18px;
}

.error-404__links ul a svg path:not([stroke]) {
    fill:#868686 !important;
}

.error-404__links ul a svg path[stroke] {
    stroke:#868686 !important;
}

.error-404__links ul a:hover svg path:not([stroke]) {
    fill:#3F4B7F !important;
}

.error-404__links ul a:hover svg path[stroke] {
    stroke:#3F4B7F !important;
}

.detail-service__item {
    display:flex;
    padding: 30px 0;
    border-bottom: 2px solid #D9D9D9;
}

.detail-service__item-info {
    display:flex;
    flex-direction:column;
    width:100%;
}

.detail-service__item-content ul {
    list-style: disc;
    margin-left: 17px;
}

.detail-service__item-content ul li::first-letter, .detail-service__item-content-content *::first-letter {
    text-transform: uppercase;
}

.detail-service__item-content-content ol {
    padding-left:17px;
}

.detail-service__item-content-content ol p {
    margin:5px 0 7px;
}

.detail-service__item-content-content strong {
    font-weight:600;
}

.detail-service__item-content-dop {
    margin-bottom:15px;
}

.detail-service__item-content-dop ol {
    padding-left:17px;
}

.detail-service__item-content-dop strong {
    font-weight:600;
}

.detail-service__item-content-dop p {
    margin:5px 0 7px;
}

.detail-service__item-title {
    color: var(--Base-Black, #000);
    font-family: "Involve";
    font-size: 24px;
    font-weight: 400;
    margin-bottom:24px;
}

.detail-service__item-content {
    margin-bottom:24px;
    font-size:14px;
}

.detail-services__listing {
    display:flex;
    flex-direction:column;
    padding:55px 30px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
}

.detail-services__listing .detail-service__item:last-child {
    border-bottom:0;
}

.detail-service__item-button {
    display:flex;
    align-items:center;
    color: #3F4B7F;
    font-family: Involve;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; 
    width:fit-content;
    cursor:pointer;
    padding-right:32px;
    position:relative;
    transition:all ease-out .2s;
}

.detail-service__item-button svg {
    display:block;
    position:absolute;
    right:0;
    bottom: -4px;
    transition:all ease-out .2s;
}

.detail-service__item-price {
    min-width: 300px;
    margin-left:70px;
    color: var(--Black, var(--Base-Black, #000));
    font-family: Involve;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    display: flex;
    align-items: center;
}

.detail-service__item-price > span {
    color: var(--Black, var(--Base-Black, #000));
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    margin-left: 10px;
}

.detail-service__item:hover .detail-service__item-button {
    border-radius: 5px;
    background: #3F4B7F;
    color:#fff;
    display: flex;
    font-size:16px;
    padding: 14px 24px;
    justify-content: center;
    align-items: center;
    width:fit-content;
}

.detail-service__item:hover svg {
    max-width:0px;
    overflow:hidden;
    margin: 0;
}

.detail-service__item:hover {
    border-bottom: 2px solid #D9D9D9;
    background: linear-gradient(90deg, #FFF 0%, #F6F5F4 12%, #F6F5F4 49.5%, #F6F5F4 88.5%, #FFF 100%);
}

main.stock-single .contacts-order {
    /* background:#F6F5F4; */
    border-top:1px solid #F6F5F4;
}

.stock-preview-date {
    position: relative;
    /* top: -75px; */
    top:-25px;
    color: #797979;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.stocks-listing {
    padding-bottom: 75px;
}

.stocks-listing__filters {
    display:flex;
}

.stocks-empty {
    color: #787878;
    font-size:18px;
}

.stocks-listing__filter {
    margin-right:28px;
    color: #212121;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.stocks-listing__filter label {
    cursor:pointer;
}

.stocks-listing__filter input {
    display:none;
}

.stocks-listing__filter input:checked + label {
    font-weight: 600;
    color: #3F4B7F;
    border-bottom:2px solid #3F4B7F;
}

.stocks-listing__filters {
    margin-bottom:25px;
}

.stocks-listing__row {
    display:flex;
    flex-wrap:wrap;
    margin:-25px;
}

.stocks-listing__row .empty-results {
    padding: 25px;
    color: #3f4b7f;
    font-style:italic;
}

.stocks-listing__item {
    width:calc(25% - 50px);
    margin:25px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
    padding:20px 20px 35px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stocks-listing__item-ending {
    position:relative;
}

.stocks-listing__item-ending img {
    filter: grayscale(1);
}

.stocks-listing__item-ending-tag {
    position:absolute;
    left:37px;
    top:37px;
    color: var(--white-a100, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    border-radius: 22px;
    background: #CE4040;
    padding: 5px var(--padding-10, 10px);
    z-index:2;
}

.stocks-listing__item img {
    border-radius: 16px;
    margin-bottom:20px;
    width:100%;
    height: 229px;
    object-fit: cover;
}

.stocks-listing__item-title {
    color: #252641;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    font-family: "Involve";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom:20px;
    display:block;
}

.stocks-listing__item-dates {
    margin-bottom:20px;
    color: #696984;
}

.stocks-listing__item-dates svg {
    margin-right:3.5px;
    margin-bottom: -3px;
}

.stocks-listing__item-description {
    margin-bottom:20px;
    color: #696984;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: 0.36px;
}

.stocks-listing__item-button {
    color: #3F4B7F;
    font-family: Involve;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    width: fit-content;
    margin-left: auto;
    padding: 14px 34px 14px 24px; 
    cursor:pointer;
    display:flex;
    position:relative;
    transition: all ease-out .2s;
}

.stocks-listing__item-button svg {
    display: block;
    position: absolute;
    right: 0;
    bottom: 10px;
    transition: all ease-out .2s;
}

.stocks-listing__item:hover .stocks-listing__item-button {
    border-radius: 5px;
    background: #3F4B7F;
    color: #fff;
    display: flex;
    font-size: 18px;
    padding: 14px 24px;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.stocks-listing__item:hover .stocks-listing__item-button  svg {
    max-width: 0px;
    overflow: hidden;
    margin: 0;
}

.stock-preview {
    padding-bottom:75px;
}

.stock-preview__ending {
    position:relative;
}

.stock-preview__ending img {
    filter: grayscale(1);
}

.stock-preview__ending-tag {
    position: absolute;
    left: 25px;
    top: 25px;
    color: var(--white-a100, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    border-radius: 22px;
    background: #CE4040;
    padding: 5px var(--padding-10, 10px);
    z-index: 2;
}

.stock-preview__image {
    border-radius: 20px;
    box-shadow: 0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
    height:672px;
    width:800px;
    object-fit:cover;
}

.stock-preview__row {
    display:flex;
    align-items: stretch;
}

.stock-preview__other {
    border-radius: 20px;
    background: #FFF;
    flex:1;
    box-shadow: 0px 18.83px 47.08px 0px rgba(47, 50, 125, 0.10);
    margin-left:50px;
    padding:55px 30px 25px 30px;
    height:fit-content;
}

.stock-preview__other-title {
    color: #000;
    font-family: "Involve";
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom:30px;
}

.stock-preview__other-items {
    display:flex;
    flex-direction:column;
}

.stock-preview__other-item {
    padding:23px;
    border-bottom: 2px solid #D9D9D9;
    display:block;
}

.stock-preview__other-item:hover {
    background: linear-gradient(90deg, #FFF 0%, #F6F5F4 12%, #F6F5F4 49.5%, #F6F5F4 88.5%, #FFF 100%);
}

.stock-preview__other-items .stock-preview__other-item:last-child {
    border-bottom:0;
}

.stock-preview__other-item-date {
    margin-bottom:20px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.stock-preview__other-item-title {
    color: #000;
    font-family: "Involve";
    font-size: 22.5px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.content-block * {
    font-size:18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.content-block a {
    color:#3F4B7F;
    text-decoration:underline;
}

.content-block img {
    max-width:100%;
    height:auto;
}

.content-block p {
    margin-bottom:15px;
    word-break: break-word;
}

.content-block table {
    width:100%;
}

.content-block table td {
    border:1px solid #000;
    padding:15px;
}

.content-block table td * {
    font-size:14px;
}

.content-block table td p {
    margin-bottom:0;
}

.content-block ul {
    list-style: disc;
    margin-left: 30px;
    padding-top:7px;
}

.content-block ol {
    margin-left: 30px;
    padding-top:7px;
}

.content-block strong {
    font-weight:700;
}

.content-block em {
    font-style: italic;
}

.content-block h2, .content-block h3, .content-block h4, .content-block h5 {
    color: #000;
    font-family: "Involve";
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.content-block h2 {
    font-size: 28px;
    margin-bottom:30px;
}

.content-block h3 {
    font-size: 24px;
    margin-bottom:20px;
}

.content-block h4 {
    font-size: 22px;
    margin-bottom:15px;
}

.content-block h5 {
    font-size: 20px;
    margin-bottom:10px;
}

section.info-content { 
    padding-bottom:75px;
}

.promo-button__outer {
    position: absolute;
    top: 27.5vw;
    left: 6.2vw;
    z-index: 2;
}

.specialist-about__content-inner ul {
    list-style:disc;
    padding-left:20px;
    margin-bottom:30px;
}

.specialist-about__content-inner p + ul {
    margin-top:-20px;
}

.telegram-banner {
    padding:45px 0 60px 0;
    background:url('/templates/img/promo/tg_desk_sk.jpg');
    background-position:center;
    background-size:cover;
}

.telegram-banner__title {
    color: #000;
    font-family:"Involve";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom:24px;
}

.telegram-banner__description {
    color: var(--Black, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom:40px;
}

.telegram-banner__button {
    width:fit-content;
} 

@media (min-width:1920px) {
    html {
        background: #FFFCF7;
    }
    body {
        max-width:1920px;
        margin:auto;
    }
}

@media (max-width:1800px) {
    .big-wrapper {
        max-width:92vw;    
    }
    
    .wrapper {
        max-width:92vw;  
    }
    
    .events-listing > .events-item {
        width: 35.915vw;
    }
    
    .events-listing__other .events-item:nth-child(1) {
        width:100%;
    }
    
    .events-listing__other .events-item:nth-child(2) {
        width:49%;
    }
    
    .events-listing__other .events-item:nth-child(3) {
        width:49%;
    }
    
    .events-listing__other {
        width:54vw;
    }
    
    .gallery-listing > .gallery-item {
        width: 31vw;
    }
    
    .gallery-listing__other {
        width:59vw;
    }
    
    .gallery-listing__other .gallery-item:nth-child(2) {
        width:49%;
    }
    
    .gallery-listing__other .gallery-item:nth-child(3) {
        width:49%;
    }
}

@media (max-width:1750px) {
    .reviews-form__form .reviews-form__column:nth-child(1) {
        width: 65%;
    }
    
    .reviews-form__form .reviews-form__column:nth-child(2), .reviews-button {
        width: 30%;
    }
    
    .specialists-page__row > .specialists-item {
        margin: 25px;
        width: calc(33% - 50px);
    }
}

@media (max-width:1710px) {
    .rating-item {
        width:32%;
        height: fit-content;
        min-height: 400px;
    }
    
    .rating-item-stars-outer {
        align-items: flex-start;
        flex-direction: column;
    }
    
    .rating-item-count {
        margin-left:0;
        margin-top:15px;
    }
    
    .form-section-wrapper {
        position: relative;
        max-width: 92vw;
        height: 100%;
        margin: auto;
    }
    
    .form-section__form {
        right:0;
    }
}

@media (max-width:1580px) {
    .header-logo {
        max-width: 150px;    
    }
    
    .header-contacts > * {
        font-size:14px;
    }
    
    .utps-item {
        max-width:22vw;
    }
    
    .header-menu__list > .header-menu__item {
        margin-right:0;
        width: fit-content;
        padding: 0 5px;
    }
    
    section.banner {
        height:50vw;
        background-position: top center !important;
    }
    
    .rating-item-count {
        font-size:20px;
        line-height:20px;
    }
    
    .rating-item-rating {
        font-size: 8vw;
        line-height: 6vw
    }
    
    .rating-item-stars {
        height: 32.8px;
        width: 160.4px;
    }
    
    .rating-item img {
        max-width:16vw;
    }
    
    .rating-item {
        min-height: 24vw;
    }
    
    .services-page-listing__item-image {
        height:230px;
    }
    
    .stocks-listing__item {
        width: calc(33% - 50px);
    }
    
    .stock-preview__image {
        max-width:50%;
    }
    
    .header-menu__item a {
        padding: 0 7px;
    }
}

@media (max-width:1300px) {
    .header-button {
        display:none;
    }
    
    .header-menu__item-1 {
        display:block;
    }
    
    .header-contacts__address, .header-contacts__social {
        display:none;
    }
    
    .header-burger {
        border-radius: var(--radius-6, 6px);
        background: #ECEDF3;
        box-shadow: 0px 1px 2px 0px var(--black-a5, rgba(0, 0, 0, 0.05));
        width:40px;
        height:40px;
        display:flex;
        align-items:center;
        justify-content:center;
        flex-direction:column;
        transition: all easy-out .2s;
    }
    
    .events-listing > .events-item {
        width: 100%;
        height: 17vw;
        margin-bottom: 20px;
    }
    
    .events-item__image {
        height:100%;
    }
    
    .events-listing__other {
        width:100%;
    }
    
    .events-listing__other .events-item:nth-child(1) {
        width:calc(50% - 10px);
        margin-bottom: 20px;
    }
    
    .events-listing__other .events-item:nth-child(2) {
        width:calc(50% - 10px);
        margin-bottom: 20px;
    }
    
    .events-listing__other .events-item:nth-child(3) {
        width:100%;
        height: 17vw;
    }
    
    .header-menu {
        opacity:0;
        visibility:hidden;
        transition: all ease-out .4s;
        position: fixed;
        top: 119px;
        bottom: 0;
        right: 0;
        left:0;
        height: fit-content;
        display: flex;
        flex-direction: column;
        background: #fff;
        align-items: flex-start;
        justify-content: flex-start;
        z-index: 99;
        max-height:80vh;
        overflow:scroll;
    }
    
    header.header-sticky-load .header-menu {
        top:90px;
    }
    
    .header-menu.active {
        opacity:1;
        visibility:visible;
    }
    
    .header-menu .header-menu__list {
        display: flex;
        flex-direction: column;
        width:100%;
        padding:25px 0;
        max-width: 92vw;
        margin: auto;
    }
    
    .header-contacts {
        margin-left:auto;
        margin-right:25px;
    }
    
    .header-contacts__phone {
        margin-bottom:0;
    }
    
    .header-contacts__phone-intro {
        display:block;
    }
    
    .header-menu__item a svg {
        display:block;
        margin-right:8px;
    }
    
    .header-menu__item:hover a {
        font-weight: 600;
        color: #3F4B7F;
    }
    
    .header-burger-line {
        background: #3F4B7F;
        height: 1px;
        border-radius: 15px;
        width: 15px;
        margin-bottom: 3px;
        opacity:1;
        transform:rotate(0deg);
        transition:all ease-out .2s;
    }
    
    .header-burger .header-burger-line:last-child {
        margin-bottom:0;
    }
    
    .header-burger.active .header-burger-line:nth-child(1) {
        transform:rotate(45deg);
        margin-bottom: -5px;
    }
    
    .header-burger.active .header-burger-line:nth-child(2) {
        opacity:0;
    }
    
    .header-burger.active .header-burger-line:nth-child(3) {
        transform:rotate(-45deg);
    }
    
    .header-burger.active {
        background:#fff;
        box-shadow:none;
    }
    
    .header-menu__item {
        width:100% !important;
    }
    
    .header-menu__item a {
        color:#868686;
        padding: 12px 0;
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .header-menu__item.active a {
        font-weight: 600;
        color: #3F4B7F;
    }
    
    .header-menu__mobile-contacts {
        display:block;
        border-top: 1px solid #3F4B7F;
        padding-top:30px;
        padding-bottom:50px;
        margin-top:15px;
        
        display:flex;
        flex-direction:column;
        
        max-width: 92vw;
        margin: auto;
        width:100%;
    }
    
    .header-menu__mobile-contacts-info {
        color: #868686;
        display:block;
        margin-bottom:20px;
    }
    
    .header-menu__mobile-contacts .button {
        width:fit-content;
    }
    
    .header-contacts__mobile-social {
        display:flex;
        flex-direction:row;
        flex-wrap:wrap;
        padding:24px 0 40px 0;
    }
    
    .header-contacts__mobile-social a {
        width: 32px;
        height: 32px;
    }
    
    .header-contacts__mobile-social a img {
        width:100%;
    }
    
    .header-contacts__mobile-social > * {
        margin-right:10px;
    }
    
    .header-contacts__mobile-social > *:last-child {
        margin-right:0;
    }
    
    .header-menu__list > .header-menu__item {
        padding:0;
    }
    
    .rating-item img {
        max-height: 40px;
        width: 100%;
        object-fit: cover;
        max-width: fit-content;
        margin-bottom: 7px;
    }
    
    .rating-item-count {
        margin-top:7px;
    }
    
    .rating-item .rating-item-stars-outer {
        margin-bottom: 7px;
    }
    
    .rating-item-rating {
        font-size: 6vw;
        line-height: 6vw;
    }
    
    .principles-content__description {
        max-width:50%;
    }
    
    .principles-image {
        max-height: 600px;
    }
    
    .specialist-main__content-photo {
        margin-right:30px;
        width:40%;
        min-width:auto;
    }
    
    .specialist-main__content-info {
        width:60%;
    }
    
    
    .specialist-about__sidebar-titles {
        display:none;
    }
    
    .specialist-about__content-mobile-button {
        display:flex;
        margin-bottom: 30px;
    }
    
    .specialist-about__content-mobile-button.active {
        margin-bottom:15px;
    }
    
    .specialist-about__contents {
        height:fit-content !important;
    }
    
    .specialist-about__content {
        transition: all ease-out .4s;
    }
    
    .specialist-about__content-inner {
        padding-bottom:30px;
    }
    
    .about-offer__text {
        font-size:24px;
    }
    
    .services-page-listing__item {
        width: calc(50% - 50px);
    }
    
    .stock-preview__other-title {
        font-size:24px;
        margin-bottom: 24px;
    }
}

@media (max-width:1150px) {
    .utps-item {
        max-width: 50%;
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    
    .events-listing__other .events-item:nth-child(1) {
        height: fit-content;
        padding-top: 35px;
    }
    
    .events-listing__other .events-item:nth-child(2) {
        height: fit-content;
        padding-top: 35px;
    }
    
    .events-listing__other .events-item:nth-child(3) {
        height: fit-content;
        padding-top: 35px;
    }
    
    .events-listing > .events-item {
        height: fit-content;
        padding-top: 35px;
    }
    
    section.principles {
        height: fit-content;
    }
    
    .principles-content {
        padding-bottom:35px;
    }
    
    
    section.banner {
        height: 700px;
        background-position: top 0% right 32% !important;
    }
    
    .specialists-page__row > .specialists-item {
        margin: 25px;
        width: calc(50% - 50px);
    }
    
    .specialist-main__content {
        flex-wrap:wrap;
    }
    
    .specialist-main__content-photo {
        width:50%;
        margin-right:0;
        margin-bottom:20px;
    }
    
    .contacts-columns {
        flex-wrap:wrap;
    }
    
    .contacts-columns > * {
        width:100%;
    }
    
    .contacts__info {
        margin-bottom:40px;
    }
    
    .about-main__columns {
        flex-wrap:wrap;
    }
    
    .about-main__info {
        padding-left:0;
        margin-bottom:15px;
    }
    
    .about-main__photo {
        order:2;
    }
    
    .about-numbers__info-text {
        display:flex;
        flex-direction:column;
    }
    
    .about-numbers__info-text span {
        width:fit-content;
        margin-left:auto;
    }
    
    .about-numbers__info-num > span:nth-child(1) {
        font-size:30px;
    }
    
    section.reviews .swiper {
        margin:auto;
        max-width: 92vw;
    }
    
    .swiper-rubric-navigations {
        padding-top:24px;
    }
    
    .swiper-rubric-navigations .swiper-pagination {
        width:100% !important;
    }
    
    .service-detail__photo {
        width:40%;
    }
    
    .service-detail__info {
        width:58%;
    }
    
    .service-detail__columns {
        align-items:flex-start;
    }
    
    .stocks-listing__item {
        width: calc(33% - 10px);
        margin: 5px;
    }
    
    .stocks-listing__row {
        margin: -5px;
    }
    
    .about-main__info {
        max-width:100%;
    }
    
    .about-main__photo {
        max-width:100%;
    }
    
    .footer-column-nav {
        width: 100%;
    }
    
    .footer-column-info {
        width:100%;
    }
    
    .footer-logo {
        max-width:169px;
    }
    
    .stocks-listing__row .empty-results {
        padding:5px;
    }
}

@media (max-width:1000px) {
    .events-listing__other .events-item:nth-child(1) {
        width:100%;
    }
    
    .events-listing__other .events-item:nth-child(2) {
        width:100%;
    }
    
    .swiper-wrapper-visible {
        overflow:hidden;
    }
    
    .swiper-wrapper-visible .swiper {
        overflow:visible;
        max-width:100%;
        margin-left:0;
    }
    
    .services-events .swiper-wrapper .swiper-slide {
        margin-right: -30px;
    }
    
    .services-item {
        margin:0;
    }
    
    .form-section__form {
        left: 0;
        margin:auto;
    }
    
    .title-rubric {
        flex-direction: column;
        text-align: left;
        justify-content: flex-start;
    }
    
    .title-rubric .title {
        text-align:left;
    }
    
    .swiper-rubric-arrows {
        display:none;
    }
    
    .reviews-form__form .reviews-form__column {
        width:100% !important;
    }
    
    .reviews-form__form .reviews-form__column:nth-child(1) {
        order:2;
    }
    
    .reviews-form__form .reviews-form__column:nth-child(2) {
        order:1;
        display:flex;
    }
    
    .reviews-form__form .reviews-form__column:nth-child(2) .form-group-stars {
        order:2;
        margin-bottom: 15px;
    }
    
    .reviews-form__form .form-section__privacy-row {
        order:3;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    
    .reviews-form__form .form-section__privacy-row .reviews-button {
        margin-top:15px;
        width:100%;
    }
    
    .about-requisit__item {
        width:49%;
    }
    
    .stocks-listing__item {
        width: calc(50% - 10px);
        margin: 5px;
    }
}

@media (max-width:900px) {
    .principles-image {
        position: relative;
        width: 100%;
        height: fit-content;
        max-height: fit-content;
        display:block;
    }
    
    .principles-content__description {
        max-width: 100%;
    }
    
    .specialists-item {
        /* margin-right:50px; */
    }
    
    .specialists .swiper .swiper-slide {
        /* margin-right: -30px; */
    }
    
    .ratings-listing {
        flex-wrap: wrap;
        justify-content:center;
    }
    
    .rating-item {
        width: calc(50% - 20px);
        margin: auto;
        margin-bottom: 20px;
    }
    
    .utps-item__title {
        font-size:24px;
    }
    
    .utps-item__description {
        font-size:16px;
    }
    
    .title {
        font-size:40px;
        line-height: 60px;
    }
    
    .events-item__description {
        font-size:16px;
    }
    
    .events-item__link {
        font-size:16px;
    }
    
    .services-item__title {
        font-size:16px;
    }
    
    .principles-content__description * {
        font-size:16px;
        line-height:20px;
    }
    
    .title-rubric__more {
        display:none;
    }
    
    .rating-item-count {
        font-size:16px;
    }
    
    .rating-item-rating {
        font-size:40px;
    }
    
    .title {
        text-align:left;
    }
    
    .reviews-form__title {
        font-size:24px;
        margin-bottom:40px;
    }
    
    .specialist-main__content-photo {
        width:80%;
    }
    
    .specialist-main__content-name {
        font-size:40px;
        line-height: 50px;
        padding-bottom:15px;
    }
    
    .specialist-main__content-post {
        padding-bottom:15px;
    }
    
    .specialist-main__content-inf {
        margin-bottom:15px;
    }
    
    .specialist-main__content-info {
        width:100%;
    }
    
    .contacts__info .title {
        padding-bottom:25px;
    }
    
    .contacts__info-content {
        font-size:18px;
    }
    
    .breadcrumbs-section {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    
    .contacts-page {
        padding: 20px 0 55px;
    }
    
    .contacts-order__title {
        font-size: 40px;
    }
    
    .about-main__photo {
        width:100%;
        max-width: 100%;
    }
    
    .about-numbers__columns {
        flex-wrap:wrap;
    }
    
    .about-numbers__gallery .swiper {
        margin-left:0;
    }
    
    .about-numbers__gallery {
        margin-top:40px;
    }
    
    .about-numbers__info {
        max-width:100%;
    }
    
    .about-numbers__info-text {
        max-width:500px;
        margin-bottom:40px;
    }
    
    .modal-accent__image {
        bottom:auto;
        max-width: 350px;
    }
    
    .modal-accent__image:after {
        content: '';
        position: absolute;
        bottom: 0;
        background: linear-gradient(0deg, #ffffff, transparent);
        width: 100%;
        height: 50px;
    }
    
    .modal-accent__info {
        padding-right: 180px;
    }
    
    .price-category__item-title {
        font-size:24px;
    }
    
    .prices-filter {
        font-size:14px;
        margin-right:10px;
    }
    
    .error-404__nums-404 {
        font-size: 30vw;
    }
    
    .error-404__outer {
        justify-content:space-between;
    }
    
    .detail-service__item-price {
        flex-direction:column;
        align-items: flex-start;
        justify-content: center;
    }
    
    .detail-service__item-price > span {
        margin-left:0;
        font-size: 16px;
    }
    
    .detail-service__item-price {
        min-width: 200px;
    }
    
    .detail-service__item-price {
        margin-left: 30px;
    }
    
    .stock-preview__row {
        flex-direction:column;
    }
    
    .stock-preview__other {
        margin-left:0;
        margin-top:10px;
    }
    
    .stock-preview__image {
        max-width: 100%;
        height: fit-content;
    }
    
    .footer-column-nav a {
        font-size:14px;
    }
}

@media (max-width:750px) {
    .service-detail__columns {
        flex-direction:column;
    }
    .service-detail__photo {
        width: 100%;
        order:2;
    }
    
    .service-detail__info {
        width:100%;
        margin-bottom:15px;
        order:1;
    }
    
    .error-404__outer {
        flex-direction:column;
    }
    
    .error-404__nums {
        margin-bottom:30px;
    }
    
    .error-404__links {
        width:49vw;
        margin:auto;
    }
    
    .detail-service__item {
        position:relative;
    }
    
    .detail-service__item-price {
        position:absolute;
        right: 0;
        top: 22px;
        text-align: right;
        display: block;
        font-size:24px;
        width: fit-content;
        min-width: fit-content;
    }
    
    .detail-service__item-title {
        max-width:55vw;
    }
    
    .footer-columns {
        flex-wrap:Wrap;
    }
    
    .footer-column-nav {
        width: 50%;
    }
    
    .footer-column-info__cls {
        width:50%;
    }
    
    .footer-column-info__columns {
        display:flex;
    }
    
    .footer-column-info {
        padding-bottom: 25px;
        border-bottom: 1px solid #fff;
        margin-bottom: 25px;
    }
    
    .footer-column-info-spacer {
        height:12px;
    }
    
    .stocks-listing__filters {
        flex-wrap:wrap;
    }
    
    .stocks-listing__filter {
        margin-bottom:10px;
    }
}

@media (max-width:600px) {
    header {
        border-bottom:0;
    }
    
    .reviews-item__row {
        flex-direction:column;
        justify-content:flex-start;
        align-items:flex-start;
    }
    
    .reviews-item__rating {
        margin-top:10px;
    }
    
    .section-paddings {
        padding:40px 0 55px 0;
    }
    
    .promo-swiper__image {
        display:none;
    }
    
    .promo-swiper__image.mobile {
        display:block;
        height: 661px;
        object-fit: cover;
    }
    
    .form-section__form {
        width:100%;
    }
    
    .rating-item {
        width:100%;
        margin-bottom:10px;
    }
    
    .rating-item img {
        max-width: 300px;
        object-fit: contain;
        object-position: left;
        max-height: 65px;
    }
    
    .rating-item-stars-outer {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
    }
    
    .rating-item-count {
        margin-top:0;
        margin-left:20px;
    }
    
    .rating-item-rating {
        font-size:60px;
        line-height: 60px;
    }
    
    .utps-item__title {
        font-size:18px;
        margin-bottom: 11px;
    }
    
    .utps-item__description {
        font-size:14px;
    }
    
    .utps-item {
        padding:14px 15px 28px 15px;
        width: calc(50% - 5px);
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    .utps-item__icon {
        margin-bottom:10px;
    }
    
    section.banner.about {
        height: 115vw;
        background-image:url('/templates/img/main/main-about-banner-mobile.png');
        background-size: cover;
        background-position: center !important;
        min-height:600px;
    }
    
    section.banner.action {
        height: 115vw;
        min-height: 600px;
    }
    
    section.banner .wrapper {
        align-items: flex-start;
        padding-top:40px;
    }
    
    .title {
        font-size:32px;
        line-height: 36px;
    }
    
    .banner-content__description {
        font-size:14px;
        font-weight: 400;
    }
    
    .big-paddings {
        padding:40px 0 60px 0;
    }
    
    .events-item__title {
        font-size:18px;
        line-height:20px;
        margin-bottom:8px;
        font-weight: 500;
    }
    
    .events-item__description {
        font-size:14px;
        margin-bottom:10px;
    }
    
    .events-item {
        padding: 90px 20px 20px !important;
    }
    
    .events-item__link svg {
        margin-left:15px;
        width: 15px;
    }
    
    .events-item__link {
        display:flex;
        align-items:center;
    }
    
    .events-listing > .events-item, .events-listing__other .events-item {
        margin-bottom:10px !important;
    }
    
    .services-listing {
        margin-top:65px;
    }
    
    .principles-content__description {
        margin-top:34px;
    }
    
    .principles-content {
        padding:0 !important;
    }
    
    section.principles {
        padding-top:40px;
    }
    
    .principles-image-mobile {
        display:block;
        width:100%;
    }
    
    .principles-image {
        display:none;
    }
    
    .specialists-item__image {
        min-height:188px;
    }
    
    .specialists .swiper .swiper-slide {
        /* margin-right: -80px; */
    }
    
    .specialists-item {
        /* margin-right: 100px; */
        min-height:643px;
    }
    
    .specialists-item__post {
        font-size:12px;
        line-height:14px;
    }
    
    .specialists-item__post svg {
        width:16px;
    }
    
    .swiper-rubric-arrows  {
        display:none;
    }
    
    .specialists-item__name {
        height: 96px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size:20px;
    }
    
    .specialists-listing .swiper-wrapper {
        padding-bottom:0px;
    }
    
    section.banner.action * {
        color:#fff;
    }
    
    section.banner.action {
        background-position: left 54% top 0% !important;
    }
    
    section.banner .title {
        margin-bottom:8px;
    }
    
    .gallery-listing > .gallery-item {
        width:calc(50% - 10px);
        height: 73vw;
        margin-right: 10px;
    }
    
    .gallery-listing__other {
        width:50%;
    }
    
    .gallery-listing__other .gallery-item:nth-child(1) {
        height: 37vw;
        margin-bottom:10px;
    }
    
    .gallery-listing__other .gallery-item:nth-child(2) {
        height: 34vw;
    }
    
    .gallery-listing__other .gallery-item:nth-child(3) {
        height: 34vw;
    }
    
    .gallery .title {
        padding-bottom:34px;
    }
    
    .ratings  .title {
        padding-bottom:34px;
    }
    
    .specialists-listing {
        padding-top:34px;
    }
    
    .title {
        padding-bottom:34px;
    }
    
    .reviews-form__outer {
        padding:32px 15px 40px 15px;
    }
    
    .reviews-messages__item {
        flex-direction:column;
        position:relative;
    }
    
    .reviews-messages__item-subject {
        text-align:left;
    }
    
    .reviews-messages__item-info {
        padding-left:0;
    }
    
    .reviews-messages__item-rating {
        position:absolute;
        right:15px;
    }
    
    .reviews-messages__item-rating-row {
        justify-content:flex-end;
    }
    
    .reviews-messages__item-subject {
        display:none;
    }
    
    .reviews-messages__item-subject-mobile {
        display:block;
        color: var(--Gray_1, #777E90);
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        margin-bottom:20px;
    }
    
    .reviews-messages__item-text {
        font-size:14px;
    }
    
    .reviews-messages__item-name {
        font-size:20px;
        max-width: 70%;
    }
    
    .reviews-messages__item-date {
        font-size:12px;
    }
    
    .reviews-messages__item {
        padding:40px 15px 40px 15px;
    }
    
    .reviews-messages__item-rating svg {
        width:19px;
    }
    
    .pagination li:not(.control) {
        font-size:18px;
    }
    
    .mainReviews {
        display:flex;
        flex-direction:column;
    }
    
    .mainReviews .title-page {
        order:1;
    }
    
    .mainReviews .reviews-messages {
        order:2;
        padding-bottom:0;
    }
    
    .reviews-messages__listing {
        margin-bottom:50px;
    }
    
    .mainReviews .reviews-form {
        order:3;
        margin-top:50px;
    }
    
    .breadcrumbs {
        overflow-x: auto;
        white-space: nowrap; 
    }
    
    .specialists-page__row > .specialists-item {
        margin: 0 0 50px 0;
        width: 100%;
    }
    
    .specialists-page__row {
        margin:0;
    }
    
    .specialist-main__content-photo {
        margin-bottom:32px;
        width:100%;
    }
    
    .specialist-main__content-name {
        font-size:32px;
        line-height:normal;
    }
    
    .specialist-main__content-post {
        font-size:14px;
    }
    
    .specialist-main__content-info-title {
        font-size:18px;
    }
    
    .specialist-main__content-inf {
        font-size:14px;
    }
    
    .specialist-main__content-info .button {
        width:100%;
        margin-top:17px;
    }
    
    .specialist-about__contents {
        font-size:14px;
    }
    
    .specialist-about__content-mobile-button {
        font-size:20px;
    }
    
    .specialist-about__contents p {
        margin-bottom:15px;
    }
    
    .specialist-about__contents ul {
        list-style:disc;
        padding-left:20px;
        margin-bottom:15px;
    }
    
    .specialist-about__contents p + ul {
        margin-top:-10px;
    }
    
    .contacts__info-content {
        font-size:14px;
        margin-bottom: 14px;
    }
    
    .contacts-order__title {
        font-size: 24px;
    }
    
    .contacts-order__desc {
        font-size: 14px;
    }
    
    section.contacts-order {
        padding:40px 0 55px 0;
    }
    
    section.contacts-order {
        background-image:url('/templates/img/main/contacts-order-mobile-500.jpg');
    }
    
    .about-main__info-content {
        font-size:14px;
        color:#000;
        margin-bottom: 5px;
    }
    
    section.about-main {
        padding-top: 20px;
        padding-bottom: 55px;
    }
    
    .about-offer__text {
        font-size:20px;
    }
    
    .about-numbers__info-text {
        font-size:20px;
    }
    
    .about-numbers__info-num > span:nth-child(1) {
        font-size:20px;
    }
    
    .about-numbers__info-num > span:nth-child(2) {
        font-size:14px;
    }
    
    .about-numbers__gallery .swiper {
        /* max-width:60%; */
    }
    
    .about-offer__snake svg {
        width:100%;
    }
    
    .about-requisit__item {
        width: 100%;
    }
    
    .about-requisits__title {
        font-size:20px;
    }
    
    .about-requisit__name {
        font-size:14px;
    }
    
    .about-requisit__value {
        font-size:14px;
    }
    
    .about-brands__title {
        font-size:20px;
        line-height:normal;
    }
    
    .about-documents__item-name {
        font-size:14px;
        font-weight: 700;
    }
    
    .about-documents__item-download, .about-documents__item-open {
        font-size:16px;
    }
    
    .modal-accent__info {
        padding-right: 0;
    }
    
    .modal-accent__image {
        top: auto;
        bottom:0;
        max-width: 350px;
        opacity: .7;
    }
    
    .modal-accent__image:after {
        content: '';
        position: absolute;
        bottom: auto;
        top:0;
        background: linear-gradient(180deg, #ffffff, transparent);
        width: 100%;
        height: 50px;
    }
    
    .modal-accent__info-content *{
        font-size:14px;
    }
    
    .modal-title__description {
        font-size:12px;
        margin-bottom: 24px;
    }
    
    .default-modal {
        padding:30px !important;
    }
    
    .modal-submit__message-description br {
        display:none;
    }
    
    .form-submit__message-description br {
        display:none;
    }
    
    .swiper-rubric-navigations {
        display:none;
    }
    
    .services-page-listing__item-image {
        height:200px;
    }
    
    .services-page-listing__item {
        width:100%;
        margin:5px;
    }
    
    .services-page-listing {
        margin:-5px;
    }
    
    .service-detail__info {
        font-size:14px;
    }
    
    .price-category__item-title {
        font-size:18px;
    }
    
    .price-category__item-prices thead th {
        font-size:14px;
    }
    
    .price-category__item-prices-price {
        width: 115px;
    }
    
    
    .error-404__links {
        width:100%;
        margin:auto;
    }
    
    .error-404__nums-404 {
        font-size: 50vw;
    }
    
    .detail-service__item-price {
        top: inherit;
        bottom: 70px;
        left: 0;
        right: inherit;
        transition: all ease-out .2s;
        margin-left: 0;
    }
    
    .detail-service__item:hover .detail-service__item-price {
        top:inherit;
        bottom:100px;
    }
    
    .detail-service__item-button {
        margin-top:50px;
    }
    
    .stocks-listing__item {
        width: calc(100% - 10px);
        margin: 5px;
    }
    
    .stocks-listing__filter {
        font-size:14px;
    }
    
    .stocks-listing__item-title {
        font-size:18px;
    }
    
    .stocks-listing__item-dates {
        font-size:14px;
        display: flex;
        align-items: center;
        font-weight: 500;
    }
    
    .stocks-listing__item-dates svg {
        margin-right:8px;
    }
    
    .stocks-listing__item-description {
        font-size:14px;
    }
    
    .stocks-listing__item {
        padding:17px 17px 30px 17px;
    }
    
    .stocks-listing__item img, .stocks-listing__item-dates, .stocks-listing__item-title, .stocks-listing__item-description {
        margin-bottom:17px;
    }
    
    .stock-preview__other-item {
        padding: 15px 0;
    }
    
    .stock-preview__other-item-date {
        margin-bottom:10px;
        font-size: 14px;
    }
    
    .stock-preview__other-title {
        font-size:18px;
        margin-bottom:39px;
    }
    
    .stock-preview__other-item-title {
        font-size:18px;
    }
    
    .stock-preview__other {
        padding:20px 15px;
    }
    
    .info-page .title {
        font-size:24px;
    }
    
    .promo-button__outer {
        position: absolute;
        top: inherit;
        left: 0;
        z-index: 2;
        right: 0;
        width: fit-content;
        margin: auto;
        bottom: 9vw;
    }
    
    .banner-content__description {
        max-width:80%;
    }
    
    .banner-content__description svg {
        max-width:18px;
        margin-bottom: -3px;
    }
    
    section.banner.action svg path {
        fill: #fff;
    }
    
    .footer-line {
        flex-wrap:wrap;
    }
    
    .footer-line a {
        padding-top:10px;
    }
    
    .utps-item {
        width:100%;
        max-width:100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .utps-item .utps-item__icon {
        margin-right: 15px;
        width: 60px;
        height: 60px;
        max-width:30%;
        padding: 15px;
    }
    
    .utps-item .utps-item__icon img {
        width:100%;
    }
    
    .utps-item__title {
        max-width:70%;
        text-align: left;
    }
    
    .utps-item__description {
        text-align:left;
    }
    
    .telegram-banner {
        background-image:url('/templates/img/promo/tg_mob_sk.jpg');   
    }
    
    .telegram-banner__title {
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-transform: uppercase;
    }
    
    .telegram-banner__description {
        font-size: 14px;
        font-weight: 400;
    }
    
    .stocks-empty {
        font-size:14px;
    }
    
    .stocks-listing__filter {
        margin-right:15px;
    }
    
    .stocks-listing__row .empty-results {
        font-size:14px;
    }
}

@media (max-width:500px) {
    .services-events .swiper-wrapper .swiper-slide {
        margin-right: 2px;
    }
    
    .header-logo {
        max-width: 160px;
        height:auto;
    }
    
    header.header-sticky-load .header-logo {
        max-width: 160px;
    }
    
    .header-contacts__phone {
        font-size:14px;
    }
    
    .header-contacts > * {
        margin-bottom:2px;
    }
    
    .services-item {
        width:fit-content;
    }
    
    .services-events .swiper-wrapper .swiper-slide {
        margin-right:0;
    }
    
    .form-section__form {
        top: 0;
        margin: auto;
        bottom: 0;
        height: fit-content;
    }
    
    .form-section__description {
        margin-bottom:24px;
    }
    
    .footer-list {
        display:flex;
        flex-direction:column;
    }
    
    .footer-list a {
        margin-bottom: 23px;
    }
    
    .footer-list a:after {
        content: '';
        width: 45px;
        height: 1px;
        left: 0;
        right: 0;
        bottom: -10px;
        top: auto;
    }
    
    .footer-list a:last-child:after {
        display:block;
    }
    
    .footer-copyright {
        font-size:14px;
    }
    
    .footer-list {
        margin-bottom: 0px;
    }
    
    .utps-item__icon {
        width:60px;
        height:60px;
    }
    
    .utps-item__icon img {
        width: 100%;
        height: 100%;
    }
    
    .specialists-item__links {
        flex-wrap:nowrap;
    }
    
    .specialists-page {
        overflow:hidden;
    }
    
    #specialistsSwiper .specialists-item__links {
        flex-wrap:wrap;
    }
    
    #specialistsSwiper .specialists-item__link {
        margin-top:10px;
        margin-bottom: -15px;
    }
    
    .events-listing .events-item__title, .events-listing .events-item__description {
        max-width:70%;
    }
    
    .events-listing .events-item__image {
        margin-right: -40px;
    }
}

@media (max-width: 385px) {
    .header-logo {
        max-width: 140px;
        height: auto;
    }
}

.swiper-slide .reviews-item {
    height:100%;
}

.portfolio-listing {
    display:flex;
    flex-wrap:wrap;
    margin:-10px;
}

.portfolio__item {
    width:33%;
    padding:10px;
}

@media (max-width:1000px) {
    .portfolio__item {
        width:50%;
    }    
}

@media (max-width:1400px) and (min-width:1300px) {
    .header-menu__item {
        font-size:16px;
    }
    
    .header-menu__list > .header-menu__item {
        padding: 0 3px;
    }
}

.accept-check-outer {
    display:flex;
    align-items:flex-start;
    padding-bottom:15px;
    text-align:left;
    font-size:14px;
    cursor:pointer;
}

.accept-check-outer input {
    display:none;
}


.accept-check-box {
    display: block;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    border: 1px solid #c9c9c9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right:6px;
    border-radius:5px;
}

.accept-check-outer a {
    text-decoration:underline;
}

.accept-check-outer .accept-check-box span {
    display:none;
    color:#3F4B7F;
}

.accept-check-outer input.is-invalid ~ .accept-check-box,
.form-group.has-error input ~ .accept-check-box {
    border:1px solid #F38A8A;
}

.accept-check-outer input:checked ~ .accept-check-box span {
    display:block;
}

.form-group.has-error .accept-check-outer {
    position:relative;
}

.form-group.has-error .accept-check-outer .ec-error {
    top: -18px;
    left: 0px;
}

.footer-offer {
    font-size:12px;
    padding-top:25px;
}

.price-offer {
    text-align:right;
    font-size:14px;
    margin-top:25px;
}

@media (max-width:500px) {
    .form-group .accept-check-outer {
        margin-top:25px;
    }
}

.cookie-message {
        position: fixed;
        bottom: 25px;
        right: 25px;
        background: #fff;
        z-index: 99;
        box-shadow: 8px 8px 30px rgb(0 0 0 / 9%);
        max-width: 500px;
        padding: 35px;
        box-sizing: border-box;
        margin-left: auto;
        border-radius:10px;
    }

.cookie-message a {
    color:#3F4B7F;
    text-decoration:underline;
}

.cookie-message button {
    display:block;
    width:fit-content;
    margin-top:15px;
}

@media (max-width:500px) {
    .cookie-message {
        left:10px;
       right:10px;
        width:calc(100% - 20px);
        padding:25px;
	bottom:10px;
    }
}