*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    :root {
        --transition--base: none;
        scroll-behavior: auto;
    }
}
@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

@font-face {
    font-family: Inter;
    src: url('/resources/fonts/Inter/Inter-Regular.eot');
    src: local('Inter Regular'), local('Inter-Regular'),
    url('/resources/fonts/Inter/Inter-Regular.eot?#iefix') format('embedded-opentype'),
    url('/resources/fonts/Inter/Inter-Regular.woff2') format('woff2'),
    url('/resources/fonts/Inter/Inter-Regular.woff') format('woff'),
    url('/resources/fonts/Inter/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url('/resources/fonts/Inter/Inter-Medium.eot');
    src: local('Inter Medium'), local('Inter-Medium'),
    url('/resources/fonts/Inter/Inter-Medium.eot?#iefix') format('embedded-opentype'),
    url('/resources/fonts/Inter/Inter-Medium.woff2') format('woff2'),
    url('/resources/fonts/Inter/Inter-Medium.woff') format('woff'),
    url('/resources/fonts/Inter/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url('/resources/fonts/Inter/Inter-SemiBold.eot');
    src: local('Inter SemiBold'), local('Inter-SemiBold'),
    url('/resources/fonts/Inter/Inter-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/resources/fonts/Inter/Inter-SemiBold.woff2') format('woff2'),
    url('/resources/fonts/Inter/Inter-SemiBold.woff') format('woff'),
    url('/resources/fonts/Inter/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url('/resources/fonts/Inter/Inter-Bold.eot');
    src: local('Inter Bold'), local('Inter-Bold'),
    url('/resources/fonts/Inter/Inter-Bold.eot?#iefix') format('embedded-opentype'),
    url('/resources/fonts/Inter/Inter-Bold.woff2') format('woff2'),
    url('/resources/fonts/Inter/Inter-Bold.woff') format('woff'),
    url('/resources/fonts/Inter/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

body {
    margin: 0;
    font-size: 1rem;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color: var(--body-color);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-color: var(--body-bg);
}

body, html {
    height: 100%;
}

.a-hovered {
    color: var(--href-color);
    text-decoration: none;
    transition: none;
}

.a-hovered:hover {
    background: var(--href-color-hover);
    color: #fff
}

a {
    color: var(--href-color);
    text-decoration: none;
    transition: color var(--transition--base);
}

a:hover {
    color: var(--href-color-hover);
    text-decoration: none;
}

::selection {
    background: var(--body-selection-bg);
    color: var(--body-selection-color);
    text-shadow: none
}

::-moz-selection {
    background: var(--body-selection-bg);
    color: var(--body-selection-color);
    text-shadow: none
}

img::selection {
    background: transparent
}

img::-moz-selection {
    background: transparent
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--border--width--thin) solid;
    opacity: 0.25;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol) {
    margin: 0;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-weight: var(--heading--weight);
    line-height: var(--heading--line-height);
    color: var(--text-primary);
    hyphens: auto;
}

h1, .h1 {
    font-size: clamp(var(--h1--font-size), 2vw + 1rem, 2.5rem);
}

h2, .h2 {
    font-size: clamp(var(--h2--font-size), 1.5vw + 1rem, 2rem);
}

h3, .h3 {
    font-size: clamp(var(--h3--font-size), 1vw + 1rem, 1.75rem);
}

h4, .h4 {
    font-size: clamp(var(--h4--font-size), 0.75vw + 1rem, 1.25rem);
}

h5, .h5 {
    font-size: var(--h5--font-size);
}

h6, .h6 {
    font-size: var(--h6--font-size);
}

p {
    line-height: 1.6;
    margin: 0;
    padding: 0;
    hyphens: auto;
}

img,
picture,
video,
canvas {
    display: block;
    max-width: 100%;
    vertical-align: middle;
}

img,
svg {
    vertical-align: middle;
}

i,
.icon {
    vertical-align: middle;
}

b,
strong {
    font-weight: 600;
}

figure {
    margin: 0 0 1rem;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: flex;
    unicode-bidi: isolate;
    padding: 0;
}

textarea {
    resize: vertical;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-grid {
    display: grid !important;
}

.d-inline-grid {
    display: inline-grid !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}
.d-lg-none {
    display: none !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.vw-100 {
    width: 100vw !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mh-100 {
    max-height: 100% !important;
}

.vh-100 {
    height: 100vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}
.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.row-gap-0 {
    row-gap: 0 !important;
}

.row-gap-1 {
    row-gap: 0.25rem !important;
}

.row-gap-2 {
    row-gap: 0.5rem !important;
}

.row-gap-3 {
    row-gap: 1rem !important;
}

.row-gap-4 {
    row-gap: 1.5rem !important;
}

.row-gap-5 {
    row-gap: 3rem !important;
}

.column-gap-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
}

.column-gap-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
}

.column-gap-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
}

.column-gap-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
}

.column-gap-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
}

.column-gap-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}
.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.top-0 {
    top: 0 !important;
}

/**/



/* Блокировка прокрутки */
.no-scroll {
    overflow: hidden;
    height: 100%;
}



:root {
    --media-object-bg: #eaeef1;
    --media-object-light-bg: rgba(233, 233, 233, 0.5);
}

.media-object--cropped {
    width: 100%;
    height: 100%;
}
.media-object {
    overflow: hidden;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    border-radius: inherit;
}
.media-object--has-preview:before {
    content: "";
    pointer-events: none;
    border-radius: inherit;
    background-color: var(--media-object-light-bg);
    grid-column: 1;
    grid-row: 1;
}
.media-object img {
    display: block;
    width: 100%;
    height: 100%;
    grid-column: 1;
    grid-row: 1;
    object-fit: cover;
    opacity: 0;
    transition: opacity .2s ease;
}
.media-object[data-loaded=true] img {
    opacity: 1;
}
.media-object--cropped img {
    -o-object-fit: cover;
    object-fit: cover;
}
.media-object-zoom {
    cursor: zoom-in;
}
.media-object--rounded {
    border-radius: 50%;
}