@font-face {
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Regular.woff") format("woff"),
         url("../fonts/Poppins-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Medium.woff") format("woff"),
         url("../fonts/Poppins-Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Bold.woff") format("woff"),
         url("../fonts/Poppins-Bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}

:root {
    --site-max-width: 1440px;
    --content-max-width: 920px;

    --radius-xs: 10px;
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 999px;

    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.22);
    --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.28);

    --surface-1: var(--css_header_background_color);
    --surface-2: var(--css_content_background_color);
    --surface-3: rgba(255, 255, 255, 0.04);
    --surface-4: rgba(255, 255, 255, 0.06);

    --border-soft: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.16);

    --text-main: var(--css_main_text_color);
    --text-heading: var(--css_main_heading_color);
    --text-muted: color-mix(in srgb, var(--css_main_text_color) 72%, transparent);
    --text-muted-strong: color-mix(in srgb, var(--css_main_text_color) 85%, transparent);

    --header-bg: color-mix(in srgb, var(--css_header_background_color) 82%, transparent);
    --header-link: var(--css_header_link_color);

    --main-bg: var(--css_main_background_color);
    --main-link: var(--css_main_link_color);
    --main-heading: var(--css_main_heading_color);

    --main-btn-bg: var(--css_main_primary_button_background_color);
    --main-btn-text: var(--css_main_primary_button_text_color);
    --main-btn-secondary-bg: var(--css_main_primary_second_button_background_color);
    --main-btn-secondary-text: var(--css_main_primary_second_button_text_color);

    --banner-bg: var(--css_banner_background_color);
    --banner-title: var(--css_banner_title_color);
    --banner-text: var(--css_banner_text_color);
    --banner-btn-bg: var(--css_banner_button_background_color);
    --banner-btn-text: var(--css_banner_button_text_color);

    --content-bg: var(--css_content_background_color);
    --content-link: var(--css_content_link_color);
    --content-heading: var(--css_content_heading_color);
    --content-text: var(--css_content_text_color);
    --content-btn-bg: var(--css_content_primary_button_background_color);
    --content-btn-text: var(--css_content_primary_button_text_color);
    --content-btn-secondary-bg: var(--css_content_primary_second_button_background_color, rgba(255,255,255,0.06));
    --content-btn-secondary-text: var(--css_content_primary_second_button_text_color);
    --content-table-border: var(--css_content_table_border_color);
    --content-table-head: var(--css_content_table_header_background_color);
    --content-table-row-even: var(--css_content_table_tr_paired_lines_background_color);
    --content-table-row-odd: var(--css_content_table_tr_unpaired_lines_background_color);

    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 20px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 88px;
    --space-10: 120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul[class],
ol[class] {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:not([class]) {
    color: var(--content-link);
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 0.08em;
}

a:not([class]):hover {
    text-decoration-thickness: 0.12em;
}

.no-scroll {
    overflow: hidden;
}

body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.65;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--banner-bg) 26%, transparent) 0%, transparent 38%),
        radial-gradient(circle at top right, color-mix(in srgb, var(--main-btn-bg) 14%, transparent) 0%, transparent 28%),
        linear-gradient(180deg, color-mix(in srgb, var(--main-bg) 94%, #000 6%) 0%, var(--main-bg) 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    color: var(--main-heading);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.2rem, 5vw, 6.2rem);
}

h2 {
    font-size: clamp(2.8rem, 3.2vw, 4rem);
}

h3 {
    font-size: clamp(2rem, 2.2vw, 2.6rem);
}

h4 {
    font-size: 1.9rem;
}

p + p {
    margin-top: 1em;
}

.xsebb3rdvsc {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.x7sv61y4iul {
    width: min(100%, var(--site-max-width));
    margin-inline: auto;
    padding-inline: 16px;
}

@media (min-width: 768px) {
    .x7sv61y4iul {
        padding-inline: 24px;
    }
}

@media (min-width: 1280px) {
    .x7sv61y4iul {
        padding-inline: 32px;
    }
}

.xpyvs9l31hj {
    padding-top: 92px;
}

@media (min-width: 768px) {
    .xpyvs9l31hj {
        padding-top: 108px;
    }
}

.xjhng8ar11c {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: var(--header-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-soft);
}

.xfvf3wvqpg3 {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 768px) {
    .xfvf3wvqpg3 {
        min-height: 88px;
    }
}

.x7u5ejss25u,
.xehdllb6gnu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.xyjq6nvjaw8 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    background: var(--surface-3);
    color: var(--header-link);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.xyjq6nvjaw8 span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.xyjq6nvjaw8:hover {
    transform: translateY(-1px);
    border-color: var(--border-strong);
    background: var(--surface-4);
}

.xophofutgo9 {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.xy4ii3bbdfy {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--css_header_background_color) 70%, white 6%);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.xy4ii3bbdfy img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.x3k3lb3qh79 {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--header-link);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.xehdllb6gnu {
    margin-left: auto;
}

.x6gv201q4i4 {
    position: relative;
    z-index: 65;
    flex: 0 0 auto;
}

.x7mc5m717ns {
    min-width: 74px;
    min-height: 44px;
    padding: 0 34px 0 14px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    cursor: pointer;
    user-select: none;
    color: var(--css_header_primary_second_button_text_color);
    background: var(--css_header_primary_second_button_background_color);
    border: 1px solid transparent;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.x7mc5m717ns::-webkit-details-marker {
    display: none;
}

.x7mc5m717ns::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.25s ease;
}

.x6gv201q4i4[open] .x7mc5m717ns::after {
    transform: translateY(-35%) rotate(225deg);
}

.x6gv201q4i4[open] .x7mc5m717ns,
.x7mc5m717ns:hover {
    color: var(--css_header_primary_button_text_color);
    background: var(--css_header_primary_button_background_color);
}

.xo034kikclw {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 100%;
    display: grid;
    gap: 4px;
    padding: 6px;
    border-radius: 18px;
    background: var(--css_header_background_color);
    border: 1px solid var(--css_header_link_color);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.x6gv201q4i4[open] .xo034kikclw {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.xr9yn150d8e {
    min-height: 36px;
    min-width: 64px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--css_header_link_color);
    background: transparent;
    border: 1px solid transparent;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.xr9yn150d8e:hover,
.xr9yn150d8e:focus-visible {
    color: var(--css_header_primary_second_button_text_color);
    background: var(--css_header_primary_second_button_background_color);
    outline: none;
}

.xr9yn150d8e.is-current {
    color: var(--css_header_primary_button_text_color);
    background: var(--css_header_primary_button_background_color);
}

.xu0qwk4t52k {
    min-height: 48px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.xu0qwk4t52k:hover {
    transform: translateY(-1px);
}

.xswnufze9zz {
    color: var(--css_header_primary_second_button_text_color);
    background: var(--css_header_primary_second_button_background_color);
    border: 1px solid var(--border-soft);
}

.xnxi8pwicxy {
    color: var(--css_header_primary_button_text_color);
    background: var(--css_header_primary_button_background_color);
    border: 1px solid transparent;
    box-shadow: 0 14px 32px color-mix(in srgb, var(--css_header_primary_button_background_color) 34%, transparent);
}

@media (max-width: 767px) {
    .xehdllb6gnu .xswnufze9zz,
    .xehdllb6gnu .xnxi8pwicxy {
        display: none;
    }

    .xehdllb6gnu .x6gv201q4i4 {
        display: none;
    }

    .x3k3lb3qh79 {
        max-width: 150px;
        font-size: 1.5rem;
    }

    .xu0qwk4t52k {
        padding-inline: 16px;
    }
}

.x2nk30lljbc {
    position: fixed;
    inset: 0;
    z-index: 39;
    background: rgba(5, 8, 16, 0.68);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.x2nk30lljbc.is-active {
    opacity: 1;
    visibility: visible;
}

.xppyex3qdta {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    width: min(92vw, 420px);
    height: 100vh;
    transform: translateX(-104%);
    transition: transform 0.32s ease;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--css_header_background_color) 98%, white 2%) 0%, var(--css_header_background_color) 100%);
    border-right: 1px solid var(--border-soft);
    box-shadow: var(--shadow-lg);
}

.xppyex3qdta.is-active {
    transform: translateX(0);
}

.x9q9y8fsg9r {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.xl0htf7uyon {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.xdmng3d92lv {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.xdmng3d92lv img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--surface-3);
    border: 1px solid var(--border-soft);
    padding: 8px;
}

.xxlo0cr9m9j {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.xxlo0cr9m9j strong,
.xxlo0cr9m9j span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xxlo0cr9m9j strong {
    color: var(--css_header_link_color);
    font-size: 1.6rem;
}

.xxlo0cr9m9j span {
    color: color-mix(in srgb, var(--css_header_link_color) 72%, transparent);
    font-size: 1.2rem;
    margin-top: 3px;
}

.xoxhz7m6r79 {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    background: var(--surface-3);
    color: var(--css_header_link_color);
    border: 1px solid var(--border-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.xoxhz7m6r79:hover {
    transform: rotate(90deg);
    background: var(--surface-4);
}

.xm6b6l84bbg {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-right: 4px;
}

.xm6b6l84bbg::-webkit-scrollbar {
    width: 6px;
}

.xm6b6l84bbg::-webkit-scrollbar-thumb {
    background: var(--surface-4);
    border-radius: 999px;
}

.x37kgjxaj9j {
    display: none;
}

@media (max-width: 767px) {
    .x37kgjxaj9j {
        display: block;
        margin-top: 14px;
    }

    .x37kgjxaj9j .x6gv201q4i4 {
        width: 100%;
    }

    .x37kgjxaj9j .x7mc5m717ns {
        width: 100%;
    }

    .x37kgjxaj9j .xo034kikclw {
        left: 0;
        right: 0;
        top: auto;
        bottom: calc(100% + 8px);
        transform: translateY(4px);
        max-height: min(45vh, 260px);
        overflow-y: auto;
    }

    .x37kgjxaj9j .x6gv201q4i4[open] .xo034kikclw {
        transform: translateY(0);
    }
}

.x5te7enb8v1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 10px;
}

.xxs7280s1we {
    min-height: 50px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 600;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.xxs7280s1we:hover {
    transform: translateY(-1px);
}

.xpxqwf2p02d {
    color: var(--css_header_primary_second_button_text_color);
    background: var(--css_header_primary_second_button_background_color);
    border: 1px solid var(--border-soft);
}

.xc3zob8nqqm {
    color: var(--css_header_primary_button_text_color);
    background: var(--css_header_primary_button_background_color);
}

.xbl45ah14ke {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(58px, 1fr));
    gap: 8px;
    margin-top: 18px;
    padding: 10px;
    border-radius: 18px;
    background: var(--css_header_background_color);
    border: 1px solid var(--css_header_link_color);
}

.xvq6ywyidfq {
    min-width: 52px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--css_header_link_color);
    border: 1px solid currentColor;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.xvq6ywyidfq:hover,
.xvq6ywyidfq:focus-visible {
    color: var(--css_header_primary_second_button_text_color);
    background: var(--css_header_primary_second_button_background_color);
    border-color: transparent;
    outline: none;
}

.xvq6ywyidfq.is-current {
    color: var(--css_header_primary_button_text_color);
    background: var(--css_header_primary_button_background_color);
    border-color: transparent;
}

.xppyex3qdta .x39h0vdcd7f,
.xppyex3qdta .x39h0vdcd7f[class] {
    margin: 0;
    padding: 0;
    border: 0;
}

.xppyex3qdta .menu__category-item + .menu__category-item,
.xppyex3qdta .x39h0vdcd7f + .x39h0vdcd7f {
    margin-top: 10px;
}

.xppyex3qdta .menu__category-item details,
.xppyex3qdta .menu__category-item summary,
.xppyex3qdta .xw9ysg56777 {
    border-radius: 18px;
}

.xppyex3qdta .menu__category-item details {
    background: transparent;
    border: 1px solid var(--border-soft);
    overflow: hidden;
}

.xppyex3qdta .menu__category-item details[open] {
    background: var(--surface-3);
}

.xppyex3qdta .menu__category-item summary {
    min-height: 56px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    color: var(--css_header_link_color);
    list-style: none;
}

.xppyex3qdta .menu__category-item summary::-webkit-details-marker {
    display: none;
}

.xppyex3qdta .menu__category-item summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: calc(50% - 8px);
    opacity: 0.72;
    transition: transform 0.25s ease;
}

.xppyex3qdta .menu__category-item details[open] summary::after {
    transform: rotate(225deg);
    top: calc(50% - 2px);
}

.xppyex3qdta .menu__category-item summary span,
.xppyex3qdta .xsbigiuso25 {
    color: inherit;
    font-size: 1.45rem;
    font-weight: 600;
}

.xppyex3qdta .menu__category-item summary svg,
.xppyex3qdta .xw9ysg56777 svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.xppyex3qdta .menu__category-item details > div {
    padding: 0 10px 10px;
}

.xppyex3qdta .xw9ysg56777 {
    min-height: 46px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: color-mix(in srgb, var(--css_header_link_color) 82%, transparent);
    font-size: 1.35rem;
}

.xppyex3qdta .xw9ysg56777:hover,
.xppyex3qdta .menu__category-item summary:hover {
    background: var(--surface-4);
    color: var(--css_header_link_color);
}

.xppyex3qdta .menu__subcategory-list[class] {
    padding: 8px 0 4px 34px;
}

.xppyex3qdta .menu__subcategory-item + .menu__subcategory-item {
    margin-top: 6px;
}

.xppyex3qdta .menu__subcategory-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    color: color-mix(in srgb, var(--css_header_link_color) 72%, transparent);
    font-size: 1.25rem;
}

.xppyex3qdta .menu__subcategory-link:hover {
    color: var(--css_header_link_color);
}

.xu3kmmc6cu8 {
    padding: 18px 0 28px;
}

@media (min-width: 768px) {
    .xu3kmmc6cu8 {
        padding: 30px 0 44px;
    }
}

.x75r9vldrru {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 24px;
    align-items: center;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--banner-bg) 55%, white 8%) 0%, transparent 52%),
        linear-gradient(135deg, color-mix(in srgb, var(--banner-bg) 88%, black 12%) 0%, color-mix(in srgb, var(--banner-bg) 64%, var(--css_header_background_color) 36%) 100%);
    border: 1px solid color-mix(in srgb, var(--banner-bg) 50%, white 12%);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.x75r9vldrru::before {
    content: "";
    position: absolute;
    inset: auto -10% -30% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--banner-btn-bg) 30%, transparent);
    filter: blur(60px);
    z-index: -1;
}

.xcwcf25z39y {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
}

.xwsggfqyb3i {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--banner-text);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.xn64guc37wl {
    color: var(--banner-title);
}

.xxf8uufrtme {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.xz5xxw8a3wf {
    min-height: 54px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.xz5xxw8a3wf:hover {
    transform: translateY(-2px);
}

.xyonviclpfx {
    color: var(--banner-btn-text);
    background: var(--banner-btn-bg);
    box-shadow: 0 16px 34px color-mix(in srgb, var(--banner-btn-bg) 40%, transparent);
}

.xlx72huiff9 {
    color: var(--banner-text);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.xhft742w580 {
    position: relative;
}

.x8g9u2w2lec {
    display: block;
    width: 100%;
}

.xhyyezi0mjd {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 10px);
    background: rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
    .x75r9vldrru {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 36px;
        padding: 34px;
    }

    .xhyyezi0mjd {
        min-height: 420px;
    }
}

.x221jyqftdz {
    padding: 26px 0;
}

@media (min-width: 768px) {
    .x221jyqftdz {
        padding: 40px 0;
    }
}

.x2ov0789h7g {
    margin-bottom: 28px;
}

.xp6zf2dqcj1 {
    text-align: center;
}

.section-head__label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.xwmcpbejhin {
    margin-inline: auto;
}

.xpoqg9335mv {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .xpoqg9335mv {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .xpoqg9335mv {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (min-width: 1320px) {
    .xpoqg9335mv {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.xxuhdhy34jz {
    height: 100%;
}

.xk3ir0p5zz6 {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(180deg, color-mix(in srgb, var(--content-bg) 86%, white 3%) 0%, color-mix(in srgb, var(--content-bg) 94%, black 6%) 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.xk3ir0p5zz6:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}

.xn8d3wbecbr {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10.1;
    background: color-mix(in srgb, var(--content-bg) 78%, black 22%);
}

.xn8d3wbecbr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.xk3ir0p5zz6:hover .xn8d3wbecbr img {
    transform: scale(1.06);
}

.xjub057e3em {
    padding: 18px;
    display: grid;
    gap: 10px;
    text-align: left;
}

.x5dtahje4ie {
    color: var(--content-heading);
    font-size: 1.85rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.xzllem24nk3 {
    color: color-mix(in srgb, var(--content-text) 75%, transparent);
    font-size: 1.35rem;
    line-height: 1.45;
    min-height: 1.45em;
}

.x4ek13gxl1e {
    margin-top: 4px;
    min-height: 42px;
    padding: 0 16px;
    width: fit-content;
    max-width: 100%;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--main-btn-bg);
    color: var(--main-btn-text);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--main-btn-bg) 28%, transparent);
}

.x2le1jfh77o .x4ek13gxl1e {
    background: var(--content-btn-bg);
    color: var(--content-btn-text);
}

.xqcb9457rbs {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.xz140tfgypb {
    min-height: 54px;
    padding: 0 26px;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--main-btn-secondary-bg);
    color: var(--main-btn-secondary-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.xz140tfgypb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.xt1lvxoz5k1 {
    overflow: hidden;
}

.image-slider-section {
    --gap: 18px;
    --max-per-view: 4;
    --img-w: 260px;
    --img-h: 148px;
}

.x73o9utxgzd.xecsh2jdgf0 {
    position: relative;
}

.slider__viewport {
    overflow: hidden;
    outline: none;
}

.slider__track {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--gap);
    align-items: stretch;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px;
    margin: 0;
    list-style: none;
    scrollbar-width: none;
}

.slider__track::-webkit-scrollbar {
    display: none;
}

.x242i5oowqn {
    flex-shrink: 0;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.x242i5oowqn img {
    width: var(--img-w);
    height: var(--img-h);
    padding: 24px;
    object-fit: contain;
    border-radius: 24px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--content-bg) 82%, white 3%) 0%, color-mix(in srgb, var(--content-bg) 94%, black 6%) 100%);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
}

.xgttj4lkxgt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    background: color-mix(in srgb, var(--content-bg) 78%, black 22%);
    color: var(--content-text);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.xgttj4lkxgt:hover {
    background: color-mix(in srgb, var(--content-bg) 62%, black 38%);
    border-color: var(--border-strong);
}

.xgttj4lkxgt:focus-visible {
    outline: 2px solid var(--main-link);
    outline-offset: 2px;
}

.slider__btn--prev {
    left: 0;
}

.slider__btn--next {
    right: 0;
}

.xecsh2jdgf0::before,
.xecsh2jdgf0::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    pointer-events: none;
    z-index: 1;
}

.xecsh2jdgf0::before {
    left: 0;
    background: linear-gradient(to right, var(--main-bg), transparent);
}

.xecsh2jdgf0::after {
    right: 0;
    background: linear-gradient(to left, var(--main-bg), transparent);
}

@media (max-width: 599px) {
    .image-slider-section {
        --max-per-view: 1;
        --img-w: min(100vw - 64px, 320px);
        --img-h: 150px;
    }

    .xgttj4lkxgt {
        width: 42px;
        height: 42px;
    }
}

@media (min-width: 600px) and (max-width: 991px) {
    .image-slider-section {
        --max-per-view: 2;
        --img-w: 280px;
        --img-h: 160px;
    }
}

@media (min-width: 992px) {
    .image-slider-section {
        --max-per-view: 4;
        --img-w: 280px;
        --img-h: 164px;
    }
}

.xhqsfggabru {
    padding-top: 34px;
    padding-bottom: 34px;
}

.xw966rndq12 {
    margin-inline: auto;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--content-bg) 86%, white 2%) 0%, color-mix(in srgb, var(--content-bg) 96%, black 4%) 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.x75vja7knqg {
    padding: 28px 22px 0;
    text-align: center;
}

.x51tjifu5a7 {
    margin-left: auto;
    margin-right: auto;
}

.x51tjifu5a7 {
    color: var(--content-heading);
}

.xz42ke1ofqr {
    margin: 0 auto;
    padding: 22px 22px 30px;
    color: var(--content-text);
    text-align: left;
    font-size: 1.7rem;
    line-height: 1.82;
}

.xz42ke1ofqr h1,
.xz42ke1ofqr h2,
.xz42ke1ofqr h3,
.xz42ke1ofqr h4 {
    color: var(--content-heading);
    font-weight: 700;
    line-height: 1.2;
}

.xz42ke1ofqr h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 2vw, 2.5rem);
}

.xz42ke1ofqr h2 {
    margin-top: 44px;
    margin-bottom: 16px;
    font-size: clamp(2.3rem, 2.5vw, 3rem);
}

.xz42ke1ofqr h3 {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: clamp(2rem, 2vw, 2.4rem);
}

.xz42ke1ofqr h4 {
    margin-top: 26px;
    margin-bottom: 12px;
    font-size: 1.9rem;
}

.xz42ke1ofqr p,
.xz42ke1ofqr ul,
.xz42ke1ofqr ol,
.xz42ke1ofqr table,
.xz42ke1ofqr .o-table__wrap,
.xz42ke1ofqr blockquote,
.xz42ke1ofqr figure {
    margin-top: 0;
    margin-bottom: 18px;
}

.xz42ke1ofqr ul,
.xz42ke1ofqr ol {
    padding-left: 24px;
}

.xz42ke1ofqr li + li {
    margin-top: 8px;
}

.xz42ke1ofqr strong {
    color: var(--content-heading);
    font-weight: 700;
}

.xz42ke1ofqr a {
    color: var(--content-link);
    text-decoration: underline;
    text-underline-offset: 0.16em;
    text-decoration-thickness: 0.08em;
}

.xz42ke1ofqr a:hover {
    text-decoration-thickness: 0.12em;
}

.xz42ke1ofqr img,
p img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-sm);
}

.xz42ke1ofqr blockquote {
    padding: 18px 20px;
    border-left: 3px solid var(--content-link);
    background: color-mix(in srgb, var(--content-bg) 76%, white 4%);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--content-text);
}

.o-table__wrap {
    overflow-x: auto;
    margin-bottom: 2.4rem;
    border-radius: var(--radius-sm);
}

.o-table__wrap::-webkit-scrollbar,
.xz42ke1ofqr table::-webkit-scrollbar {
    height: 8px;
}

.o-table__wrap::-webkit-scrollbar-thumb,
.xz42ke1ofqr table::-webkit-scrollbar-thumb {
    background: var(--surface-4);
    border-radius: 999px;
}

table,
.xz42ke1ofqr table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    display: table;
    overflow: hidden;
    white-space: normal;
    margin: 24px 0;
    font-size: 1.5rem;
    border: 1px solid var(--content-text);
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--content-bg) 90%, white 2%);
}

thead {
    color: var(--content-heading);
    background: var(--content-table-head);
}

th,
td,
.xz42ke1ofqr th,
.xz42ke1ofqr td {
    padding: 14px 16px;
    min-width: 120px;
    border: 1px solid var(--content-text);
    text-align: left;
    vertical-align: top;
    color: var(--content-text);
}

th,
.xz42ke1ofqr th {
    font-weight: 700;
}

tbody tr:nth-child(odd),
tbody tr:nth-child(even) {
    background: transparent;
}

@media (max-width: 767px) {
    table,
    .xz42ke1ofqr table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 18px;
    }
}

.x20ni0mmg75 {
    padding: 8px 0 42px;
}

.xzjuq2ea005 {
    display: flex;
    justify-content: center;
}

.xfi3p4jxeya {
    min-height: 48px;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    color: var(--text-muted-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: 1.35rem;
    box-shadow: var(--shadow-sm);
}

.xdai1o75mdt {
    padding: 34px 0 52px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--css_header_background_color) 86%, black 14%) 0%, var(--css_header_background_color) 100%);
    border-top: 1px solid var(--border-soft);
}

.xdai1o75mdt .footer {
    padding: 0;
    background: transparent;
}

.xdai1o75mdt .footer__container {
    width: min(100%, var(--site-max-width));
    margin-inline: auto;
    padding-inline: 16px;
}

.xdai1o75mdt .footer__top,
.xdai1o75mdt .footer__bottom,
.xdai1o75mdt .footer__links,
.xdai1o75mdt .footer__social,
.xdai1o75mdt .footer__copy,
.xdai1o75mdt .footer__age {
    margin-bottom: 24px;
}

.xdai1o75mdt .footer__top-name,
.xdai1o75mdt .footer__span,
.xdai1o75mdt .footer__social-span {
    color: var(--css_header_link_color);
}

.xdai1o75mdt .footer__text,
.xdai1o75mdt .footer__list-link,
.xdai1o75mdt .footer__age-text,
.xdai1o75mdt .footer-links-list li a {
    color: color-mix(in srgb, var(--css_header_link_color) 74%, transparent);
}

.xdai1o75mdt .footer__list-link:hover,
.xdai1o75mdt .footer-links-list li a:hover {
    color: var(--css_header_link_color);
}

.xdai1o75mdt .footer__social-link {
    min-height: 44px;
    padding: 0 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-soft);
    background: var(--surface-3);
    color: var(--css_header_link_color);
}

.xdai1o75mdt .footer__social-link:hover {
    border-color: var(--border-strong);
    background: var(--surface-4);
}

.xdai1o75mdt .footer__age-span {
    border: 2px solid var(--border-soft);
    color: var(--css_header_link_color);
    background: var(--surface-3);
}

.xdai1o75mdt .footer-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
}

.xdai1o75mdt .footer-links-list li {
    flex: 0 0 auto;
}

.xdai1o75mdt .footer__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}

.xdai1o75mdt .footer__top-item {
    align-items: center;
}

.xdai1o75mdt .footer__social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.xdai1o75mdt .footer__social-item {
    width: auto;
    max-width: none;
}

@media (min-width: 768px) {
    .xdai1o75mdt .footer__container {
        padding-inline: 24px;
    }
}

@media (min-width: 1100px) {
    .xdai1o75mdt .footer__container {
        padding-inline: 32px;
    }

    .xdai1o75mdt .footer__container,
    .xdai1o75mdt .footer__top,
    .xdai1o75mdt .footer__top-items,
    .xdai1o75mdt .footer__links {
        text-align: center;
    }

    .xdai1o75mdt .footer__list,
    .xdai1o75mdt .footer-links-list,
    .xdai1o75mdt .footer__social-list {
        justify-content: center;
    }

    .xdai1o75mdt .footer__top-item {
        align-items: center;
    }
}

.xdai1o75mdt .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xdai1o75mdt .footer__top,
.xdai1o75mdt .footer__bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xdai1o75mdt .footer__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}

.xdai1o75mdt .footer-links-list {
    justify-content: center;
}

.reviews-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    list-style: none;
}

.reviews-item__title {
    margin-bottom: 12px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--content-heading);
}

.reviews-list .stars-rating {
    margin-bottom: 20px;
}

.reviews-item__content {
    font-size: 1.7rem;
    line-height: 1.7;
    color: var(--content-text);
}

.big-confirm-btn {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    border-radius: var(--radius-pill) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 200px;
    min-height: 52px;
    padding: 0 24px !important;
}

@media (max-width: 768px) {
    .xz42ke1ofqr {
        padding: 18px 18px 24px;
        font-size: 1.6rem;
        line-height: 1.76;
    }

    .x75vja7knqg {
        padding: 22px 18px 0;
    }
}

@media (max-width: 440px) {
    .xy4ii3bbdfy {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .x75r9vldrru {
        padding: 18px;
        border-radius: 24px;
    }

    .xhyyezi0mjd {
        border-radius: 16px;
    }

    .xjub057e3em {
        padding: 16px;
    }

    .xz42ke1ofqr {
        padding: 16px 14px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.footer__top-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .x7mc5m717ns {
        min-width: 62px;
        min-height: 42px;
        padding-inline: 12px 30px;
        font-size: 1.15rem;
    }

    .xo034kikclw {
        right: 0;
    }
}
