@import url(https://fonts.googleapis.com/css2?family=Forum&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap);
:root {
    --theme-color-primary: #00589A;
    --theme-color-secondary: #00589A;
    --main-bg-color: #FFFFFF;
    --text-color: #333333;
    --color-gray: #A4A5AC;
}

html {
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    max-width: 1920px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
    line-height: 1.3;
    font-weight: normal;
    color: #000000;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0 0 10px #eeeeee;
}

@media (min-width: 992px) {
    body {
        font-size: 16px;
        line-height: 1.5;
        font-weight: normal;
    }
}

@media (max-width: 1900px) {
    body {
        max-width: 100%;
    }
}

body *,
body *:before,
body *:after {
    box-sizing: border-box;
}

body input,
body button {
    -webkit-appearance: none;
}

body img {
    display: block;
    max-width: 100%;
    height: auto;
}

body a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: normal;
    transition: all 0.2s ease-out;
}

body a:hover,
body a:focus {
    outline: none;
}

body p,
body li {
    font-weight: 300;
}

.cancel-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cancel-list li {
    padding-left: 0;
}

.cancel-list li:before {
    display: none;
}

ul {
    padding: 0;
    list-style: none;
}

ul li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 16px;
}

ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    border-radius: 0;
    background: var(--theme-color-primary);
}

.h1-decor {
    color: var(--theme-color-primary);
}

h1 {
    margin-top: 0;
    margin-bottom: 13px;
    max-width: 680px;
    font-family: "Forum";
    font-size: 30px;
    line-height: 34px;
    font-weight: 400;
}

@media (min-width: 580px) {
    h1 {
        font-size: 36px;
        line-height: 38px;
        font-weight: 400;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 46px;
        line-height: 48px;
        font-weight: 400;
    }
}

h2 {
    font-family: "Forum";
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
}

@media (min-width: 992px) {
    h2 {
        font-size: 60px;
        line-height: 1;
        font-weight: 400;
    }
}

h3 {
    color: var(--text-color);
    font-size: 32px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    h3 {
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
    }
}

table {
    min-width: 710px;
    border: 1px solid #a2a2ab;
    border-collapse: collapse;
}

table tbody {
    border-color: #A2A2AB;
}

table th {
    width: 160px;
    padding: 10px 25px;
    color: #ffffff;
    border-color: #ffffff;
    background: #A2A2AB;
}

@media (min-width: 580px) {
    table th {
        width: 270px;
    }
}

table th:first-child {
    width: auto;
}

table td {
    width: 160px;
    border-color: #A2A2AB;
    background-color: #ffffff;
    padding: 15px;
}

@media (min-width: 580px) {
    table td {
        padding: 15px 25px;
        width: 270px;
    }
}

table td span {
    display: block;
}

table td:first-child {
    width: 120px;
    font-weight: bold;
    background: #f6f6f6;
}

.list-item {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: normal;
    color: #000000;
    margin: 16px 0;
}

.list-item:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f00000;
}

.btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 15px 75px 15px 35px;
    align-items: center;
    min-width: 160px;
    border: none;
    outline: none;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.2s ease-out;
    color: #ffffff;
}

.btn span {
    margin: auto;
}

.btn span.btn-arrow-right {
    width: 30px;
    margin-left: 8px;
}

.btn span.btn-arrow-left {
    margin-right: 8px;
    width: 0;
}

.btn-arrow-right,
.btn-arrow-left {
    padding-top: 1px;
    transition: all 300ms ease;
}

.btn:focus {
    outline: none;
}

.btn:hover .btn-arrow-right {
    width: 0;
}

.btn:hover .btn-arrow-left {
    width: 30px;
}

.btn-submit {
    text-align: center;
    width: 100%;
    max-width: 350px;
    justify-content: center;
    font-weight: 500;
}

.close-cross {
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 400ms ease;
}

.close-cross:hover {
    transform: rotate(180deg) scale(1.2);
}

.no-scroll {
    overflow: hidden;
}

.link-default {
    position: relative;
    display: block;
    max-width: 414px;
    margin: 16px auto;
    padding: 8px;
    font-size: 18px;
    line-height: 1;
    font-weight: normal;
    text-align: center;
}

@media (min-width: 480px) {
    .link-default {
        padding: 18px 18px;
    }
}

.link-default:before,
.link-default:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #000000;
    transition: width 200ms ease;
}

.link-default:after {
    top: auto;
    bottom: 0;
}

.link-default:hover:before,
.link-default:hover:after {
    width: 15%;
}

.link-more {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding-right: 36px;
    padding-bottom: 6px;
    font-size: 16px;
    line-height: 1;
    font-weight: normal;
    background: url(../img/arrow_more.svg) no-repeat right center;
}

@media (min-width: 420px) {
    .link-more {
        margin-bottom: 0;
    }
}

.link-more:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: var(--text-color);
    transition: width 200ms ease;
}

.link-more:hover {
    color: var(--text-color);
}

.link-more:hover:after {
    width: 20px;
}

.decorated-image {
    position: relative;
    display: inline-block;
    z-index: 1;
    align-self: flex-start;
    margin-right: 12px;
    margin-bottom: 40px;
}

.decorated-image:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -12px;
    left: 12px;
    width: 100%;
    height: 100%;
    border: 1px solid #b0cbd8;
}

@media (min-width: 1024px) {
    .decorated-image:before {
        bottom: -16px;
        left: auto;
        right: -16px;
        width: calc(100%);
    }
}

.container {
    padding: 0 20px;
}

@media (min-width: 580px) {
    .container {
        padding: 0 30px;
    }
}

@media (min-width: 1024px) {
    .container {
        width: 100%;
        max-width: 1400px;
        padding: 0 60px;
        margin: auto;
        flex-shrink: 0;
    }
}

@media (min-width: 992px) {
    .v-center {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (min-width: 480px) {
    .section-header {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: center;
    }
}

.inner-page {
    background: #f7f7f7;
}

.page-bg {
    position: absolute;
    mix-blend-mode: darken;
    bottom: 0;
    right: 0;
    display: none;
}

@media (min-width: 768px) {
    .page-bg {
        display: block;
    }
}

form {
    display: block;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=date],
textarea {
    position: relative;
    display: block;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    resize: none;
    width: 100%;
    height: 45px;
    padding: 10px 0 5px;
    border: none;
    color: #161616;
    border-bottom: 1px solid #D2D2D2;
    background: #ffffff;
    border-radius: 0;
    transition: all 0.2s ease-out;
}

textarea {
    height: auto;
    max-height: 155px;
}

.is-invalid {
    display: block;
    position: relative;
}

.is-invalid input {
    border-color: #f00000;
}

[type=checkbox] {
    display: none;
}

[type=checkbox]~label {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-left: 20px;
    font-size: 12px;
    line-height: 15px;
    font-weight: normal;
}

[type=checkbox]~label a {
    text-decoration: underline;
}

[type=checkbox]~label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #BEBEBE;
    background-color: #fff;
}

[type=checkbox]~label:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 1px;
    width: 12px;
    height: 12px;
}

[type=checkbox]:checked+label:after {
    background: url(../img/checked.svg) no-repeat 0 0/contain;
}

.formgroup {
    display: block;
    margin-bottom: 15px;
}

.formgroup-title {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.formgroup-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.radio {
    max-width: 234px;
    min-width: 150px;
    margin-right: 30px;
}

.radio-label {
    margin-bottom: 15px;
}

.radio-label-text {
    display: block;
    font-size: 15px;
    line-height: 22px;
    font-weight: normal;
}

.radio-label-comment {
    display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: normal;
    color: #A1A1A1;
}

[type=radio] {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    left: -9999px;
    clip: rect(0, 0, 0, 0);
}

[type=radio]+label {
    cursor: pointer;
    position: relative;
    display: block;
    padding-left: 26px;
}

[type=radio]+label:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #B0CBD8;
    background: #D8E8EF;
}

[type=radio]+label:after {
    content: "";
    position: absolute;
    top: 8px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: none;
}

[type=radio]:checked+label:before {
    background: none;
}

[type=radio]:checked+label:after {
    background: var(--theme-color-primary);
}

.header {
    max-width: 100%;
    position: relative;
    z-index: 90;
}

.header-top {
    display: block;
    background: #005895;
    height: auto;
    padding: 10px 0;
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}

.header-top-link img {
    margin-right: 8px;
    display: none;
}

@media (min-width: 390px) {
    .header-top-link img {
        display: block;
    }
    .header-top-link {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .header-top-phone {
        margin-right: 40px;
    }
}

.header-top-mail {
    display: none;
}

@media (min-width: 768px) {
    .header-top-mail {
        display: inline-flex;
    }
}

@media (min-width: 1400px) {
    .header-top {
        padding: 10px 0;
    }
}

.header .nav-button {
    position: relative;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    padding: 0;
    background: none;
    border: none;
    background: #005597;
    clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
}

.header .nav-button:focus {
    outline: none;
}

.header .nav-button span {
    position: relative;
    display: block;
    height: 4px;
    width: 20px;
    padding: 0;
    text-indent: -9999px;
    font-size: 0;
    border: none;
    border-radius: 10px;
    background: #ffffff;
    transition: all 0.2s ease-out;
}

.header .nav-button span:after,
.header .nav-button span:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 4px;
    width: 20px;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.2s ease-out;
}

.header .nav-button span:after {
    top: -6px;
}

.header .nav-button span:before {
    top: 6px;
}

.nav--desktop {
    display: none;
}

@media (min-width: 1400px) {
    .header .nav-button {
        display: none;
    }
    .nav--desktop {
        display: block;
    }
    .nav--mobile {
        display: none;
    }
}

.header .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    max-width: 197px;
    margin-left: 16px;
}

.header .logo img {
    display: block;
    margin-right: 8px;
}

@media (min-width: 580px) {
    .header .logo img {
        max-width: 232px;
        margin-right: 12px;
    }
}

@media (min-width: 1400px) {
    .header .logo img {
        margin-right: 24px;
    }
}

.header-link {
    display: none;
}

@media (min-width: 1400px) {
    .header-link {
        display: block;
        font-size: 24px;
        line-height: 26px;
        font-weight: 600;
    }
}

.header-bottom {
    background: #ffffff;
}

.header-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

@media (min-width: 1400px) {
    .header-bottom-wrapper {
        height: 80px;
    }
}

.header .nav-phone {
    display: none;
}

@media (min-width: 992px) {
    .header .nav-phone {
        display: initial;
    }
}

.header .btn {
    display: none;
}

.header .btn-mobile {
    display: block;
}

@media (min-width: 992px) {
    .header .btn {
        display: block;
        flex-shrink: 0;
        width: 100%;
        max-width: 253px;
        height: 50px;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
    }
}

.header-white .header-bottom {
    background: none;
    margin-bottom: -70px;
    height: 70px;
}

@media (min-width: 1400px) {
    .header-white .header-bottom {
        height: 80px;
        margin-bottom: -80px;
    }
}

.header-white .nav {
    background: none;
}

.header-white .nav-link,
.header-white .nav-link:hover,
.header-white .nav-link.current {
    color: #ffffff;
}

.header-white .nav-link span:before {
    background: #ffffff;
    bottom: 0;
}

.header.active .nav-button span {
    background: none;
}

.header.active .nav-button span:after {
    width: 21px;
    transform: translate(-50%, 6px) rotate(45deg);
}

.header.active .nav-button span:before {
    width: 21px;
    transform: translate(-50%, -6px) rotate(-45deg);
}

.header-fixed {
    display: none;
    transition: all 300ms ease;
    transform: translateY(-100%);
    position: fixed;
    z-index: 9000;
    top: 0;
    width: 100%;
    align-items: center;
    background-color: #EDEDED;
    border-bottom: 1px solid #d3d3d3;
}

@media (min-width: 992px) {
    .header-fixed {
        display: flex;
    }
}

.header-fixed.is-active {
    transform: translateY(0);
}

.search {
    position: relative;
    width: 36px;
    height: 36px;
}

@media (min-width: 1400px) {
    .search {
        width: 40px;
        height: 40px;
    }
}

.search input[type=text] {
    cursor: pointer;
    position: absolute;
    z-index: 14;
    top: 0;
    right: 0;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin-bottom: 0;
    transform: rotate(-45deg);
    background: var(--theme-color-primary);
    border: none;
    color: transparent;
    transition: transform 300ms ease 300ms, width 300ms ease, height 300ms ease, color 100ms ease 100ms;
}

@media (min-width: 1400px) {
    .search input[type=text] {
        width: 40px;
        height: 40px;
    }
}

.search input[type=text]:focus {
    width: 230px;
    height: 50px;
    color: #ffffff;
    transform: rotate(0);
    transition: transform 300ms ease, width 300ms ease 300ms, height 300ms ease, color 300ms ease 300ms;
}

@media (min-width: 1400px) {
    .search input[type=text]:focus {
        width: 300px;
    }
}

.search input[type=text]:focus~.submit {
    pointer-events: auto;
}

.search .submit {
    cursor: pointer;
    outline: none;
    position: absolute;
    z-index: 15;
    right: 4px;
    top: 10px;
    background: none;
    width: 23px;
    height: 23px;
    padding: 0;
    border: none;
    pointer-events: none;
    transition: pointer-events 100ms ease 100ms;
}

@media (min-width: 1400px) {
    .search .submit {
        top: 13px;
        right: 5px;
    }
}

.search .submit svg {
    width: 100%;
    height: 100%;
}

.nav {
    width: 100%;
    padding: 0;
    background: #ffffff;
}

@media (min-width: 1400px) {
    .nav {
        padding: 0 30px;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
}

.nav-list {
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    padding-top: 92px;
    padding-bottom: 90px;
    align-items: center;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    transition: all 0.2s linear;
    position: absolute;
    top: 41px;
    left: 0;
    background: rgba(13, 34, 58, 0.95);
    width: 100%;
    z-index: 1;
}

@media (min-width: 1400px) {
    .nav-list {
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        top: 0;
        width: 100%;
        height: 50px;
        padding: 0;
        background: none;
        visibility: visible;
        opacity: 1;
        overflow: initial;
    }
}

.nav-item {
    position: relative;
}

@media (min-width: 1400px) {
    .nav-item {
        margin-bottom: 0;
        margin-left: 40px;
    }
}

@media (min-width: 1400px) {
    .nav-item .btn-default {
        display: none;
    }
}

.nav-item:hover .nav-dropdown-list {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    transition-delay: 0ms;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

@media (min-width: 1400px) {
    .nav-link {
        justify-content: space-between;
        font-size: 16px;
        line-height: 1;
        font-weight: 500;
        color: inherit;
        padding: 17px 0;
        font-size: 18px;
    }
}

.nav-link:hover {
    color: var(--theme-color-primary);
}

.nav-link span {
    position: relative;
    padding: 17px 0;
}

.nav-link span:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 0;
    height: 1px;
    transform: translateX(-50%);
    transition: all 120ms;
    bottom: 0;
    background: #ffffff;
}

@media (min-width: 1400px) {
    .nav-link span:before {
        background: var(--theme-color-primary);
        bottom: -14px;
    }
}

.nav-link:hover span:before {
    width: 100%;
}

.nav-link.has-dropdown:hover span:before {
    width: 0;
}

@media (min-width: 1400px) {
    .nav-link.current {
        color: var(--theme-color-primary);
    }
}

.nav-link.current span:before {
    width: 100%;
}

.nav-item:not(.nav-item-mobile)+.nav-item-mobile {
    padding-top: 16px;
    border-top: 1px solid #005597;
}

@media (min-width: 420px) {
    .nav-item:not(.nav-item-mobile)+.nav-item-mobile {
        max-width: 350px;
    }
}

@media (min-width: 1400px) {
    .nav-item:not(.nav-item-mobile)+.nav-item-mobile {
        padding-top: 0;
        border: none;
        display: none;
    }
}

.nav-item:not(.nav-item-mobile)+.nav-item-mobile .header-top-mail {
    display: block;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
}

@media (min-width: 1400px) {
    .nav-item:not(.nav-item-mobile)+.nav-item-mobile .header-top-mail {
        display: none;
    }
}

.nav-item-mobile .nav-link {
    font-weight: 600;
}

.nav-dropdown-icon {
    width: 20px;
    height: 20px;
    margin-left: 12px;
    flex-shrink: 0;
}

.nav-dropdown-list {
    display: none;
    padding-left: 16px;
}

@media (min-width: 1400px) {
    .nav-dropdown-list {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translate(-50%);
        top: 99%;
        margin-top: 20px;
        display: block;
        width: 200px;
        height: auto;
        padding: 12px 28px;
        background: #ffffff;
        transition: opacity 200ms ease, visibility 200ms ease 200ms, margin-top 200ms ease;
        filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
        opacity: 0;
        visibility: hidden;
    }
    .nav-dropdown-list:before {
        content: "";
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translate(-50%);
        top: -6px;
        width: 14px;
        height: 6px;
        background: url(../img/triangle_dropdown.svg);
    }
}

.nav-dropdown-link {
    display: block;
    padding: 8px 0;
    margin: 0;
    color: #8ea9bc;
    font-size: 16px;
    line-height: 18px;
    font-weight: normal;
}

@media (min-width: 1400px) {
    .nav-dropdown-link {
        color: var(--color-text);
    }
}

.nav-dropdown-link:hover {
    color: var(--theme-color-primary);
}

@media (max-width: 1400px) {
    .nav.active .nav-list {
        visibility: visible;
        height: calc(100vh - 40px);
        overflow: auto;
    }
}

.footer {
    margin-top: auto;
    padding: 30px 0 0;
    background: var(--theme-color-primary);
    color: #ffffff;
}

.footer-nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 360px));
    padding-bottom: 20px;
}

.footer-nav-link {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: #ffffff;
}

@media (min-width: 1400px) {
    .footer-nav-link {
        font-size: 18px;
        line-height: 1;
        font-weight: 500;
    }
}

.footer-nav-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-top: 1px solid #528cb7;
}

.footer-logo {
    max-width: 149px;
}

.footer-social {
    margin: 10px 0px;
}

.footer-social-list {
    display: flex;
    align-items: center;
}

.footer-social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: url(../img/social_bg.svg) no-repeat center/contain;
    margin: 0 4px;
}

@media (min-width: 420px) {
    .footer-social-item {
        width: 38px;
        height: 38px;
    }
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 0;
    padding-top: 20px;
}

.breadcrumbs-item {
    font-size: 16px;
    line-height: 1;
    font-weight: normal;
    color: #99BACA;
    margin: 5px 0px
}

.breadcrumbs-link {
    padding-right: 15px;
    font-size: 16px;
    line-height: 1;
    font-weight: normal;
    color: var(--text-color);
}

.breadcrumbs-link:after {
    content: "";
    display: inline-block;
    margin-left: 15px;
    width: 6px;
    height: 10px;
    background: url(../img/arrow_breadcrumbs.svg) no-repeat right center;
}

.breadcrumbs-link:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 0;
}

.pagination-list {
    display: flex;
    align-items: center;
}

.pagination-item {
    width: auto;
}

.pagination-link {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 8px;
    font-family: "Forum", serif;
    font-size: 24px;
    line-height: 1;
    font-weight: normal;
    color: var(--theme-color-primary);
}

.pagination-link.current {
    color: #66869E;
}

.pagination-arrow {
    cursor: pointer;
    display: block;
    width: 22px;
    height: 46px;
    margin: 0 12px;
    font-size: 0;
    color: transparent;
    border: none;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    background-color: var(--theme-color-primary);
    background-image: url(../img/slick_prev.svg);
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: 70% center;
}

@media (min-width: 480px) {
    .pagination-arrow {
        width: 28px;
        height: 56px;
        background-size: 12px 12px;
    }
}

.pagination-arrow-next {
    transform: rotate(180deg);
}

.pagination-arrow.disabled {
    background-color: #66869E;
}

.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: fixed;
    z-index: 9200;
    width: 100%;
    display: none;
    max-width: 744px;
    padding: 40px 40px 60px;
    background: #ffffff;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.2);
}

.modal .btn {
    display: block;
    margin: auto;
    margin-top: 50px;
}

.modal .btn-close {
    padding: 27px 30px;
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9100;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
}

.modal-title {
    font-family: "Forum", serif;
    font-size: 36px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
}

.modal p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 22px;
    font-weight: normal;
    text-align: center;
}

.modal-close {
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 18px;
    opacity: 0.2;
}

.modal-close:hover {
    opacity: 1;
}

.modal-header {
    display: block;
    margin-bottom: 12px;
    text-align: center;
}

.banner {
    position: relative;
}

.banner h1 {
    position: absolute;
    color: #ffffff;
    max-width: 320px;
    font-size: 30px;
    line-height: 32px;
    font-weight: normal;
    bottom: 20px;
}

@media (min-width: 768px) {
    .banner h1 {
        bottom: 40px;
        max-width: 360px;
        font-size: 36px;
        line-height: 40px;
        font-weight: normal;
    }
}

@media (min-width: 1024px) {
    .banner h1 {
        bottom: 130px;
        max-width: 420px;
        font-size: 56px;
        line-height: 56px;
        font-weight: normal;
    }
}

@media (min-width: 1400px) {
    .banner h1 {
        bottom: 130px;
        max-width: 675px;
        font-size: 56px;
        line-height: 56px;
        font-weight: normal;
    }
}

.banner-image {
    background: var(--theme-color-primary);
}

@media (min-width: 420px) {
    .banner {
        min-height: auto;
    }
}

.about {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 420px) {
    .about {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .about {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (min-width: 1400px) {
    .about-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1400px) {
    .about-column {
        flex-shrink: 0;
        width: 49%;
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: 50px;
        text-align: justify;
    }
}

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

@media (min-width: 768px) {
    .about-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (min-width: 1400px) {
    .about-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.about-item {
    margin-bottom: 10px;
}

.about-item:nth-child(2) {
    order: 2;
}

@media (min-width: 1400px) {
    .about-item:nth-child(2) {
        order: initial;
        display: flex;
        align-items: center;
        margin-bottom: 0;
        grid-row: span 2;
    }
}

.about-link {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-shrink: 0;
    flex-grow: 1;
    padding: 10px 0;
    color: #ffffff;
    overflow: hidden;
}

@media (min-width: 480px) {
    .about-link {
        min-height: 220px;
        flex-direction: column;
    }
}

@media (min-width: 1024px) {
    .about-link {
        min-height: 330px;
        padding: 20px 0;
    }
    .about-link:before {
        content: "";
        position: absolute;
        top: 3%;
        left: 3%;
        width: 94%;
        height: 94%;
        border: 1px solid #ffffff;
        transition: all 300ms ease;
        opacity: 0;
        transform: translateX(-20px);
    }
}

.about-link:hover .about-link-feature {
    opacity: 0;
    transform: translateX(-20px);
}

.about-link:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.about-link-feature {
    display: flex;
    align-items: center;
    max-width: 274px;
    font-size: 16px;
    line-height: 1;
    font-weight: normal;
    transition: all 300ms ease;
}

@media (min-width: 1024px) {
    .about-link-feature {
        font-size: 20px;
        line-height: 1;
        font-weight: normal;
    }
}

.about-link-feature img {
    max-height: 94px;
    margin-right: 8px;
}

@media (min-width: 768px) {
    .about-link-feature img {
        max-height: 105px;
        margin-right: 16px;
    }
}

@media (min-width: 1024px) {
    .about-link-feature img {
        margin-right: 24px;
        max-height: 142px;
    }
}

.about-link-title {
    display: none;
    opacity: 0;
    transform: translateX(-51%);
    transition: all 300ms ease;
    font-family: "Forum", serif;
    font-size: 48px;
    line-height: 48px;
    font-weight: normal;
    text-align: center;
}

@media (min-width: 1024px) {
    .about-link-title {
        position: absolute;
        top: 64px;
        left: 50%;
        transform: translateX(-52%);
        display: block;
    }
}

.about-link:hover {
    color: #ffffff;
}

.about-link:hover .about-link-title {
    transform: translateX(-50%);
    opacity: 1;
}

.about-link-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 14px;
}

@media (min-width: 480px) {
    .about-link-image img {
        max-width: 121px;
        padding-right: 0;
    }
}

@media (min-width: 1024px) {
    .about-link-image img {
        max-width: 220px;
        max-height: 145px;
    }
}

.main-page .about {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 420px) {
    .main-page .about {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .main-page .about {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.about {
    position: relative;
    padding: 25px 0;
}

@media (min-width: 768px) {
    .about-nav-list {
        display: flex;
        border-bottom: 1px solid #e5e5e5;
    }
}

.about-nav-item {
    margin-bottom: 0;
}

.about-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    border-bottom: 1px solid #e5e5e5;
}

.about-nav-link.current {
    color: var(--theme-color-primary);
    border-bottom-color: var(--theme-color-primary);
}

@media (min-width: 768px) {
    .about-nav-link {
        margin-bottom: -1px;
        margin-right: 80px;
        padding: 20px 0;
    }
}

.about-nav-link:hover {
    color: var(--theme-color-primary);
}

.about-content {
    margin: 0 auto;
    max-width: 846px;
}

.about-content .has-drop-cap:first-letter {
    font-size: 36px;
    line-height: 0;
}

.about-content a {
    color: var(--theme-color-primary);
}

.about-content a:hover {
    text-decoration: underline;
}

.about-content-image {
    position: relative;
    z-index: 1;
    margin: 12px 0;
    margin-right: 12px;
    margin-bottom: 40px;
}

.about-content-image:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -12px;
    left: 12px;
    width: 100%;
    height: 100%;
    border: 1px solid #b0cbd8;
}

@media (min-width: 1024px) {
    .about-content-image:before {
        bottom: -20px;
        left: 20px;
        width: calc(100% - 12px);
    }
}

.about-partner {
    margin-bottom: 20px;
    padding: 13px 0 20px;
    border-bottom: 1px solid #b0cbd8;
    border-top: 1px solid #b0cbd8;
}

@media (min-width: 768px) {
    .about-partner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px 0;
    }
}

.about-partner-name {
    font-size: 24px;
    line-height: 38px;
    font-weight: normal;
}

@media (min-width: 768px) {
    .about-partner-name {
        font-size: 34px;
        line-height: 38px;
        font-weight: normal;
    }
}

.about-partner-link {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .about-partner-link {
        font-size: 20px;
        line-height: 24px;
        font-weight: 500;
    }
}

@media (min-width: 768px) {
    .about-partner-announce {
        display: flex;
    }
}

@media (min-width: 768px) {
    .about-partner-announce p {
        margin: 0;
    }
    .about-partner-announce .has-drop-cap:first-letter {
        font-size: 16px;
        line-height: 0;
    }
}

.about-partner-announce .has-drop-cap:first-letter {
    font-size: 16px;
    line-height: 0;
}

.about-partner-logo {
    max-width: 155px;
    margin-right: 30px;
    flex-shrink: 0;
}

.catalog {
    background: #F5F7F8;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 420px) {
    .catalog {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .catalog {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.catalog h2 {
    margin-top: 0;
}

.catalog-list {
    display: grid;
    gap: 10px;
    padding: 20px 0;
}

@media (min-width: 480px) {
    .catalog-list {
        grid-template-columns: repeat(2, minmax(0, auto));
        grid-auto-flow: dense;
        grid-auto-rows: minmax(240px, auto);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .catalog-list {
        grid-template-columns: repeat(3, minmax(0, auto));
    }
}

@media (min-width: 1400px) {
    .catalog-list {
        grid-auto-rows: minmax(224px, 1fr);
    }
}

.catalog-item {
    height: 100%;
    padding-right: 55px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 100% 0;
    transition: all 300ms ease;
}

@media (min-width: 480px) {
    .catalog-item {
        padding-right: 60px;
    }
}

@media (min-width: 1024px) {
    .catalog-item {
        padding-right: 75px;
    }
}

@media (min-width: 1400px) {
    .catalog-item {
        padding-right: 100px;
    }
}

@media (min-width: 480px) {
    .catalog-item:last-of-type {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .catalog-item:last-of-type {
        grid-column: auto;
        grid-column-start: 3;
        grid-row: span 2/2;
    }
}

.catalog-item:hover {
    background-size: auto 105%;
}

.catalog-item-link {
    display: block;
    width: 100%;
    height: 100%;
}

.catalog-item-wrapper {
    width: 100%;
    height: 100%;
    padding: 25px;
}

@media (min-width: 1400px) {
    .catalog-item-wrapper {
        padding-bottom: 10px;
    }
}

.catalog-item-title {
    font-size: 20px;
    line-height: 22px;
    font-weight: normal;
    color: #ffffff;
}

@media (min-width: 1400px) {
    .catalog-item-title {
        font-size: 24px;
        line-height: 24px;
        font-weight: normal;
    }
}

.catalog-item-description {
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
    color: #ffffff;
}

@media (min-width: 1400px) {
    .catalog-item-description {
        font-size: 15px;
        line-height: 18px;
        font-weight: 300;
    }
}

.catalog-item-description:after {
    content: "";
    display: block;
    width: 100%;
    width: 16px;
    height: 16px;
    margin-left: auto;
    margin-top: 8px;
    background: url(../img/arrow_left.svg);
}

@media (min-width: 769px) {
    .catalog-description {
        display: flex;
    }
}

.catalog-description-text p:first-child {
    margin-top: 0;
}

.catalog-description-text .has-drop-cap:first-letter {
    font-size: 36px;
    line-height: 0;
}

@media (min-width: 769px) {
    .catalog-description-image {
        flex-shrink: 0;
        width: calc(33% - 20px);
        margin-left: 20px;
    }
}

.catalog-description .link-default {
    margin: 25px 0;
}

@media (min-width: 769px) {
    .catalog-delivery {
        display: flex;
    }
}

@media (min-width: 769px) {
    .catalog-delivery-image {
        width: calc(33% - 20px);
        flex-shrink: 0;
        margin-left: 20px;
    }
}

.news {
    padding-top: 40px;
    padding-bottom: 40px;
}

.news h2 {
    margin-top: 0;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px 60px;
}

@media (min-width: 480px) {
    .news-list {
        grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
        grid-auto-flow: dense;
    }
    .news-list--archiv {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        grid-auto-flow: dense;
    }
}

.news-item {
    display: flex;
}

@media (min-width: 768px) {
    .news-item {
        padding-right: 24px;
    }
}

@media (min-width: 1400px) {
    .news-item {
        padding-right: 64px;
    }
}

.news-item:hover {
    color: var(--theme-color-primary);
}

.news-item-wrapper {
    display: flex;
    /* align-items: stretch; */
    align-items: center;
}

.news-carousel .news-item-wrapper {
    flex-direction: column;
}

.news-item-title {
    margin-top: 15px;
}

.news-item-image {
    /* display: none; */
    flex-shrink: 0;
    margin-right: 0px;
    min-width: 83px;
    display: flex;
    align-items: center;
}

.news-carousel .news-item-image:after {
    display: none;
}

.news-item-image:after {
    content: "";
    /* display: block; */
    width: 83px;
    height: 161px;
    background: url(../img/news-item-bg.svg) no-repeat center/contain;
}

.inner-page .news-item-image:after {
    margin-left: -20px;
}

@media (min-width: 480px) {
    .news-item-image {
        display: flex;
        align-items: center;
        margin-right: 16px;
    }
    .news-item-image:after {
        margin-left: 0;
    }
    .inner-page .news-item-image:after {
        margin-left: 0px;
    }
}

.news-item-image img {
    object-fit: cover;
}

.news-item-image img {
    display: none;
}

.news-carousel .news-item-image img {
    display: block;
    max-width: 100%;
    height: 300px;
    width: 100%;
}


/* .news-carousel .news-item-image img {
    width: 100%;
    max-width: 300px;
} */

@media (min-width: 580px) {
    .news-item-image img {
        display: block;
        width: 194px;
        min-height: 254px;
        height: 100%;
    }
    .news-list--archiv .news-item-image img {
        max-height: 254px;
    }
    .news-carousel .news-item-image:after {
        display: block;
    }
    .news-carousel .news-item-image img {
        display: block;
        max-width: 100%;
        height: 300px;
        width: 100%;
        max-width: 300px
    }
}

@media (min-width: 992px) {
    .news-item-image img {
        /* width: 162px; */
        height: 100%;
        min-height: 212px;
        max-height: 212px;
    }
    .news-carousel .news-item-image img {
        max-width: 370px;
    }
    .news-list--archiv .news-item-image img {
        max-height: 212px;
        width: 362px;
    }
}

@media (min-width: 1400px) {
    .news-item-image img {
        /* width: 216px; */
        height: 100%;
        min-height: 282px;
        max-height: 282px;
    }
    .news-list--archiv .news-item-image img {
        max-height: 282px;
        width: 415px;
    }
    .news-list--archiv .news-item-content {
        width: 40%;
    }
    .news-carousel .news-item-image img {
        max-width: 480px;
    }
}

.news-item-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: normal;
    color: var(--theme-color-primary);
}

.news-item-date {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--color-gray);
}

.news-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 80px;
}

@media (min-width: 480px) {
    .news-arrows {
        height: 175px;
    }
}

@media (min-width: 1024px) {
    .news-arrows {
        height: 200px;
    }
}

@media (min-width: 1400px) {
    .news-arrows {
        height: 235px;
    }
}

.news-arrows .slick-arrow {
    cursor: pointer;
    width: 22px;
    height: 46px;
    margin-left: 1px;
    padding: 0;
    font-size: 0;
    color: transparent;
    border: none;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    background-color: #66869E;
    background-image: url(../img/slick_prev.svg);
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: 70% center;
}

@media (min-width: 480px) {
    .news-arrows .slick-arrow {
        width: 47px;
        height: 95px;
        background-size: 20px 20px;
    }
}

.news-arrows .slick-next {
    transform: rotate(180deg);
    background-color: var(--theme-color-primary);
}

.inner-page .news-item {
    padding-right: 0;
}


/* @media (min-width: 480px) { */

.inner-page .news-item-image:after {
    background: url(../img/news-item-white-bg.svg) no-repeat center/contain;
}


/* } */

.article {
    padding: 20px 0 40px;
}

.article-wrap {
    display: flex;
    align-items: flex-start;
}

.article-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .article-sidebar {
        display: block;
        flex-shrink: 0;
        max-width: 305px;
        margin-left: 40px;
        padding: 26px;
        background: #ffffff;
    }
}

@media (min-width: 1400px) {
    .article-sidebar {
        margin-left: 100px;
    }
}

.article-sidebar-title {
    margin-bottom: 20px;
    font-family: "Forum", serif;
    font-size: 32px;
    line-height: 1.37;
    font-weight: normal;
}

.article h2 {
    margin: 0;
}

.article-image-vertical {
    max-width: 768px;
}

@media (min-width: 1024px) {
    .article-image-vertical {
        float: right;
        margin-left: 18px;
        max-width: 180px;
    }
}

@media (min-width: 1400px) {
    .article-image-vertical {
        max-width: 280px;
    }
}

.article-content .has-drop-cap p:first-child::first-letter {
    font-size: 36px;
    line-height: 0;
}

.article-date {
    padding: 16px 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--color-gray);
}

.article .news-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EAEAEA;
}

@media (min-width: 1024px) {
    .contacts-wrapper {
        display: flex;
    }
}

.contacts-map {
    max-width: 100%;
}

@media (min-width: 1400px) {
    .contacts-map {
        max-width: 1070px;
    }
}

.contacts-map iframe {
    display: block;
    max-width: 100%;
}

.contacts-content {
    padding: 30px 20px;
    flex-grow: 1;
    background-color: #f5f7f8;
}

.contacts-content h2 {
    margin-top: 0;
}

@media (min-width: 768px) {
    .contacts-content {
        padding: 40px 20px;
        background: #f5f7f8 url(../img/contacts_bg.png) no-repeat bottom right/contain;
    }
}

@media (min-width: 1024px) {
    .contacts-content {
        padding: 60px;
    }
}

@media (min-width: 1400px) {
    .contacts-content {
        padding: 100px;
        padding-left: 100px;
        background: #f5f7f8 url(../img/contacts_bg.png) no-repeat bottom right/591px 394px;
    }
}

.contacts-item {
    margin-bottom: 25px;
}

.contacts-title {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: var(--theme-color-primary);
}

.contacts-text {
    font-size: 20px;
    line-height: 24px;
    font-weight: normal;
}

.contacts-text a {
    font-size: 20px;
    line-height: 24px;
    font-weight: normal;
}

.contacts .link-default {
    display: inline-block;
}

.product-item {
    padding-bottom: 20px;
}

.product-link {
    padding: 16px;
}

@media (min-width: 768px) {
    .product-link {
        display: flex;
        background-color: #fff;
    }
}

.product-image {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 220px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .product-image {
        margin: 0;
        margin-right: 30px;
    }
}

.product-image img {
    max-height: 300px;
    object-fit: contain;
}

.product-name {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 20px;
}

.product-character {
    width: 100%;
    flex-shrink: 0;
}

.product-character-title {
    font-weight: 500;
}

.product-character-text {
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .product-character-text {
        max-width: 845px;
    }
}

.product-detail {
    padding: 30px 0;
}

@media (min-width: 768px) {
    .product-detail {
        padding: 40px 0;
    }
}

.product-detail h2 {
    margin-top: 0;
}

.product-detail-wrapper {
    padding: 16px 24px;
    background-color: #fff;
}

@media (min-width: 768px) {
    .product-detail-wrapper {
        display: flex;
    }
}

.product-detail-image {
    display: flex;
    justify-content: center;
    margin: 0 auto 32px;
    padding: 0 26px;
    width: 100%;
    max-width: 366px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .product-detail-image {
        margin: 0;
        margin-right: 40px;
    }
}

.product-detail-image img {
    width: 100%;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .product-detail-description {
        padding-top: 20px;
    }
}

.product-detail-character {
    width: 100%;
    flex-shrink: 0;
}

.product-detail-character-title {
    display: block;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-detail-character-text {
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .product-detail-character-text {
        max-width: 845px;
    }
}

.product-detail .link {
    margin: 24px 0;
}

.error-page {
    height: 100%;
    align-self: stretch;
    padding-top: 50px;
    text-align: center;
    padding-bottom: 80px;
    background-color: #fff;
}

@media (min-width: 1024px) {
    .error-page {
        background: url(../img/404.jpg) no-repeat center/cover;
        padding-bottom: 160px;
    }
}

.error-page-wrapper {
    max-width: 675px;
}

.error-page-title {
    display: block;
    font-family: "Forum";
    font-size: 100px;
    line-height: 100px;
    font-weight: normal;
}

@media (min-width: 1024px) {
    .error-page-title {
        font-size: 300px;
        line-height: 300px;
        font-weight: normal;
    }
}

.error-page-comment {
    margin-bottom: 15px;
    font-family: "Forum";
    font-size: 24px;
    line-height: 24px;
    font-weight: normal;
}

@media (min-width: 1024px) {
    .error-page-comment {
        font-size: 40px;
        line-height: 40px;
        font-weight: normal;
    }
}

.error-page-text {
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
}

@media (min-width: 1024px) {
    .error-page-text {
        font-size: 18px;
        line-height: 26px;
        font-weight: normal;
    }
}

strong {
    font-weight: 500 !important;
}

.catalog-description-text p>a {
    text-decoration: underline;
}

.catalog-description-text p>a:hover {
    color: var(--theme-color-primary);
}

.has-drop-cap:not(:focus):first-letter {
    margin: 0;
    float: none;
    font-size: inherit;
    line-height: inherit;
    font-weight: normal;
    text-transform: none;
}


/*# sourceMappingURL=main.css.map*/