/*RESET*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

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

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

/*END RESET*/

/*FONTS*/

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Bold.woff') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-SemiBold.woff') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Medium.woff') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('../fonts/SFProDisplay-Regular.woff') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('../fonts/SFProDisplay-Medium.woff') format('truetype');
    font-weight: 500;
    font-style: normal;
}


/*CONSTANTS*/
:root {
    --primary-color: #4779F4;
    --primary-light-color: #7DA2FF;
    --secondary-color: #7AC38F;
    --white-color: #ffffff;
    --bg-color: #FBFBFB;
    --bg-card: #F5F5F5;
    --bg-card-active: #ECF6FF;
    --bg-card-hover: #D0E5F7;
    --font-color: #12263A;
    --border-color: #DEDEDE;
    --dark-color: #000000;

    --trans-bg-color: background-color 0.4s, color 0.4s;
    --trans-bg: background-color 0.4s;
    --trans-color: color 0.4s;
}

* {
    margin: 0;
    padding: 0;
}

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

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--font-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

input::placeholder {
    font: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: 'Raleway';
    font-weight: 700;
    color: var(--font-color);
}

h1 {
    font-size: 48px;
    line-height: 56px;
}

h2 {
    font-size: 40px;
    line-height: 47px;
}

h3 {
    font-size: 22px;
    line-height: 32px;
}

h4 {
    font-size: 16px;
    line-height: 26px;
}

input,
textarea,
select {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 14px 16px 14px 16px;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.02), 0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.04);
    background: rgb(255, 255, 255);
    max-width: 348px;
    width: 100%;
}

input::placeholder,
textarea::placeholder,
select {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(18, 38, 58);
}

input[type="checkbox"] {
    padding: 0;
    cursor: pointer;
}

section,
footer {
    padding: 80px 0;
}

.container {
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.breadcrumbs {
    padding: 0;
}

.breadcrumb {
    display: flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 10px;
}

.back-btn {
    display: none;
}

.hidden {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    height: 0;
    min-height: 0 !important;
}

.primary-btn,
.secondary-btn,
.light-btn,
.disabled-btn {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: var(--white-color);
    height: auto;
    width: fit-content;
    border-radius: 8px;
    border: none;
    transition: var(--trans-bg-color);
}

.primary-btn {
    background-color: var(--primary-color);
}

.primary-btn:hover {
    background-color: var(--primary-light-color);
}

.secondary-btn {
    background-color: var(--secondary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-light-color);
}

.light-btn {
    background-color: var(--primary-light-color);
}

.light-btn:hover {
    background-color: var(--primary-color);
}

.disabled-btn {
    background-color: var(--bg-card);
    color: var(--font-color);
}

.disabled-btn:hover {
    background-color: var(--primary-light-color);
}

#show-more-btn {
    display: block;
    width: 100%;
    color: var(--font-color);
    margin-top: 44px;
}

.swiper-button .swiper-button-next.swiper-button-disabled,
.swiper-button .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    background-color: var(--border-color);
}

.pnone__button {
    position: fixed;
    width: 72px;
    height: 72px;
    border-radius: 64px;
    background: rgb(71, 121, 244);
    right: 4.5%;
    top: 57.5%;
    z-index: 999;
}

.phone__button-link img {
    position: absolute;
    top: 19px;
    left: 19px;
}

.pnone__button::before,
.pnone__button::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.pnone__button::before {
    top: -12px;
    left: -12px;
    width: 94px;
    height: 94px;
    border: 12px solid rgba(71, 121, 244, 0.07);
    ;
}

.pnone__button::after {
    top: -24px;
    left: -24px;
    width: 118px;
    height: 118px;
    border: 12px solid rgba(71, 121, 244, 0.03);
    ;
}

#topBtn {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 40px;
    z-index: 999;
    border: none;
    outline: none;
    width: 64px;
    height: 64px;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

/*MOB MENU*/
.menu-toggle {
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.6px;
    margin: 4px 0;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
}

.overlay.open {
    visibility: visible;
    opacity: 1;
}

.mob__menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 28px 28px 36px 28px;
    box-shadow: 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.02), 0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.04);
    transition: right 0.3s ease;
    z-index: 1000;
}

.mob__menu-container.open {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.menu-close {
    font-size: 24px;
    cursor: pointer;
}

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

.menu-section {
    margin-bottom: 24px;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 6px;
}

.section-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-item {
    background-color: #f5f5f5;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 0px;
    text-decoration: none;
    color: var(--font-color);
    transition: background-color 0.3s ease;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 10px;
}

.menu-footer_left {
    display: flex;
    align-items: center;
    gap: 40px;
}

/*MAIN PAGE*/
.header {
    position: relative;
}

.header__inner {
    padding: 40px 0 64px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 46px;
}

.menu__list-desctop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.menu__list-link {
    color: var(--font-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    transform: var(--trans-color);
}

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

.language-selector {
    position: relative;
    display: inline-block;
}

.language-selector-inner {
    display: flex;
    gap: 10px;
}

.dropdown-toggle {
    background-color: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 100px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    margin-top: 5px;
    list-style: none;
    padding: 0;
}

.dropdown-menu a {
    color: var(--font-color);
    padding: 5px;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background-color: var(--bg-color);
}

.dropdown-menu.show {
    display: block;
}

.hero {
    padding-top: 0;
    padding-bottom: 80px;
    position: relative;
}

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

.main__title {
    max-width: 550px;
}

.hero__search {
    margin-top: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__search-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1.5px solid rgb(64, 123, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 16px 0px rgb(71, 121, 244);
}

.hero .primary-btn,
.hero .disabled-btn {
    padding: 14px 20px 14px 20px;
}

.hero .disabled-btn {
    color: var(--font-color);
}

.filter-special {
    min-width: 347px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 14px 16px;
    border-radius: 8px;
    box-shadow: 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.02), 0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.04);
    background: rgb(255, 255, 255);
}

.filter-special input::placeholder {
    font-size: 15px;
}

.filter-special label {
    position: relative;
    color: var(--font-color);
    font-family: Raleway;
    font-size: 15px;
    padding-left: 25px;
}

.main-page .filter-special label::before {
    position: absolute;
    content: url(../images/icon/list.svg);
    left: -20px;
    top: -11px;
    padding-left: 16px;
}

.filter-special select {
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    color: var(--font-color);
    font-size: 15px;
    box-shadow: none;
    padding: 0;
    max-width: none;
}

.filter-age {
    display: flex;
    align-items: center;
}

.filter-age div {
    padding: 14px 16px 14px 16px;
    display: flex;
}

.filter-age input[type="radio"] {
    display: none;
    align-items: center;
}

.filter-age label {
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.filter-age label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 1.5px solid rgb(194, 199, 211);
    border-radius: 6px;
    vertical-align: middle;
    margin-right: 8px;
}

.filter-age input[type="radio"]:checked+label::before {
    border-color: rgb(122, 195, 143);
    background-color: rgb(122, 195, 143);
}

.filter-age input[type="radio"]:checked+label::after {
    content: url(../images/icon/check.svg);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}

.filter-age span {
    color: var(--font-color);
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
}

.hero__search-btn {
    max-width: 78px;
    min-height: 78px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: none;
    border-radius: 16px;
    background-color: var(--secondary-color);
}

.hero__search-btn span {
    display: none;
}

.specialists {
    background-color: var(--bg-color);

}

.specialists .container {
    position: relative;
}

.specialists__title {
    margin-bottom: 48px;
    text-align: center;
}

.swiper-slide {
    display: flex;
    gap: 7px;
    flex-direction: column;
    border-radius: 8px 8px 0px 0px;
}

.swiper-slide__img img {
    max-width: 100%;
}

.swiper-button {
    position: absolute;
    right: 0;
    top: 2%;
}

.swiper-button-next,
.swiper-button-prev {
    content: "";
    background-color: var(--secondary-color);
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: middle;
}

.doctor__service .swiper-button.mob,
.articles .swiper-button.mob {
    display: none;
}

.swiper-button-next {
    margin-left: 36px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: url(../images/icon/arrow.svg);
    display: inline-block;
    position: absolute;
    top: -25%;
    left: 31%;
}

.swiper-button-next:after {
    transform: rotate(180deg);
    top: 15%;
    left: 40%;
}

.swiper-slide__info {
    padding: 0 16px 16px 16px;
}

.swiper-slide__title {
    color: var(--font-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 14px;
}

.swiper-slide__text {
    margin-bottom: 14px;
}

.swiper-slide__stag {
    font-weight: 600;
}

.specialists button {
    display: block;
    margin: 64px auto 0px;
    border: none;
    padding: 10px 40px 10px 40px;
}

.services__title {
    text-align: center;
    margin-bottom: 48px;
}

.services__inner {
    display: flex;
    gap: 78px;
    margin-bottom: 64px;
}

.services__inner-left,
.services__inner-right {
    width: 100%;
    max-width: 505px;
    padding: 10px;
}

.services__item,
.bottom__info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.services__item-text,
.info__item-text {
    max-width: 400px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    flex-grow: 1;
    position: relative;
}

.services__item-text::after,
.info__item-text::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 93%;
    border-bottom: 1px solid #D9D9D9;
}

.services__item-index,
.info__item-index {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.services__item-index span,
.info__item-index span {
    color: var(--primary-color);
    margin-right: 4px;
}

.sercvices button {
    display: block;
    margin: 0 auto;
    margin-bottom: 80px;
    padding: 16px 40px;
}

.services__video {
    border-radius: 38px;
}

.services__video-content {
    display: block;
    margin: 0 auto;
    border: 16px solid rgb(245, 245, 245);
    max-width: 910px;
}



.review {

    background-color: var(--primary-color);
}

.review__title {
    text-align: center;
    color: var(--white-color);
    margin-bottom: 48px;
}

.review__inner {
    display: flex;
    gap: 40px;
}

.review__card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 354px;
    width: 100%;
    border-radius: 8px;
    background-color: var(--white-color);
}

.review__card-rate {
    display: flex;
    text-align: center;
}

.rate__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rate__star {
    content: url('../images/img/stars.png')
}

.rate__info {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.rewiew__card-descr {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin: 16px 0px 30px;
}

.review__card-autor {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding-right: 14px;
}

.review button {
    display: block;
    margin: 0 auto;
    margin-top: 70px;
    padding: 16px 40px;
}

.faq__title {
    text-align: center;
    margin-bottom: 48px;
}

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

.img {
    max-width: 100%;
}

.faq__accordion {
    padding-bottom: 64px;
}

.faq__accordion-item {
    border-bottom: 1px solid rgb(217, 217, 217);
}

.faq__accordion-item-active .faq__accordion-answer {
    display: block;
}

.faq__accordion-item-active .trigger__line2 {
    transform: rotate(0) !important;
    transition: 0.1s transform ease;
}

.faq__accordion-item-active .trigger__line1 {
    opacity: 0;
    transition: 0.1s all ease;
}

.faq__accordion-question {
    display: flex;
    justify-content: space-between;
    padding: 23px 0;
    align-items: center;
    cursor: pointer;
}

.faq__accordion-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.trigger__line1 {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #000;
}

.trigger__line2 {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #000;
    transform: rotate(90deg);
    margin-top: -1px;
}

.faq__accordion-answer {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 2rem;
    display: none;
    animation: fade 0.3s ease;
}

.faq button {
    padding: 16px 40px;
}

.packets {
    padding: 70px 0 80px;
    background-color: var(--bg-color);
}

.packets__title {
    text-align: center;
    margin-bottom: 48px;
}

.packets__top {
    max-width: 961px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin: 0 auto 64px;
}

.packets__top-item {
    max-width: 299px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    align-items: center;
    padding: 40px 24px 40px 24px;
    border-radius: 8px;
    box-shadow: 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.02), 0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.04);
    background: rgb(255, 255, 255);
}

.packets__top-title {
    font-size: 18px;
    line-height: 18px;
}

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

.packets__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

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

.packets__bottom-info {
    max-width: 530px;
    width: 100%;
}

.packets__bottom-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 34px;
}

.bottom__info-item {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    padding: 10px 0;
    width: 92%;
}

.partners__title {
    margin-bottom: 48px;
}

.partners__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border: 1px solid rgb(222, 222, 222);
    border-radius: 8px;
}

.partners__img {
    max-width: 364px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__img img {
    display: block;
    max-width: 100%;
}

.blog {
    padding: 0 0 80px 0;
}

.blog__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 46px;
}

.blog__select {
    border-radius: 8px;
    box-shadow: 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.02), 0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.04);
    background: rgb(255, 255, 255);
    padding: 14px 16px 14px 16px;
    max-width: 364px;
    width: 100%;
}

.blog__select select {
    border: none;
    color: var(--font-color);
    font-family: Raleway;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    box-shadow: none;
    padding: 0px;
}

.blog__cards {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.blog__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    box-shadow: 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.02), 0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.04);
    background: rgb(255, 255, 255);
    min-height: 490px;
}

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

.blog__card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    min-height: 50px;
}

.blog__card-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding: 16px 0;
}

.blog__card-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    display: flex;
    gap: 4px;
}

.blog__card-date::before {
    content: url(../images/icon/calendar.svg);
}

.blog button {
    display: block;
    margin: 64px auto 0;
    padding: 10px 80px;
}

.contact-form {
    background-color: var(--bg-color);

}

.contact-form__title {
    text-align: center;
    margin-bottom: 38px;
}

.contact-form__inner {
    max-width: 772px;
    width: 100%;
    margin: 0 auto;
    border: 1.2px solid rgb(71, 121, 244);
    border-radius: 24px;
    box-shadow: 0px 0px 16px 0px rgb(71, 121, 244);
    padding: 14px 16px 14px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 26px;
    column-gap: 40px;
}

.contact-form__inner input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.form-checkbox {
    width: 100%;
    display: flex;
    gap: 16px;
    margin: 0 auto;
}

.form-checkbox input[type="checkbox"],
.footer__checkbox-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid rgb(222, 222, 222);
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: rgb(255, 255, 255);
    margin-left: 30px;
}

.form-checkbox input[type="checkbox"]:checked::before,
.footer__checkbox-input:checked::before {
    content: "\2713";
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
}

.form-checkbox label {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.form-checkbox label a {
    color: var(--primary-color)
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.form-button {
    display: block;
    padding: 10px 40px 10px 40px;
    margin: 59px auto 0;
}

.footer {

    background-color: var(--primary-color);
    color: var(--white-color);
}

.footer__inner {
    position: relative;
}

.footer__top {
    display: flex;
}

.footer__address {
    display: flex;
    flex-direction: column;
    max-width: 253px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 19px;
    margin-right: 44px;
}

.footer__address-logo img {
    margin-left: 16px;
}

.footer__address-logo p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 24px;
}

.footer__address-lang {
    margin-bottom: 16px;
}

.footer__nav {
    max-width: 104px;
    width: 100%;
    margin-right: 92px;
}

.footer-menu__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-menu__list-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
}

.footer__info {
    max-width: 180px;
    width: 100%;
}

.footer-info__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-info__list-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.footer__social {
    margin-left: 86px;
}

.footer__social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__social-icon_title {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 10px;
}

.footer__social-icon_list {
    display: flex;
    gap: 14px;
}

.footer__social-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.footer__social-form_inner input {
    max-width: 390px;
}

.footer__social-form_inner input[type="checkbox"] {
    display: inline-block;
}

.footer__social-form_title {
    width: 262px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 24px;
}

.footer__form-input {
    margin-bottom: 24px;
}

.footer__checkbox {
    width: 100%;
    max-width: 369px;
}

.footer__checkbox-input {
    margin-left: 0px;
    margin-right: 16px;
}

.footer__checkbox-label a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer__form-button {
    display: block;
    margin: 0 auto;
    margin-top: 24px;
    padding: 10px 40px;
}

.footer__bottom {
    position: absolute;
    display: flex;
    gap: 21px;
    bottom: 0;
    left: 26%;
}

.footer__bottom button:hover {
    background-color: var(--secondary-color);
}

.light-btn {
    padding: 10px 24px;
}


/*DOCTORS PAGE*/

.doctors-page .pnone__button {
    bottom: -185%;
}

.doctors-page .hero {
    padding-bottom: 63px;
}

.doctors-page .hero__search {
    margin-top: 40px;
}

.doctors-page .filter-special {
    min-width: 243px;
    padding: 14px;
}

.doctors-page .filter-special label {
    padding-left: 0px;
}

.doctors__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 47px;
}

.filter-special.doctors select,
.filter-special.our__sercvices select {
    background: url(../images/icon/plus.svg) no-repeat right;
}

.filter-special.online select {
    background: url(../images/icon/filter.svg) no-repeat right;
}

.doctors-page .filter-special.sort select {
    background: url(../images/icon/list.svg) no-repeat right;
}

.all-doctors {
    padding-bottom: 80px;
}

.doctors__inner {
    margin-top: 44px;
}

.doctors__grid,
.all-services__grid,
.for-child__grid,
.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
    column-gap: 20px;
}

.doctors__card,
.for-child__card {
    padding: 12px;
    display: flex;
    flex-direction: column;
    width: 362px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.doctors__card-top {
    border-radius: 16px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 0;
}

.doctors__card-top_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 63px;
    padding: 8px 10px 8px 10px;
}

.doctors__card-top a img {
    max-width: 100%;
}

.doctors__card-top h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 12px;
}

.doctors__card-top p {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
}

.doctors__card-top .rate::before {
    content: url(../images/icon/blue-star.svg);
}

.doctors__card-geo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 16px;
    box-shadow: 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.02), 0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.04);
    background: rgb(255, 255, 255);
}

.doctors__card-geo div {
    display: flex;
    padding: 15px 12px 5px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
}

.doctors__card-geo span {
    position: absolute;
    border: 1px solid rgb(217, 217, 217);
    width: 14%;
    transform: rotate(90deg);
    bottom: 39%;
}

.doctors__card-exp::before {
    content: url(../images/icon/badge.svg);
    margin-right: 5px;
}

.doctors__card-city::before {
    content: url(../images/icon/map.svg);
    margin-right: 5px;
}

.doctors__card-title {
    margin-top: 20px;
}

.doctors__card-info {
    font-size: 13px;
    font-weight: 400;
    line-height: 26px;
}

.doctors__card-bottom {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.doctors__card-bottom button {
    padding: 16px;
}

.doctors__card-bottom p {
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
}

.doctors__card-bottom span {
    font-weight: 600;
}

/*DOCTOR PAGE*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.doctor-page .swiper-button-next,
.doctor-page .swiper-button-prev {
    background-color: var(--primary-color)
}

.doctor-profile {
    padding: 40px 0 80px;
}

.profile__inner {
    display: flex;
    align-items: flex-start;
    gap: 67px;
}

.profile__inner .swiper-button-next {
    margin-left: 336px;
}

.profile__inner .swiper-button {
    top: 50%;
}

.profile__inner-slider {
    max-width: 425px;
    width: 100%;
    position: relative;
}

.slider__top-bage {
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    border-radius: 8px;
    background: rgb(255, 255, 255);
    position: absolute;
    z-index: 11;
    padding: 10px 16px 10px 16px;
    top: 4%;
    left: 4%;
}

.slider__bottom-bage {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 420px;
    width: 100%;
    margin-top: 10px;
}

.slider__bottom-bage div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    box-shadow: 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.02), 0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.04);
    background: rgb(255, 255, 255);
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.slider__bottom-bage div p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.slider__bottom-bage img {
    width: 50%;
}

.slider__bottom-bage_rate span {
    display: flex;
    gap: 4px;
}

.profile__inner-info_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 10px;
    margin-bottom: 32px;
}

.profile__inner-info_prof {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 17px;
}

.profile__inner-info_clinic {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    display: flex;
    margin-bottom: 5px;
}

.profile__inner-info_clinic.clinic::before {
    content: url(../images/icon/clinic-icon.png);
    padding-right: 15px;
}

.profile__inner-info_clinic.address {
    margin-bottom: -12px;
}

.profile__inner-info_clinic.address::before {
    content: url(../images/icon/address-icon.png);
    padding-right: 15px;
}

.profile__inner-info_time {
    padding: 15px 0 40px;
}

.profile__inner-info_time {
    padding: 15px 0 40px;
    font-weight: 700;
    margin-left: 0;
}

.profile__inner-info span {
    font-weight: 400;
    margin-left: 50px;
}

.profile__inner-info_time span {
    margin-left: 0;
}

.profile__inner-info .secondary-btn {
    padding: 10px 64px;
}

.profile-swiper .services__video-content {
    width: 100%;
    height: 100%;
    top: 55px;
    border: none;
}

.doctor__service {

    background-color: var(--bg-color);
    position: relative;
}

.doctor__service-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 27px;
}

.doctor__service .swiper-button {
    top: 17%;
    right: 10%;
}

.service-swiper .swiper-button {
    z-index: 100;
}

.service__infoblock {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service__infoblock div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.02), 0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.04);
    background: rgb(255, 255, 255);
}

.service__infoblock-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.service__infoblock-content p:last-child {
    font-weight: 500;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 4px 10px 4px 10px;
    margin-top: 16px;
}

.doctor__info h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
}

.doctor__info-inner {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.doctor__info-inner h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.doctor__info-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.doctor__info-top span,
.doctor__info-top li {
    font-weight: 400;
}

.doctor__info-top ul {
    list-style-type: disc;
    list-style-position: inside;
}

.doctor__info-bottom ul h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    margin-top: 16px;
}

.doctor__info-bottom ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding-left: 10px;
}

.doctor__info-bottom ul {
    list-style-type: disc;
    list-style-position: inside;
}

.doctor__review {

    background-color: var(--bg-color);
}

.doctor__review h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 32px;
}

.review__textarea {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 56px;
}

.review__textarea .rate__info {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}

.review__textarea .rate__star {
    width: 50%;
}

.review__textarea-rate {
    max-width: 245px;
    width: 100%;
}

.review__textarea-rate .rate__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 230px;
    width: 100%;
}

.review__textarea-block {
    width: 100%;
}

.textarea-input {
    border: 1px solid rgb(222, 222, 222);
    border-radius: 4px;
    padding: 10px;
    max-width: 825px;
}

.review__input {
    display: flex;
    align-items: center;
    gap: 40px;
}

.review__input input {
    max-width: 362px;
}

.review__input .primary-btn {
    padding: 10px 100px 10px 100px;
    margin: 0;
}

.articles {

    background-color: var(--bg-color);
    position: relative;
}

.articles h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 47px;
    margin-bottom: 48px;
}

.articles .swiper-button {
    top: 15%;
    right: 10%;
}

.articles-inner .blog__card-info {
    margin-top: 30px;
}

.doctor-page .contact-form {
    background-color: var(--white-color);
}


/*SERVICES PAGE*/

.services-page .hero {
    padding: 50px 0 65px 0;
}

.services-page .hero__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 47px;
    margin-bottom: 16px;
}

.services-page .hero__search {
    margin-top: 40px;
}

.services-page .filter-special,
.service-page .filter-special {
    min-width: 200px;
    width: 243px;
}

.services-page .filter-special label,
.service-page .filter-special label {
    padding-left: 0px;
}

.filter-special.doctors select,
.filter-special.our__sercvices select {
    background: url(../images/icon/plus.svg) no-repeat right;
}

.filter-special.search select {
    background: url(../images/icon/search-grey.svg) no-repeat right;
}

.services-page .filter-special.sort select {
    background: url(../images/icon/list.svg) no-repeat right;
}

.all-services {
    padding: 0 0 80px 0;
}

.all-services__title {
    margin-bottom: 44px;
}

.all-services__inner {
    margin-bottom: 44px;
}

.all-services__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    max-width: 346px;
    width: 100%;
    position: relative;
}

.all-services__card-subtitle {
    font-size: 14px;
}

.all-services__card .secondary-btn,
.for-child__card .secondary-btn {
    display: block;
    width: 100%;
}

.all-services__grid {
    width: 100%;
    row-gap: 88px;
}

.all-services__card:nth-child(3n+4)::before,
.all-services__card:nth-child(3n+5)::before,
.all-services__card:nth-child(3n+6)::before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% + 41px);
    /* Учитывая gap */
    height: 0.5px;
    /* Толщина границы */
    background-color: rgb(210, 210, 210);
    ;
    top: -40px;
    /* Позиция границы над элементом, учитывая gap */
}

.all-services .disabled-btn {
    margin-top: -93px;
}

/*CONSULT PAGE*/
.consult__hero {
    padding: 52px 0 80px 0;
}

.consult__hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.consult__hero-info {
    max-width: 733px;
    border-right: 0.5px solid rgb(210, 210, 210);
}

.concult__hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 47px;
    margin-bottom: 24px;
    max-width: 691px;
}

.consult__hero-info p {
    max-width: 700px;
}

.consult__hero-info ul {
    max-width: 700px;
}

.consult__hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin: 24px 0;
    max-width: 680px;
}

.consult__hero-list {
    list-style-type: disc;
    list-style-position: inside;
}

/*Service packet*/

.service-page .hero {
    padding-bottom: 50px;
}

.service-page .hero__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 47px;
    margin-top: 53px;
}

.service-page .hero__search {
    margin-top: 33px;
}

.for-child__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 20px;
}

.for-child {
    padding-bottom: 80px;
}

.service-page .filter-special.sort select {
    background: url(../images/icon/filter.svg) no-repeat right;
}

.service-page .filter-special.categories select {
    background: url(../images/icon/arrow-down.svg) no-repeat right;
}

.service-page .search__block .form-input.search {
    width: 243px;
}

.service-page .search__block .form-input.search::placeholder {
    font-size: 15px;
}

.for-child__grid {
    row-gap: 45px;
    column-gap: 45px;
}

.for-child__card {
    max-width: 350px;
}

.for-child__card-title {
    margin: 24px 0 16px 0;
}

.for-child__card-price {
    display: flex;
    justify-content: space-between;
    margin: 24px 0 16px;
}

.for-child__card-price span {
    font-weight: 700;
}

/*PROGRAM PAGE*/
.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 47px;
    margin: 0 auto 48px;
    max-width: 750px;
    text-align: center;
}

.program__hero {
    padding: 64px 0 80px 0;
}

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

.program__hero-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 735px;
    margin: 44px auto 0;

}

.program__hero-info ol {
    padding-left: 15px;
}

.program__hero-info ol li span {
    font-weight: 700;
}

.program__hero-info h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 16px;
}

.program__hero-info .bottom__info-item {
    font-weight: 400;
    border-bottom: 1px solid #D9D9D9;
    width: 100%;
}

.program__hero-info .info__item-text {
    font-weight: 400;
}

.program__hero-info .info__item-text::after {
    border: none;
}

.program__hero-price {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    padding: 16px 0;
}

.program__hero-info .secondary-btn {
    display: block;
    margin: 0 auto;
    padding: 12px 100px;
}

/*REGISTRATION FORM*/

.registration-form {
    padding: 60px 0 80px;
}

.registration-title {
    font-size: 40px;
    line-height: 47px;
}

.registration-subtitle {
    padding: 16px 0 48px;
}

.registration-form__inner {
    padding: 12px 12px 32px 12px;
    border: 1.5px solid rgb(64, 123, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 16px 0px rgb(71, 121, 244);
}

.registration-form__inner p:first-child {
    padding: 16px;
    border-radius: 8px;
    background: rgb(242, 246, 255);
    max-width: 374px;
}

.registration-form__inner-block {
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    column-gap: 16px;
    margin: 26px 0 34px;
}

.registration-form__inner-block input,
.registration-form__inner-block select {
    max-width: 360px;
}

.registration__btns {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
}

.registration__btns button {
    padding: 11px 116px;
}

.registration__btns .disabled-btn {
    padding: 11px 136px;
}

/*Login*/
.login-form {
    padding: 72px 0 80px;
}

.login-title {
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 16px;
    text-align: center;
}

.login-subtitle {
    text-align: center;
}

.login__inner {
    margin: 40px auto 0;
    max-width: 354px;
}

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

.login-form__inner-block .secondary-btn {
    padding: 10px 130px;
}

.hero__review-title {
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 24px;
}

/*review-page*/
.hero__review {
    padding: 64px 0 80px;
}

.hero__review-top {
    margin-top: 52px;
    display: flex;
    align-items: center;
    gap: 82px;
    margin-bottom: 80px;
}

.review-page .hero__review-top .secondary-btn {
    display: block;
    width: 100%;
    margin: 40px auto 0;
}

.review__inputs-area {
    padding: 12px 12px 20px 12px;
    border: 1.5px solid rgb(71, 121, 244);
    border-radius: 16px;
    box-shadow: 0px 0px 16px 0px rgb(71, 121, 244);
}

.review-page .review__input input {
    padding: 14px 10px;
}

.review-page .review__textarea {
    margin-bottom: 0;
}

.review-page .review__textarea-rate {
    padding-left: 10px;
}

.review-page .review__input {
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 24px;
}

/*news*/

.news {
    padding: 64px 0 80px;
}

.news__title {
    font-size: 40px;
    line-height: 47px;
}

.news__filters {
    padding: 52px 0 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news__grid {
    row-gap: 36px;
    column-gap: 40px;
}

.news__card {
    gap: 16px;
}

.news__btns .primary-btn {
    padding: 16px 68px;
    margin-right: -5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.news__btns .disabled-btn {
    padding: 16px 76px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.search__block {
    position: relative;
}

.search__block .form-input.search {
    width: 354px;
}

.search__block button {
    position: absolute;
    border: none;
    background: transparent;
    bottom: 20%;
    right: 5%;
}

/*news-item*/
.news__item {
    padding: 64px 0 80px;
}

.news__item-info {
    max-width: 760px;
    margin: 0 auto;
}

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

.news__item-info h3 {
    margin-top: 45px;
    font-size: 24px;
    line-height: 34px;
}

.news__item-info p {
    margin-top: 22px;
    font-size: 15px;
    letter-spacing: -0.4px;
}

/*about*/

.about {
    padding: 64px 0 24px;
}

.about h1 {
    font-size: 40px;
    line-height: 47px;
    text-align: center;
    margin-bottom: 64px;
}

.about__inner {
    max-width: 745px;
    margin: 0 auto;
}

.about__info {
    margin-bottom: 48px;
}

.about__info h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 24px;
}

.about__info p:nth-child(2) {
    margin-bottom: 20px;
}

/*contacts*/

.contacts {
    padding: 0 0 20px;
}

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

.contacts_img {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 570px;
    width: 100%;
}

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

.contacts__info {
    max-width: 570px;
    width: 100%;
    padding: 52px;
    border-radius: 16px;
    background-color: var(--bg-color);
}

.contacts__title {
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 44px;
}

.contacts__link {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contacts__link:not(:last-child) {
    margin-bottom: 32px;
}

/*faq*/
.faq-section {
    padding: 64px 0 80px;
}

.faq-page__inner {
    max-width: 780px;
    margin: 0 auto;
}

.faq-page__title {
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 74px;
    text-align: center;
}

.faq-page_img {
    max-width: 410px;
    margin: 0 auto;
}

.faq-page_img img {
    max-width: 100%;
}

.faq-page .faq__accordion {
    padding-bottom: 15px;
}


/*rules*/

.rules {
    padding: 64px 0 48px;
}

.data-page .rules {
    padding: 64px 0 28px;
}

.rules__container {
    max-width: 750px;
    margin: 0 auto;
}

.rules h1 {
    text-align: center;
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 70px;
}

.rules h2 {
    margin-top: 40px;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 26px;
}

.rules__subt {
    margin-top: 22px !important;
}

.rules h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.rules__container h3:first-child {
    margin-top: 30px;
}

.rules p {
    margin: 10px 0;
}

.rules ul {
    margin: 10px 0 10px 20px;
    list-style-type: disc;
    list-style-position: inside;
}

.data-page .rules ul {
    margin: 20px 0 16px 20px;
}

.rules li {
    margin: 5px 0;
}

/*MEDIA*/
@media (max-width: 1180px) {
    img {
        max-width: 100%;
    }

    h1 {
        font-size: 40px;
        line-height: 48px;
    }

    h2 {
        font-size: 36px;
        line-height: 42px;
    }

    #show-more-btn {
        margin-top: -44px;
    }

    .header__inner {
        gap: 22px;
    }

    .menu__list-desctop {
        gap: 18px;
    }

    .menu__list-link {
        font-size: 15px;
    }

    .hero .primary-btn,
    .hero .disabled-btn {
        padding: 8px;
        text-align: center;
    }

    .filter-special,
    .services-page .filter-special {
        min-width: 245px;
    }

    .review__inner,
    .blog__cards {
        gap: 18px;
    }

    .review__card {
        padding: 16px;
    }

    .faq__info {
        width: 100%;
    }

    .hero__search-info {
        flex-wrap: wrap;
    }

    .doctors-page .filter-special,
    .services-page .filter-special,
    .service-page .filter-special,
    .service-page .search__block {
        width: 48%;
    }

    .service-page .search__block .form-input.search {
        width: 100%;
        max-width: 100%;
    }

    .doctors__grid,
    .all-services__grid,
    .for-child__grid,
    .news__grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .profile__inner-info_clinic.address {
        margin-bottom: 0;
    }

    .review__textarea,
    .review__input {
        gap: 20px;
    }

    .review__input input {
        max-width: 312px;
    }

    .review__input .primary-btn {
        padding: 10px;
        width: 100%;
    }

    .all-services__card:nth-child(3n+4)::before,
    .all-services__card:nth-child(3n+5)::before,
    .all-services__card:nth-child(3n+6)::before {
        content: "";
        display: none;
    }

    .all-services .container {
        max-width: 900px;
    }

    .registration-form input,
    .registration-form select {
        width: 48%;
        max-width: 48%;
    }
}

@media (max-width: 980px) {
    h1 {
        font-size: 32px !important;
        line-height: 40px !important;
        text-align: center;
        width: 100%;
    }

    section,
    footer {
        padding: 53px 0;
    }

    .news,
    .registration-form,
    .hero__review {
        padding: 24px 0 53px;
    }

    h2 {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .header__inner {
        padding: 40px 0;
    }

    #pnone__button {
        top: 40%;
    }

    .menu-toggle {
        display: block;
    }

    .menu__list-desctop {
        display: none;
    }

    .menu-footer .pnone__button {
        position: relative;
        width: 60px;
        height: 60px;
    }

    .menu-footer .phone__button-link img {
        top: 13px;
        left: 13px;
    }

    .menu-footer .pnone__button::before {
        top: -11px;
        left: -11px;
        width: 82px;
        height: 82px;
    }

    .menu-footer .pnone__button::after {
        top: -20px;
        left: -20px;
        width: 102px;
        height: 102px;
    }

    .container {
        padding: 0 20px;
    }

    .dropdown-toggle {
        text-transform: uppercase;
    }

    .language-selector-img {
        width: 22px;
    }

    .menu-footer .dropdown-menu {
        bottom: 130%;
    }

    .main__title {
        max-width: 400px;
    }

    .hero__search {
        flex-direction: column;
        gap: 24px;
    }

    .hero__search-info {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero .primary-btn,
    .hero .disabled-btn {
        padding: 16px;
        width: 48.8%;
    }

    .filter-special {
        width: 100%;
    }

    .filter-age {
        justify-content: space-between;
        width: 80%;
        margin: 0 auto;
    }

    .services-page .filter-age,
    .service-page .filter-age {
        width: 48%;
    }

    .hero__search-btn {
        width: 100%;
        max-width: 100%;
    }

    .hero__search-btn span {
        display: block;
        color: rgb(255, 255, 255);
        font-family: Raleway;
        font-size: 22px;
        font-weight: 700;
        line-height: 32px;
        padding-left: 16px;
    }

    .specialists__slider.swiper-wrapper {
        align-items: flex-start;
    }

    .services__inner {
        gap: 40px;
    }

    .services__item-index {
        padding-left: 10px;
    }

    .review__inner {
        justify-content: space-around;
        margin: 0 auto;
        width: 100%;
    }

    .review__card:last-child,
    .blog__card:last-child {
        display: none;
    }

    .faq__accordion-question {
        padding: 15px 0;
        gap: 10px;
    }

    .faq__inner {
        align-items: center;
    }

    .packets__top {
        gap: 20px;
    }

    .packets__bottom {
        gap: 20px;
    }

    .blog__card {
        align-items: center;
    }

    .contact-form__inner {
        padding: 14px 12px;
        gap: 16px;
    }

    .footer {
        padding-bottom: 550px;
    }

    .footer__top {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer__nav {
        display: flex;
        width: auto;
        order: 1;
    }

    .footer__address {
        order: 2;
    }

    .footer__social {
        order: 3;
    }

    .footer__info {
        order: 4;
        max-width: 369px;
        text-align: center;
        margin: 0 auto;
        margin-top: 100px;
    }

    .footer__address,
    .footer__nav,
    .footer__info,
    .footer__social {
        max-width: 100%;
        margin: 0;
        padding: 0;
        align-items: center;
    }

    .footer__info {
        position: absolute;
        bottom: -52%;
    }

    .footer-info__list {
        gap: 20px;
    }

    .footer-menu__list {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer__address-info {
        text-align: center;
    }

    .footer button {
        width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        max-width: 369px;
        bottom: -20%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .footer__address-info {
        position: absolute;
        bottom: -78%;
    }

    .all-doctors {
        padding: 0 0 53px;
    }

    .doctor-page .blog__card {
        display: flex;
        justify-content: start;
    }

    .profile__inner {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .profile__inner-info_title {
        text-align: center;
    }

    .profile__inner-info .secondary-btn {
        width: 100%;
    }

    .doctor__review h3,
    .articles h3 {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .all-services .container {
        max-width: 518px;
    }

    .for-child {
        padding-bottom: 53px;
        padding-top: 0;
    }

    .consult__hero-info {
        border-right: none;
    }

    .consult__hero-grid {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
        gap: 32px;
    }

    .news__btns .primary-btn {
        padding: 16px 56px;
    }

    .news__btns .disabled-btn {
        padding: 16px 62px;
    }

    .hero__review-top {
        flex-direction: column-reverse;
        gap: 24px;
    }
    

}

@media (max-width: 780px) {
    h1 {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    h2 {
        font-size: 22px !important;
        line-height: 32px !important;
        text-align: start !important;
    }

    .breadcrumb.container {
        display: none;
    }

    .back-btn {
        display: block;
        padding-left: 20px;
    }

    .breadcrumb-item.back {
        display: flex;
        align-items: center;
        gap: 26px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 10px 100px;
        width: 100%;
    }

    #show-more-btn {
        margin-top: -333px;
    }

    .hero__inner {
        flex-direction: column-reverse;
    }

    .main__title {
        max-width: 100%;
        margin-top: 38px;
    }

    .hero__img {
        min-width: 320px;
    }

    .hero__search-info {
        padding: 8px;
    }

    .hero .primary-btn,
    .hero .disabled-btn {
        width: 48%;
    }

    .hero__search-btn {
        min-height: 52px;
        border-radius: 8px;
    }

    .hero__search-btn span {
        font-size: 16px;
    }

    .services__inner-right {
        display: none;
    }

    .sercvices button {
        padding: 10px 40px;
    }

    .review__inner {
        flex-direction: column;
    }

    .review__card {
        margin: 0 auto;
    }

    .faq__inner {
        flex-direction: column-reverse;
        position: relative;
    }

    .faq__accordion {
        padding-bottom: 0;
    }

    .faq__info .primary-btn {
        position: absolute;
        bottom: 0;
    }

    .packets__top {
        flex-direction: column;
    }

    .packets__top-item {
        flex-direction: row;
        padding: 16px;
        max-width: 100%;
        justify-content: space-between;
    }

    .packets__top-img img {
        width: 72px;
        height: 72px;
        max-width: fit-content;
    }

    .packets__top-title {
        width: 182px;
    }

    .packets__top-item .primary-btn {
        padding: 10px;
        font-size: 14px;
        width: 115px;
    }

    .packets__bottom {
        flex-direction: column;
    }

    .partners__inner {
        gap: 16px;
    }

    .partners__img:first-child {
        width: 50%;
    }

    .blog__top {
        flex-direction: column;
        gap: 24px;
        align-items: start;
    }

    .blog__cards {
        flex-direction: column;
    }

    .blog__card-img,
    .blog__card-img img {
        width: 100%;
    }

    .blog__card-title {
        min-height: auto;
    }

    .contact-form__inner input {
        max-width: 100%;
    }

    .form-checkbox input[type="checkbox"] {
        margin-left: 0;
        min-width: 22px;
    }

    .footer {
        padding-bottom: 600px;
    }

    .footer__nav {
        width: 300px;
    }

    .footer-menu__list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .doctors__grid,
    .all-services__grid,
    .for-child__grid,
    .news__grid {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
    }

    .doctors__card,
    .for-child__card {
        max-width: 420px;
        width: 100%;
    }

    .doctors__card-bottom button {
        width: auto;
    }

    .doctors__card-geo span {
        width: 12%;
        bottom: 48%;
    }

    .review__textarea {
        flex-direction: column-reverse;
        margin-bottom: 30px;
        align-items: start;
    }

    .review__input {
        flex-direction: column;
        max-width: 100%;
    }

    .review__input input {
        max-width: 100%;
    }

    .doctor__service .swiper-button,
    .articles .swiper-button {
        display: none;
    }

    .doctor__service .swiper-button.mob,
    .articles .swiper-button.mob {
        display: flex;
        justify-content: center;
        position: static;
        margin: 60px 0 20px;
    }

    .doctor-page p {
        font-size: 14px;
    }

    .profile__inner-info_title,
    .doctor__info h2 {
        font-size: 16px !important;
        margin-bottom: 16px;
    }

    .doctor__service-title,
    .doctor__review h3 {
        font-size: 14px !important;
        text-align: left;
        margin-bottom: 16px;
    }

    .doctor__info-top {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 16px;
        gap: 10px;
    }

    .doctor__info-bottom ul li {
        font-size: 14px;
    }

    .services-page .filter-special,
    .services-page .filter-age,
    .service-page .filter-special,
    .service-page .filter-age,
    .service-page .search__block {
        width: 100%;
    }

    .all-services__grid {
        row-gap: 44px;
    }

    .all-services__card {
        max-width: 470px;
    }

    .services-page #show-more-btn {
        margin-top: -160px;
    }

    .service-page #show-more-btn {
        margin-top: -440px;
    }

    .concult__hero-title {
        font-size: 22px;
        line-height: 32px;
        text-align: left;
    }

    .consult__hero-subtitle {
        font-size: 16px;
        line-height: 26px;
        margin: 24px 0;
    }

    .contacts__inner {
        flex-direction: column-reverse;
    }

    .contacts__info {
        background-color: var(--white-color);
        padding: 0 40px;
    }

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

    .contacts__link {
        flex-direction: column;
        gap: 10px;
    }

    .contacts__title {
        margin-top: 24px;
        margin-bottom: 32px;
        text-align: left;
    }

    .login-form .login-title,
    .login-form .login-subtitle {
        text-align: left;
    }

    .news__item {
        padding: 53px 0;
    }

    .news__item-info h3 {
        font-size: 16px;
        line-height: 26px;
    }

    .news__filters {
        flex-direction: column;
        gap: 24px;
        padding: 24px 0;
    }

    .news__filters .search__block,
    .news__filters .search__block .form-input {
        width: 100%;
        max-width: 100%;
    }

    .news__btns .primary-btn,
    .news__btns .disabled-btn {
        width: 49%;
    }

    .news__btns {
        width: 100%;
    }

    .news__title {
        text-align: left;
    }

    .registration-form input,
    .registration-form select {
        width: 100%;
        max-width: 100%;
    }

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

    .registration-subtitle {
        padding: 16px 0;
    }

    .registration__btns {
        flex-direction: column-reverse;
        gap: 16px;
    }

    .registration__btns .disabled-btn {
        width: 100%;
    }

    .hero__review-title {
        text-align: left;
        margin-bottom: 16px;
    }

}

@media (max-width: 580px) {
    .doctors-page .filter-special {
        width: 100%;
    }

    .doctors-page .filter-age {
        width: 80%;
    }
}

@media (max-width: 490px) {

    .primary-btn,
    .secondary-btn,
    .news__btns .disabled-btn {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .hero .primary-btn,
    .hero .disabled-btn {
        padding: 10px 40px;
        width: 47%;
    }

    .hero .primary-btn {
        padding: 10px 18px;
    }

    .specialists__slider .swiper-wrapper {
        overflow-x: visible;
    }

    .specialists__slider .swiper-slide {
        width: 220px !important;
    }

    .specialists .primary-btn {
        margin: 32px auto 0;
    }

    .packets__top-item {
        gap: 10px;
    }

    .profile__inner .swiper-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .profile__inner .swiper-button-next {
        margin-left: 0px;
    }

    .contacts__info {
        padding: 0;
    }

}