

/* Start:/local/templates/blog/template_styles.css?169199411250302*/
/*нормалайз*/
@import url("/local/include/normalize.css");

:root {
    --color-corp-blue: #40c1ea;
    --color-corp-orange: #f9ae0c;
    --color-corp-green: #59c13e;
    --color-main: #292929;
    --color-bg: #f9f9f9;
    --color-dark: #4b4f54;
    --color-light: #fff;
    --color-secondary: #7b7b7b;
    --color-secondary-02: hsla(0, 0%, 39.2%, 0.2);
    --color-form-elem: #4b4f54;
    --color-btn-text: #fff;
    --color-icon: #4b4f54;
    --color-icon-bg: #ededed;
    --icon-size: 48px;
    --color-link: #54b3e9;
    --blog-font-size: 20px;
    --radius: 35px;
}
.dark {
    --color-form-elem: #fff;
    --color-btn-text: #4b4f54;
}
@font-face {
    font-family: ALS Delsa;
    src: url("/local/templates/blog/fonts/als-delsa/ALSDelsa-Book.eot");
    src: url("/local/templates/blog/fonts/als-delsa/ALSDelsa-Book.eot?#iefix") format("embedded-opentype"), url(/local/templates/blog/fonts/als-delsa/ALSDelsa-Book.woff2) format("woff2"), url(/local/templates/blog/fonts/als-delsa/ALSDelsa-Book.woff) format("woff");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: ALS Delsa;
    src: url("/local/templates/blog/fonts/als-delsa/ALSDelsa-Regular.eot");
    src: url("/local/templates/blog/fonts/als-delsa/ALSDelsa-Regular.eot?#iefix") format("embedded-opentype"), url(/local/templates/blog/fonts/als-delsa/ALSDelsa-Regular.woff2) format("woff2"), url(/local/templates/blog/fonts/als-delsa/ALSDelsa-Regular.woff) format("woff");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: ALS Delsa;
    src: url("/local/templates/blog/fonts/als-delsa/ALSDelsa-Medium.eot");
    src: url("/local/templates/blog/fonts/als-delsa/ALSDelsa-Medium.eot?#iefix") format("embedded-opentype"), url(/local/templates/blog/fonts/als-delsa/ALSDelsa-Medium.woff2) format("woff2"), url(/local/templates/blog/fonts/als-delsa/ALSDelsa-Medium.woff) format("woff");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: ALS Delsa;
    src: url("/local/templates/blog/fonts/als-delsa/ALSDelsa-Bold.eot");
    src: url("/local/templates/blog/fonts/als-delsa/ALSDelsa-Bold.eot?#iefix") format("embedded-opentype"), url(/local/templates/blog/fonts/als-delsa/ALSDelsa-Bold.woff2) format("woff2"), url(/local/templates/blog/fonts/als-delsa/ALSDelsa-Bold.woff) format("woff");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
html {
    font-size: 6.5px;
}
body {
    background-color: var(--color-bg);
    color: var(--color-main);
    font-family: ALS Delsa, Arial, Helvetica, sans-serif;
    font-size: 14px;
    min-width: 320px;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
section {
    box-sizing: border-box;
    width: 100%;
}
a {
    color: var(--color-link);
    text-decoration: none;
    outline: none;
}
a[href] {
    cursor: pointer;
}
a:focus:not(:active) {
    opacity: 0.8;
}
button:not([disabled]) {
    cursor: pointer;
    outline: none;
}
button:not([disabled]):focus:not(:active) {
    opacity: var(--color-corp-blue);
}
input,
select,
textarea {
    outline: none;
}
input:focus:not(:active),
select:focus:not(:active),
textarea:focus:not(:active) {
    outline: var(--color-corp-blue);
}
svg {
    fill: none;
    stroke: var(--color-icon);
}
.no-overflow {
    overflow: hidden;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}
.wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 1fr auto;
    grid-template-rows: auto 1fr auto;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    grid-template-areas: "header" "main" "footer";
    min-height: 100vh;
    height: 100%;
    width: 100%;
}
.container {
    margin: 0 auto;
    max-width: 1124px;
    width: 90%;
}
.header {
    grid-area: header;
}
.main {
    display: block;
    grid-area: main;
}
.footer {
    grid-area: footer;
}
.link {
    background-color: transparent;
    border: none;
    color: var(--color-secondary);
    padding: 0;
}
.list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.title {
    color: var(--color-main);
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
    margin: 0 auto 30px;
    text-align: center;
}
.title--h1 {
    font-size: 28px;
}
.ava {
    border-radius: 50%;
    display: block;
    height: var(--icon-size);
    overflow: hidden;
    width: var(--icon-size);
}
.ava img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
@media (min-width: 768px) {
    html {
        font-size: 0.694444vw;
    }
    body {
        font-size: 16px;
    }
    .title {
        font-size: 40px;
        margin-bottom: 40px;
    }
    .title--h1 {
        font-size: 60px;
        margin-bottom: 47px;
    }
}
/**
 * Swiper slider
 */
@font-face {
    font-family: 'swiper-icons';
    src: url('data:application/font-woff;charset=utf-8;base64, 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');
    font-weight: 400;
    font-style: normal;
}
:root {
    --swiper-theme-color: #007aff;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
    touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
    content: '';
    flex-shrink: 0;
    order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
}
.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
}
:root {
    --swiper-navigation-size: 44px;
}
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
    display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'next';
}
.swiper-button-lock {
    display: none;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px;
    left: 0;
    width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
}
.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}
.swiper-pagination-bullet:only-child {
    display: none !important;
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}
.swiper-pagination-lock {
    display: none;
}
/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important;
}
.swiper-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}
.swiper-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}
.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}
.swiper-scrollbar-cursor-drag {
    cursor: move;
}
.swiper-scrollbar-lock {
    display: none;
}
.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.swiper-slide-zoomed {
    cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
    animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* a11y */
.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-cube {
    overflow: visible;
}
.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}
.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px);
}
.swiper-flip {
    overflow: visible;
}
.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
}
.swiper-cards {
    overflow: visible;
}
.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}
/**
 * Swiper slider end
 */
.form {
    --padding: 9px;
    --check-border: 3px;
    font-size: 16px;
    margin: 0 auto;
    width: 100%;
}
.form__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 5px;
    width: 100%;
}
.form__item--image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.form__input,
.form__select {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--color-form-elem);
    box-sizing: border-box;
    color: var(--color-form-elem);
    flex-grow: 1;
    line-height: 1;
    outline: none;
    padding: var(--padding) 0;
    width: 100%;
    -webkit-appearance: none;
}
.form__input:autofill {
    background-color: transparent;
    background-image: unset;
}
input.form__input:-webkit-autofill,
input.form__input:-internal-autofill-selected {
    background-color: transparent !important;
    -webkit-text-fill-color: var(--color-form-elem);
    -webkit-box-shadow: none;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}
.form__label {
    color: var(--color-form-elem);
    display: block;
    margin: 0 10px 0 0;
}
.form__label:not(.form__check-label) {
    white-space: nowrap;
}
.form__label a {
    color: inherit;
    font-weight: bold;
}
.form__btn {
    margin-top: 20px;
    width: 100%;
}
.form__float {
    padding-top: 15px;
}
.form__float .form__label {
    top: calc(var(--padding) + 18px);
    position: absolute;
    transition-duration: 0.2s;
}
.form__float .form__input[value]:not([value=""]) ~ .form__label,
.form__float.active .form__label {
    font-size: 14px;
    top: 2px;
}
.form__float .form__input:autofill ~ .form__label {
    font-size: 14px;
    top: 2px;
}
.form__float .form__input,
.form__float .form__select {
    width: 100%;
}
.form__check {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}
.form__check--checkbox ~ .form__check-label::before {
    border-radius: 3px;
}
.form__check--checkbox ~ .form__check-label::after {
    border: 3px solid var(--color-form-elem);
    border-left: none;
    border-top: none;
    height: 13px;
    left: 7px;
    opacity: 0;
    top: calc(var(--check-border) + 14px);
    transform: rotate(45deg);
    width: 7px;
}
.form__check--checkbox:checked ~ .form__check-label::after {
    opacity: 1;
}
.form__check--radio ~ .form__check-label::before {
    border-radius: 50%;
}
.form__check--radio:checked ~ .form__check-label::before {
    background-color: var(--color-form-elem);
}
.form__check-label {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    padding: 15px 0 15px 33px;
    position: relative;
}
.form__check-label::before {
    border: var(--check-border) solid var(--color-form-elem);
    box-sizing: border-box;
    content: '';
    height: 21px;
    top: 15px;
    left: 0;
    position: absolute;
    width: 21px;
}
.form__check-label::after {
    box-sizing: border-box;
    content: '';
    position: absolute;
}
.form__note {
    color: var(--color-form-elem);
    font-weight: bold;
    padding-top: 6px;
}
.form__img {
    height: 190px;
    margin-bottom: 15px;
    width: 190px;
}
.form__file-btn {
    cursor: pointer;
    font-size: 16px;
}
.form__message {
    color: var(--color-form-elem);
    font-size: 1.3rem;
}
.form__message--error {
    bottom: 0;
    display: none;
    position: absolute;
    right: 0;
    text-align: right;
    transform: translateY(100%);
}
@media (min-width: 768px) {
    .form {
        font-size: 24px;
    }
    .form__float {
        padding-top: 20px;
    }
    .form__check-label {
        font-size: 18px;
    }
    .form__btn {
        margin-top: 31px;
    }
    .form__note {
        font-size: 18px;
    }
    .form__file-btn {
        font-size: 18px;
    }
    .form__message {
        font-size: 11px;
    }
}
.btn {
    border: 1px solid var(--color-form-elem);
    background-color: var(--color-form-elem);
    border-radius: var(--radius);
    color: var(--color-btn-text);
    font-size: 16px;
    font-weight: 300;
    padding: 10px 5px;
    text-align: center;
}
.btn--empty {
    background-color: transparent;
}
.btn--light {
    border-color: var(--color-light);
    background-color: var(--color-light);
    color: var(--color-dark);
}
.btn:disabled {
    opacity: 0.3;
}
@media (min-width: 768px) {
    .btn {
        font-size: 24px;
        padding: 20px 25px;
    }
}
.hamburger {
    display: block;
    transition-duration: 0.15s;
    background-color: transparent;
    border: none;
    margin: 0 8px 0 0;
    padding: 15px 8px 15px 0;
}
.hamburger.is-active {
    opacity: 0.7;
}
.hamburger:hover,
.hamburger:focus {
    opacity: 0.7;
    transition-duration: 0.15s;
    outline: none;
}
.hamburger-box {
    width: 14px;
    display: block;
    position: relative;
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    width: 24px;
    height: 2px;
    background-color: var(--color-main);
    position: absolute;
    transition-duration: 0.15s;
}
.hamburger-inner::after,
.hamburger-inner::before {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -6px;
}
.hamburger-inner::after {
    bottom: -6px;
}
.hamburger .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.links {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}
.links__list {
    border-right: 1px solid var(--color-secondary-02);
    margin-right: 20px;
    padding-right: 20px;
}
.links__list:last-child {
    border: none;
    margin-right: 0;
    padding-right: 0;
}
.links__list li {
    padding: 0 10px;
}
.links__link {
    display: block;
}
.links__image {
    min-width: 2.7rem;
    display: block;
}
.links__name {
    display: none;
    color: var(--color-main);
    margin-left: 1rem;
}
@media (min-width: 768px) {
    .links {
        align-items: flex-start;
    }
    .links__link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .links__name {
        display: block;
    }
    .links__image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .links__list {
        display: -ms-grid;
        display: grid;
        -moz-column-gap: 0.92rem;
        -webkit-column-gap: 0.92rem;
        column-gap: 0.92rem;
        row-gap: 1.9rem;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        margin-right: 2.2rem;
        padding-right: 2.2rem;
    }
    .links__list li {
        margin: 0;
        padding: 0;
    }
}
.cloud {
    --color-cloud: var(--color-link);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 20px 0;
    overflow-x: scroll;
    padding: 15px 0;
}
.cloud__link {
    background-color: transparent;
    border: 1px solid var(--color-cloud);
    border-radius: 100vmax;
    box-sizing: border-box;
    color: var(--color-cloud);
    display: block;
    line-height: 1;
    margin: 6px;
    padding: 0.4em 0.9em;
    white-space: nowrap;
}
.cloud__link--more {
    border: none;
    color: var(--color-main);
    opacity: 0.2;
}
.cloud__link:hover {
    opacity: 0.6;
}
.cloud__link--hide {
    display: none;
}
@media (min-width: 768px) {
    .cloud {
        flex-wrap: wrap;
        justify-content: center;
        margin: 30px 0 40px;
        padding: 0;
        overflow: hidden;
    }
    .cloud__link {
        font-size: 36px;
        margin: 0 8px 20px;
        padding: 15px 20px 21px;
    }
}
.carousel {
    width: 100%;
}
.carousel--inner .carousel_bottom {
    padding-top: 20px;
}
.carousel_wrapper {
    width: 100%;
}
.carousel_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 37px 0 30px;
}
.carousel_btn {
    background-color: transparent;
    border: none;
    height: 16px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: static;
    transition: width 0.2s ease;
    width: 83px;
}
.carousel_btn-prev {
    order: 0;
}
.carousel_btn-prev svg {
    transform: translateX(65%);
}
.carousel_btn-prev:hover svg {
    transform: translateX(35%);
}
.carousel_btn-next {
    order: 2;
}
.carousel_btn-next svg {
    transform: translateX(-65%);
}
.carousel_btn-next:hover svg {
    transform: translateX(-35%);
}
.carousel_btn::after {
    display: none;
}
.carousel_btn svg {
    height: inherit;
    fill: var(--color-main);
    stroke: var(--color-main);
    transition-duration: 0.2s;
    width: inherit;
}
.carousel_pagination {
    font-size: 21px;
    order: 1;
    padding: 0 15px;
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.modal {
    --opacity: 0.7;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    visibility: hidden;
    z-index: 10000;
}
.modal--dark {
    --opacity: 0.9;
}
.modal--open {
    visibility: visible;
}
.modal--open .modal__bg {
    opacity: var(--opacity);
    transition-delay: 0s;
}
.modal--open .modal__wrap {
    transform: translateY(0);
    transition-delay: 0.2s;
}
.modal__bg {
    background-color: black;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition-delay: 0.2s;
    width: 100%;
    z-index: 10;
}
.modal__wrap {
    height: 100vh;
    left: 0;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    transform: translateY(calc(50vh + 100%));
    transition-duration: 0.2s;
    transition-delay: 0s;
    width: 100%;
    z-index: 10;
}
.modal__close {
    background-color: transparent;
    border: none;
    display: block;
    height: 3rem;
    margin: 21px 0 10px auto;
    padding: 0;
    width: 3rem;
}
.modal__close svg {
    height: 100%;
    fill: var(--color-light);
    stroke: var(--color-light);
    width: 100%;
}
.blob .modal__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blob__container {
    background-color: var(--color-bg);
    border-radius: 2px;
    box-sizing: border-box;
    max-width: 90%;
    padding: 20px;
    width: auto;
}
.blob__container .modal__close {
    margin-bottom: 20px;
    margin-top: 0;
}
.blob__container .modal__close svg {
    fill: var(--color-main);
    stroke: var(--color-main);
}
.blob__btn {
    margin: 0 auto;
    display: block;
    padding: 12px 20px;
}
.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    position: relative;
    z-index: 100;
}
.header__to-main {
    display: none;
}
.header__logo svg {
    height: 5.6rem;
    width: 20.4rem;
    stroke: none;
}
.header__burger {
    background-color: transparent;
    border: none;
    box-sizing: border-box;
}
.header__right a {
    display: none;
}
.header__search-open {
    background-color: transparent;
    border: none;
    box-sizing: border-box;
    opacity: 0.7;
    padding: 0;
    width: 2.8rem;
    height: 2.8rem;
}
.header__search-open svg {
    display: block;
    width: inherit;
    height: inherit;
    fill: var(--color-icon);
}
.header__search-open:hover {
    opacity: 1;
}
.header__left {
    box-sizing: border-box;
}
.header__right {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__enter {
    color: var(--color-main);
}
.header__register {
    color: var(--color-secondary);
}
.header__nav {
    background-color: var(--color-bg);
    box-sizing: border-box;
    display: block;
    height: 100vh;
    opacity: 0;
    padding: 80px 0;
    position: fixed;
    transition-duration: 0.2s;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 10;
}
.header__nav a {
    color: var(--color-main);
    font-size: 1.8rem;
}
.header__nav li {
    margin-bottom: 1rem;
}
.header__nav.active {
    opacity: 1;
    visibility: visible;
}
.container.header__menu {
    margin: 0 auto;
}
.header .header__link {
    background-color: var(--color-icon-bg);
    border-radius: 50%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: var(--icon-size);
    overflow: hidden;
    width: var(--icon-size);
}
.header .header__link svg {
    height: 60%;
    transform: translateY(-1px);
    width: 60%;
}
.header .header__link--active {
    background-color: var(--color-link);
}
.header .header__link--active svg {
    stroke: #fff;
}
.header .header__link--soc {
    background-color: transparent;
    border-radius: 0;
    height: 25px;
    width: 25px;
}
.header .header__link--soc svg {
    height: inherit;
    fill: var(--color-main);
    stroke: none;
    transform: translateY(0);
    width: inherit;
}
.header .header__user {
    color: var(--color-main);
    align-items: center;
    justify-content: space-between;
    margin-left: 12px;
}
.header__user .ava {
    flex: 0 0 auto;
}
.header__search-open {
    flex: 0 0 auto;
}
.header__user-name {
    display: block;
    margin-left: 13px;
    max-width: calc(100% - var(--icon-size));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}
@media (min-width: 768px) {
    .header__container {
        padding: 23px 0;
    }
    .header__to-main {
        display: block;
    }
    .header__burger {
        display: none;
    }
    .header__right {
        padding-right: 14px;
        width: calc(50% - 10.4rem);
    }
    .header__right a {
        display: block;
        margin-left: 20px;
    }
    .header__right--admin a {
        margin-left: 10px;
    }
    .header__right a:first-child {
        margin-left: 0;
    }
    .header__logo {
        transform: translateY(2px);
    }
    .header__left {
        width: calc(49% - 10.4rem);
    }
    .header__search-open {
        margin-left: 17px;
    }
    .header__nav {
        display: none;
    }
    .header .header__link {
        display: flex;
    }
    .header .header__user {
        display: flex;
        max-width: calc(100% - var(--icon-size)*2);
    }
    .header .header__user--admin {
        max-width: calc(100% - var(--icon-size)*3 - 20px);
    }
    .header__right .header__link--soc ~ .header__enter {
        margin-left: 9px;
    }
}
.footer {
    font-size: 14px;
    margin: 10rem 0 4rem;
}
.footer__logo {
    display: none;
}
.footer__logo svg {
    stroke: none;
}
.footer__copyright {
    color: var(--color-secondary);
    font-size: 10px;
    margin: 3rem 0 0;
    padding: 0;
    text-align: left;
}
.footer__social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.footer__links .links {
    margin: 0 0 20px;
}
.footer__links .links:last-child {
    margin-bottom: 0;
}
.footer__menu li {
    margin-right: 10px;
}
@media (min-width: 768px) {
    .footer {
        font-size: 1.5rem;
        margin: 3rem 0 2.7rem;
    }
    .container.footer__container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .footer__logo {
        display: block;
    }
    .footer__logo svg {
        width: 20rem;
        height: auto;
    }
    .footer__copyright {
        font-size: 1rem;
        margin-top: 6px;
        text-align: right;
        width: 100%;
    }
    .links__list.footer__social {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
    .footer__links .links {
        margin-bottom: 30px;
    }
    .footer__links .links:last-child {
        margin-bottom: 0;
    }
    .footer__menu li {
        margin-right: 15px;
    }
}
.search {
    color: var(--color-light);
}
.search .cloud {
    --color-cloud: var(--color-light);
}
.search__close {
    background-color: transparent;
    border: none;
    display: block;
    height: 3rem;
    margin: 21px 0 10px auto;
    padding: 0;
    width: 3rem;
}
.search__close svg {
    height: 100%;
    fill: var(--color-light);
    stroke: var(--color-light);
    width: 100%;
}
.search__form {
    background-color: var(--color-main);
    border-radius: var(--radius);
    font-size: 2.4rem;
    margin: 4rem auto 6rem;
    position: relative;
}
.search__label {
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.search__icon {
    display: inline-block;
    height: 2.5rem;
    margin-right: 1.6rem;
    width: 2.5rem;
}
.search__icon svg {
    height: 100%;
    fill: var(--color-light);
    stroke: var(--color-light);
    width: 100%;
}
.search__input {
    background-color: transparent;
    border: none;
    color: #fff;
    padding: 1.9rem;
    text-align: center;
    width: 100%;
    -webkit-appearance: none;
}
.search__input::-ms-clear {
    display: none;
}
.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration,
.search__input::-webkit-search-results-button,
.search__input::-webkit-search-results-decoration {
    display: none;
    width: 0;
    height: 0;
}
input.search__input:-webkit-autofill,
input.search__input:-internal-autofill-selected {
    background-color: transparent !important;
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: none;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}
.search__input:not([value = '']) ~ .search__label {
    visibility: hidden;
}
.search__results {
    font-size: 2.4rem;
    padding: 2.4rem 0;
}
.search__result-count {
    font-size: 2.1rem;
    margin: 0 0 4.1rem;
    opacity: 0.5;
}
.search__result {
    margin-bottom: 2.8rem;
}
.search__result > a {
    color: inherit;
    display: block;
}
.search__result a > span {
    display: block;
}
.search__date {
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .search__close {
        margin-top: 40px;
    }
    .search__cloud .cloud__link {
        font-size: 29px;
    }
}
.share .modal__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.share__social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 15px;
}
.share__soc-item {
    --size: 40px;
    height: var(--size);
    margin: 0 15px 0 0;
    width: var(--size);
}
.share__soc-item a {
    display: block;
    height: 100%;
    width: 100%;
}
.share__soc-item svg {
    fill: var(--color-icon);
    height: 100%;
    width: 100%;
}
.share__soc-item:last-child {
    margin-right: 0;
}
.share__container {
    background-color: var(--color-bg);
    border-radius: 2px;
    box-sizing: border-box;
    max-width: 90%;
    padding: 20px;
    width: auto;
}
.share__container .modal__close {
    margin-bottom: 20px;
    margin-top: 0;
}
.share__container .modal__close svg {
    fill: var(--color-main);
    stroke: var(--color-main);
}
.share__form {
    --padding: 5px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.share__input {
    flex-grow: 1;
}
.share__btn {
    background-color: var(--color-icon);
    border: none;
    color: var(--color-light);
    padding: var(--padding);
}
@media (min-width: 768px) {
    .share__social {
        justify-content: space-between;
    }
}
.post {
    margin: 0;
    width: 100%;
}
.post__graphics {
    margin: 0 auto;
    max-width: 600px;
    width: 90%;
}
.post__image {
    width: 100%;
}
.post__image img {
    display: block;
    height: auto;
    width: 100%;
}
.post__video {
    background-color: #000000;
    margin-bottom: 10px;
    padding-bottom: 56%;
    position: relative;
    width: 100%;
}
.post__video iframe {
    background: transparent;
    border: none;
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.post__carousel {
    position: relative;
    width: 100%;
}
.post__carousel img {
    display: block;
    height: auto;
    width: 100%;
}
.post__carousel .carousel_pagination {
    font-size: 15px;
}
.post__react {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 10px 0 15px;
}
.post__react .carousel_bottom {
    margin: 0 0 10px;
    padding: 0;
    width: 100%;
}
.post__react-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}
.post__react-item--left {
    justify-content: flex-start;
}
.post__react-item--left .post__reaction {
    margin-right: 8%;
}
.post__react-item--right {
    justify-content: flex-end;
}
.post__react-item--right .post__reaction {
    margin-left: 8%;
}
.post__reaction {
    background-color: transparent;
    border: none;
    height: 28px;
    padding: 0;
    transition-duration: 0.1s;
    width: 25px;
}
.post__reaction.comment {
    height: 24px;
}
.post__reaction:active {
    transform: scale(0.9);
}
.post__reaction:hover {
    opacity: 1;
}
.post__reaction:not([disabled]):focus {
    opacity: 1;
}
.post__reaction svg {
    height: inherit;
    width: inherit;
}
.post__reaction--active svg {
    fill: var(--color-icon);
}
.post__react-count {
    margin: 0 0 10px;
}
.post__date {
    margin: 10px 0 0;
    opacity: 0.35;
}
.post__text {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
}
.post__text--opened .post__preview {
    opacity: 0;
    visibility: hidden;
}
.post__text--opened .post__main {
    display: block;
}
.post__text p {
    margin: 15px 0;
}
.post__text p:first-child {
    margin-top: 0;
}
.post__preview {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    position: relative;
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    text-align: left;
}
.post__main {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    display: none;
}
.post__show {
    background-color: transparent;
    border: none;
    color: #bbb;
    font-weight: bold;
    float: right;
    padding: 0 0 0 5px;
    transform: translateY(3px);
}
.post__text a {
    word-break: break-word;
}
@media (min-width: 768px) {
    .post {
        font-size: var(--blog-font-size);
    }
    .post__carousel .carousel_pagination {
        font-size: 21px;
    }
    .post__reaction {
        height: 38px;
        width: 40px;
    }
    .post__reaction.comment {
        height: 37px;
    }
    .post__react {
        flex-wrap: nowrap;
        margin: 20px 0 15px;
    }
    .post__react .carousel_bottom {
        margin: 0;
        order: 1;
        width: auto;
    }
    .post__react-item {
        width: calc(50% - 200px);
    }
    .post__react-item--left {
        order: 0;
    }
    .post__react-item--left .post__reaction {
        margin-right: 14%;
    }
    .post__react-item--right {
        order: 2;
    }
    .post__react-item--right .post__reaction {
        margin-left: 14%;
    }
    .post__react-count {
        margin-bottom: 25px;
    }
    .post__text {
        line-height: 1.33;
    }
    .post__text p {
        margin: 30px 0;
    }
    .post__video {
        margin-bottom: 22px;
    }
}
.to-top {
    background-color: transparent;
    box-sizing: content-box;
    border: none;
    height: 3.9rem;
    opacity: 0;
    padding: 0 10px;
    position: fixed;
    right: 0;
    top: 10px;
    transition-duration: 0.1s;
    visibility: hidden;
    width: 0.8rem;
    z-index: 1000;
}
.to-top--show {
    opacity: 1;
    visibility: visible;
}
.to-top svg {
    fill: var(--color-main);
    height: inherit;
    stroke: none;
    width: inherit;
}
@media (min-width: 768px) {
    .to-top {
        height: 39px;
        padding: 0 10px;
        width: 8px;
    }
}
@media (min-width: 1250px) {
    .to-top {
        right: 20px;
        top: 20px;
    }
}
.search .to-top {
    left: calc(100vw - 0.8rem);
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: -webkit-sticky;
    position: sticky;
    right: auto;
}
.search .to-top svg {
    fill: var(--color-light);
}
@media (min-width: 768px) {
    .search .to-top {
        left: calc(100vw - 50px);
        outline: none;
        position: sticky;
    }
}

/* End */
/* /local/templates/blog/template_styles.css?169199411250302 */
