*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {

    --audience-bg: #fff;
    --benefits-bg: #fff;

    --hero-bg: linear-gradient(357deg, #c6ebff, #F9F9F9 75%, #e2fff6);

    --specs-bg: linear-gradient(28deg, #eafaf5, #F9F9F9 75%, #d9edf8);
    --footer-bg: #024e77;
    --contacts-bg: #f0f0f0;
    --counters-bg: #056ba1;


    --primary-color: #009fe3;
    --white: #FFF;
    --black: #1A1A1A;
    --gray: #F4F4F4;
    --light-gray: #F7F7F7;

    --gray-0: #F9F9F9;
    --gray-1: #F7F7F7;
    --gray-2: #F5F5F5;
    --gray-3: #F1F1F1;
    --gray-4: #efefef;
    --gray-5: #e9e9e9;
    --gray-6: #e1e1e1;
    --gray-7: #cecece;
    --gray-9: #bfbfbf;

    --primary: #0071e3;


    --primary-black: #1a1a1a;
    --primary-blue: #01b1fd;

    --theme-link: #037bb9;
    --theme-link-hover: #008ad1;

    --box-shadow: 0 2px 16px rgba(0, 0, 0, .08);

    --transition: all 0.075s ease-in-out;
    --transition-opacity: opacity .2s cubic-bezier(.2, 0, 0, 1);
    --transition-bg: background-color .1s cubic-bezier(.2, 0, 0, 1);

    --radius-0-25: 0.25rem;
    --radius-0-4: 0.4rem;
    --radius-0-75: 0.75rem;
    --radius-1-0: 1rem;
    --radius-1-5: 1.5rem;
    --radius-2-0: 2.0rem;
    --radius-2-5: 2.5rem;
    --radius-50: 50%;

    --font-family-title: simesta, Montserrat, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;

    --font-size-0-8: 0.8rem;
    --font-size-0-875: 0.875rem;
    --font-size-0-9: 0.9rem;
    --font-size-1-0: 1rem;
    --font-size-1-25: 1.25rem;
    --font-size-1-5: 1.5rem;
    --font-size-1-75: 1.75rem;
    --font-size-2-0: 2.0rem;
    --font-size-2-5: 2.5rem;
    --font-size-3-0: 3rem;

    --font-ls-n-0-5: -0.5px;
    --font-ls-n-0-75: -0.75px;
    --font-ls-n-1-0: -1px;

    --font-lh-1-2: 1.2;


    --transition--base: 0.15s ease-in-out;
}

a {
    color: var(--theme-link);
    text-decoration: none;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    -ms-transition: var(--transition);
    transition: var(--transition);
}

a:hover {
    color: var(--theme-link-hover);
    text-decoration: none
}

::selection,
::-moz-selection {
    background: #DBF3FB;
    color: #111;
    text-shadow: none;
}

img::selection,
img::-moz-selection {
    background: transparent;
}

img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

i {
    vertical-align: middle
}

b,
strong {
    font-weight: 600
}

button {
    border: 0;
    text-decoration: none
}

p {
    line-height: 1.6;
    padding: 0;
    margin: 0;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto
}

img {
    color: transparent
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.2;
}

#city {
    display: none
}

@media (max-width: 992px) {
    main {
        overflow: hidden;
    }
}

@media (min-width: 992px) {
    main {
        margin-top: -4.75rem
    }
}


/* ### GENERAL WRAP #### */

.wrap_column {
    display: flex;
    flex-direction: column;
}

.wrap_row {
    display: flex;
    flex-direction: row;
}

@media (max-width: 992px) {

    .wrap_column,
    .wrap_row {
        display: flex;
        flex-direction: column;
    }
}

.page_wrap {
    display: flex;
    flex-direction: column
}

.gap-0-5 {
    gap: 0.5rem;
}

.gap-1-0 {
    gap: 1rem;
}

.gap-1-5 {
    gap: 1.5rem;
}

.gap-2-0 {
    gap: 2rem;
}

.gap-2-5 {
    gap: 2.5rem;
}

.gap-3-0 {
    gap: 3rem;
}

.gap-3-5 {
    gap: 3.5rem;
}

.gap-4-0 {
    gap: 4rem;
}

.gap-5-0 {
    gap: 5rem;
}

/********************* Buttons **********************/

.header {
    display: flex;
    align-items: center;
    height: 4.75rem;
    position: sticky;
    top: 0;
    background: #ffffff52;
    z-index: 1000;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    user-select: none;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: var(--scroll-width, 0%);
    background-color: #056ba1;
    transition: width 0.1s linear;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation a {
    font-size: 0.94rem;
    margin-left: 15px;
    text-decoration: none;
    color: #000c;
    font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
    .navigation a:hover {
        color: #7a7a7a;
    }
}

.logo {
    font-weight: 800;
    color: #fff;
    font-size: 1.75rem;
}

.logo a {
    color: #000c
}

/* Оверлей */
.nav-overlay {
    position: fixed;
    top: 4.75rem;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Бургер-кнопка */
.burger-btn {
    position: relative;
    z-index: 2000;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    overflow: visible;
    -webkit-appearance: none;
    appearance: none;
}

.burger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000c;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;      /* аккуратное вращение */
}

/* Анимация крестика */
.burger-btn.active span:nth-child(1) { transform: rotate(45deg) translateY(6px); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: rotate(-45deg) translateY(-6px); }

/* Твои значения z-index для меню/оверлея оставить ниже */


@media (max-width: 992px) {
    .burger-btn { display: flex; }
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    .header {
        display: flex;
        align-items: center;
        flex-direction: row;
        height: 4.75rem;
        z-index: 1000;
        transition: var(--transition);
    }

    .logo {
        font-weight: 600;
        color: #fff;
        font-size: 1.5rem;
    }

    .burger-btn {
        display: flex;
    }

    .navigation {
        display: none;
        position: fixed;
        top: 4.75rem;
        right: 0;
        opacity: 0;
        width: 100%;
        max-width: 1000px;
        height: 70svh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 0 2rem;
        gap: 2rem;
        font-size: 1.2rem;
        transition: opacity 0.3s ease;
        z-index: 1050;
        border-top: 1px solid #111
    }

    .navigation-wrap {
        display: flex;
        flex-direction: column;
        gap: 1rem
    }

    .navigation.active {
        display: flex;
        opacity: 1;
    }

    .navigation a {
        display: block;
        width: 100%;
        margin: 0;
        color: #000c;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 1.125rem;
    }

}

.hero {
    background: var(--hero-bg);
    height: 100svh;
    width: 100%;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-container {
    height: 85vh;
}

.hero__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    max-width: 500px;
    z-index: 15;
}

.hero__content-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero__content p {
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    line-height: 1.4;
}

.hero__content h1 {
    display: flex;
    flex-direction: column;
    font-size: 6rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero__content h1 span {
    font-size: 2rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero__image-wrap {
    flex: 2;
}

.hero_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 993px) {

    .hero {
        height: auto;
        padding: 5rem 0;
    }
    .hero__content-wrap {
        align-items: center;
    }
    .hero-container {
        height: 100%;
        overflow: unset;
    }
    .hero__wrap {
        justify-content: center;
        flex-direction: column-reverse;
        gap: 1.5rem
    }
    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        flex: unset;
        max-width: unset;
        z-index: unset;
        padding: unset;
    }
    .hero__content p {
        font-size: 1.25rem;
        letter-spacing: -0.5px;
        line-height: 1.4;
    }
    .hero__content h1 {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 4rem;
        letter-spacing: -1px;
        line-height: 1.1;
    }
    .hero__content h1 span {
        font-size: 1.5rem;
        letter-spacing: -2px;
        line-height: 1.1;
    }
    .hero__image-wrap {
        flex: unset;
        height: unset;
    }
    .hero_image {
        object-fit: contain;
        max-width: 400px;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero__content p {
        font-size: 1.125rem;
        letter-spacing: -0.5px;
        line-height: 1.4;
    }
    .hero__content h1 {
        display: flex;
        flex-direction: column;
        font-size: 3rem;
        letter-spacing: -1px;
        line-height: 1.1;
    }
    .hero__content h1 span {
        font-size: 1.25rem;
        letter-spacing: -1px;
        line-height: 1.1;
    }
}


@media (min-width: 1400px) {
    .hero__image-wrap {
        height: 100%;
    }
}


.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(270deg, #1a4b65, #056ba1, #0586da, #009fe3);
    background-size: 600% 600%;
    color: #fff;
    font-weight: 600;
    background-position: 0% 50%;
    transition: background-position 2s ease;
}

.button svg {
    width: 20px;
    height: 20px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (hover: hover) and (pointer: fine) {
    .button:hover {
        background-position: 100% 50%;
    }
}

/* NEW */

.visually-hidden {
    display: none;
    visibility: hidden;
}

.width-sm {
    max-width: 800px;
}
.width-md {
    max-width: 1000px;
}
.width-lg {
    max-width: 1200px;
}
.width-xl {
    max-width: 1400px;
}

@media (max-width: 993px) {
    .width-sm, .width-md, .width-lg, .width-xl {
        max-width: unset;
    }
}


/**/

.benefits-section {
    background-color: var(--benefits-bg);
    padding: 7rem 0;
}

.benefits-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.benefits-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.benefits-header-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.benefits-title {
    font-size: 2.75rem;
    letter-spacing: -1.25px;
    line-height: 1.3;
    font-weight: 600;
}

.benefits-title span {
    border-bottom: 5px solid transparent;
    transition: border-color var(--transition--base), color var(--transition--base);
}

@media (hover: hover) and (pointer: fine) {
    .benefits-section:hover span {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
}

.benefits-about {
    font-size: 1.125rem;
    letter-spacing: -0.25px;
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 993px) {
    .benefits-section {
        padding: 3rem 0;
    }
    .benefits-wrap {
        gap: 3rem;
    }
    .benefits-title {
        font-size: 2rem;
        letter-spacing: -0.25px;
        line-height: 1.3;
    }
    .benefits-title span {
        border-bottom: 2px solid transparent;
    }
    .benefits-about {
        font-size: 1rem;
        letter-spacing: -0.05px;
        line-height: 1.6;
    }
}

/* Сетка преимуществ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
}

.benefit-icon {
    transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .benefit-card:hover .benefit-icon {
        transform: translateY(-6px);
    }
}

.benefit-icon img {
    border-radius: 16px;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #222;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.benefit-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits-cta {
    text-align: center;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/**/

.section-counters {
    background: var(--counters-bg);
    padding: 7rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-counters-wrap, .counters-list {
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.section-counter {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-counter-num {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
}
.section-counter-text {
    max-width: 90%;
    font-size: 1.1rem;
    color: #fff;
}

@media (max-width: 992px) {

    .section-counters {
        padding: 3rem 0;
    }

    .section-counters-wrap, .counters-list {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .section-counter-num {
        font-size: 4rem;
    }

    .section-counters {
        width: unset;
        max-width: unset;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
}




/**/

.specs-section {
    background: var(--specs-bg);
    padding: 7rem 0;
}

.specs-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.specs-content-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.specs-content-img {
    flex: 0.7;
}

@media (max-width: 993px) {
    .specs-content-img {
        flex: unset;
        display: none;
    }
}

.specs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.specs-header-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.specs-title {
    font-size: 2.75rem;
    letter-spacing: -1.25px;
    line-height: 1.3;
    font-weight: 600;
}

.specs-title span {
    border-bottom: 5px solid transparent;
    transition: border-color var(--transition--base), color var(--transition--base);
}

.specs-about {
    font-size: 1.125rem;
    letter-spacing: -0.25px;
    line-height: 1.6;
    font-style: italic;
}

.specs-cta {
    text-align: center;
}

@media (hover: hover) and (pointer: fine) {
    .specs-section:hover span {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
}

@media (max-width: 993px) {
    .specs-section {
        padding: 3rem 0;
    }
    .specs-wrap {
        gap: 3rem;
    }
    .specs-title {
        font-size: 2rem;
        letter-spacing: -0.25px;
        line-height: 1.3;
    }
    .specs-title span {
        border-bottom: 2px solid transparent;
    }
    .specs-about {
        font-size: 1rem;
        letter-spacing: -0.05px;
        line-height: 1.6;
    }
}

.specs-list {
    list-style: none;
    max-width: 350px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 40px;
}

.specs-list li {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.specs-list strong {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111;
}

@media (max-width: 768px) {
    .specs-list {
        grid-template-columns: 1fr; /* одна колонка на мобильных */
        max-width: unset;
        gap: 20px 40px;
    }

}


/**/

.audience-section {
    padding: 9rem 0;
    background: var(--audience-bg);
    text-align: center;
}

.audience-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.audience-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.audience-header-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.audience-title {
    font-size: 2.75rem;
    letter-spacing: -1.25px;
    line-height: 1.3;
    font-weight: 600;
}

.audience-about {
    font-size: 1.125rem;
    letter-spacing: -0.25px;
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 993px) {
    .audience-section {
        padding: 3rem 0;
    }
    .audience-wrap {
        gap: 3rem;
    }
    .audience-title {
        font-size: 2rem;
        letter-spacing: -0.25px;
        line-height: 1.3;
    }
    .audience-title span {
        border-bottom: 2px solid transparent;
    }
    .audience-about {
        font-size: 1rem;
        letter-spacing: -0.05px;
        line-height: 1.6;
    }
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-list figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.audience-note {
    display: block;
    margin-top: 6px;
    font-size: 0.875rem;
    color: #555;
}

.audience-icon img {
    border-radius: 50%;
    background: #0293df0d;
    padding: 10px;
}

.audience-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s ease;
}

.audience-icon {
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0293df0d;
    border-radius: 50%;
    transition: transform 0.2s ease
}

.audience-icon svg {
    width: 30px;
    height: 30px;
    fill: #2a5bd7;
}

@media (hover: hover) and (pointer: fine) {
    .audience-item:hover .audience-icon {
        transform: translateY(-6px);
    }
}

.audience-label {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}

@media (max-width: 993px) {
    .audience-list {
        gap: 2.25rem;
    }
}


/**/

.contacts-section {
    background: var(--contacts-bg);
    padding: 7rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.contacts-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contacts-header-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.contacts-title {
    font-size: 2.75rem;
    letter-spacing: -1.25px;
    line-height: 1.3;
    font-weight: 600;
}

.contacts-about {
    font-size: 1.125rem;
    letter-spacing: -0.25px;
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 993px) {
    .contacts-section {
        padding: 3rem 1rem;
    }
    .contacts-wrap {
        gap: 3rem;
    }
    .contacts-title {
        font-size: 2rem;
        letter-spacing: -0.25px;
        line-height: 1.3;
    }
    .contacts-title span {
        border-bottom: 2px solid transparent;
    }
    .contacts-about {
        font-size: 1rem;
        letter-spacing: -0.05px;
        line-height: 1.6;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    background: #fff;
    border-radius: var(--radius-1-5);
    text-align: left;
    transition: background 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .contact-card:hover {
        background: #e4e4e4;
    }
}

.contact-card-title {
    font-size: 1.5rem;
    letter-spacing: -1.2px;
    line-height: 1.3;
    font-weight: 600;
}

.contact-card .contact-details .social {
    font-size: 2rem;
}

.contact-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-social a {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    margin: 0;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .contact-social a:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 993px) {

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .contact-social {
        margin: 2rem 0 0;
        justify-content: center;
    }

}

/**/

.section-footer {
    background: var(--footer-bg);
    color: #fff;
    padding: 7rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-footer-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.section-footer-title {
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -0.2px;
    max-width: 800px;
}

.section-footer-after-title {
    color: #fff;
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.2px;
    font-style: italic;
    font-weight: 500;
}

@media (max-width: 993px) {
    .section-footer-title {
        font-size: 3rem;
        line-height: 1.2;
        letter-spacing: -0.2px;
        max-width: unset;
    }

    .section-footer-after-title {
        font-size: 1.5rem;
        line-height: 1.3;
        letter-spacing: -0.1px;
    }
}

/*------------------------------------------------------------- # 404--------------*/

.page__error {
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
}

.page__error-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page__error .page__error-name {
    line-height: 1.3;
    text-transform: uppercase;
    font-size: 7rem;
    font-weight: 600;
}

.page__error .page__error-description {
    line-height: var(--text--10--line-height);
    font-size: var(--text--10);
    margin: 0 0 0.5rem;
}

@media(max-width: 991px) {
    .page__error {
        height: auto;
        padding: 2rem;
    }

}
