@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&amp;display=swap');

:root {
    --brand-color: #FFA048;
    --bg-color: #FFF2E1;
    --txt-color: #2E2E2E;
}

::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--brand-color);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FEFEFE;
    font-family: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input {
    all: unset;
    cursor: pointer;
}

button {
    all: unset;
    cursor: pointer;
}

button:focus {
    outline: revert;
}

ul, ul li {
	list-style: none;
}

h1, h2, h3, h4, p, ul, ul li {
    padding: 0;
    margin: 0;
}

a, a:link, a:visited {
    text-decoration: none;
}

a {
    color: var(--txt-color);
}

a:hover {
    text-decoration: none;
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
}

header {
    position: relative;
    padding: 20px 0;
}

/* Было: section:not(:first-child) */
main > section:not(:first-child) {
    padding: 80px 0 120px;
}

h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--txt-color);
}

[class^="btn"] {
    font-weight: 500;
    padding: 0 25px;
    border-radius: 50px;
}

[class*="callback"] {
    height: 40px;
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    transition: color .1s ease-out, background-color .1s ease-out;
}

[class*="callback"]:hover {
    color: #fff;
    background-color: var(--brand-color);
}

[class*="appointment"] {
    display: flex;
    height: 60px;
    width: 250px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: var(--brand-color);
    transition: background-color .1s ease-out;
    align-items: center;
    justify-content: center;
}

[class*="appointment"]:hover {
    background-color: #ffb26a;
}

[class*="trail"] {
    display: flex;
    height: 60px;
    width: 250px;
    margin-top: 35px;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #9084E8;
    transition: background-color .1s ease-out;
}

[class*="trail"]:hover {
    background-color: #978ce9;
}

.container {
    width: 100%;
    max-width: 1420px;
    padding: 0 20px;
    margin: 0 auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.va-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.bg_brand {
    background-color: var(--bg-color);
}

.header_wrap {
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.stop-scroll {
    overflow: hidden;
}

.relative_btn {
    position: relative;
}

.header_wrap-nav {
    width: 100%;
}

.header_nav {
    margin-left: auto;
    margin-right: 50px;
}

.nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
}

.nav_list li a {
    display: inline-block;
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--txt-color);
    transition: color .1s ease-out;
}

.nav_list li a:hover {
    color: var(--brand-color);
}

.logo_img {
    width: 210px;
    height: 40px;
}

.header_burger {
    position: relative;
    min-width: 32px;
    height: 24px;
}

.header_burger span,
.header_burger::before,
.header_burger::after {
    content: '';
    position: absolute;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: var(--brand-color);
    transition: all .1s ease-out;
}

.header_burger span {
    top: 10px;
}

.header_burger::before {
    top: 0;
}

.header_burger::after {
    bottom: 0;
    width: 20px;
}

.header_burger.active::before {
    top: 10px;
    transform: rotate(45deg);
}

.header_burger.active::after {
    width: 100%;
    bottom: 11px;
    transform: rotate(-45deg);
}

.header_burger.active span {
    transform: scale(0);
}

.header_burger {
    display: none;
}

.hero {
    position: relative;
    height: 680px;
}

.hero::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: 0;
    width: 980px;
    height: 570px;
    background: url(../img/elem-bg.png) no-repeat;
    background-size: cover;
    z-index: -1;
}

.elem {
    position: relative;
    overflow: hidden;
}

.elem::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 100px;
    width: 110px;
    height: 110px;
    background-color: #FFF2E1;
    border-radius: 50%;
}

.hero::before {
    content: '';
    position: absolute;
    right: -140px;
    bottom: 30px;
    width: 150px;
    height: 150px;
    background-color: var(--brand-color);
    border-radius: 50%;
}

.hero img {
    position: absolute;
    right: 0;
    bottom: 0;
	width: auto;
	max-height: 680px;
}

.hero_wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    height: 100%;
    padding: 150px 0 100px;
    justify-content: space-between;
    z-index: 99;
}

.hero_wrap-title h1 {
    margin-bottom: 20px;
    font-size: 58px;
    font-weight: 700;
    color: var(--txt-color);
}

.hero_wrap-title p {
    font-size: 20px;
    font-weight: 300;
    color: var(--txt-color);
}

.hero_wrap-action {
    width: 50%;
    margin-top: auto;
}

.adress_link {
    position: relative;
    display: flex;
    width: 60%;
    margin-bottom: 25px;
    padding-left: 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-color);
}

.adress_link:hover {
    color: #ffb26a;
}

.adress_link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 36px;
    background: url(../img/adress_point.svg) no-repeat;
    background-size: cover;
}

.swiper_akcii {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-akcii {
    position: relative;
    flex-shrink: 0;
}

.slider-akcii h2 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: color .1s ease-out;
}

.slider-akcii:hover h2 {
    color: var(--brand-color);
}

.slider-akcii img {
    width: 100%;
    height: 230px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

.services-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
    grid-auto-flow: dense;
}

.services-card:first-child {
    grid-row: 1 / 4;
}

.services-card:nth-child(2) {
    grid-row: 4 / 7;
}

.services-card:nth-child(3) {
    grid-row: 1 / 3;
}

.services-card:nth-child(4) {
    grid-row: 3 / 5;
}

.services-card:first-child::before,
.services-card:nth-child(2)::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -30%;
    right: -5%;
    transform: rotate(50deg);
    border-radius: 50px;
    background-color: #CEE1FE;
}

.services-card:first-child img,
.services-card:nth-child(2) img {
    width: auto;
    height: 80%;
    max-width: 330px;
    max-height: 340px;
}

.services-card:nth-child(2)::before {
    background-color: #F8FECE;
}

.services-card:nth-child(3)::before,
.services-card:nth-child(4)::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -35%;
    right: -5%;
    transform: rotate(50deg);
    border-radius: 50px;
    background-color: #F8FECE;
}

.services-card:nth-child(3) img,
.services-card:nth-child(4) img {
    width: auto;
    height: 80%;
    max-width: 200px;
    max-height: 220px;
}

.services-card:nth-child(4)::before {
    transform: rotate(35deg);
    background-color: #B1A8EF;
}

.services-consultation {
    padding: 30px 40px;
    border-radius: 25px;
    grid-row: 5 / 7;
    background-color: #FFA048;
    overflow: hidden;
}

.services-consultation h3 {
    width: 420px;
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 600;
    color: var(--bg-color);
}

.services-consultation p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    color: var(--bg-color);
    opacity: .8;
}

.services-card {
    position: relative;
    padding: 30px 40px;
    min-height: 200px;
    background-color: #FFF2E1;
    border-radius: 25px;
    overflow: hidden;
}

.services-card img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.services-card h3 {
    position: relative;
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: 600;
    color: var(--txt-color);
}

.services-card ul {
    position: relative;
    z-index: 99;
}

.services-card .flex .title-link {
    margin: 0 0 10px;
}

.services-card .link {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    padding-left: 10px;
    font-size: 16px;
    color: var(--txt-color);
    transition: color .1s ease-out;
}

.link::after {
    content: '-';
    position: absolute;
    left: 0;
}

.link:hover {
    color: var(--brand-color);
}

.title-link {
    display: inline-block;
    margin: 20px 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--txt-color);
    transition: color .1s ease-out;
}

.title-link:hover {
    color: var(--brand-color);
}

.services-consultation form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.services-consultation .client_input {
    width: 235px;
    height: 60px;
    padding: 0 20px;
    color: var(--brand-color);
    caret-color: var(--brand-color);
    border-radius: 50px;
    background-color: var(--bg-color);
    border: 1px solid var(--bg-color);
}

.services-consultation .btn-input {
    display: flex;
    height: 60px;
    width: 250px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #9084E8;
    align-items: center;
    justify-content: center;
    transition: background-color .1s ease-out;
}

.services-consultation .btn-input:hover {
    background-color: #978ce9;
}

.doctor_swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-doctor {
    flex-shrink: 0;
    position: relative;
    height: 500px;
    background-color: #FFF2E1;
    border-radius: 25px;
    overflow: hidden;
}

.slide-doctor img {
    position: absolute;
    height: 80%;
    width: 100%;
    bottom: 0;
    margin: 0 auto;
    object-fit: contain;
    object-position: bottom;
}

.slide-doctor::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -15%;
    right: 0;
    transform: rotate(45deg);
    background-color: #9AC0FF;
    border-radius: 50px;
}

.doctor-tag {
    padding: 30px 25px 0;
}

.doctor-name {
    width: 250px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    transition: color .1s ease-out;
}

.doctor-post {
    font-size: 16px;
    color: var(--txt-color);
    opacity: .5;
}

.slide-doctor:hover .doctor-name {
    color: var(--brand-color);
}

.about-row {
    display: flex;
}

.about-clinic {
    display: flex;
    flex-wrap: wrap;
    width: 55%;
    padding: 50px 40px;
    background-color: #FFF2E1;
    border-radius: 25px;
    gap: 20px;
}

.about-block-descrict {
    width: 48%;
}

.about-img {
    display: flex;
    width: 45%;
    max-height: 400px;
    margin-left: 20px;
    border-radius: 25px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.doctor-title h2 {
    margin-bottom: 50px;
}

.about-block-descrict h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--txt-color);
}

.about-block-descrict p {
    font-size: 16px;
    font-weight: 400;
    color: var(--txt-color);
}

.row-conv {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.row-conv img {
    margin-right: 10px;
}

.consultation-block {
    position: relative;
    width: 100%;
    background-color: var(--brand-color);
    border-radius: 50px;
    overflow: hidden;
}

.consultation-block img {
    position: absolute;
    width: auto;
    height: 85%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.consultation-description {
    position: relative;
    width: 65%;
    padding: 80px;
    z-index: 99;
}

.consultation-description h2 {
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 400;
    color: #fff;
}

.consultation-description h3 {
    margin-bottom: 65px;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
}

.consultation-description h4 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
}

.consultation-description p {
    margin-bottom: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

.consultation-description form {
    display: flex;
    margin-top: 60px;
    gap: 20px;
}

.consultation-description .client_input {
    width: 330px;
    height: 60px;
    padding: 0 20px;
    color: var(--brand-color);
    caret-color: var(--brand-color);
    border-radius: 50px;
    background-color: var(--bg-color);
    border: 1px solid var(--bg-color);
}

.consultation-description .btn-input {
    display: flex;
    height: 60px;
    width: 300px;
    font-size: 16px;
    font-weight: 600;
    color: var(--txt-color);
    background-color: #BCFD03;
    align-items: center;
    justify-content: center;
    transition: background-color .1s ease-out;
}

.consultation-description .btn-input:hover {
    background-color: #d2ff57;
}

.contacts {
    position: relative;
}

.contacts_yamaps {
    border-radius: 35px;
    overflow: hidden;
}

.contact_wrap {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 550px;
    padding: 50px 40px;
    margin: 70px 0 0 70px;
    background-color: var(--brand-color);
    border-radius: 20px;
}

.contact_wrap h2 {
    width: 360px;
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 400;
    color: #fff;
}

.contact_wrap p {
    margin-bottom: 40px;
    font-size: 18px;
    color: #fff;
}

.tel_contact,
.mail_contact,
.adress_dent {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.tel_contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(../img/phone.svg);
    background-size: cover;
}

.mail_contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 16px;
    background-image: url(../img/mail.svg);
    background-size: cover;
}

.adress_dent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 20px;
    background-image: url(../img/adress_point_line.svg);
    background-size: cover;
}

.tel_contact a {
    color: #fff;
}

.mail_contact a {
    color: #fff;
}

.mail_contact a:hover,
.tel_contact a:hover {
    opacity: .8;
}

footer {
    padding: 30px 0;
    box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.05);
}

.footer_wrap {
    justify-content: space-between;
}

.footer_wrap p {
    color: var(--txt-color);
    opacity: .5;
}

.footer_wrap a {
    text-decoration: revert;
    color: var(--txt-color);
    opacity: .5;
}

.footer_wrap a:hover {
    color: var(--brand-color);
    opacity: 1;
}

.akcii_wrap {
    margin-bottom: 25px;
    align-items: flex-end;
}

.akcii_wrap-title h2 {
    width: 350px;
}

.swiper_pagination {
    position: absolute;
    right: 0;
    top: 45px;
    gap: 5px;
}

.slider_btn {
    position: relative;
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid var(--brand-color);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    transition: background-color .1s ease-out;
}

.slider_btn-disabled {
    opacity: .3;
}

.slider_btn:hover {
    background-color: var(--brand-color);
}

.slider_btn:hover svg path {
    stroke: var(--bg-color);
}

.services_wrap {
    margin-bottom: 30px;
    align-items: center;
}

.services_wrap h2 {
    max-width: 250px;
}

.services_wrap p {
    width: 500px;
    margin: 0 auto;
    font-size: 15px;
    opacity: .8;
}

.doctor_wrap {
    margin-bottom: 30px;
}

.doctor_wrap h2 {
    width: 250px;
}

.about_wrap {
    margin-bottom: 30px;
}

.about_wrap p {
    width: 500px;
    margin: 0 auto;
    font-size: 15px;
    opacity: .8;
}

.info_doctor-row {
    display: flex;
    flex-wrap: wrap;
}

.info_doctor {
    width: 50%;
    padding-right: 50px;
}

.info_doctor h2 {
    margin-bottom: 30px;
}

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

.info_doctor-swiper {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.info_doctor_paginat {
    margin-bottom: 25px;
    justify-content: flex-end;
    gap: 5px;
}

.info_doctor-slide {
    flex-shrink: 0;
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.info_doctor-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.small-info {
    margin-top: -250px;
}

.contact_info {
    position: relative;
    max-width: 550px;
    padding: 50px 40px;
    background-color: var(--brand-color);
    border-radius: 20px;
}

.contact_info h2 {
    width: 360px;
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 400;
    color: #fff;
}

.contact_info p {
    margin-bottom: 40px;
    font-size: 18px;
    color: #fff;
}

.services {
    display: flex;
    flex-wrap: wrap;
    padding-top: 80px;
}

.services_block {
    width: 70%;
    padding-right: 50px;
}

.header_services {
    display: flex;
    position: relative;
    width: 100%;
    max-height: 500px;
    min-height: 300px;
    padding: 50px;
    flex-wrap: wrap;
    align-content: space-between;
    margin-bottom: 60px;
    background-color: #FFF2E1;
    border-radius: 25px;
}

.header_services h1 {
    width: 60%;
    font-size: 48px;
    color: var(--txt-color);
}

.promo_block {
    width: 100%;
    margin-top: 155px;
}

.promo_block p {
    width: 60%;
    margin-top: 20px;
    margin-bottom: 70px;
    font-size: 28px;
    font-weight: 500;
    color: var(--brand-color);
}

.promo_block span {
    font-size: 15px;
    color: var(--txt-color);
    opacity: .5;
}

.form_services {
    width: 30%;
    height: 500px;
    padding: 50px;
    background-color: var(--brand-color);
    border-radius: 25px;
}

.form_services form {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: space-between;
}

.form_services form .client_input {
    display: inline-flex;
    width: 100%;
    height: 60px;
    padding: 0 25px;
    background-color: var(--bg-color);
    border-radius: 50px;
    align-items: center;
}

.form_services form .btn-input {
    width: 100%;
    height: 60px;
    padding: 0 25px;
    background-color: #9084E8;
    border-radius: 50px;
    align-items: center;
    text-align: center;
    color: var(--bg-color);
    transition: background-color .1s ease-out;
}

.form_services form .btn-input:hover {
    background-color: #978ce9;
}

.about_services p {
    font-size: 16px;
    color: var(--txt-color);
    margin-bottom: 10px;
}

.about_services img {
    width: 100%;
    height: 300px;
    margin: 25px 0;
    border-radius: 25px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.price_services-list {
    margin: 80px 0;
}

.price_services {
    display: flex;
    width: 100%;
    min-height: 60px;
    padding: 10px 0;
    flex-wrap: wrap;
    border-top: 1px solid #D9D9D9;
    align-items: center;
    justify-content: space-between;
}

.price_services:last-child {
    border-bottom: 1px solid #D9D9D9;
}

.price_services-header {
    width: 75%;
}

.price_services-header h3 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--txt-color);
}

.price_services-header p {
    width: 70%;
    font-size: 14px;
    color: var(--txt-color);
    opacity: .5;
}

.price_services-price {
    margin-left: 50px;
}

.price_services-price span {
    font-size: 16px;
    font-weight: 600;
    color: var(--txt-color);
}

.list_doctor-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.doctor_container h2 {
    margin-bottom: 25px;
    font-size: 24px;
    color: var(--txt-color);
}

.filter_btn {
    padding: 10px 25px;
    color: var(--txt-color);
    background-color: #FFF2E1;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #FFF2E1;
    transition: all .1s ease-out;
}

.filter_btn:hover {
    color: var(--brand-color);
    background-color: initial;
    border: 1px solid var(--brand-color);
}

.filter_btn.active {
    color: #fff;
    background-color: var(--brand-color);
}

.doctor_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 0;
}

.doctor_card {
    position: relative;
    width: 23.91%;
    height: 480px;
    background-color: #FFF2E1;
    border-radius: 25px;
    overflow: hidden;
}

.doctor_card::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -15%;
    right: 0;
    transform: rotate(45deg);
    background-color: #9AC0FF;
    border-radius: 50px;
}

.doctor_card img {
    position: absolute;
    height: 80%;
    width: 100%;
    bottom: 0;
    margin: 0 auto;
    object-fit: contain;
    object-position: bottom;
}

.doctor_card:hover .doctor-name {
    color: var(--brand-color);
}

.header_title {
    margin-top: 50px;
    margin-bottom: 80px;
    color: var(--txt-color);
}

.discount_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.discount_item img {
    max-width: 100%;
    width: 100%;
    height: 220px;
    margin-bottom: 10px;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.discount_item {
    display: block;
    width: 23.9%;
    height: 100%;
    margin-bottom: 25px;
}

.discount_item h2 {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--txt-color);
    -webkit-transition: color .1s ease-out;
    -moz-transition: color .1s ease-out;
    -ms-transition: color .1s ease-out;
    -o-transition: color .1s ease-out;
    transition: color .1s ease-out;
}

.discount_item:hover h2 {
    color: var(--brand-color);
}

.discount_text {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.discount_text img {
    max-width: 445px;
    width: 100%;
    height: 300px;
    border-radius: 25px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.discount_text-description {
    width: 67.7%;
    padding-left: 30px;
}

.discount_text-description p {
    display: block;
    margin-bottom: 20px;
}

.discount_text-description h2 {
    margin-bottom: 10px;
}

.discount_text-description ul {
    padding-left: 40px;
    margin-bottom: 15px;
}

.discount_text-description ul li {
    margin-bottom: 10px;
    list-style: disc;
    color: #555;
}

.discount_text-description ul li::marker {
    color: var(--brand-color);
    font-weight: bolder !important;
}

.nav_list_uslugi_smile {
	display: flex;
	flex-wrap: wrap;
}

.nav_list_uslugi_smile .menu-item-object-custom {
	width: 100%;
}

.nav_list_uslugi_smile .menu-item-has-children {
	width: 35%;
	margin-bottom: 10px;
    padding-right: 15px;
}

.nav_list_uslugi_smile .sub-menu .menu-item-object-custom {
	width: 100%;
	margin-bottom: 5px;
}

.nav_list_uslugi_smile li a {
	display: inline-block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--txt-color);
    transition: color .1s ease-out;
}

.nav_list_uslugi_smile li a:hover,
.nav_list_uslugi_smile .sub-menu a:hover,
.nav_list_uslugi_consultation .menu-item-object-custom:nth-child(1) a:hover,
.nav_list_uslugi_consultation .menu-item-object-custom:nth-child(2) a:hover,
.nav_list_uslugi_consultation li a:hover,
.nav_list_uslugi_healing li a:hover,
.nav_list_uslugi_prosthetic li a:hover {
	color: var(--brand-color);
}

.nav_list_uslugi_smile .sub-menu li a {
    margin-bottom: 0;
}

.nav_list_uslugi_consultation .menu-item-object-custom:nth-child(1) a,
.nav_list_uslugi_consultation .menu-item-object-custom:nth-child(2) a,
.nav_list_uslugi_healing li a,
.nav_list_uslugi_prosthetic li a,
.nav_list_uslugi_smile .sub-menu li a {
	position: relative;
    display: inline-block;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--txt-color);
    transition: color .1s ease-out;
}

.nav_list_uslugi_consultation .menu-item-object-custom:nth-child(1) a::after,
.nav_list_uslugi_consultation .menu-item-object-custom:nth-child(2) a::after,
.nav_list_uslugi_healing li a::after,
.nav_list_uslugi_smile .sub-menu li a::after,
.nav_list_uslugi_prosthetic li a::after {
    content: '-';
    position: absolute;
    left: 0;
}

.nav_list_uslugi_consultation .menu-item-has-children a {
	display: inline-block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--txt-color);
    transition: color .1s ease-out;
}

.nav_list_uslugi_consultation .sub-menu li a {
	position: relative;
    display: inline-block;
    margin-bottom: 0;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--txt-color);
    transition: color .1s ease-out;
}

.nav_list_uslugi_consultation .sub-menu li a::after {
    content: '-';
    position: absolute;
    left: 0;
}

.nav_list_uslugi_consultation .menu-item-has-children {
	margin-top: 10px;
}

.nav_list_uslugi_consultation .menu-item-object-custom:nth-child(1) a,
.nav_list_uslugi_consultation .menu-item-object-custom:nth-child(2) a,
.nav_list_uslugi_healing li a,
.nav_list_uslugi_prosthetic li a {
	margin-bottom: 5px;
}

.form__wnd,
.callBack__wnd {
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    z-index: 500;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    padding: 20px;
    pointer-events: none;
}

.form__wnd.active,
.callBack__wnd.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.form__wnd .wnd__cancel,
.callBack__wnd .wnd__cancel {
    position: absolute;
    display: flex;
    width: 100%;
    top: -30px;
    left: 0;
    transform: translateY(-50%);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.form__applications {
    width: 100%;
    max-width: 450px;
    padding: 35px;
    position: relative;
    background: #383550;
    border-radius: 10px;
    margin: auto;
    border: 25px;
    background-color: var(--brand-color);
    z-index: 999;
}

.form__applications form {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: space-between;
}

.form__applications form .client_input {
    display: inline-flex;
    width: 100%;
    height: 60px;
    padding: 0 25px;
    background-color: var(--bg-color);
    border-radius: 50px;
    align-items: center;
}

.form__applications form .btn-input {
    width: 100%;
    height: 60px;
    padding: 0 25px;
    background-color: #9084E8;
    border-radius: 50px;
    align-items: center;
    text-align: center;
    color: var(--bg-color);
    transition: background-color .1s ease-out;
}

.form__applications form .btn-input:hover {
    background-color: #978ce9;
}

.form__applications h3 {
    width: 100%;
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
    color: var(--bg-color);
}

@media (max-width: 1024px) {
    .header_burger {
        position: absolute;
        display: block;
        right: 20px;
    }

    .logo_img {
        width: 170px;
        height: auto;
        margin: 0 auto;
    }

    .header_wrap-nav {
        position: absolute;
        display: none;
        top: 72px;
        left: 0;
        padding-bottom: 25px;
        border-top: 1px solid var(--brand-color);
        border-bottom: 1px solid var(--brand-color);
        background-color: #fff;
    }

    .header_wrap-nav.active {
        display: block;
        z-index: 999;
    }

    .header_nav {
        margin-right: auto;
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .nav_list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }

    [class*="callback"] {
        display: block;
        margin: 0 auto;
    }

    .services {
        justify-content: center;
    }

    .services_block {
        width: 100%;
        padding-right: 0;
    }

    .form_services {
        width: 50%;
        margin-bottom: 50px;
    }

    .doctor_list {
        justify-content: center;
    }

    .doctor_card {
        width: 31.97%;
    }

    .discount_item {
        width: 31.97%;
    }

    .discount_text img {
        max-width: 380px;
        height: 250px;
    }

    .discount_text-description {
        width: 61.3%;
    }

	.nav_list_uslugi_smile .menu-item-has-children {
        width: 50%;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 28px;
    }

    .container {
        padding: 0 15px;
    }

    .hero_wrap {
        width: 100%;
        padding: 50px 0 25px;
    }

    .hero {
        height: 570px;
    }

    .hero::after {
        right: -150px;
        width: 500px;
        height: 300px;
    }

    .hero img {
        width: 100%;
        height: auto;
        right: -120px;
    }

    .hero_wrap-title h1 {
        font-size: 42px;
    }

    .hero_wrap-title p {
        font-size: 18px;
    }

    .hero_wrap-action {
        width: 100%;
        margin-top: 0;
    }

    .adress_link {
        width: 50%;
    }

    [class*="appointment"] {
        width: 200px;
        height: 60px;
        font-size: 16px;
    }

    .akcii_wrap-title h2 {
        width: 250px;
    }

    .swiper_pagination {
        top: 15px;
    }

    /* Было: section:not(:first-child) */
    main > section:not(:first-child) {
        padding: 40px 0 60px;
    }

    .services_wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services_wrap h2 {
        margin-bottom: 10px;
    }

    .services_wrap p {
        text-align: center;
    }

    .services-block {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }

    .services-card,
    .services-consultation {
        padding: 20px 20px;
    }

    .services-card .flex ul {
        margin-right: 10px;
    }

    .services-card:first-child {
        grid-row: 1;
    }

    .services-card:nth-child(2) {
        grid-row: 2;
    }

    .services-card:nth-child(3) {
        grid-row: 3;
    }

    .services-card:nth-child(4) {
        grid-row: 4;
    }

    .services-consultation {
        grid-row: 5;
    }

    .services-consultation h3 {
        width: 100%;
        font-size: 22px;
        text-align: center;
    }

    .services-consultation p {
        width: 100%;
        margin-bottom: 40px;
        font-size: 16px;
        text-align: center;
        opacity: 1;
    }

    .services-consultation form {
        gap: 10px;
    }

    .services-consultation .client_input {
        width: 100%;
    }

    .services-consultation .btn-input {
        width: 100%;
    }

    .services-card:first-child img,
    .services-card:nth-child(2) img {
        height: 60%;
    }

    .services-card:nth-child(3) img,
    .services-card:nth-child(4) img {
        height: 60%;
    }

    .services-card:first-child::before,
    .services-card:nth-child(2)::before,
    .services-card:first-child::before,
    .services-card:nth-child(2)::before {
        width: 230px;
        height: 230px;
        right: -10%;
    }

    .services-card:nth-child(3)::before,
    .services-card:nth-child(4)::before {
        width: 230px;
        height: 230px;
        right: -10%;
    }

    .about_wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about_wrap h2 {
        margin-bottom: 10px;
    }

    .about_wrap p {
        text-align: center;
    }

    .about-row {
        flex-wrap: wrap;
    }

    .about-clinic {
        width: 100%;
        padding: 20px 20px;
    }

    .about-block-descrict {
        width: 100%;
    }

    .about-block-descrict h3 {
        text-align: center;
    }

    .about-block-descrict p {
        text-align: center;
    }

    .row-conv {
        justify-content: center;
    }

    .about-img {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }

    .consultation-block {
        border-radius: 35px;
    }

    .consultation-description {
        width: 100%;
        padding: 20px;
    }

    .consultation-description h2 {
        font-size: 28px;
        text-align: center;
    }

    .consultation-description h3 {
        margin-bottom: 35px;
        font-size: 23px;
        text-align: center;
    }

    .consultation-description h4 {
        font-size: 20px;
        text-align: center;
    }

    .consultation-description p {
        font-size: 16px;
        text-align: center;
    }

    .consultation-description form {
        flex-wrap: wrap;
        gap: 10px;
    }

    .consultation-description .client_input {
        width: 100%;
    }

    .consultation-description .btn-input {
        width: 100%;
    }

    .consultation-block img {
        height: 50%;
    }

    .contact_wrap {
        width: 100%;
        margin: 0;
        padding: 25px;
    }

    .contact_wrap h2 {
        width: 100%;
        font-size: 26px;
        text-align: center;
    }

    .contact_wrap p {
        text-align: center;
    }

    .footer_wrap {
        flex-wrap: wrap;
    }

    .footer_wrap p {
        margin-bottom: 15px;
    }

    .info_doctor {
        width: 100%;
    }

    .info_doctor-swiper {
        width: 100%;
        margin-top: 35px;
    }

    .services {
        padding-top: 30px;
        flex-direction: column;
    }

    .services_block {
        width: 100%;
        padding-right: 0;
    }

    .promo_block p {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 30px;
        font-size: 28px;
    }

    .price_services-list {
        margin: 40px 0;
    }

    .price_services-header {
        width: 75%;
    }

    .price_services-header p {
        width: 100%;
    }

    .price_services-price {
        margin-left: 20px;
    }

    .form_services {
        width: 100%;
        height: 420px;
        padding: 25px;
        margin-bottom: 25px;
    }

    .doctor_list {
        justify-content: center;
    }

    .doctor_card {
        width: 48.64%;
    }

    .list_doctor-filter {
        gap: 10px;
    }

    .discount_item {
        width: 48.64%;
    }

    .discount_text img {
        max-width: 360px;
    }

    .discount_text-description {
        width: 51.2%;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .doctor_list {
        justify-content: center;
    }

    .doctor_card {
        width: 80%;
    }

    .discount_item {
        width: 100%;
    }

    .header_title {
        margin-bottom: 35px;
    }

    .discount_text img {
        max-width: 100%;
    }

    .discount_text-description {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }

    .header_services {
        height: 420px;
        padding: 30px;
        margin-bottom: 30px;
    }

    .header_services h1 {
        width: 100%;
        font-size: 38px;
    }

    .promo_block p {
        margin-bottom: 20px;
        font-size: 24px;
    }

	.nav_list_uslugi_smile .menu-item-has-children {
    	width: 100%;
		padding-right: 0;
	}

	.promo_block {
    	margin-top: 0;
	}
}

/* =========================================================
   FIX: страница всех акций /акции/
   Убираем огромные поля от глобального правила
   ========================================================= */

.discounts-page-new {
    padding: 8px 0 14px !important;
}

.discounts-page-new section,
.discounts-page-new section:not(:first-child) {
    padding: 0 !important;
}

.discounts-page-new .discounts-hero,
.discounts-page-new .discounts-grid-section,
.discounts-page-new .consultation-section {
    margin-bottom: 10px !important;
}

.discounts-page-new .discounts-seo-section,
.discounts-page-new .contacts-section {
    margin-bottom: 0 !important;
}

.discounts-page-new .discounts-hero__box {
    padding: 20px 28px !important;
    border-radius: 24px !important;
}

.discounts-page-new .discounts-hero__badge {
    margin-bottom: 10px !important;
}

.discounts-page-new .discounts-hero__title {
    margin-bottom: 8px !important;
}

.discounts-page-new .discounts-grid {
    gap: 10px !important;
}

.discounts-page-new .discount-card__body {
    gap: 9px !important;
    padding: 15px 16px 17px !important;
}

.discounts-page-new .discounts-seo-section {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.discounts-page-new .discounts-seo-text {
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.discounts-page-new .discounts-seo-text h2,
.discounts-page-new .discounts-seo-text p {
    margin: 0 !important;
}

.discounts-page-new .consultation-description {
    padding: 24px 28px !important;
}

.discounts-page-new .consultation-description h2 {
    margin-bottom: 8px !important;
}

.discounts-page-new .consultation-description h3 {
    margin-bottom: 12px !important;
}

.discounts-page-new .consultation-description h4 {
    margin-bottom: 7px !important;
}

.discounts-page-new .consultation-description p {
    margin-bottom: 6px !important;
}

.discounts-page-new .consultation_form {
    margin-top: 12px !important;
}

.discounts-page-new .contacts-full {
    min-height: 520px !important;
}

.discounts-page-new .contacts-full .contacts_yamaps {
    height: 520px !important;
}

.discounts-page-new .contact_wrap {
    top: 24px !important;
    left: 24px !important;
    padding: 24px 24px !important;
    margin: 0 !important;
}

.discounts-page-new .contact_wrap h2 {
    margin-bottom: 12px !important;
}

.discounts-page-new .contact_wrap .work-time {
    margin-bottom: 14px !important;
}

.discounts-page-new .tel_contact,
.discounts-page-new .mail_contact,
.discounts-page-new .adress_dent {
    margin-bottom: 10px !important;
}

.discounts-page-new .btn-trail {
    margin-top: 6px !important;
}

@media (max-width: 991px) {
    .discounts-page-new {
        padding: 8px 0 12px !important;
    }

    .discounts-page-new section,
    .discounts-page-new section:not(:first-child) {
        padding: 0 !important;
    }

    .discounts-page-new .discounts-hero,
    .discounts-page-new .discounts-grid-section,
    .discounts-page-new .consultation-section {
        margin-bottom: 9px !important;
    }

    .discounts-page-new .contacts-full .contacts_yamaps {
        height: 430px !important;
    }

    .discounts-page-new .contact_wrap {
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        border-radius: 0 0 28px 28px !important;
        box-shadow: none !important;
    }
}

@media (max-width: 640px) {
    .discounts-page-new {
        padding: 7px 0 10px !important;
    }

    .discounts-page-new section,
    .discounts-page-new section:not(:first-child) {
        padding: 0 !important;
    }

    .discounts-page-new .discounts-hero,
    .discounts-page-new .discounts-grid-section,
    .discounts-page-new .consultation-section {
        margin-bottom: 8px !important;
    }

    .discounts-page-new .discounts-hero__box {
        padding: 18px 18px !important;
        border-radius: 22px !important;
    }

    .discounts-page-new .discounts-grid {
        gap: 8px !important;
    }

    .discounts-page-new .consultation-description {
        padding: 20px 18px !important;
    }

    .discounts-page-new .contacts-full .contacts_yamaps {
        height: 340px !important;
    }

    .discounts-page-new .contact_wrap {
        padding: 22px 18px !important;
    }
}

/* =========================================================
   FIX: страница контактов /контакты/
   Убираем большие поля между вложенными section
   ========================================================= */

.dk-contact-page > section,
.dk-contact-page > section:not(:first-child) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.dk-contact-page .dk-contact-head {
    margin-bottom: 14px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.dk-contact-page .dk-contact-content {
    margin-bottom: 0 !important;
}

.dk-contact-page .dk-contact-seo {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    display: grid !important;
    gap: 12px !important;
}

.dk-contact-page .dk-contact-seo section,
.dk-contact-page .dk-contact-seo section:not(:first-child),
.dk-contact-page .dk-contact-seo > section,


.dk-contact-page .dk-contact-seo__grid,
.dk-contact-page .dk-contact-seo__info {
    align-items: start !important;
    gap: 12px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.dk-contact-page .dk-contact-seo__card,
.dk-contact-page .dk-contact-seo__box,
.dk-contact-page .dk-contact-seo__route,
.dk-contact-page .dk-contact-seo__faq {
    align-self: start !important;
    height: auto !important;
}

.dk-contact-page .dk-contact-seo__intro {
    padding: 26px 30px !important;
}

.dk-contact-page .dk-contact-seo__card {
    padding: 20px 22px !important;
}

.dk-contact-page .dk-contact-seo__box {
    padding: 24px 26px !important;
}

.dk-contact-page .dk-contact-seo__route {
    padding: 26px 28px !important;
}

.dk-contact-page .dk-contact-seo__faq {
    padding-top: 24px !important;
}

.dk-contact-page .dk-contact-seo__faq h2 {
    margin-bottom: 10px !important;
}

.dk-contact-page .dk-contact-seo__faq-item {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.dk-contact-page .dk-contact-map-section,
.dk-contact-page .dk-contact-map-section:not(:first-child) {
    margin-top: 18px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.dk-contact-page .dk-contact-map-section > .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.dk-contact-page .dk-contact-map-card {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .dk-contact-page > section,
    .dk-contact-page > section:not(:first-child) {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .dk-contact-page .dk-contact-seo {
        gap: 10px !important;
        margin-bottom: 10px !important;
    }

    .dk-contact-page .dk-contact-seo section,
    .dk-contact-page .dk-contact-seo section:not(:first-child),
    .dk-contact-page .dk-contact-seo > section,
    .dk-contact-page .dk-contact-seo > section:not(:first-child) {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .dk-contact-page .dk-contact-seo__grid,
    .dk-contact-page .dk-contact-seo__info {
        gap: 10px !important;
    }

    .dk-contact-page .dk-contact-seo__intro,
    .dk-contact-page .dk-contact-seo__box,
    .dk-contact-page .dk-contact-seo__route {
        padding: 22px 20px !important;
    }

    .dk-contact-page .dk-contact-seo__card {
        padding: 18px 20px !important;
    }

    .dk-contact-page .dk-contact-seo__faq {
        padding-top: 22px !important;
    }

    .dk-contact-page .dk-contact-seo__faq-item {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .dk-contact-page .dk-contact-map-section,
    .dk-contact-page .dk-contact-map-section:not(:first-child) {
        margin-top: 12px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
/* =========================================================
   FIX: страница контактов /контакты/
   Не обнуляем внутренние padding у SEO-блоков
   ========================================================= */

.dk-contact-page > section,
.dk-contact-page > section:not(:first-child){
    padding-top:0 !important;
    padding-bottom:0 !important;
}

/* Только убираем внешние отступы у секций, padding НЕ трогаем */
.dk-contact-page .dk-contact-seo > section{
    margin-top:0 !important;
    margin-bottom:0 !important;
}

/* Верхний SEO-блок — нормальные поля внутри */
.dk-contact-page .dk-contact-content .dk-contact-seo > section.dk-contact-seo__intro,
.dk-contact-seo > section.dk-contact-seo__intro{
    padding:68px 62px 58px !important;
    border-radius:30px !important;
}

.dk-contact-page .dk-contact-content .dk-contact-seo__intro h2,
.dk-contact-seo__intro h2{
    margin:0 0 24px !important;
    font-size:36px !important;
    line-height:1.18 !important;
}

.dk-contact-page .dk-contact-content .dk-contact-seo__intro p,
.dk-contact-seo__intro p{
    max-width:1280px !important;
    font-size:18px !important;
    line-height:1.9 !important;
}

/* Карточки контактов одинаковой высоты */
.dk-contact-page .dk-contact-content .dk-contact-seo__grid,
.dk-contact-seo__grid{
    align-items:stretch !important;
}

.dk-contact-page .dk-contact-content .dk-contact-seo__card,
.dk-contact-seo__card{
    min-height:145px !important;
    height:100% !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
}

/* Расстояние до карты */
.dk-contact-page .dk-contact-map-section,
.dk-contact-page .dk-contact-map-section:not(:first-child){
    margin-top:14px !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
}

@media (max-width:991px){
    .dk-contact-page .dk-contact-content .dk-contact-seo > section.dk-contact-seo__intro,
    .dk-contact-seo > section.dk-contact-seo__intro{
        padding:44px 36px 40px !important;
    }

    .dk-contact-page .dk-contact-content .dk-contact-seo__intro h2,
    .dk-contact-seo__intro h2{
        font-size:31px !important;
        margin-bottom:18px !important;
    }

    .dk-contact-page .dk-contact-content .dk-contact-seo__intro p,
    .dk-contact-seo__intro p{
        font-size:17px !important;
        line-height:1.8 !important;
    }
}

@media (max-width:640px){
    .dk-contact-page .dk-contact-content .dk-contact-seo > section.dk-contact-seo__intro,
    .dk-contact-seo > section.dk-contact-seo__intro{
        padding:30px 22px 28px !important;
        border-radius:24px !important;
    }

    .dk-contact-page .dk-contact-content .dk-contact-seo__intro h2,
    .dk-contact-seo__intro h2{
        font-size:25px !important;
        margin-bottom:16px !important;
    }

    .dk-contact-page .dk-contact-content .dk-contact-seo__intro p,
    .dk-contact-seo__intro p{
        font-size:16px !important;
        line-height:1.75 !important;
    }

    .dk-contact-page .dk-contact-content .dk-contact-seo__card,
    .dk-contact-seo__card{
        min-height:auto !important;
    }
	/* =========================================================
   CONTACT WIDTH FIX: SEO-блоки и карта одной ширины
   ========================================================= */

.dk-contact-page{
    --dk-contact-wide: min(1660px, calc(100vw - 96px));
}

/* Секция с SEO-контентом */
.dk-contact-page .dk-contact-head{
    width:100% !important;
    margin:0 0 14px !important;
    padding:0 !important;
}

/* Контейнер, внутри которого лежит SEO-блок */
.dk-contact-page .dk-contact-head > .container{
    width:var(--dk-contact-wide) !important;
    max-width:var(--dk-contact-wide) !important;
    padding-left:0 !important;
    padding-right:0 !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

/* Снимаем старое ограничение 920px */
.dk-contact-page .dk-contact-content{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
}

/* Сам SEO-блок больше не выносится через left/margin-left */
.dk-contact-page .dk-contact-seo{
    position:relative !important;
    left:auto !important;
    right:auto !important;
    transform:none !important;

    width:100% !important;
    max-width:100% !important;

    margin-left:0 !important;
    margin-right:0 !important;
    margin-top:0 !important;
    margin-bottom:14px !important;

    display:grid !important;
    gap:14px !important;
}

/* Секция карты */
.dk-contact-page .dk-contact-map-section,
.dk-contact-page .dk-contact-map-section:not(:first-child){
    width:100% !important;
    margin:14px 0 0 !important;
    padding:0 !important;
}

/* Контейнер карты — та же ширина, что у SEO-блоков */
.dk-contact-page .dk-contact-map-section > .container{
    width:var(--dk-contact-wide) !important;
    max-width:var(--dk-contact-wide) !important;
    padding-left:0 !important;
    padding-right:0 !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

/* Карта занимает всю ширину своего контейнера */
.dk-contact-page .dk-contact-map-card{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
}

/* Вложенные section внутри SEO не должны получать глобальные отступы */
.dk-contact-page .dk-contact-seo > section,
.dk-contact-page .dk-contact-seo > section:not(:first-child){
    margin:0 !important;
}

/* Верхний SEO-блок — нормальные поля внутри */
.dk-contact-page .dk-contact-seo__intro{
    padding:56px 62px 50px !important;
}

/* Карточки контактов одинаковой высоты */
.dk-contact-page .dk-contact-seo__grid{
    align-items:stretch !important;
}

.dk-contact-page .dk-contact-seo__card{
    min-height:145px !important;
    height:100% !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
}

/* Планшеты */
@media (max-width:1199px){
    .dk-contact-page{
        --dk-contact-wide: calc(100vw - 48px);
    }
}

/* Мобильные */
@media (max-width:640px){
    .dk-contact-page{
        --dk-contact-wide: calc(100vw - 24px);
    }

    .dk-contact-page .dk-contact-head > .container,
    .dk-contact-page .dk-contact-map-section > .container{
        width:var(--dk-contact-wide) !important;
        max-width:var(--dk-contact-wide) !important;
    }

    .dk-contact-page .dk-contact-seo{
        gap:10px !important;
        margin-bottom:10px !important;
    }

    .dk-contact-page .dk-contact-seo__intro{
        padding:30px 22px 28px !important;
    }

    .dk-contact-page .dk-contact-seo__card{
        min-height:auto !important;
    }

    .dk-contact-page .dk-contact-map-section,
    .dk-contact-page .dk-contact-map-section:not(:first-child){
        margin-top:12px !important;
    }
}
/* FIX: расстояние между блоками на странице специалистов */
.dk-doctors-page .dk-doctors-section{
    margin-bottom:34px !important;
}

.dk-doctors-page .dk-doctors-section:last-child{
    margin-bottom:0 !important;
}

/* Чуть больше воздуха после верхнего блока */
.dk-doctors-page .dk-doctors-section:first-child{
    margin-bottom:30px !important;
}

/* Отступ после списка врачей */
.dk-doctors-page #doctors-list{
    margin-bottom:36px !important;
}

/* Отступ между формой записи и картой */
.dk-doctors-page .dk-doctors-cta{
    margin-bottom:0 !important;
}

/* Исправление вывода графика в карточке карты */
.dk-doctors-map__work{
    display:grid;
    gap:4px;
    margin:0 0 22px !important;
}

.dk-doctors-map__work p{
    margin:0 !important;
    padding:0 !important;
    color:#667085;
    font-size:20px;
    line-height:1.45;
}

@media (max-width:991px){
    .dk-doctors-page .dk-doctors-section{
        margin-bottom:26px !important;
    }

    .dk-doctors-page .dk-doctors-section:first-child{
        margin-bottom:24px !important;
    }

    .dk-doctors-page #doctors-list{
        margin-bottom:28px !important;
    }
}

@media (max-width:640px){
    .dk-doctors-page .dk-doctors-section{
        margin-bottom:18px !important;
    }

    .dk-doctors-page .dk-doctors-section:first-child{
        margin-bottom:16px !important;
    }

    .dk-doctors-page #doctors-list{
        margin-bottom:20px !important;
    }

    .dk-doctors-map__work p{
        font-size:18px;
    }
	
}
