:root {
    --bg: #f1f8ed;
    --surface: #ffffff;
    --text: #222222;
    --muted: #454746;
    --accent: #80b849;
    --accent-dark: #649f2a;
    --line: rgba(34, 34, 34, 0.08);
    --shadow: 0 1.25rem 2.5rem rgba(34, 34, 34, 0.08);
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Geologica", sans-serif;
    line-height: 1.2;
}

/*body.menu-open {
    overflow: hidden;
}*/


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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(73.125rem, calc(100% - 16.875rem));
    margin: 0 auto;
    padding: 0;
    max-width: none;
}

.page-home {
    padding-top: 9.375rem;
}

.section {
    padding: 2.5rem 0;
    scroll-margin-top: 9.375rem;
}

.section-title {
    margin: 0 0 2rem;
    color: var(--text);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.section-title--light {
    color: #ffffff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.75rem;
    padding: 0 2rem;
    border: 0;
    border-radius: 999rem;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
}



.btn--accent {
    color: #ffffff;
    background: linear-gradient(116deg, var(--accent) 0%, var(--accent-dark) 100%);
    box-shadow: 0 0.75rem 1.5rem rgba(100, 159, 42, 0.18);
}

.btn--white {
    color: var(--text);
    background: #ffffff;
}
.btn--white:hover{
    background: #454746;
    color: white;
}

.btn--outline {
    color: var(--accent);
    background: transparent;
    border: 0.125rem solid var(--accent);
}

.site-header {
    position: fixed;
    top: 1.25rem;
    left: 0;
    right: 0;
    z-index: 50;
    pointer-events: auto;
}

.site-header__shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 6.25rem;
    padding: 0 0.6rem;
    padding-right: 1.4rem;
    border: 3px solid var(--accent);
    border-radius: 6.25rem;
    background: #ffffff;
    box-shadow: 0 1rem 2rem rgba(34, 34, 34, 0.06);
    pointer-events: auto;
}

.site-brand {
    display: flex;
    width: 5.0125rem;
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.site-brand__text strong {
    display: block;
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-left: 1.5rem;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1;
    font-weight: 300;
}

.site-nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.site-nav__item > a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.site-nav__link {
    position: relative;
}

.site-nav__caret {
    width: 0.4rem;
    height: 0.4rem;
    margin-top: -0.05rem;
    border-right: 0.125rem solid currentColor;
    border-bottom: 0.125rem solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
    flex: 0 0 auto;
}

.site-nav__item--dropdown:hover .site-nav__caret,
.site-nav__item--dropdown:focus-within .site-nav__caret {
    transform: translateY(0.1rem) rotate(225deg);
}

.site-nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    min-width: 18rem;
    padding: 0.75rem;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 1.25rem 2.5rem rgba(34, 34, 34, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
    z-index: 12;
}

.site-nav__dropdown-menu a {
    display: block;
    padding: 0.55rem 1rem;
    border-radius: 0.85rem;
    white-space: normal;
}

.site-nav__dropdown-menu a:after {
    display: none;
}

.site-nav__dropdown-menu a:hover {
    background: rgba(128, 184, 73, 0.08);
}

.site-nav__item--dropdown:hover .site-nav__dropdown-menu,
.site-nav__item--dropdown:focus-within .site-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.header_links{
    display: flex;
    gap: 1rem;
    margin-right: 0.5rem;
    align-items: center;
}
.header_link{
    position: relative;
    width: 2.5rem;
}
.header_link:hover{
    opacity: 0.7;
}

.header_link_count{
    position: absolute;
    top: -0.15rem;
    right: -0.35rem;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: #80B849;
    color: #ffffff;
    font-size: 0.7rem;
    line-height: 1.15rem;
    text-align: center;
    pointer-events: none;
}

.header_link_count.is-hidden{
    display: none;
}
.cart_alert{
    position: fixed;
    right: 1.25rem;
    top: 7rem;
    z-index: 120;
    min-width: 16rem;
    max-width: calc(100vw - 2.5rem);
    padding: 0.9rem 1.1rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow);
    color: var(--text);
    font-weight: 600;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    pointer-events: none;
}
.cart_alert.is-visible{
    transform: translateX(0);
    opacity: 1;
}
.mob_nav_links{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.mob_nav_link{
    position: relative;
    display: inline-flex;
    /*width: 1.9rem;*/
    /*height: 1.9rem;*/
}
.mob_nav_link img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mob_nav_link .header_link_count{
    top: -0.35rem;
    right: -0.45rem;
    transform: scale(0.9);
}
.site-nav a {
    position: relative;
    color: var(--text);
    white-space: nowrap;
}

.site-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.375rem;
    height: 0.125rem;
    background: #80B849;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.25s ease;
}
.site-nav a:hover, .site-nav a.active{
    color: #80B849;
}
.site-nav a:hover:after,
.site-nav a.active:after {
    transform: scaleX(1);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.site-header__socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 0.125rem solid var(--accent);
    border-radius: 50%;
    background: #ffffff;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
}

.site-social img {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
}

.site-header__cta {
    min-height: 3.125rem;
    padding: 0 1.75rem;
    font-size: 1.125rem;
    white-space: nowrap;
}

.site-header__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    border: 0.125rem solid var(--accent);
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.site-header__menu-toggle img {
    width: 2.4rem;
}

.site-header.shadow .site-header__shell {
    box-shadow: 0 1rem 2rem rgba(34, 34, 34, 0.12);
}

.site-header__drawer-overlay {
    position: fixed;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 55;
    background: rgba(0, 0, 0, 0.5);
}

.site-header__drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(71vw, 27.7rem);
    padding: 1.25rem 1.25rem 1.5rem;
        background: var(--bg);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 60;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    overflow-y: auto;
}

.site-header.is-menu-open .site-header__drawer {
    transform: translateX(0);
}

.site-header.is-menu-open .site-header__drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

.site-header__drawer-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.site-header__drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 0.125rem solid var(--accent);
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.site-header__drawer-close img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.site-drawer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: auto 0;
    padding: 1rem 0;
}

.site-drawer-nav a {
    padding: 0.625rem 1rem;
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1.2;
}

.site-drawer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.75rem;
    margin-top: 1.5rem;
    padding: 0 1.5rem;
    border-radius: 999rem;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(116deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.hero {
    padding-top: 0;
    padding-bottom: 1rem;
}

.hero__card {
    position: relative;
    height: 32.9375rem;
    border-radius: 1.875rem;
    overflow: hidden;
    background: #d8d5cf;
    box-shadow: var(--shadow);
}
.certs_list{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.hero__card.white .hero__text *{
    color: white;
}
.hero__media,
.hero__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__media img {
    object-fit: cover;
    object-position: center top;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(268deg, rgba(255, 255, 255, 0) 43%, rgba(255, 255, 255, 0.66) 72%);
}
.hero__overlay.black{
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 40.94%, rgba(0, 0, 0, 0.60) 100%);
}
.hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    max-width: 42rem;
    padding: 2.5rem 2.65rem;
}

.hero__title {
    margin: 0;
    color: var(--text);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero__text p {
    margin: 1.25rem 0 0;
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.2;
}

.hero__btn {
    min-width: 19.8125rem;
}

.service-list {
    display: flex;
    flex-direction: column;
}

.service-card {
    display: grid;
    grid-template-columns: 9.375rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 2.2rem;
    padding: 1.25rem 0;
}

.service-card:not(:last-child) {
    border-bottom: 0.0625rem solid #BBB;
}

.service-card__media {
    width: 9.375rem;
    height: 9.375rem;
    border-radius: 1.875rem;
    overflow: hidden;
    background: #dddddd;
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__title {
    margin: 0 0 0.875rem;
    color: var(--text);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.service-card__text {
    margin: 0;
    max-width: 42rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 300;
}

.service-card__btn {
    min-width: 17.375rem;
}

.why__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 29.75rem;
    align-items: center;
    gap: 2.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 7.625rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
}

.feature-number {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.85;
    background: linear-gradient(95deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.feature-item p {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.why__media {
    position: relative;
    height: 29.875rem;
    border-radius: 1.875rem;
    overflow: hidden;
    background: black;
}
.why__media:hover .why__image img{
    opacity: 0.9;
    transform: scale(1.05);
}
.why__image{
    height: 100%;
}
.why__image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.35s;
}

.why__play_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5.938rem;
}


.cases__panel {
    padding: 2.9rem 2.575rem;
    border-radius: 1.875rem;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
}

.cases__desktop {
    display: block;
}
.cases__desktop .slick-list{
    margin: 0 -10px;
}
.cases__desktop .slick-slide > div{
    padding: 0 10px;
}
.case-card {
    position: relative;
    height: 21.125rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.cases__dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

.cases__dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
}

.cases__dot.is-active {
    width: 1rem;
    border-radius: 999rem;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.team-card {
    display: block;
    position: relative;
    height: 23.063rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #dddddd;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card picture{
    height: 100%;
}
.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.team-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 8.5rem;
    padding: 1.1rem 1rem 1rem;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(16, 16, 16, 0.62) 55%, rgba(0, 0, 0, 0.82) 100%);
    transition: background 0.35s ease, transform 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.team-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 1.1rem 2rem rgba(34, 34, 34, 0.16);
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card:hover .team-card__caption {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(16, 16, 16, 0.78) 48%, rgba(0, 0, 0, 0.92) 100%);
}

.team-card__caption strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.25;
    text-transform: uppercase;
}

.team-card-position {
    margin-top: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.35;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(0.75rem);
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.team-card:hover .team-card-position, .doctor_item:hover .team-card-position {
    max-height: 3.5rem;
    opacity: 1;
    transform: translateY(0);
}
.doctor_item .team-card-position{
    z-index: 2;
    position: relative;
    text-transform: none;
    font-weight: 300;
    font-size: 1.1rem;
}
.certificates__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.certificates__grid a {
    width: 100%;
    height: 26.838rem;
    overflow: hidden;
    display: block;
}

.consult__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36rem;
    overflow: hidden;
    border-radius: 1.875rem;
    background: linear-gradient(93deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.consult__content {
    padding: 2.5rem;
    color: #ffffff;
}

.consult__content .section-title {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.consult__text {
    margin: 0 0 2rem;
    font-weight: 300;
    line-height: 1.2;
    padding-right: 3rem;
}

.consult__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.field {
    display: flex;
    align-items: center;
    min-height: 3.125rem;
    padding: 0 1.25rem;
    border-radius: 999rem;
    background: #ffffff;
}

.field input,
.field textarea {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 1rem;
    line-height: 1.2;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #898989;
}

.consult__policy {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.2;
    color: #ffffff;
    padding-top: 1rem;
}
.consult__policy a{
    color: #ffffff;
    text-decoration: underline;
}
.consult__policy a:hover{
    text-decoration: none;
}
.consult__image {
    min-height: 100%;
    background: #d9e7d0;
    overflow: hidden;
    border-radius: 1.875rem;
}

.site-footer {
    margin-top: 3.1rem;
    padding: 2.4rem 0 2.25rem;
    background: linear-gradient(105deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
}

.site-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.site-footer__brand-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 24rem;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-footer__brand img {
    width: 4.9375rem;
    object-fit: contain;
    flex-shrink: 0;
}

.site-footer__brand-text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0;
}

.site-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.site-footer__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.site-footer__title--right {
    text-align: right;
}

.site-footer__links-block {
    width: calc(100% - 24rem);
    padding-left: 7rem;
    padding-top: 2.5rem;
}

.site-footer__line,
.site-footer__bottom-line {
    width: 100%;
    height: 0.0625rem;
    background: rgba(255, 255, 255, 0.45);
}

.site-footer__line {
    margin-top: 0.6rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 1rem;
    line-height: 1.25;
}

footer {
    color: #ffffff;
}

footer a:hover, footer a.active {
    color: rgba(255,255,255,0.7);
}

.site-footer__socials-block {
    display: flex;
    justify-content: flex-end;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.2;
}

.contact-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.contact-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
}

.contact-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-item__label {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-item__value {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
}

.site-footer__bottom {
    margin-top: 2.1rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    padding-top: 1.5rem;
}
.site-footer__bottom a{
    opacity: 0.7;
}
.site-footer__bottom a:hover{
    opacity: 1;
    color: white;
}
.site-footer__bottom-line {
    margin-bottom: 1.35rem;
}

.site-footer__copyright {
    text-align: right;
    font-size: 1rem;
    line-height: 1.4;
}

.section--desktop-only {
    display: block;
}
.section-title.sm{
    font-size: 1.5rem;
}
.page{
    padding-top: 9.7rem;
}

.service_list_item:not(:last-child){
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 0.6rem;
    margin-bottom: 0.6rem;
}
.service_list_item_img{
    width: 9.4rem;
    height: 9.4rem;
    border-radius: 1rem;
    overflow: hidden;
}
.service_list_item_text{
    width: calc(100% - 9.4rem);
    padding-left: 3rem;
    color: var(--text);
}
.service_list_item_title{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04rem;
}
.service_list_item_anons{
    font-weight: 300;
    margin-top: 1rem;
}
.service_list_item_btns{
    display: flex;
    justify-content: space-between;
}
.service_list_item_btns .btn{
    min-width: unset;
    width: 48%;
    padding: 0;
    min-height: 3.2rem;
}
.btn--black{
    background: #454746;
    color: white!important;
}
.btn--black:hover{
    background: #6e6d6d;
}
.service_preims_video{
    border-radius: 2rem;
    height: 37.2rem;
    overflow: hidden;
    display: block;
    background: black;
    position: relative;
}
.service_preims_video > img{
    opacity: 0.8;
    transition: all 0.35s;
}
.service_preims_video:hover > img{
    opacity: 0.9;
    transform: scale(1.05);
}
#advantages .section-title{
    margin-bottom: 2.5rem;
}
.service_preims_list_item{
    display: flex;
    align-items: center;
}
.service_preims_list_item_img{
    width: 4.938rem;
}
.service_preims_list_item_text{
    width: calc(100% - 4.938rem);
    padding-left: 1.4rem;
    color: var(--text);
}
.service_preims_list_item_title{
    font-size: 1.675rem;
    font-weight: 700;
}
.service_preims_list_item_anons{
    margin-top: 0.8rem;
    font-size: 1.15rem;
    font-weight: 300;
}
.service_preims_list{
    display: flex;
    flex-direction: column;
    gap: 2.9rem;
}
.page .hero {
    padding-bottom: 2.8rem;
}
.border30{
    border-radius: 30px;
    overflow: hidden;
}
.about2_text .content{
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 2.1rem;
    color: var(--text);
}
.about2_text .content h3{
    font-size: 2rem;
    margin-bottom: 1.6rem;
}
.about2_btn .btn{
    min-width: 17.4rem;
}

.blog_list{
    margin-bottom: -3rem;
}
.blog_row > .mb_30{
    margin-bottom: 3rem;
}
.blog_item{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.blog_item:hover .blog_img img{
    transform: scale(1.05);
}
.blog_img{
    border-radius: 20px;
    overflow: hidden;
    height: 16.5rem;
}
.blog_img img{
    transition: all 0.35s;
}
.blog_top{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #454746;
}
.blog_title{
    font-size: 1.5rem;
    font-weight: 700;
}
.blog_anons{
    font-weight: 300;
}
.blog_btn{
    background: linear-gradient(95deg, #80B849 -1.28%, #649F2A 100%);
    color: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    font-size: 1.1rem;
    font-weight: 700;
    width: 80%;
    padding: 0.85rem 0;
    margin-top: 1.5rem;
    transition: all 0.35s;
}
.blog_item:hover .blog_btn{
    background: linear-gradient(0deg, #80B849 -1.28%, #649F2A 100%);
}
.blog_item:hover .blog_btn > img{
    transform: translateX(-3px);
}
.blog_btn img {
    width: 1.2rem;
    transition: all 0.35s;
}
.blog_page_content{
    color: #454746;
}
.not_upper{
    text-transform: unset;
}
.block_back{
    margin-top: 2rem;
}
.big_content{
    font-size: 1.25rem;
    font-weight: 300;
    width: 53rem;
    margin-bottom: 2.2rem;
}
.doctor_item{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.doctor_item:hover .btn{
    background: #80B849;
    color: white;
    transform: none;
}
.doctor_item .btn{
    min-height: 3.2rem;
}
.doctor_item:hover .doctor_img img{
    transform: scale(1.05);
}
.doctor_img{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.2rem;
    padding-bottom: 0.8rem;
    border-radius: 20px;
    color: white;
    overflow: hidden;
    position: relative;
    height: 23.1rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    line-height: 1.3;
}
.doctor_img:after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 58.16%, rgba(0, 0, 0, 0.60) 99.71%);
}
.doctor_title{
    position: relative;
    z-index: 2;
}
.ab_img{
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s;
}
.doctors_row{
    margin-bottom: -2rem;
}
.doctors_row > .mb_30{
    margin-bottom: 2rem;
}
b, strong{
    font-weight: 700;
}
.doctor_stage{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.d_cert_row .content{
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text);
}
.doctor_content .content{
    font-weight: 300;
    color: var(--text);
}
.doctor_page_btn{
    margin-top: 2rem;
}
.doctor_page_btn .btn{
    min-width: 20rem;
}
.doctor_cert_box{
    border: 5px solid #80B849;
    padding: 1rem;
    display: block;
}
.size20{
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 300;
}
.service1_row.reverse{
    flex-direction: row-reverse;
}
/*.service_block2:not(.last){*/
/*    padding-bottom: 0;*/
/*}*/
/*.service_block2 .service1_row{*/
/*    align-items: center;*/
/*}*/
.page .hero__card{
    height: auto;
}
.section-title.big{
    font-size: 2.2rem;
    margin-bottom: 2.6rem;
}
.cat_list{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.cat_list a{
    border-radius: 100px;
    border: 1px solid #BBB;
    font-weight: 300;
    font-size: 1.1rem;
    padding: 0.625rem 1.7rem;
}
.cat_list a:hover, .cat_list a.active{
    /*background: #E5A7BF;*/
    color: #FFFFFF;
}

.cat_list a[data-id="3"]:hover, .cat_list a[data-id="3"].active{
    background: #80B849;
}
.cat_list a[data-id="4"]:hover, .cat_list a[data-id="4"].active{
    background: #60B4A2;
}
.cat_list a[data-id="5"]:hover, .cat_list a[data-id="5"].active{
    background: #699EB4;
}
.cat_list a[data-id="6"]:hover, .cat_list a[data-id="6"].active{
    background: #B1CA51;
}
.cat_list a[data-id="7"]:hover, .cat_list a[data-id="7"].active{
    background: #D799B9;
}
.cat_list a[data-id="8"]:hover, .cat_list a[data-id="8"].active{
    background: #DFC47F;
}
.cat_list a[data-id="9"]:hover, .cat_list a[data-id="9"].active{
    background: #DC9D5F;
}
.cat_list a[data-id="10"]:hover, .cat_list a[data-id="10"].active{
    background: #A2B1BD;
}
.prod_item{
    border: 2px solid #BBB;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    height: 100%;
    position: relative;
}
.prod_item_link{
    display: block;
    color: inherit;
}
button, input, textarea{
    font-family: "Geologica", sans-serif;
}
.prod_img{
    border-radius: 10px;
    overflow: hidden;
    height: 16.563rem;
    position: relative;
    background: white;
}
.cart_success_box{
    border-radius: 16px;
    background: white;
    padding: 2rem;
}
.cart_success_box .btn{
    min-width: 20rem;
    margin-top: 1rem;
}
.fav_btn{
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 1.5rem;
    background: transparent;
    cursor: pointer;
}
.fav_btn img{
    display: block;
    width: 100%;
}
.fav_btn .active{
    display: none;
}
.fav_btn.active .in_active{
    display: none;
}
.fav_btn.active .active{
    display: block;
}
.catalog_top_row{
    margin-bottom: 2.3rem;
}
.prod_title{
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
}
.prod_wheights{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}
.prod_wheights button{
    font-size: 0.875rem;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    padding: 0.3rem 0.6rem;
    color: #222;
}
.prod_wheights button.active{
    background: #649F2A;
    color: white;
}
.prod_item .prod_price{
    font-size: 1.5rem;
}
.tabs_body_item:not(.factive){
    display: none;
}
.prod_price{
    color: black;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.prod_btn{
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 2.8rem;
    border-radius: 30px;
    width: 100%;
}
.prod_full_link{
    border: 1px solid #454746;
    color: #454746;
}
.prod_add{
    background: linear-gradient(95deg, #80B849 -1.28%, #649F2A 100%);
    color: white;
}
.catalog_seo .content{
    font-weight: 300;
}
.empty_products{
    text-align: center;
    font-weight: 500;
    border-radius: 16px;
    border: 1px solid #b64646;
    background: #fec0c0;
    padding: 1rem;
    color: #613030;
    margin-bottom: 1rem;
}
.pt-3{
    padding-top: 2rem;
}
.range_title{
    font-weight: 300;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.range_slider{
    margin-left: 4.6rem;
}
.range_out{
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 0.8rem;
}
.range_pad{
    padding: 0 0.5rem;
}
.card_slider_top{
    border-radius: 30px;
    border: 1px solid #BBB;
    background: white;
    overflow: hidden;
}
.card_slider_top a{
    height: 33.375rem;
    display: block;
}

.card_info .prod_wheights {
    margin-bottom: 1.4rem;
}
.card_info .prod_price {
    margin-bottom: 1.3rem;
}
.counter{
    width: max-content;
    display: flex;
    border-radius: 100px;
    border: 1px solid #BBB;
    overflow: hidden;
    margin-bottom: 1.2rem;
}
.counter button{
    width: 2.2rem;
    background: transparent;
    text-align: center;
    height: 2.4rem;
    font-size: 1.35rem;
    color: #222;
}
.counter input{
    font-size: 1.25rem;
    text-align: center;
    width: 2rem;
    background: transparent;
}
.card_add{
    min-width: 19rem;
}
.card_fav{
    border-radius: 50%;
    border: 3px solid #80B849;
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-left: 1.3rem;
}
.card_fav .active{
    display: none;
}
.card_fav.active .active{
    display: block;
}
.card_fav.active .in_active{
    display: none;
}
.card_fav img{
    display: block;
    width: 1.5rem;
}
.tabs {
    margin-top: 2.5rem;
}
.tabs_top a{
    border-radius: 30px;
    padding: 0.65rem 1.4rem;
    font-size: 1.15rem;
    font-weight: 300;
}
.tabs_top a:hover, .tabs_top a.active{
    background: #649F2A;
    color: white;
}

.tabs_body {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
}
.form_item_title{
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.form-group{
    margin-bottom: 0.5rem;
}
.form-control{
    width: 100%;
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    border-radius: 100px;
    border: 1px solid #BBB;
    height: 3.125rem;
    padding: 0 1rem;
}
.form-control::placeholder{
    color: #BBB;
}
.form_item{
    margin-bottom: 2rem;
}
.lables_flex{
    gap: 1rem;
}
.lables_flex label{
    border-radius: 16px;
    border: 1px solid #BBB;
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    gap: 0.5rem;
    font-weight: 600;
    background: white;
    min-width: 42%;
}
.lables_flex label input{
    filter: grayscale(1);
}
.cart_item{
    display: flex;
}
.cart_item_img{
    border: 1px solid #BBB;
    background: white;
    border-radius: 10px;
    width: 8rem;
    height: 8rem;
    overflow: hidden;
}
.cart_item_text{
    width: calc(100% - 8rem);
    padding-left: 1rem;
    position: relative;
}
.cart_item_title{
    font-weight: 600;
    padding-right: 3rem;
    display: block;
}
.cart_item_weight{
    margin-top: 0.8rem;
    opacity: 0.7;
    font-weight: 300;
}
.counter_cart_flex{
    margin-top: 1rem;
}
.counter_cart_flex .counter, .counter_cart_flex .prod_price{
    margin: 0;
}
.counter_cart_flex .prod_price{
    font-size: 1.6rem;
}
.cart_remove{
    position: absolute;
    right: 0;
    top: 0;
    width: 1.5rem;
}
.cart_items{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.w300{
    font-weight: 300;
}
.text-page{
    padding-bottom: 1rem;
}
.cart_total_box{
    margin-top: 2rem;
}
.cart_total span{
    font-weight: 700;
    font-size: 2rem;
}
.cart_total{
    margin-bottom: 1.5rem;
}
.phone_list{
    display: flex;
    flex-direction: column;
}
.modal.call_modal .modal__block{
    width: min(73.125rem, calc(100% - 16.875rem));
    padding: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
}
.auth_page{
    padding-bottom: 4rem;
}
.auth_box{
    max-width: 34rem;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid #BBB;
    background: #FFF;
    box-shadow: 0 20px 60px rgba(95, 76, 56, 0.08);
}
.auth_box--wide{
    max-width: 100%;
}
.auth_head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}
.auth_subtitle{
    margin-top: 0.5rem;
    color: #6A625B;
    font-weight: 300;
    line-height: 1.55;
}
.auth_form{
    margin-top: 1.6rem;
}
.auth_submit{
    width: 100%;
    margin-top: 0.5rem;
}
.auth_footer{
    margin-top: 1.2rem;
    text-align: center;
    font-weight: 300;
}
.auth_footer a{
    color: #649F2A;
    font-weight: 600;
}
.auth_alert{
    border-radius: 20px;
    padding: 1rem 1.2rem;
    background: #FFF2F2;
    color: #A53D3D;
    margin-top: 1.4rem;
}
.auth_error{
    color: #A53D3D;
    font-size: 0.95rem;
    margin-top: 0.45rem;
    padding-left: 1rem;
}
.form-control.is-error{
    border-color: #D06D6D;
}
.auth_profile_grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.auth_profile_card{
    border-radius: 22px;
    padding: 1.25rem;
    background: #F8F5F1;
    min-height: 8rem;
}
.auth_profile_label{
    color: #7F746A;
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
}
.auth_profile_value{
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.45;
    word-break: break-word;
}
.auth_actions{
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.auth_logout{
    min-width: 10rem;
    text-align: center;
}
@media (max-width: 991px){
    .auth_head{
        flex-direction: column;
    }
    .auth_profile_grid{
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px){
    .auth_box{
        padding: 1.4rem;
        border-radius: 20px;
    }
}
.account_orders{
    margin-top: 2.5rem;
}
.account_orders_list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.account_order_card{
    border: 1px solid #DDD4CB;
    border-radius: 24px;
    padding: 1.35rem;
    background: #FFF;
}
.account_order_head{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.account_order_title{
    font-size: 1.1rem;
    font-weight: 700;
}
.account_order_meta{
    margin-top: 0.4rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: #7F746A;
    font-size: 0.95rem;
}
.account_order_total{
    font-size: 1.15rem;
    font-weight: 700;
    white-space: nowrap;
}
.account_order_products{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.account_order_product{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid #F0E9E2;
    padding-top: 0.65rem;
}
.account_order_product_title{
    font-weight: 600;
}
.account_order_product_title span{
    display: inline-block;
    margin-left: 0.4rem;
    font-weight: 300;
    color: #7F746A;
}
.account_order_product_meta{
    color: #7F746A;
    white-space: nowrap;
}
.account_order_repeat{
    margin-top: 1rem;
}
@media (max-width: 767px){
    .account_order_head,
    .account_order_product{
        flex-direction: column;
    }
    .account_order_total,
    .account_order_product_meta{
        white-space: normal;
    }
}

.hero__text .content{
    font-size: 1.15rem;
    margin: 1.25rem 0 0;
    color: var(--text);
    font-weight: 300;
    line-height: 1.2;
}
.hero__text .content p{
    margin: 0;
    margin-bottom: 1rem;
    font-size: inherit;
    font-weight: 300;
    line-height: 1.2;
}