/*!
Theme Name: Mvd
Author: ''
Version: 1.0.0
*/

html {
    margin: 0;
    /* scroll-behavior: smooth; */
}

:root {
    --primary-color: #0068F5;
    /* --secondary-color: #EA1D22; */
    --font-color: #222222;

    /* fonts */
    --primary-font: "Rubik", sans-serif;
    --secondary-font:  "Manrope", sans-serif;

} 

body {
    position: relative;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    background: #F4F4F8;
    padding: 0;
    margin: 0;
}

body * {
    outline: none;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.m-100 {
    margin: 100px 0px;
}

h2 {
    color: var(--font-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 120%;
    margin: 60px 0px;
}

.article-content h2 {
    /* font-size: 30px;
    font-weight: 500; */
    font-weight: 600;
    margin: 40px 0px;
}

h3 {
    color: var(--font-color);
    font-size: 30px;
    font-weight: 500;
    line-height: 120%;
    margin: 24px 0px;
}

p {
    color: #2C2837;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    margin: 20px 0px;
}

p img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.btn {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    border: none;
    background: transparent;
    transition: 0.3s;
    padding: 16px 24px;
}

.btn_primary {
    color: #ffffff;
    border-radius: 24px;
    background: var(--primary-color);
}

.btn_primary:hover {
    background: #0558c8;
}

.article-content *:first-child {
    margin-top: 0px;
}

.article-content ul {
    list-style: none;
    padding: 0px;
    margin: 40px 0px;
}

.article-content ul li {
    position: relative;
    color: var(--font-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    margin: 20px 0px;
    padding: 0px 0px 0px 52px;
}

.article-content ul li::before{
    content: '';
    position: absolute;
    left: 0px;
    display: block;
    width: 32px;
    height: 32px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDMyIDMyIj48Y2lyY2xlIGN4PSIxNiIgY3k9IjE2IiByPSIxNiIgZmlsbD0iIzAwNmVmZSIvPjxwYXRoIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjMiIGQ9Im0xMS4xMyAxNC42MDkgNC44NyA0Ljg3IDYuOTU3LTYuOTU3Ii8+PC9zdmc+");
    background-size: cover;
}

.article-content ol {
    margin: 40px 0px;
    padding: 0px 0px 0px 20px;
}

.article-content ol li {
    position: relative;
    color: var(--font-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    margin: 10px 0px;
}

.article-content table {
    border-collapse: collapse;
    border-radius: 20px;
    background: #FBFBFB;
    box-shadow: 0 0 0 1px #cccccc;
}

.article-content table tr {
    border-bottom: 1px solid #cccccc;
}

.article-content table tr:last-child {
    border-bottom: none;
}

.article-content table td {
    padding: 20px;
}


.header-block {
    margin: 0px 0px 48px 0px;
}

.header-block__title {
    color: var(--font-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 120%;
}

.header-block__title:has( + .header-block__descr ) {
    margin: 0px 0px 32px 0px;
}

.header-block__title span {
    color: var(--primary-color);
}

.header-block__descr {
    color: var(--font-color);
    font-size: 20px;
    line-height: 130%;
}

.swiper-button-prev .icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    transform: rotate(180deg);
    fill: #ffffff;
    transition: 0.3s;
}

.swiper-button-prev:hover .icon {
    fill: #eeeeee;
}

.swiper-button-prev::after {
    display: none;
}

.swiper-button-next .icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    fill: #ffffff;
    transition: 0.3s;
}

.swiper-button-next:hover .icon {
    fill: #eeeeee;
}

.swiper-button-next::after {
    display: none;
}

.swiper-pagination {
    bottom: -16px !important;
    display: none;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 16px;
    height: 4px;
    border-radius: 0px;
    background: rgba(0, 104, 245, 0.2);
}

.swiper-pagination-bullet-active {
    background: #0068F5;
}

/* header */

body:not(.home) .header {
    margin: 0px 0px 30px 0px;
}

.header__wrapper {
    position: relative;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 26px 0px 16px;
}

body:not(.home) .header__wrapper{
    border-bottom: 1px solid #cccccc;
}

.header__logo {
    display: flex;
}

.header__logo .icon {
    width: 30px;
    height: 40px;
}

.header__menu {
    padding: 8px 0px;
    margin: 0px auto;
}

.header__menu .menu {
    display: flex;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
} 

.header__menu .menu li {
    position: relative;
    line-height: 100%;
    margin: 0;
    z-index: 100;
}

.header__menu .menu li.menu-item-has-children .icon {
    position: absolute;
    top: 50%;
    right: 0;
    width: 14px;
    height: 14px;
    stroke: var(--primary-color);
    transition: 0.3s;
    transform: translateY(-50%);
    box-sizing: content-box;
}  

.header__menu .menu > li > a {
    position: relative;
    color: #0B0B0B;
    font-family: var(--font-color);
    font-size: 16px;
    line-height: 100%;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

.header__menu .menu > li.menu-item-has-children > a {
    padding: 0px 20px 0px 0px;
}

.header__menu .menu > li:hover > a,
.header__menu .menu > li.active > a {
    color: #0A3D97;
}

.header__menu .menu > li:hover > a .icon {
    fill: #fff;
    transform: translateY(-50%) rotate(180deg);
}

.header__menu .menu > li > .sub-menu__wrapper {
    visibility: hidden; 
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 280px;
    transform: translateY(38px);
    z-index: 100;
    transition: all 0.2s ease-in-out 0s, visibility 0s linear 0.44s, z-index 0s linear 0.01s;
    pointer-events: none;
}

.header__menu .menu > li:hover > .sub-menu__wrapper {
    visibility: visible;
    opacity: 1;
    transform: translateY(32px);
    transition-delay: 0s, 0s, 0.4s;
    pointer-events: all;
}

.header__menu .menu > li > .sub-menu__wrapper > .sub-menu:before {
    content: '';
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: -34px;
    height: 34px;
    width: 50%;
}

.header__menu .menu > li:hover > .sub-menu__wrapper > .sub-menu:before {
    display: block;
}

.header__menu .menu .sub-menu__wrapper .sub-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.10);
    transition: 0.3s;
    padding: 25px;
}

.header__menu .menu .sub-menu__wrapper .sub-menu li a {
    position: relative;
    display: block;
    color: #282F2F;
    font-family: var(--secondary-font);
    font-size: 14px;
    line-height: 100%; 
    text-decoration: none;
}

.header__menu .menu .sub-menu__wrapper .sub-menu li:hover > a {
    color: #0A3D97;
}

.header__menu .menu .sub-menu__wrapper .sub-menu li a .icon {
    right: 10px;
    transform: rotate(-90deg);
}

.header__menu .menu .sub-menu__wrapper ul li .sub-menu__wrapper {
    visibility: hidden; 
    opacity: 0;
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    min-width: 390px;
    transform: translateX(65%);
    z-index: -1;
    transition: all 0.4s ease-in-out 0s, visibility 0s linear 0.4s, z-index 0s linear 0.01s;
}

.header__menu .menu .sub-menu__wrapper ul li:hover .sub-menu__wrapper {
    visibility: visible;
    opacity: 1;
    z-index: 100;
    transform: translateX(67%);
    transition-delay: 0s, 0s, 0.4s;
}

.header__menu .menu .sub-menu__wrapper ul li .sub-menu__wrapper > .sub-menu {
    border-radius: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.header__menu .menu .sub-menu__wrapper ul li .sub-menu__wrapper > .sub-menu:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 12px;
}

.header__info {
    display: none;
}

.header__search-inline {
    position: relative;
    margin: 0px 0px 20px 0px;
}

.header-search__submit {
    position: absolute;
    left: 12px;
    display: flex;
    border: none;
    background: transparent;
    top: 50%;
    transform: translateY(-50%);
    padding: 0px;
}

.header-search__submit .icon {
    width: 22px;
    height: 22px;
    fill: #0068F5;
}

.header-search__input {
    width: 100%;
    line-height: 100%;
    border: none;
    border-radius: 8px;
    padding: 8px 8px 8px 35px;
}

.header__socials {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #cccccc;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 60px 0px;
}

.header__socials a {
    display: flex;
}

.header__socials a .icon {
    width: 40px;
    height: 40px;
}

.header__contacts__title {
    color: #006EFE;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    margin: 0px 0px 16px 0px;
}

.header-contacts__list {
    display: flex;
    gap: 16px;
    flex-direction: column;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.header-contacts__item,
.header-contacts__item a {
    color: #222222;
    font-size: 15px;
    line-height: 120%;
    text-decoration: none;
}

.header-contacts__item span {
    display: block;
    color: #666666;
    font-size: 14px;
    line-height: 120%
}

.header__phone {
    display: flex;
}

.header__phone .icon {
    width: 32px;
    height: 32px;
    fill: #0068F5;
    transition: 0.3s;
}

.header__phone:hover .icon {
    fill: #0558c8;
}

.header__search {
    display: flex;
}

.header__search .icon {
    width: 32px;
    height: 32px;
    fill: #0068F5;
    transition: 0.3s;
}

.header__search:hover .icon {
    fill: #0558c8;
}

.header__menu-toggle {
    display: none;
    gap: 6px;
    flex-direction: column;
    border-radius: 100%;
    border: none;
    background: transparent;
    transition: 0.3s;
    padding: 11px 8px;
}

.header__menu-toggle.active {
    background: #0068F5;
}

.header__menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #006EFE;
    transition: 0.3s;
}

.header__menu-toggle.active span {
    background: #ffffff;
}

.header__menu-toggle.active span:nth-of-type(1) {
    transform: translate(0px, 8px) rotate(45deg);
}
.header__menu-toggle.active span:nth-of-type(2) {
    transform: translate(0px, 0px) rotate(-45deg);
}
.header__menu-toggle.active span:last-child {
    opacity: 0;
}

.header__cta {
    color: #3366CC;
    font-size: 14px;
    line-height: 100%;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid #3366CC;
    transition: 0.3s;
    padding: 8px 16px;
}

.header__cta:hover {
    color: #ffffff;
    background: #3366CC;
}

/**/

/* breadcrumbs */

.breadcrumbs__wrapper {
    margin: 0px 0px 50px 0px;
}

.breadcrumbs {
    display: flex;
    gap: 26px;
    align-items: center;
}

.breadcrumbs__separator {
    display: flex;
}

.breadcrumbs__separator .icon {
    width: 13px;
    height: 13px;
    stroke: #3366CC;
    transform: rotate(-90deg);
}

.breadcrumbs__link {
    color: #666666;
    font-size: 16px;
    line-height: 100%;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs__link:hover {
    color: #3366CC;
    text-decoration: none;
}

.breadcrumbs span:last-child .breadcrumbs__link {
    color: #3366CC;
}

.breadcrumbs__current {
    color: #3366CC;
    font-size: 16px;
}

/**/

/* page-heading */

.page-heading__title {
    color: #2C2837;
    font-size: 36px;
    font-weight: 700;
    line-height: 120%;
    margin: 0px 0px 24px 0px;
}

.category .page-heading__title {
    font-size: 40px;
}

.page-heading__image {
    border-radius: 20px;
    overflow: hidden;
    margin: 0px 0px 30px 0px;
}

.page-heading__image  picture {
    display: block;
    width: 100%;
    height: 100%;
}

.page-heading__image  picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info {
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 0px 0px 24px 0px;
}

.post-info__item {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #999999;
    font-size: 16px;
    line-height: 100%;
}

.post-info__item .icon {
    width: 20px;
    height: 20px;
    stroke: #999999;
    fill: #999999;
}

/**/

/* hero */

.hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(270deg, #0C3058 0%, #0068F5 100%);
    border-radius: 20px;
    padding: 110px 60px 140px;
}

.hero__title {
    position: relative;
    text-align: right;
    z-index: 10;
    margin: 0px 0px 26px 0px;
}

.hero__title h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    margin: 0px;
}

.hero__sub-title {
    position: relative;
    text-align: right;
    color: #ffffff;
    font-size: 20px;
    line-height: 27px;
    z-index: 10;
    margin: 0px 0px 45px 0px;
}

.hero__cta {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    border-radius: 24px;
    background: rgba(252, 241, 241, 0.33);
    backdrop-filter: blur(3.69314px);
    transition: 0.3s;
    padding: 17px 26px;
    margin: 0px 0px 0px auto;
}



.hero__cta:hover {
    color: #3366CC;
    background: #ffffff;
}

.hero_image {
    position: absolute;
    top: -12px;
    bottom: 0px;
    left: 20px;
}

.hero_image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero_image picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/**/

/* article */

.article {
    margin: 0px 0px 80px 0px;
}

.search .article {
    margin: 60px 0px 80px 0px;
}

.article:has( + .services-overview ),
.article:has( + .useful-materials )  {
    margin: 0px 0px 40px 0px;
}

.article-content-sidebar {
    position: relative;
    display: flex;
    gap: 105px;
}

.article-content {
    flex: 1 1 auto;
    min-width: 0;
}

.article-sidebar {
    position: sticky;
    top: 85px;
    bottom: 30px;
    height: 100%;
    flex: 0 0 335px;
    max-width: 335px;
    width: 100%;
    display: flex;
    gap: 45px;
    flex-direction: column;
}

/**/


/* expandable-text */

.expandable-text__content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: 0.3s;
    margin: 0px 0px 30px 0px;
}

.expandable-text--expanded .expandable-text__content {
    grid-template-rows: 1fr;
}

.expandable-text__inner {
    position: relative;
    min-height: 375px;
}

.expandable-text__inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(244, 244, 248, 0), #F4F4F8);
    pointer-events: none;
    transition: opacity 0.3s;
}

.expandable-text--expanded .expandable-text__inner::after {
    opacity: 0;
}

.expandable-text__toggle {
    color: #0068F5;
    font-size: 20px;
    font-weight: 700;
    text-decoration: underline;
    border: none;
    cursor: pointer;
    background: transparent;
    transition: 0.3s;
}

.expandable-text__toggle:hover {
    color: var(--font-color);
    text-decoration: none;
}

/**/

/* news-list */

.news-list.grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.news-list__item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.news-list__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.2) 0%, #0F0E42 100%);
}

.news-item__link {
    position: absolute;
    inset: 0;
    z-index: 12;
}

.news-list__image {
    display: block;
    width: 100%;
    height: 414px;
}

.news-list__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.news-list__image picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list__content {
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
    padding: 32px 24px;
}

.news-list__item-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    margin: 0px 0px 12px 0px;
}

.news-list__item-excerpt {
    min-height: 62px;
    color: #ffffff;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
}

/**/

/**/

.services-overview {
    margin: 40px 0px 60px;
}

.services-overview__list {
    display: grid;
    grid-gap: 20px 40px;
    grid-template-columns: 1fr 1fr;
}

.services-overview__item {
    position: relative;
    display: flex;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
}

.service-card__link {
    position: absolute;
    inset: 0px;
    z-index: 10;
}

.service-card__image {
    max-width: 260px;
    border-radius: 20px;
    overflow: hidden;
}

.service-card__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.service-card__image picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}

.service-card__title {
    color: #2C2837;
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    transition: 0.3s;
    margin: 0px 0px 12px 0px;
}

.services-overview__item:hover .service-card__title {
    color: #3366CC;
}

.service-card__description {
    margin: 0px 0px 20px 0px;
}

.service-card__description p {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    margin: 0px;
}

.service-card__button {
    position: relative;
    display: block;
    color: #3366CC;
    font-size: 16px;
    line-height: 100%;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #3366CC;
    transition: 0.3s;
    z-index: 15;
    padding: 16px 24px;
}

.service-card__button:hover {
    color: #ffffff;
    background: #3366CC;
}

/**/

/**/

.useful-materials {
    margin: 40px 0px 60px;
}

.useful-materials__grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.useful-materials__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    background: #ffffff;
    padding: 32px 24px;
}

.useful-materials__card--accent {
    background: #E0E9FF;
}

.useful-materials__title {
    color: #222222;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin: 0px 0px 20px 0px;
}

.useful-materials__content {
    margin: 0px 0px 24px 0px;
}

.useful-materials__content p {
    color: #222222;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    margin: 0px;
}

.useful-materials__button {
    display: block;
    color: #3366CC;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    text-decoration: none;
    border-radius: 12px;
    background: #E0E9FF;
    transition: 0.3s;
    padding: 16px 24px;
}

.useful-materials__card--accent .useful-materials__button {
    color: #ffffff;
    background: #006EFE;
}

.useful-materials__button:hover {
    color: #ffffff;
    background: #3366CC;
}


/**/

/* consultation__block */

.consultation__block {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    background: #ffffff;
    padding: 32px 57px 32px 24px;
}

.consultation__block.shortcode {
    box-shadow: 0px 4px 20px rgba(0, 110, 254, 0.1);
    padding: 30px 24px;
    margin: 40px 0px;
}

.article-sidebar .consultation__block {
    gap: 20px;
    flex-direction: column;
    padding: 24px 20px;
}

.consultation__block-title {
    color: var(--font-color);
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
}

.shortcode .consultation__block-title {
    font-size: 20px;
}

.article-sidebar .consultation__block-title {
    font-size: 20px;
    line-height: 140%;
}

.article-sidebar .consultation__block-title br {
    display: none;
}

.consultation__block-title span {
    color: var(--primary-color);
}

.article-sidebar .consultation__block-title span {
    font-style: italic;
}

.consultation__block-button {
    text-align: center;
}

.shortcode .consultation__block-button {
    font-size: 16px;
}

.article-sidebar .consultation__block-button {
    font-size: 16px;
}

/**/

/* news-catalog */

.news-catalog {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.news-catalog__item {
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 110, 254, 0.1);
    border-radius: 20px;
    background: #FCF1F154;
    padding: 20px;
}

.news-catalog__link {
    position: absolute;
    inset: 0px;
}

.news-catalog__title {
    color: #3366CC;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    margin: 0px 0px 25px 0px;
}

.news-catalog__item:hover .news-catalog__title {
    color: #222222;
}

.news-catalog__excerpt {
    color: #666666;
    font-size: 14px;
    line-height: 130%;
    margin: 0px 0px 25px 0px;
}

.news-catalog__meta {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.article-sidebar .news-catalog__meta {
    gap: 12px 20px;
}

.news-catalog__meta-item {
    color: #000000;
    font-weight: 300;
    border-radius: 8px;
    background: #ffffff;
    padding: 8px 12px;
}

.article-sidebar .news-catalog__meta-item {
    font-size: 14px;
}

.news-catalog__meta-item span {
    color: #3366CC;
    font-weight: 500;
}

/**/

/*  specialists-list */

.specialists-list__wrapper {
    position: relative;
    padding: 0px 50px;
}

.specialists-list__item {
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.08);
}

.specialists-list__image {
    /* width: 268px; */
    width: 100%;
    height: 300px;
    border-radius: 8px 8px 0px 0px;
    overflow: hidden;
}

.specialists-list__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.specialists-list__image picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialists-list__info {
    border-radius: 0px 0px 8px 8px;
    background: #ffffff;
    padding: 10px 30px 20px 30px;
}

.specialists-list__name {
    color: #0C3058;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0px 0px 10px 0px;
}

.specialists-list__position {
    color: #0C3058;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/**/

/* highlighted-text */

.highlighted-text {
    border: 1px solid #006EFE;
    border-radius: 24px;
    padding: 40px;
    margin: 40px 0px;
}

.highlighted-text p {
    color: #2C2837;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    margin: 0px;
}

/**/

/* blockquote */

.blockquote {
    position: relative;
    padding: 35px 0px;
    margin: 0px 0px 40px 0px;
}

.blockquote .icon:first-child {
    position: absolute;
    left: 0px;
    top: 10px;
    width: 40px;
    height: 35px;
    fill: #3366CC;
}

.blockquote p {
    width: 100%;
    max-width: 648px;
    margin: 0px auto;
}

.blockquote .icon:last-child {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 40px;
    height: 35px;
    fill: #3366CC;
}

/**/

/* consult-calend */

.consult-calend__widget {
    /* padding: 40px 0 0; */
}
.consult-calend__widget-title {
    color: #222222;
    font-size: 36px;
    font-weight: 700;
    line-height: 34px;
    margin: 0px 0px 10px 0px;
}
.consult-calend__widget-subtitle {
    color: #222222;
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 32px;
}
.consult-calend__widget-steps {
    /* padding: 0 40px; */
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
    padding: 40px 30px;
}
.consult-calend__widget-steps > div {
    max-width: 750px;
}
.consult-calend__widget-step {
    margin: 0 0 50px;
}
.consult-calend__widget-step.fourth {
    margin: 0px;
}
.consult-calend__widget__steps-title {
    color: #222222;
    font-size: 18px;
    font-weight: 600;
    margin: 0px 0px 24px 0px;
}
.consult-calend__meeting {
    display: inline-block;
    color: #cccccc !important;
    text-decoration: none;
    font-weight: 500;
    padding: 13px 50px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #cccccc;
    cursor: pointer;
}
.consult-calend__meeting:not(:last-child) {
    margin: 0 10px 0 0;
}
.consult-calend__meeting.active {
    color: #fff !important;
    background: #188DEA;
    border: 1px solid #188DEA;
    cursor: default;
}
.first-step__grid .buttons {
    margin: 0 0 14px;
}
#consult-calend .calendar__days {
    padding-bottom: 5px;
}
#consult-calend .address {
    color: #188DEA;
    font-weight: 500;
}
.consult-calend__meeting-text {
    display: none;
}
.consult-calend__meeting-text.active {
    display: block;
}
#consult-calend .calendar {
    display: none;
    border-radius: 5px;
    border: 1px solid #D1D1D1;
    background: #FFF;
}
#consult-calend .calendar.active {
    display: block;
}
#consult-calend .calendar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #015FC0;
    padding: 0 15px;
    background: #E5F0FF;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.consult-calend_arrow {
    display: block;
    width: 52px;
    height: 48px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjE0IiBmaWxsPSJub25lIiB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxwYXRoIGQ9Ik02LjcxNS45OTlMMS4wNTkgNi42NTZsNS42NTcgNS42NTciIHN0cm9rZT0iIzMzNjZjYyIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+");
    background-repeat: no-repeat;
    background-position: left;
    background-size: 8px;
    cursor: pointer;
}
.calendar.this-month .consult-calend_arrow {
    transform: rotate(180deg);
}
.calendar.next-month .month-year {
    order: 2;
}
#consult-calend .calendar__week-days {
    display: flex;
    justify-content: space-around;
    padding: 11px 0 8px;
    border-bottom: 1px solid #EDEDED;
}
#consult-calend .calendar__body {
    width: 100%;
}
.consult-calend__day_num {
    display: inline-block;
    position: relative;
    text-align: center;
    cursor: pointer;
    padding: 7px 0;
    border-radius: 50%;
    width: calc(100% / 7);
}
.consult-calend__day_num.ignore.disnone {
    display: none;
}
.consult-calend__day_num.ignore,
#consult-calend .calendar__week-days .day_name:nth-child(7n+6),
#consult-calend .calendar__week-days .day_name:nth-child(7n+7) {
    color: #D1D1D1;
    cursor: default;
}

.consult-calend__day_num.active,
.consult-calend__day_num:not(.ignore):hover {
    color: #fff;
}
.consult-calend__day_num.active:not(.ignore):before,
.consult-calend__day_num:not(.ignore):hover:before {
    content: '';
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 34px;
    height: 34px;
    background: #015FC0;
    border-radius: 50%;
}
.consult-calend__day_num span {
    position: inherit;
    z-index: 1;
}

#consult-calend .steps-grid,
#consult-calend .first-step__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.article-content #consult-calend .steps-grid,
.article-content #consult-calend .first-step__grid {
    gap: 35px;
}
#consult-calend .choose-time__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 10px;
}
#consult-calend .choose-time_option {
    color: #188DEA;
    text-align: center;
    padding: 11px 18px;
    border-radius: 5px;
    border: 1px solid #188DEA;
    cursor: pointer;
}
#consult-calend .choose-time_option:hover,
#consult-calend .choose-time_option.active {
    color: #fff;
    background-color: #188DEA;
    border: 1px solid #188DEA;
}

.consult-calend__widget .labels {
    display: flex;
    gap: 20px;
    margin: 0 0 20px;
}
.consult-calend__widget .labels .modal-label {
    flex: auto;
    margin: 0;
}
.consult-calend__widget .labels .modal-label input {
    border: 1px solid #D1D1D1;
    padding: 0;
    margin: 0;
}
.consult-calend__widget .modal-comments textarea {
    display: block;
    border: 1px solid #D1D1D1;
}
.consult-calend__widget .modal-buttons {
    gap: 20px;
}
.consult-calend__widget .modal-buttons button {
    flex: auto;
    width: 100%;
    max-width: 340px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 5px;
    background: linear-gradient(90deg, #69BB3E 9.88%, #89D724 86.39%);
}
.consult-calend__widget .modal-buttons button:hover {
    background: linear-gradient(90deg, #59b02b 9.88%, #59b02b 86.39%);
}
.consult-calend__widget .modal-buttons button::before {
    background-color: #59b02b !important;
}
.consult-calend__widget .policy__acceptance {
    color: #434343;
    padding: 0;
    font-size: 13px;
    width: auto;
    max-width: 300px;
    line-height: 1.2;
}
.consult-calend__widget .policy__acceptance a {
    color: #1A85F2;
}

.consult-calend__widget .wpcf7-form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.consult-calend__widget .wpcf7-form .form__group:has( .wpcf7-text ),
.consult-calend__widget .wpcf7-form .form__group:has( p ),
.consult-calend__widget .wpcf7-form .form__control {
    flex: 0 1 calc(50% - 8px);
}

.consult-calend__widget .wpcf7-form .form__group.textarea {
    width: 100%;
}

.consult-calend__widget .wpcf7-form .form__group.textarea .form__input {
    height: 100px;
}

.consult-calend__widget .wpcf7-form  .form__control {
    max-width: 340px;
    width: 100%;
}
.consult-calend__widget .wpcf7-form .btn {
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 5px;
    background: #FF5722;
    cursor: pointer;
    padding: 13px 20px;
}
.consult-calend__widget .wpcf7-form .btn:hover {
    background: #e44a1a;
}



/**/

/* forms */

.form__group input,
.form__group .form__input {
    width: 100%;
    color: var(--font-color);
    font-family: var(--primary-font);
    font-size: 16px;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #D1D1D1;
    background: #F5F5F5;
    padding: 16px 20px;
}

.form__group input:-webkit-autofill {
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #222222 !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form__group input.wpcf7-not-valid,
.modal .form__group input.wpcf7-not-valid {
    background: #ffd3d4;
}

.form__group input.wpcf7-not-valid:-webkit-autofill,
.modal .form__group input.wpcf7-not-valid:-webkit-autofill {
  background-color: #ffd3d4 !important;
  -webkit-box-shadow: 0 0 0 1000px #ffd3d4 inset !important;
  -webkit-text-fill-color: #222222 !important;
  transition: background-color 5000s ease-in-out 0s;
}

.modal .form__group input {
    /* background: #F4F4F8; */
} 

.modal .form__group input:-webkit-autofill {
  background-color: #F4F4F8 !important;
  -webkit-box-shadow: 0 0 0 1000px #F4F4F8 inset !important;
  -webkit-text-fill-color: #222222 !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form__group input::placeholder {
    color: #757575;
}

.wpcf7-form.submitting .form__control .btn {
    color: transparent;
}

.form__control .btn::before {
    display: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 40px;
    background-image: url(data:image/svg+xml;base64,PCEtLSBCeSBTYW0gSGVyYmVydCAoQHNoZXJiKSwgZm9yIGV2ZXJ5b25lLiBNb3JlIEAgaHR0cDovL2dvby5nbC83QUp6YkwgLS0+Cjxzdmcgd2lkdGg9IjEyMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDEyMCAzMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBmaWxsPSIjZmZmIj4KICAgIDxjaXJjbGUgY3g9IjE1IiBjeT0iMTUiIHI9IjE1Ij4KICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiBmcm9tPSIxNSIgdG89IjE1IgogICAgICAgICAgICAgICAgIGJlZ2luPSIwcyIgZHVyPSIwLjhzIgogICAgICAgICAgICAgICAgIHZhbHVlcz0iMTU7OTsxNSIgY2FsY01vZGU9ImxpbmVhciIKICAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4KICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJmaWxsLW9wYWNpdHkiIGZyb209IjEiIHRvPSIxIgogICAgICAgICAgICAgICAgIGJlZ2luPSIwcyIgZHVyPSIwLjhzIgogICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsuNTsxIiBjYWxjTW9kZT0ibGluZWFyIgogICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPgogICAgPC9jaXJjbGU+CiAgICA8Y2lyY2xlIGN4PSI2MCIgY3k9IjE1IiByPSI5IiBmaWxsLW9wYWNpdHk9IjAuMyI+CiAgICAgICAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iciIgZnJvbT0iOSIgdG89IjkiCiAgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjAuOHMiCiAgICAgICAgICAgICAgICAgdmFsdWVzPSI5OzE1OzkiIGNhbGNNb2RlPSJsaW5lYXIiCiAgICAgICAgICAgICAgICAgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIC8+CiAgICAgICAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iZmlsbC1vcGFjaXR5IiBmcm9tPSIwLjUiIHRvPSIwLjUiCiAgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjAuOHMiCiAgICAgICAgICAgICAgICAgdmFsdWVzPSIuNTsxOy41IiBjYWxjTW9kZT0ibGluZWFyIgogICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPgogICAgPC9jaXJjbGU+CiAgICA8Y2lyY2xlIGN4PSIxMDUiIGN5PSIxNSIgcj0iMTUiPgogICAgICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9InIiIGZyb209IjE1IiB0bz0iMTUiCiAgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjAuOHMiCiAgICAgICAgICAgICAgICAgdmFsdWVzPSIxNTs5OzE1IiBjYWxjTW9kZT0ibGluZWFyIgogICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPgogICAgICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwtb3BhY2l0eSIgZnJvbT0iMSIgdG89IjEiCiAgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjAuOHMiCiAgICAgICAgICAgICAgICAgdmFsdWVzPSIxOy41OzEiIGNhbGNNb2RlPSJsaW5lYXIiCiAgICAgICAgICAgICAgICAgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIC8+CiAgICA8L2NpcmNsZT4KPC9zdmc+Cg==);
}

.wpcf7-form.submitting .form__control .btn::before {
    display: block;
}

.form__group p {
    color: #434343;
    font-size: 13px;
    margin: 0px;
}

.form__group a {
    color: #1A85F2;
    font-size: inherit;
    white-space: nowrap;
}

.form__group a:hover {
    text-decoration: none;
}

.form__group .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.form__group .wpcf7-acceptance input {
    position: absolute;
    opacity: 0;
}

.form__group .wpcf7-acceptance .wpcf7-list-item-label {
    position: relative;
    display: block;
    color: #666666;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 140%;
    cursor: pointer;
    padding: 0px 0px 0px 24px;
}

.form__group .wpcf7-acceptance .wpcf7-list-item-label:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 16px;
    height: 16px;
    font-size: 0;
    box-sizing: border-box;
    border-radius: 4px;
    background: #ffffff;
}

.modal .form__group .wpcf7-acceptance .wpcf7-list-item-label:before {
    top: 0px;
}

.wpcf7-form.invalid .form__group .wpcf7-acceptance .wpcf7-list-item-label:before {
    background: #ffd3d4;
}

.modal .form__group .wpcf7-acceptance .wpcf7-list-item-label:before {
    /* background: #E0E9FF; */
}

.form__group .wpcf7-acceptance .wpcf7-list-item-label:after {
    content: '';
    display: none;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 13px;
    height: 6px;
    border-left: 1px solid #3366CC;
    border-bottom: 1px solid #3366CC;
    transform: translateY(-50%) rotate(-50deg);
}

.modal .form__group .wpcf7-acceptance .wpcf7-list-item-label:after {
    top: 3px;
}

.form__group .wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    display: block;
}

body .wpcf7 .wpcf7-form .wpcf7-response-output,
body .modal .wpcf7 .wpcf7-form .wpcf7-response-output {
    display: none;
}

body .masked__phone {
    border: none;
    margin: 0px;
}

body .masked__phone-selector {
    border-radius: 12px 0px 0px 12px;
    border-right: none;
}

body .masked__phone-selected {
    gap: 12px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBVcGxvYWRlZCB0bzogU1ZHIFJlcG8sIHd3dy5zdmdyZXBvLmNvbSwgR2VuZXJhdG9yOiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4NCjxzdmcgZmlsbD0iIzAwMDAwMCIgaGVpZ2h0PSI4MDBweCIgd2lkdGg9IjgwMHB4IiB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiANCgkgdmlld0JveD0iMCAwIDMzMCAzMzAiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggaWQ9IlhNTElEXzIyNV8iIGQ9Ik0zMjUuNjA3LDc5LjM5M2MtNS44NTctNS44NTctMTUuMzU1LTUuODU4LTIxLjIxMywwLjAwMWwtMTM5LjM5LDEzOS4zOTNMMjUuNjA3LDc5LjM5Mw0KCWMtNS44NTctNS44NTctMTUuMzU1LTUuODU4LTIxLjIxMywwLjAwMWMtNS44NTgsNS44NTgtNS44NTgsMTUuMzU1LDAsMjEuMjEzbDE1MC4wMDQsMTUwYzIuODEzLDIuODEzLDYuNjI4LDQuMzkzLDEwLjYwNiw0LjM5Mw0KCXM3Ljc5NC0xLjU4MSwxMC42MDYtNC4zOTRsMTQ5Ljk5Ni0xNTBDMzMxLjQ2NSw5NC43NDksMzMxLjQ2NSw4NS4yNTEsMzI1LjYwNyw3OS4zOTN6Ii8+DQo8L3N2Zz4=) 20px 50% / 10px no-repeat;
    padding: 0px 0px 0px 37px;
}

body .masked__phone:has(.masked__phone-input.wpcf7-not-valid) .masked__phone-selector {
  background: #ffd3d4;
}

body .modal .masked__phone-selector {
    background: #F4F4F8;
}   

body .masked__phone-option span {
    color: #3366CC;
}

body .masked__phone-option-flag {
    margin: 0px 0px 0px 5px;
}

body .masked__phone input {
    border-radius: 0 12px 12px 0 !important;
    padding: 16px 18px 16px 4px !important;
}

/**/

/* modals */

.modal {
    display: none;
    position: relative;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
    padding: 20px;
    margin: 0px !important;
}

.modal-form__form {
    width: 100%;
}

.modal-form__close {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    background: transparent;
    border-radius: 100%;
    cursor: pointer;
    z-index: 50;
    transition: 0.3s;
}

.modal-form__close .icon {
    width: 32px;
    height: 32px;
    stroke: #999999;
}


.success__modal {
    text-align: center;
    border-radius: 20px;
    background: #fff;
    padding: 60px;
}
.success__modal-title {
    display: block;
    font-family: var(--primary-font);
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}
.success__modal-text {
    color: var(--font-color);
    margin: 0;
}

.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
}
.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #0068F5;
}
.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
    content: "";
    height: 100px;
    position: absolute;
    /* background: #ffffff; */
    transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #0068F5;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid #0068F5;
    opacity: .8;
}
.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    /* background-color: #ffffff; */
}
@keyframes rotate-circle {
    0% {
      transform: rotate(-45deg);
    }
    5% {
      transform: rotate(-45deg);
    }
    12% {
      transform: rotate(-405deg);
    }
    100% {
      transform: rotate(-405deg);
    }
  }
  @keyframes icon-line-tip {
    0% {
      width: 0;
      left: 1px;
      top: 19px;
    }
    54% {
      width: 0;
      left: 1px;
      top: 19px;
    }
    70% {
      width: 50px;
      left: -8px;
      top: 37px;
    }
    84% {
      width: 17px;
      left: 21px;
      top: 48px;
    }
    100% {
      width: 25px;
      left: 14px;
      top: 45px;
    }
  }
  @keyframes icon-line-long {
    0% {
      width: 0;
      right: 46px;
      top: 54px;
    }
    65% {
      width: 0;
      right: 46px;
      top: 54px;
    }
    84% {
      width: 55px;
      right: 0px;
      top: 35px;
    }
    100% {
      width: 47px;
      right: 8px;
      top: 38px;
    }
  }
/**/

/* site-search */

#search-popap.modal {
    max-width: 600px;
    width: 100%;
}

.site-search {
    max-width: 600px;
    width: 100%;
}

.site-search__header h2 {
    margin: 0px 0px 30px 0px;
}

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

.site-search__field {
    flex: auto;
}

.site-search__submit {
    flex: 1;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 5px;
    background: #FF5722;
    cursor: pointer;
    padding: 16px 20px;
}

.site-search__submit:hover {
    background: #e44a1a;
}

/**/

/* search page */

.search-page__form {
    display: flex;
    gap: 6px;
    align-items: center;
}

.search-page__field {
    flex: 1;
    color: #0B0B0B;
    max-width: 586px;
    width: 100%;
    color: var(--font-color);
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 24px;
    border-radius: 8px;
    border: 1px solid #BBBBCB;
    background: #ffffff;
    padding: 12px 20px;
}

.search-page__field::placeholder {
    color: #0C305880;
}

.search-page__submit {
    font-size: 16px;
    line-height: 100%;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    padding: 17px 24px;
}

.search-page .search-page__list {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin: 60px 0px 0px 0px;
}

.search-page__item {
    display: flex;
    gap: 24px;
    flex-direction: column;
    border-radius: 20px;
    background: rgba(252, 241, 241, 0.33);
    box-shadow: 0px 4px 20px rgba(0, 110, 254, 0.1);
    padding: 20px 24px;
}

.search-page__item-date {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.search-page__item-title {
    line-height: 100%;
    margin: 0px;
}

.search-page__item-title a {
    color: #0A3D97;
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
}

.search-page__item-title a mark {
    color: #0A3D97;
    background: #ffe3a4;
}

.search-page__item-excerpt {
    color: #0B0B0B;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.search-page__item-excerpt p {
    margin: 0px;
}

.search-page__item-excerpt mark {
    color: #0B0B0B;
    background: #ffe3a4;
}

.search-page__item-more {
    color: #0A3D97;
    font-size: 16px;
}

/**/

/* comments */

.comments {
	/* padding: 30px 0 50px; */
	/* font-size: 16px; */
	/* color: #313131; */
	/* line-height: 25px; */
	/* margin: 48px 0px 0px 0px; */
}
.comments:has( > * ) {
	margin: 48px 0px 0px 0px;
}
.comments .cld-like-dislike-wrap {
    position: absolute;
    right: 0;
    top: 0;
}
.comments .cld-common-wrap {
    min-width: 0;
    position: relative;
}
.comments .cld-common-wrap a {
    display: block;
    position: absolute;
    z-index: 99;
    width: 100%;
    top: 0;
    left: 0;
    height: 25px;
}
.comments .cld-count-wrap {
    margin-left: 5px;
    font-size: 13px;
    color: #00a440;
    display: flex;
    font-weight: 500;
    align-items: center;
    /* padding: 2px 10px; */
    /* border-radius: 30px; */
}
.comments .cld-count-wrap:hover {
    cursor: pointer;
}
.comments .cld-dislike-count-wrap {
    color: #a40000;
}
/* .cld-like-count-wrap:hover {
    background: #eeffe8;
}
.cld-dislike-count-wrap:hover {
    background: #ffe8e8;
} */
.comments .title {
	display: block;
    font-size: 25px;
    margin: 0 0 20px;
    color: #111;
    line-height: 25px;
    font-weight: 600;
}
.comments form {
	max-width: 700px;
	/*padding: 35px;*/
	/*border-radius: 2px;*/
	/*background: #f3f3f3;*/
}
.comments .comment-list form {
	margin: 0 0 25px;
    padding: 0 0 35px;
    border-bottom: 1px solid #f1f1f1;
}
.comments form p {
	margin: 0;
}
.comments form .comment-meta {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.comments form .comment-meta > label {
	flex-basis: 48%;
	width: auto;
	margin: 0 0 5px;
	overflow: unset;
}
.comments form textarea {
	line-height: 25px;
}
.comments .comment-list {
	margin: 0 0 25px;
}
.comments .comment-list .comment {
	position: relative;
	margin: 0px 0px 32px 0px;
	padding: 0px 0px 32px 0px;
	border-bottom: 1px solid #cccccc;
}
.comments .comment-list .comment:last-child:not(:has(+ .comment:not([style*="display: none"]))) {
	border-bottom: none;
}
.comments .comment-list .comment a {
	color: #3366CC;
}
.comments .comment-list .comment.depth-1 .comment {
	border: none;
	clear: both;
	overflow: hidden;
}
.comments .comment-list .comment .children:last-child .comment {
	margin: 0px 0px 18px 0px;
	padding: 0;
}
.comments .comment-list .comment img {
	float: left;
	border-radius: 12px;
	margin: 0px 15px 0px 0px;
}
.comments .comment-list .comment p {
	margin: 0 0 10px;
}
.comments .comment-list .comment .wait {
	color: #9a272f;
}
.comments .comment-list .comment .top {
	display: flex;
	align-items: center;
	margin: 0px 0px 8px 0px;
	overflow: hidden;
}
.comments .comment-list .comment .bottom {
	overflow: hidden;
}
.comments .comment-list .children {
	padding: 18px 0px 0px 72px;
	/*padding: 15px 0 0;*/
	/*border-top: 1px solid #f1f1f1;*/
}
.comments .comment-list .children .comment {
	border: none;
}
.comments .comment-list .comment .name {
	color: #222222;
	font-size: 16px;
	font-weight: 600;	
	margin: 0px 8px 0px 0px;
}
.comments .comment-list .comment .date {
	color: #666666;
	font-size: 12px;
	line-height: 150%;
}
.comments .comment-list .comment .comment-reply-link {
	color: #3366CC;
	font-size: 16px;
}
.comments .comment-list .comment .comment-reply-link:hover {
	text-decoration: none;
	cursor: pointer;
}
.comments #cancel-comment-reply-link {
	display: inline-block;
	margin: 0 0 10px;
	color: #d33b3b;
}
.comment__text-without-rating .pcs__comments-rating-stars {
	display: none;
}
.comment-form .pcs__comments-rating {
	margin: 0 0 20px;
}
.comment__form-header {
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-form .modal-label {
	width: 100%;
	overflow: hidden;
}
.comment-form .rating:not(:checked) > label {
	text-shadow: none;
	font-size: 20px;
}
.comment-form .rating:not(:checked) > label:hover, .comment-form .rating:not(:checked) > label:hover ~ label {
	text-shadow: none;
    color: #3366CC !important;
}
.comment-form .rating {
	border: none;
	margin: 0;
	padding: 10px 0;
}
.comment-form fieldset.rating > legend {
	float: left;
}

.mo_openid_login_wid,
.mo-openid-app-icons {
	display: none !important;
}
.auth-button {
	display: none;
}
.auth-modal {
	width: 100%;
	max-width: 340px;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0px 4px 15px rgb(0 0 0 / 20%);
}
.auth-modal .modal-title {
	color: #000;
	margin: 0 0 30px;
}
.auth-modal__socials-item {
	position: relative;
	padding: 15px 20px;
	text-align: center;
	margin: 20px 0 0;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: 0.3s;
	border: 1px solid #cccccc;
	/* box-shadow: 2px 2px 3px 0px rgb(0 0 0 / 8%); */
}
.auth-modal__socials-item:hover {
	border: 1px solid #3366CC;
}
.auth-modal__socials-item svg {
	position: absolute;
	width: 24px;
	height: auto;
	top: 50%;
	margin: -12px 0 0;
	left: 20px;
}

.comments {
	/* padding-bottom: 0; */
}
.comments-system .cmstr-out {
	display: none;
}
.comment-form {
	/* position: relative; */
	/* margin: 0 0 50px; */
	/* max-width: 100% !important; */
}
.comment-form__block {
	position: relative;
}
.comment-form__block-rating {
	display: none;
}
.comment-form__block-rating-enable {
	display: block;
}
.comment-form__textarea {
	display: block;
	font: 16px/1.7 'Roboto', sans-serif;
	width: 100%;
	border-radius: 8px;
	background: #f3f3f3;
	padding: 25px 140px 25px 25px;
	min-height: 70px;
	box-sizing: border-box;
	outline: none;
	border: none;
}
.comment-form__textarea:focus {
	background-color: #fff;
	border-color: #bdd6fa;
	-webkit-box-shadow: 0 0 0 3px rgba(70,131,217,.12);
	box-shadow: 0 0 0 3px rgba(70,131,217,.12);
}
.comment-form__button {
	position: absolute;
	bottom: 0;
	right: 10px;
	border: none;
	color: #fff;
	font-size: 15px;
	padding: 0 15px;
	border-radius: 8px;
	line-height: 1;
	cursor: not-allowed;
	background: #dcdcdc;
	height: 40px;
	margin-top: -20px;
	top: 50%;
}
.comment-form__button-active {
	background: #1A84F2;
	cursor: pointer;
	transition: background .2s;
}
.comment-form__button-active:hover {
	background: #0065b1;
	transition: background .2s;
}
.comment-form__name {
	position: absolute;
    bottom: -30px;
    right: 15px;
    font-size: 13px;
    color: #0065b0;
}

.comment-list__show-more {
	display: flex;
	justify-content: center;
	/* padding: 0 0 20px; */
}
.comment-list__show-more-btn {
	/* font-size: 14px; */
    /* min-width: 150px; */
    /* text-align: center; */
    /* border-radius: 5px; */
    /* color: #fff; */
    /* font-weight: 500; */
    /* background: #3366CC; */
    /* transition: .2s; */
    /* display: inline-block; */
    /* padding: 5px; */
	/* transition: background .2s; */
}
.comment-list__show-more-btn:hover {
	/* background: #003399; */
	/* cursor: pointer; */
	/* transition: background .2s; */
}

/**/

/* comments */

.comments .title {
    color: #222222;
    font-size: 36px;
    font-weight: 600;
    line-height: 110%;
    margin: 0px 0px 20px 0px;
}

.comment-form:has( + .comment-list ) {
	margin: 0px 0px 48px 0px;
}

.comment-form__block {
    position: relative;
}

.comment-form__textarea {
    color: #666666;
    font-size: 16px;
    line-height: 150%;
    border-radius: 20px;
    border: 1px solid #cccccc;
    background: #F4F4F8;
    padding: 24px;
    margin: 0px 0px 20px 0px;
}

.comment-form__button {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    height: auto;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    cursor: not-allowed;
    border: none;
    border-radius: 12px;
    background: #cccccc;
    padding: 16px 32px;
    margin: 0px;
}

.comment-form__button-active {
    background: #36C;
    cursor: pointer;
}

.comment-form__name {
    position: absolute;
    top: -25px;
    bottom: auto;
    right: 0px;
    font-size: 13px;
    color: #36C;
}

.pcs__comments-rating-container > input + label:before {
    display: block;
    content: '';
    width: 32px;
    height: 32px;
    background: url('images/svg/star-rating-stroke.svg') no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    transition: .2s;
}

.pcs__comments-rating-container > input:checked ~ label:before {
    background: url('images/svg/star-rating.svg') no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

/**/

/* lead__form */

#lead-form {
   background: #E0E9FF; 
}

.lead__form {
    position: relative;
    background: #E0E9FF;
    z-index: 20;
    margin: 100px 0px 60px;
}

.modal .lead__form {
    margin: 0px;
}

.lead__form-container {
    padding: 0px;
}

.lead__form-container::after {
    display: none;
}

.lead__form-content {
    position: relative;
    border-radius: 20px;
    background: #E0E9FF;
    padding: 60px 0px;
}

.modal .lead__form-content {
    padding: 25px 0px;
}

.lead__form-title {
    color: #3366CC;
    font-size: 36px;
    font-weight: 700;
    line-height: 110%;
    margin: 0px 0px 24px 0px;
}

.lead__form-descr {
    color: #222222;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    margin: 0px 0px 32px 0px;
}

.lead__form-form {
    max-width: 810px;
    width: 100%;
}

.lead__form-form .wpcf7-form  {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.lead__form-form .wpcf7-form .form__group,
.lead__form-form .wpcf7-form .form__control {
    max-width: 255px;
    width: 100%;
}

.lead__form-form .form__group input, 
.lead__form-form .form__group .form__input {
    width: 100%;
    color: #222222;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    background: #ffffff;
    padding: 14px 20px;
}

.lead__form-form .wpcf7-form .form__group.acceptance {
    max-width: none;
    margin: -5px 0px;
}

.lead__form-form .wpcf7-form .form__control .btn {
    font-size: 16px;
    border-radius: 12px;
    background: #3366CC;
    cursor: pointer;
}

.lead__form-form .wpcf7-form .form__control .btn:hover {
    background:  #0068f5;
}

.lead__form-image {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
}

.modal .lead__form-image {
    display: none;
}

.lead__form-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.lead__form-image picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/**/

/* footer */

.footer__main {
    display: flex;
    gap: 105px;
    justify-content: space-between;
    border-bottom: 1px solid #cccccc;
    padding: 0px 0px 85px 0px;
}

.footer__column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer__menu-title {
    color: #3366CC;
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    border-bottom: 1px solid #cccccc;
    padding: 0px 0px 16px 0px;
    margin: 14px 0px 16px 0px;
}

.footer__menu {
    display: flex;
    gap: 8px;
    flex-direction: column;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer__menu li a {
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

.footer__menu li a:hover {
    text-decoration: underline;
}

.footer__logo {
    display: flex;
    border-bottom: 1px solid #cccccc;
    padding: 0px 0px 5px 0px;
    margin: 0px 0px 25px 0px;
}

.footer__logo .icon {
    width: 153px;
    height: 41px;
}

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

.footer__social-icon {
    display: flex;
}

.footer__social-icon .icon {
    width: 28px;
    height: 28px;
    fill: var(--primary-color);
    transition: 0.3s;
}

.footer__social-icon:hover .icon {
    fill: #0558c8;
}

.footer__links {
    display: flex;
    gap: 8px;
    flex-direction: column;
    margin: auto 0px 0px 0px;
}

.footer__link {
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 14px;
    transition: 0.3s;
}

.footer__link:hover {
    text-decoration: none;
}

.footer__contacts {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.footer__contact {
    margin: 0px;
}

.footer__contact b,
.footer__contact a {
    color: var(--font-color);
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
}

.footer__contact.footer__phone a {
    display: block;
}

.footer__contact a:hover {
    text-decoration: underline;
}

.footer__contact span {
    color: #666666;
    font-family: var(--secondary-font);
    font-size: 14px;
    line-height: 20px;
}

.footer__copy {
    padding: 20px 0px;
}

.footer__copyright {
    text-align: center;
    color: #666666;
    font-size: 14px;
}

/**/

/* responsive */

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .article-content-sidebar {
        gap: 60px;
    }

    .news-catalog__meta {
        gap: 12px 20px;
    }

    .lead__form-image {
        right: -20px;
        top: auto;
        max-width: 200px;
    }
}

@media (max-width: 1080px) {

    .header__cta {
        display: none;
    }

    .lead__form-container {
        max-width: none;
        padding: 0px;
    }
    
}

@media (max-width: 980px) {
    .footer__main {
        gap: 45px;
    }

    .lead__form-image {
        display: none;
    }

    .services-overview__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 880px) {

    .header__phone {
        margin: 0px 0px 0px auto;
    }

    .header__phone .icon {
        width: 40px;
        height: 40px;
    }

    .header__search .icon {
        width: 40px;
        height: 40px;
    }

    .header__menu-toggle {
        display: flex;
    }

    .header__menu {
        position: absolute;
        top: 100%;
        right: -15px;
        left: -15px;
        gap: 0px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 0px;
        background: #f4f4f8;
        transition: 0.3s;
        visibility: hidden;
        transform: translate(0px, 10px);
        opacity: 0;
        z-index: -1;
        padding: 32px 15px;
        margin: 0;
    }

    .header__menu.show {
        opacity: 1;
        visibility: visible;
        transform: translate(0px, 0px);
        z-index: 100;
    }

    .header__menu::before{
        content: '';
        position: absolute;
        top: 0px;
        right: 20px;
        left: 20px;
        height: 1px;
        background: #cccccc;
    }

    .header__menu .menu {
        gap: 25px;
        flex-direction: column;
        border-bottom: 1px solid #cccccc;
        padding: 0px 0px 20px 0px;
        margin: 0px 0px 20px 0px;
    }

    .header__menu .menu > li > a {
        font-size: 20px;
    }

    /* dropdown menu */
    .header__menu .menu  li  .sub-menu__wrapper,
    .header__menu .menu .sub-menu__wrapper ul li .sub-menu__wrapper {
        position: relative;
        top: auto;
        min-width: auto;
        max-width: none;
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        transform: translate(0) !important;
        border-radius: 30px;
        opacity: 1;
        visibility: visible;
    }
    .header__menu .menu  li  .sub-menu__wrapper {
        /* background: #f3f3f3; */
    }
    .header__menu .menu  li  .sub-menu__wrapper.open {
        grid-template-rows: 1fr;
        margin: 20px 0 10px 0;
    }
    .header__menu .menu li.menu-item-has-children .icon {
        /* top: -5px; */
        right: -15px;
        padding: 8px;
    }
    .header__menu .menu .sub-menu__wrapper ul li .sub-menu__wrapper.open {
        grid-template-rows: 1fr;
        background: #fff;
        margin: 0;
    }
    .header__menu .menu  li  .sub-menu__wrapper .sub-menu {
        gap: 0;
        min-height: 0;
        background: transparent;
        box-shadow: none;
        padding: 0 0;
    }
    .header__menu .menu  li  .sub-menu__wrapper.open > .sub-menu {
        gap: 20px;
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu li {
        /* padding: 0 10px; */
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu li a {
        display: block;
        color: var(--font-color);
        font-size: 16px;
        padding: 0px 20px;
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu li a .icon {
        right: 0;
        top: 0;
        padding: 15px;
    }

    .header__menu .menu > li:hover > a .icon {
        /* transform: rotate(0); */
    } 
    .header__menu .menu > li.active > a > .icon {
        stroke: var(--primary-color);
        transform: translateY(-50%) rotate(-180deg);
    } 
    .header__menu .menu .sub-menu__wrapper .sub-menu li.active a .icon {
        stroke: var(--primary-color);
        transform: translateY(-50%) rotate(-180deg);
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu .sub-menu {
        gap: 5px;
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu .sub-menu li {
        padding: 0 10px;
        border: none;
    }
    .header__menu .menu .sub-menu__wrapper .sub-menu .sub-menu li a {
        padding: 15px 20px;
    }

    /**/

    .header__info {
        display: block;
    }

    .hero__content {
        padding: 50px 40px 120px;
    }

    .hero_image {
        top: auto;
        max-width: 360px;
    }

    .article-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {

    .m-100 {
        margin: 60px 0px;
    }

    .header-block {
        margin: 0px 0px 38px 0px;
    }

    .header-block__title {
        font-size: 32px;
    }

    .hero_image {
        opacity: 0.5;
    }
    
    #consult-calend .steps-grid,
    #consult-calend .first-step__grid {
        display: block;
    }
    .consult-calend__widget .labels {
        flex-direction: column;
    }
    .consult-calend__widget .modal-buttons button {
        max-width: 100%;
        width: 100%;
        margin: 0 0 15px;
    }
    .consult-calend__widget-title {
        font-size: 25px;
        line-height: 1.1;
        margin: 0 0 10px;
    }
    .consult-calend__widget-subtitle {
        color: #111;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.3;
    }

    .consultation__block {
        gap: 20px;
        align-items: flex-start;
        flex-direction: column;
        padding: 24px 20px 24px 20px;
    }

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

    .consultation__block-title span {
        font-style: italic;
    }

    .consultation__block-title br {
        display: none;
    }

    .consultation__block-button {
        font-size: 16px;
        background: #3366CC;
    }

    .footer__main {
        gap: 24px;
        flex-wrap: wrap;
        padding: 0px 0px 40px 0px;
    }

    .footer__column:first-child {
        width: 100%;
        flex: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        border-bottom: 1px solid #cccccc;
        padding: 0px 0px 24px 0px;
    }

    .footer__menu-title {
        border-bottom: none;
        padding: 0px;
        margin: 0px 0px 16px 0px;
    }

    .footer__logo {
        display: flex;
        border-bottom: none;
        padding: 0px;
        margin: 0px;
    }

    .footer__links {
        display: none;
    }
}

@media (max-width: 680px) {

    .hero__title h1 br {
        display: none;
    }

    .specialists-list__wrapper {
        padding: 0px;
    }

    .specialists-list_button-prev,
    .specialists-list_button-next {
        display: none;
    }

    .specialists-list__pagination {
        display: flex;
    }

    .lead__form-content {
        padding: 32px 0px;
    }

    .lead__form-title {
        font-size: 22px;
        line-height: 120%;
        margin: 0px 0px 16px 0px;
    }

    .lead__form-descr {
        font-size: 16px;
        margin: 0px 0px 16px 0px;
    }
}

@media (max-width: 600px) {

    h2 {
        margin: 30px 0px;
    }

    p {
        font-size: 16px;
        line-height: 130%;
    }

    .page-heading__title {
        font-size: 30px;
    }

    .category .page-heading__title {
        font-size: 32px;
    }

    .post-info__item.post-date,
    .post-info__item.post-views {
        display: none;
    }

    .hero__content {
        border-radius: 24px;
        background: linear-gradient(180deg, #0C3058 23.2%, #0068F5 100%);
        padding: 40px 20px 0px;
    }

    .hero__title {
        text-align: left;
        margin: 0px 0px 20px 0px;
    }

    .hero__title h1 {
        font-size: 22px;
        line-height: 120%;
    }

    .hero__title h1 br {
        display: none;
    }

    .hero__sub-title {
        text-align: left;
        font-size: 18px;
        margin: 0px 0px 20px 0px;
    }

     .hero__sub-title br {
        display: none;
    }

    .hero__cta {
        margin: 0px auto 32px 0px;
    }

    .hero_image {
        position: relative;
        opacity: 1;
    }

    .news-list.grid {
        grid-template-columns: 1fr;
    }

    .consult-calend__widget-steps {
        background: transparent;
        box-shadow: none;
        padding: 0px;
    }

    .lead__form-form .wpcf7-form .form__control {
        order: 9;
    }

    .lead__form-form .wpcf7-form .form__control + .form__group.acceptance {
        margin: 8px 0px 0px 0px;
    }

    .lead__form-form .wpcf7-form .form__group.acceptance:has( + .wpcf7-response-output) {
        margin: 0px 0px 8px 0px;
    }

    .useful-materials__grid {
        grid-template-columns: 1fr;
    } 

    .footer__column:last-child {
        flex: auto;
        width: 100%;
        border-top: 1px solid #cccccc;
        padding: 24px 0px 0px 0px;
    }

    .footer__copyright {
        text-align: left;
    }
}

@media (max-width: 580px) {

    .specialists-list__item {
        width: auto !important;
    }

    .consult-calend__widget-title {
        font-size: 20px;
    }

    .consult-calend__widget .wpcf7-form .form__group:has( p ) {
        flex: 0 1 100%;
    }

    .lead__form-form .wpcf7-form .form__group {
        max-width: none;
    }

    .services-overview__item {
        flex-direction: column;
    }

    .service-card__image {
        max-width: none;
    }

    .service-card__button {
        width: 100%;
        text-align: center;
    }

    .blockquote {
        padding: 40px 0px;
    }

    .blockquote .icon:first-child {
        top: 0px;
        width: 35px;
        height: 30px;
    }   
}

@media (max-width: 414px) {

    .lead__form-form .wpcf7-form .form__control {
        max-width: none;
    }

    .lead__form-form .wpcf7-form .form__control .btn {
        width: 100%;
        text-align: center;
    }


}


/**/



