@charset "UTF-8";

* {
    padding: 0px;
    margin: 0px;
    border: none;
}

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

/* Ссылки */
a,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Общий */
aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Форма */
input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type='submit'] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

@font-face {
    font-family: 'Roboto';
    src: url('/front.assets/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/front.assets/fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/front.assets/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #f8f8ff;
    font-family: 'Roboto', Arial, sans-serif;
}

html,
body {
    height: 100%;
}

.page-content {
    flex: 1;
}

.active {
    display: block;
}

.container {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

@media (max-width: 1310px) {
    .container {
        max-width: 668px;
    }
}

@media (max-width: 688px) {
    .container {
        max-width: 100%;
    }
}

.error404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1310px;
    font-size: 20px;
    text-align: center;
    min-height: calc(85vh - 82px);
}

.error404__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.14583;
    color: #262626;
}

@media (max-width: 1310px) {
    .error404__title {
        font-size: 40px;
    }
}

@media (max-width: 688px) {
    .error404__title {
        font-size: 28px;
    }
}

@media (max-width: 460px) {
    .error404__title {
        font-size: 36px;
    }
}

.error404__subtitle {
    font-weight: 400;
    font-size: 26px;
    line-height: 1.5;
    color: #303030;
    margin-top: 16px;
}

@media (max-width: 1310px) {
    .error404__subtitle {
        font-size: 22px;
    }
}

@media (max-width: 688px) {
    .error404__subtitle {
        font-size: 18px;
    }
}

.error404__action {
    margin-top: 32px;
}

.error404 .btn__blue {
    display: inline-block;
    padding: 14px 28px;
}

.modal-loader,
.modal-error {
    text-align: center;
    padding: 40px;
    color: #333;
}

.retry-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 4px;
}

.header {
    padding: 5px 0px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
}

.header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Стили для кнопки меню */
.header__menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition:
        background-color 0.2s ease-in,
        border-radius 0.2s ease-in;
}

.header__menu-btn span {
    width: 30px;
    height: 2px;
    background-color: #303030;
    margin: 4px 0;
    transition: all 0.2s ease-in;
}

@media (max-width: 688px) {
    .header__menu-btn span {
        background-color: #f8f8ff;
    }
}

@media (max-width: 460px) {
    .header__menu-btn span {
        width: 25px;
        margin: 3px 0;
    }
}

.header__menu-btn:hover {
    background-color: #e8edf3;
    border-radius: 15px;
}

@media (max-width: 688px) {
    .header__menu-btn:hover {
        background-color: #31107a;
    }
}

.header__menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px);
}

@media (max-width: 460px) {
    .header__menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
}

.header__menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 460px) {
    .header__menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 688px) {
    .header__menu-btn {
        background-color: #31107a;
        border-radius: 15px;
    }
}

@media (max-width: 460px) {
    .header__menu-btn {
        width: 45px;
        height: 45px;
    }
}

.header__menu-btn.active {
    background-color: #e8edf3;
    border-radius: 15px;
}

@media (max-width: 688px) {
    .header__menu-btn.active {
        background-color: #31107a;
    }
}

/* Стили для выпадающего меню */
.dropdown-menu {
    margin-top: 1px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        opacity 0.3s ease-in-out,
        transform 0.3s ease-in-out;
}

.dropdown-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1310px) {
    .dropdown-menu.active {
        height: 100vh;
        overflow-y: auto;
        padding-bottom: 20px;
    }
}

.dropdown-menu ul li a {
    color: #303030;
    font-size: 15px;
    transition: all 0.2s ease-in;
}

.dropdown-menu ul li a:hover {
    color: #31107a;
    font-weight: 500;
}

@media (max-width: 1310px) {
    .dropdown-menu ul li a {
        font-size: 14px;
    }
}

.dropdown-menu__wrap {
    padding: 20px;
    display: flex;
    gap: 120px;
}

@media (max-width: 1310px) {
    .dropdown-menu__wrap {
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 688px) {
    .dropdown-menu__wrap {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 460px) {
    .dropdown-menu__wrap {
        padding: 0;
        padding-top: 20px;
    }
}

@media (max-width: 688px) {
    .dropdown-menu__col {
        display: flex;
        flex-direction: column;
    }
}

.dropdown-menu .dropdown-menu__col {
    flex: 1;
}

.dropdown-menu__title {
    font-weight: 700;
    font-size: 17px;
    line-height: 1.875;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #31107a;
}

@media (max-width: 1310px) {
    .dropdown-menu__title {
        font-size: 14px;
    }
}

.dropdown-menu__title--company {
    margin-top: 50px;
}

@media (max-width: 688px) {
    .dropdown-menu__title--company {
        margin-top: 20px;
    }
}

@media (max-width: 688px) {
    .dropdown-menu__title.mobile-toggle {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background-color: #e8edf3;
        border-radius: 10px;
    }
}

@media (max-width: 688px) {
    .dropdown-menu__title.mobile-toggle::after {
        content: '▼';
        font-size: 12px;
        transition: transform 0.2s ease-in;
    }
}

@media (max-width: 688px) {
    .dropdown-menu__title.mobile-toggle.active::after {
        transform: rotate(180deg);
    }
}

.dropdown-menu__list {
    margin-top: 5px;
}

@media (max-width: 688px) {
    .dropdown-menu__list.mobile-list {
        display: none;
        padding-left: 20px;
        margin-top: 10px;
    }
}

@media (max-width: 688px) {
    .dropdown-menu__list.mobile-list.active {
        display: block;
    }
}

.dropdown-menu__list--item {
    position: relative;
    padding: 8px 14px;
}

.dropdown-menu__list--item::before {
    content: '';
    background-image: url(../assets/images/tariffs-arrow.png);
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 20px;
    transform: translateY(-50%);
}

.dropdown-menu__list--projects {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1310px) {
    .dropdown-menu__list--projects {
        flex-direction: row;
    }
}

@media (max-width: 460px) {
    .dropdown-menu__list--projects {
        flex-direction: column;
    }
}

.dropdown-menu__list--project {
    padding: 15px;
    color: #262626;
    border-radius: 15px;
    transition: all 0.2s ease-in;
    box-shadow: 1px 1px 8px 1px rgba(34, 60, 80, 0.2);
}

.dropdown-menu__list--project:hover {
    background: #e8edf3;
}

.dropdown-menu__list--project img {
    width: 100px;
    margin-top: 8px;
}

.dropdown-menu__list--project h4 {
    margin-top: 8px;
    color: #303030;
}

.dropdown-menu__list--project p {
    margin-top: 8px;
    font-size: 12px;
    color: #737373;
}

@media (max-width: 1310px) {
    .dropdown-menu__list--project {
        flex: 1;
    }
}

@media (max-width: 1310px) {
    .header__logo {
        width: 250px;
    }
}

@media (max-width: 688px) {
    .header__logo {
        width: 220px;
    }
}

@media (max-width: 460px) {
    .header__logo {
        width: 170px;
    }
}

.header__nav {
    display: flex;
    gap: 22px;
}

@media (max-width: 1310px) {
    .header__nav {
        display: none;
    }
}

.nav__item {
    position: relative;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.2s ease-in;
}

.nav__item a {
    color: #303030;
    transition: color 0.2s ease-in;
}

.nav__item:hover a {
    color: #31107a;
}

/* Стили для выпадающих подменю */
.dropdown-submenu {
    display: none;
    position: absolute;
    z-index: 1000;
    top: 100%;
    left: 0;
    padding: 10px 0px;
    width: max-content;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.dropdown-submenu li a {
    display: flex;
    padding: 8px 15px;
    color: #303030;
    font-size: 15px;
    transition: all 0.2s ease-in;
}

.dropdown-submenu li a:hover {
    background-color: #e8edf3;
}

.dropdown-submenu.active li a {
    color: #303030;
}

.dropdown-submenu li a:hover {
    color: #31107a;
}

/* Класс для открытого меню */
.dropdown-submenu.active {
    display: block;
}

.nav__item--services,
.nav__item--tariffs {
    position: relative;
    padding-right: 14px;
    cursor: pointer;
    color: #303030;
}

.nav__item--services:hover,
.nav__item--tariffs:hover {
    color: #31107a;
}

.nav__item--services::after,
.nav__item--tariffs::after {
    content: '▼';
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 10px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.nav__item--services.active::after,
.nav__item--tariffs.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.header__actions {
    display: flex;
    gap: 36px;
    align-items: center;
}

.actions__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 700;
    line-height: 1.125;
    text-align: right;
    color: #303030;
}

@media (max-width: 1310px) {
    .actions__contacts {
        font-size: 14px;
    }
}

@media (max-width: 688px) {
    .actions__contacts {
        display: none;
    }
}

.actions__phone {
    font-size: 20px;
}

.actions__phone a {
    color: #31107a;
}

.actions__phone a:hover {
    color: #303030;
}

.actions__email a {
    color: #303030;
}

.actions__email a:hover {
    color: #31107a;
}

.actions__btns {
    display: flex;
    gap: 10px;
}

.cta {
    margin-top: 82px;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 82px);
}

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

.cta__content {
    flex: 1;
}

@media (max-width: 688px) {
    .cta__content {
        background-image: none;
    }
}

.content__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.14583;
    color: #262626;
}

@media (max-width: 1310px) {
    .content__title {
        margin-bottom: 40px;
        font-size: 40px;
    }
}

@media (max-width: 688px) {
    .content__title {
        margin-bottom: 30px;
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 460px) {
    .content__title {
        margin-bottom: 20px;
        font-size: 22px;
    }
}

.content__subtitle,
.content__price {
    margin-top: 16px;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.5;
    color: #303030;
}

.content__subtitle span,
.content__price span {
    border-radius: 15px;
    padding: 8px 12px;
    background-color: #464a9b;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

@media (max-width: 1310px) {
    .content__subtitle,
    .content__price {
        margin-top: 30px;
        font-size: 22px;
    }
}

@media (max-width: 688px) {
    .content__subtitle,
    .content__price {
        font-size: 18px;
    }

    .content__subtitle span,
    .content__price span {
        padding: 7px 7px;
        font-size: 20px;
    }
}

.content__subtitle--sbis-tariffs {
    font-size: 22px;
}

.content__description {
    margin-top: 16px;
    margin-left: 16px;
    line-height: 1.5;
    color: #303030;
}

@media (max-width: 688px) {
    .content__description {
        margin-top: 8px;
    }
}

.content__description--item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

@media (max-width: 1310px) {
    .content__description--item {
        font-size: 14px;
    }
}

@media (max-width: 688px) {
    .content__description--item {
        font-size: 13px;
    }
}

.content__description--item::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.content__actions-btns {
    margin-top: 42px;
    display: flex;
    gap: 20px;
    justify-content: left;
}

@media (max-width: 1310px) {
    .content__actions-btns {
        margin-top: 70px;
        justify-content: center;
    }
}

@media (max-width: 688px) {
    .content__actions-btns {
        margin-top: 50px;
    }
}

@media (max-width: 460px) {
    .content__actions-btns {
        margin-top: 80px;
        flex-direction: column;
    }
}

@media (max-width: 1310px) {
    .cta__img {
        display: none;
    }
}

.cta__img--sbis-tariffs {
    width: 40%;
}

.tariffs {
    margin-top: 60px;
    scroll-margin-top: 100px;
}

@media (max-width: 1310px) {
    .tariffs {
        margin-top: 40px;
    }
}

@media (max-width: 460px) {
    .tariffs {
        margin-top: 20px;
    }
}

.tariffs__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: center;
    color: #262626;
}

@media (max-width: 1310px) {
    .tariffs__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .tariffs__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

@media (max-width: 460px) {
    .tariffs__title {
        font-size: 22px;
    }
}

.akkreditation__list--title {
    font-size: 28px;
    text-align: left;
}

@media (max-width: 1310px) {
    .akkreditation__list--title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .akkreditation__list--title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

@media (max-width: 460px) {
    .akkreditation__list--title {
        font-size: 22px;
    }
}

.tariffs__slider {
    position: relative;
    max-width: 1280px;
    overflow: hidden;
}

.tariffs__slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide__wrap {
    min-width: 33.4%;
    padding-right: 15px;
    flex: 1;
    display: flex;
}

@media (max-width: 1310px) {
    .slide__wrap {
        min-width: 50%;
    }
}

@media (max-width: 688px) {
    .slide__wrap {
        min-width: 100%;
        padding-right: 0px;
    }
}

.slide {
    padding: 25px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #e3e3e3;
}

@media (max-width: 688px) {
    .slide {
        padding: 35px;
        min-width: 100%;
        height: auto !important;
    }
}

.slide__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.875;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #31107a;
}

@media (max-width: 1310px) {
    .slide__title {
        font-size: 16px;
    }
}

.slide__subtitle {
    margin-top: 16px;
    font-size: 14px;
    line-height: 2.14286;
    color: #737373;
}

@media (max-width: 1310px) {
    .slide__subtitle {
        margin-top: 6px;
        font-size: 12px;
    }
}

.slide__price {
    margin-top: 16px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.875;
    color: #31107a;
}

@media (max-width: 1310px) {
    .slide__price {
        margin-top: 8px;
        font-size: 16px;
    }
}

.slide__per-doc {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.5;
    color: #737373;
}

@media (max-width: 1310px) {
    .slide__per-doc {
        font-size: 12px;
    }
}

.slide__description {
    margin: 16px 0px;
    font-weight: 700;
    line-height: 1.875;
    color: #303030;
}

@media (max-width: 1310px) {
    .slide__description {
        font-size: 14px;
    }
}

.slide-item {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #303030;
    font-size: 15px;
}

.slide-item:first-child {
    margin-top: 16px;
}

@media (max-width: 1310px) {
    .slide-item:first-child {
        margin-top: 10px;
    }
}

.slide-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 1310px) {
    .slide-item {
        margin-bottom: 2px;
        padding-left: 12px;
        font-size: 13px;
    }
}

.slide-item::before {
    content: '';
    background-image: url(../assets/images/tariffs-arrow.png);
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
}

@media (max-width: 1310px) {
    .slide-item::before {
        top: 10px;
    }
}

.slide-item.hidden {
    display: none;
}

.toggle-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 16px;
    color: #464a9b;
    cursor: pointer;
}

.toggle-more-btn:hover .toggle-text {
    text-decoration: underline;
}

@media (max-width: 1310px) {
    .toggle-more-btn {
        font-size: 14px;
    }
}

.toggle-icon {
    font-size: 16px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.toggle-more-btn.expanded .toggle-icon {
    transform: rotate(180deg);
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 275px;
    transform: translateY(-50%);
    width: auto;
    padding: 16px 12px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.next {
    right: 13px;
    border-radius: 3px 0 0 3px;
}

@media (max-width: 1310px) {
    .next {
        right: 15px;
    }

    .prev,
    .next {
        top: 233px;
    }
}

@media (max-width: 688px) {
    .prev,
    .next {
        top: 200px;
    }
}

@media (max-width: 688px) {
    .next {
        right: 0px;
    }
}

.included {
    margin-top: 120px;
}

@media (max-width: 1310px) {
    .included {
        margin-top: 90px;
    }
}

@media (max-width: 688px) {
    .included {
        margin-top: 60px;
    }
}

.included__row {
    display: flex;
    align-items: center;
    gap: 120px;
}

@media (max-width: 1310px) {
    .included__row {
        flex-direction: column;
    }
}

@media (max-width: 688px) {
    .included__row {
        gap: 60px;
    }
}

.included__content {
    width: 50%;
}

.included__content h3 {
    margin-top: 32px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    color: #303030;
}

.included__content p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #303030;
}

@media (max-width: 1310px) {
    .included__content {
        width: 100%;
        text-align: center;
    }

    .included__content h3 {
        margin-top: 22px;
        font-size: 28px;
    }
}

@media (max-width: 460px) {
    .included__content h3 {
        font-size: 24px;
    }

    .included__content p {
        font-size: 12px;
    }
}

.included__advantages {
    position: relative;
}

.advantages__top-row {
    display: flex;
    align-items: end;
    gap: 25px;
}

@media (max-width: 688px) {
    .advantages__top-row {
        gap: 15px;
    }
}

.top-row__item,
.bottom-row__item {
    border-radius: 10px;
    box-shadow: 0 4px 100px 0 rgba(208, 218, 227, 0.57);
    background: linear-gradient(200deg, #fff 0%, #f4f9ff 100%);
}

.top-row__item h3,
.bottom-row__item h3 {
    background: linear-gradient(180deg, #4614e8 0%, #bca7ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-row__item p,
.bottom-row__item p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #303030;
}

.advantages__bottom-row {
    display: flex;
    gap: 25px;
    margin-top: 17px;
    margin-left: 38px;
}

@media (max-width: 688px) {
    .advantages__bottom-row {
        gap: 15px;
        margin-left: 17px;
    }
}

.large {
    padding: 32px;
    width: 217px;
    height: 156px;
}

.large h3 {
    font-weight: 700;
    font-size: 48px;
    line-height: 0.91667;
}

@media (max-width: 1310px) {
    .large h3 {
        font-size: 40px;
    }
}

@media (max-width: 688px) {
    .large {
        padding: 24px;
        width: auto;
        height: auto;
    }

    .large h3 {
        font-size: 32px;
    }
}

.small {
    padding: 24px;
    width: 179px;
    height: 135px;
}

.small h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.22222;
}

@media (max-width: 1310px) {
    .small h3 {
        font-size: 26px;
    }
}

@media (max-width: 688px) {
    .small {
        padding: 20px;
        width: auto;
        height: auto;
    }

    .small h3 {
        font-size: 22px;
    }
}

.advantages__circle-big {
    position: absolute;
    top: -65px;
    right: -65px;
    z-index: -1;
}

@media (max-width: 688px) {
    .advantages__circle-big {
        top: -40px;
        right: -15px;
    }
}

.advantages__circle-middle {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: -1;
}

@media (max-width: 688px) {
    .advantages__circle-middle {
        left: 25px;
    }
}

.advantages__circle-small {
    position: absolute;
    top: 195px;
    left: 50%;
    z-index: -1;
}

@media (max-width: 688px) {
    .advantages__circle-small {
        top: 136px;
    }
}

.reasons {
    margin-top: 120px;
}

@media (max-width: 1310px) {
    .reasons {
        margin-top: 90px;
    }
}

@media (max-width: 688px) {
    .reasons {
        margin-top: 60px;
    }
}

.reasons__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: center;
    color: #303030;
}

@media (max-width: 1310px) {
    .reasons__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .reasons__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

.reasons__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reasons__item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 70px;
    border-radius: 20px;
    background: #fff;
    color: #303030;
    transition: all 0.2s ease-in;
    border: 1px solid #e3e3e3;
    cursor: pointer;
}

.reasons__item img {
    width: 100px;
}

.reasons__item h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
}

.reasons__item p {
    margin-top: 16px;
    line-height: 1.42857;
}

.reasons__item:hover {
    box-shadow: 7px 7px 8px 1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1310px) {
    .reasons__item {
        padding: 30px;
    }

    .reasons__item h3 {
        font-size: 22px;
    }

    .reasons__item p {
        font-size: 14px;
    }
}

@media (max-width: 688px) {
    .reasons__item {
        gap: 20px;
        padding: 20px;
    }

    .reasons__item h3 {
        font-size: 20px;
    }

    .reasons__item p {
        margin-top: 10px;
        font-size: 12px;
    }
}

@media (max-width: 460px) {
    .reasons__item {
        flex-direction: column;
    }

    .reasons__item h3 {
        font-size: 16px;
    }
}

.reasons__btns {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 1310px) {
    .reasons__btns {
        margin-top: 40px;
    }
}

@media (max-width: 688px) {
    .reasons__btns {
        margin-top: 30px;
    }
}

@media (max-width: 460px) {
    .reasons__btns {
        flex-direction: column;
        gap: 15px;
    }
}

.footer {
    margin-top: 120px;
    border-top: 1px solid #dee6ef;
}

@media (max-width: 1310px) {
    .footer {
        margin-top: 90px;
    }
}

@media (max-width: 688px) {
    .footer {
        margin-top: 60px;
    }
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0px;
}

@media (max-width: 1310px) {
    .footer__row {
        padding: 24px 0px;
    }
}

@media (max-width: 688px) {
    .footer__row {
        padding: 16px 0px;
        flex-direction: column;
        gap: 20px;
    }
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (max-width: 1310px) {
    .footer__logo {
        gap: 20px;
    }
}

@media (max-width: 688px) {
    .footer__logo {
        gap: 10px;
    }
}

@media (max-width: 460px) {
    .footer__logo {
        flex-direction: column;
    }
}

@media (max-width: 1310px) {
    .logo__molnia {
        width: 250px;
    }
}

@media (max-width: 688px) {
    .logo__molnia {
        width: 220px;
    }
}

.footer__socials {
    display: flex;
    gap: 8px;
}

.socials__item {
    width: 36px;
    height: 36px;
}

.footer__bottom {
    background: #e8edf3;
}

.bottom__row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0px;
}

@media (max-width: 688px) {
    .bottom__row {
        flex-direction: column;
        gap: 10px;
        padding: 12px 0px;
    }
}

@media (max-width: 460px) {
    .bottom__row {
        align-items: center;
    }
}

.bottom__desc {
    font-size: 12px;
    line-height: 1.66667;
    color: #7a7a7a;
}

@media (max-width: 688px) {
    .bottom__desc {
        font-size: 11px;
    }
}

.bottom__politics {
    display: flex;
    gap: 16px;
    font-size: 10px;
    line-height: 2;
}

.bottom__politics a {
    color: #7a7a7a;
    transition: all 0.2s ease-in;
}

.bottom__politics a:hover,
.bottom__politics a:active {
    color: #31107a;
}

@media (max-width: 460px) {
    .bottom__politics {
        flex-direction: column;
        gap: 10px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 37px;
    display: none;
    width: 48px;
    height: 48px;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    background-color: #31107a;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.back-to-top img {
    margin-top: 8px;
}

.back-to-top:hover {
    background-color: rgba(50, 16, 122, 0.8);
}

body.no-scroll {
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    padding: 25px;
    border: 1px solid #e3e3e3;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    color: #303030;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content--price {
    gap: 25px;
    align-items: center;
    text-align: center;
}

@media (max-width: 688px) {
    .modal-content {
        margin: 20px auto;
    }
}

@media (max-width: 460px) {
    .modal-content {
        gap: 15px;
    }
}

.modal-content__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    color: #31107a;
}

@media (max-width: 688px) {
    .modal-content__title {
        font-size: 20px;
    }
}

@media (max-width: 460px) {
    .modal-content__title {
        font-size: 16px;
    }
}

.modal-content__subtitle {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #303030;
}

.modal-content__subtitle--small-text {
    font-size: 12px;
    color: #737373;
}

.modal-content__subtitle a {
    color: #31107a;
    text-decoration: underline;
}

@media (max-width: 688px) {
    .modal-content__subtitle {
        font-size: 13px;
    }
}

.modal-content__price {
    display: flex;
    align-items: center;
}

.modal-content__price input {
    flex: 1;
    border-radius: 0px;
}

.modal-content__price--title,
.modal-content__price--things {
    flex: 1;
    padding: 15px;
    border: 1px solid #ccc;
    background-color: #ccc;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-radius: 5px 0px 0px 5px;
}

@media (max-width: 688px) {
    .modal-content__price--title,
    .modal-content__price--things {
        padding: 12px;
    }
}

@media (max-width: 460px) {
    .modal-content__price--title,
    .modal-content__price--things {
        flex: none;
        padding: 11px;
        text-align: left;
    }
}

@media (max-width: 460px) {
    .modal-content__price--title {
        width: 70px;
        text-align: center;
    }
}

.modal-content__price--input {
    display: flex;
}

.modal-content__price--things {
    border-radius: 0px 5px 5px 0px;
}

.modal-content__img {
    display: flex;
    justify-content: center;
}

.modal-content__img img {
    width: 50%;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

.product__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.2s ease-in;
}

input:focus {
    -webkit-box-shadow: 0px 0px 20px 1px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 20px 1px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 20px 1px rgba(34, 60, 80, 0.2);
}

@media (max-width: 688px) {
    input {
        padding: 10px;
    }
}

@media (max-width: 460px) {
    input {
        width: 100%;
    }
}

select {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.2s ease-in;
}

.modal-content__options {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.modal-content__options label {
    margin-top: 10px;
}

.modal-content__fixed-price {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    font-size: 20px;
}

.fixed-price__number {
    color: #31107a;
}

/* Контейнер для чекбокса */
.switch {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Скрываем стандартный чекбокс */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Стили для ползунка */
.slider {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
    cursor: pointer;
}

/* Круг внутри ползунка */
.slider:before {
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

/* Стили для активного состояния (когда чекбокс отмечен) */
input:checked + .slider {
    background-color: #31107a;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.text {
    flex: 1;
    font-size: 14px;
    color: #303030;
}

@media (max-width: 688px) {
    .text {
        font-size: 12px;
    }
}

@media (max-width: 392px) {
    .switch {
        display: block;
    }

    .text {
        display: block;
        margin-top: 5px;
    }
}

.success-modal,
.error-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.success-modal__content,
.error-modal__content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.success-icon {
    color: #4caf50;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.error-icon {
    color: #f44336;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.success-modal h3,
.error-modal h3 {
    margin-top: 0;
    color: #333;
}

.success-modal__close,
.error-modal__close,
.error-modal__retry {
    background: #2196f3;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.error-modal__retry {
    background: #4caf50;
}

.success-modal__close:hover,
.error-modal__close:hover {
    background: #0b7dda;
}

.error-modal__retry:hover {
    background: #45a049;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn__header {
    border-radius: 15px;
    padding: 14px 28px;
    font-weight: 700;
    line-height: 1.125;
    text-align: center;
    color: #fff;
    background: #31107a;
    border: 2px solid #31107a;
    transition:
        color 0.2s,
        background 0.2s ease-in;
}

.btn__header:hover {
    color: #303030;
    background: #fff;
}

.btn__header:active {
    transform: scale(0.95);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1310px) {
    .btn__header {
        font-size: 15px;
    }
}

@media (max-width: 460px) {
    .btn__header {
        padding: 12px 24px;
    }
}

.btn__blue {
    border-radius: 15px;
    padding: 14px;
    font-weight: 700;
    line-height: 1.125;
    color: #fff;
    background: #31107a;
    transition:
        color 0.2s,
        background 0.2s ease-in;
    border: 2px solid #31107a;
}

.btn__blue:hover {
    color: #303030;
    background: #fff;
}

.btn__blue:active {
    transform: scale(0.95);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1310px) {
    .btn__blue {
        font-size: 15px;
    }
}

.btn__yellow {
    border-radius: 15px;
    padding: 14px;
    font-weight: 700;
    line-height: 1.125;
    border: 2px solid #ffdf57;
    background: #ffdf57;
    color: #303030;
    transition:
        color 0.2s ease-in,
        background 0.2s ease-in,
        border 0.2s ease-in;
}

.btn__yellow:hover {
    border: 2px solid #464a9b;
    background: #464a9b;
    color: #fff;
}

.btn__yellow:active {
    transform: scale(0.95);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1310px) {
    .btn__yellow {
        font-size: 15px;
    }
}

.btn__slide {
    margin-top: auto;
    padding: 12px 14px;
    width: fit-content;
    border-radius: 10px;
    background-color: #31107a;
    color: #fff;
    font-weight: 500;
    line-height: 1.125;
    border: 1px solid #31107a;
    text-align: center;
    transition:
        color 0.2s ease-in,
        background 0.2s ease-in;
}

.btn__slide:hover {
    color: #303030;
    background: #fff;
}

.btn__slide:active {
    transform: scale(0.95);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1310px) {
    .btn__slide {
        padding: 10px 12px;
        font-size: 15px;
    }
}

@media (max-width: 460px) {
    .btn__slide {
        width: 100%;
    }
}

.btn__modal {
    margin-top: 20px;
    border-radius: 15px;
    padding: 14px 28px;
    font-weight: 700;
    line-height: 1.125;
    color: #fff;
    background: #31107a;
    border: 2px solid #31107a;
    transition:
        color 0.2s ease-in,
        background 0.2s ease-in,
        border-color 0.2s ease-in;
}

.btn__modal:hover {
    background: #28a745;
    border-color: #28a745;
}

.btn__modal:active {
    transform: scale(0.95);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 688px) {
    .btn__modal {
        margin-top: 10px;
        padding: 12px 28px;
    }
}

.cta__img--marking {
    width: 40%;
}

.marked-products {
    margin-top: 120px;
}

@media (max-width: 1310px) {
    .marked-products {
        margin-top: 90px;
    }
}

@media (max-width: 460px) {
    .marked-products {
        margin-top: 60px;
    }
}

.marked-products__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    line-height: 1.375;
    color: #262626;
}

@media (max-width: 1310px) {
    .marked-products__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .marked-products__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

@media (max-width: 460px) {
    .marked-products__title {
        font-size: 22px;
    }
}

.marked-products__wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 70px;
    row-gap: 40px;
}

@media (max-width: 1310px) {
    .marked-products__wrap {
        column-gap: 60px;
        row-gap: 30px;
        justify-content: center;
    }
}

.marked-products__item {
    width: 200px;
    padding: 20px 25px;
    text-align: center;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 15px;
    box-shadow: 7px 7px 8px 1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in;
}

.marked-products__item:hover {
    scale: 1.045;
}

@media (max-width: 1310px) {
    .marked-products__item {
        width: 165px;
        padding: 20px 20px;
    }
}

.marked-products__item--desc {
    margin-top: 20px;
    line-height: 1.5;
    text-align: left;
}

.marked-products__item--desc h3 {
    font-weight: 700;
    font-size: 18px;
    color: #31107a;
}

@media (max-width: 1310px) {
    .marked-products__item--desc h3 {
        font-size: 16px;
    }
}

.marked-products__item--desc p {
    margin-top: 5px;
    font-size: 16px;
    color: #303030;
}

@media (max-width: 1310px) {
    .marked-products__item--desc p {
        font-size: 14px;
    }
}

.whom {
    margin-top: 120px;
}

@media (max-width: 1310px) {
    .whom {
        margin-top: 90px;
    }
}

@media (max-width: 688px) {
    .whom {
        margin-top: 60px;
    }
}

.whom__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    line-height: 1.375;
    color: #303030;
}

@media (max-width: 1310px) {
    .whom__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .whom__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

@media (max-width: 460px) {
    .whom__title {
        font-size: 22px;
    }
}

.whom__row {
    display: flex;
}

@media (max-width: 688px) {
    .whom__row {
        flex-direction: column;
    }
}

.whom__content {
    flex: 40%;
}

.whom__content h3 {
    font-size: 30px;
    color: #31107a;
}

@media (max-width: 1310px) {
    .whom__content h3 {
        font-size: 22px;
    }
}

.whom__items {
    flex: 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 688px) {
    .whom__items {
        flex-direction: column;
        align-content: center;
        margin-top: 20px;
    }
}

.whom__item {
    flex: 1;
    padding: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 15px;
    box-shadow: 7px 7px 8px 1px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

@media (max-width: 1310px) {
    .whom__item {
        padding: 16px;
    }
}

.whom__item--title {
    font-weight: 700;
    font-size: 22px;
    color: #31107a;
}

@media (max-width: 1310px) {
    .whom__item--title {
        font-size: 16px;
    }
}

.whom__item--list {
    margin-top: 12px;
}

.whom__item--list-item {
    position: relative;
    padding-left: 10px;
    line-height: 1.75;
    color: #303030;
    font-size: 14px;
}

.whom__item--list-item::before {
    content: '';
    background-image: url(../assets/images/tariffs-arrow.png);
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 13px;
    transform: translateY(-50%);
}

.whon__btns {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 1310px) {
    .whon__btns {
        margin-top: 40px;
    }
}

@media (max-width: 688px) {
    .whon__btns {
        margin-top: 30px;
    }
}

@media (max-width: 460px) {
    .whon__btns {
        flex-direction: column;
        gap: 15px;
    }
}

.marking-services {
    margin-top: 60px;
}

@media (max-width: 1310px) {
    .marking-services {
        margin-top: 40px;
    }
}

@media (max-width: 460px) {
    .marking-services {
        margin-top: 20px;
    }
}

.marking-services__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: center;
    color: #262626;
}

@media (max-width: 1310px) {
    .marking-services__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .marking-services__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

@media (max-width: 460px) {
    .marking-services__title {
        font-size: 22px;
    }
}

.marking-services__slider {
    position: relative;
    max-width: 1280px;
    overflow: hidden;
}

.marking-services__slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.marking-services-slide__wrap {
    min-width: 33.35%;
    padding-right: 15px;
    flex: 1;
    display: flex;
}

@media (max-width: 1310px) {
    .marking-services-slide__wrap {
        min-width: 50%;
    }
}

@media (max-width: 688px) {
    .marking-services-slide__wrap {
        min-width: 100%;
        padding-right: 0px;
    }
}

.marking-services-slide {
    padding: 45px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #e3e3e3;
    justify-content: space-between;
    height: 100%;
}

@media (max-width: 688px) {
    .marking-services-slide {
        min-width: 100%;
    }
}

.marking-services-slide__title {
    flex: 0 0 auto;
    min-height: 75px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.875;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #31107a;
}

@media (max-width: 1310px) {
    .marking-services-slide__title {
        font-size: 16px;
    }
}

@media (max-width: 688px) {
    .marking-services-slide__title {
        min-height: 0px;
    }
}

.marking-services-slide__subtitle {
    flex: 1;
    display: flex;
    align-items: flex-start;
    margin-top: 16px;
    font-size: 14px;
    line-height: 2.14286;
    color: #737373;
}

@media (max-width: 1310px) {
    .marking-services-slide__subtitle {
        font-size: 12px;
    }
}

.marking-services-slide__price {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
    line-height: 1.875;
    border-radius: 15px;
    padding: 6px;
    background-color: #464a9b;
    color: #fff;
    text-align: center;
}

@media (max-width: 1310px) {
    .marking-services-slide__price {
        padding: 4px 8px;
        font-size: 15px;
    }
}

.marking-services-prev,
.marking-services-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.marking-services-prev:hover,
.marking-services-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 688px) {
    .marking-services-prev,
    .marking-services-next {
        padding: 16px 12px;
    }
}

.marking-services-next {
    right: 15px;
    border-radius: 3px 0 0 3px;
}

@media (max-width: 688px) {
    .marking-services-next {
        right: 0;
    }
}

.btn__yellow--marking {
    margin-top: auto;
    padding: 10px;
}

.cta__img--edo {
    width: 40%;
}

.slide--edo {
    flex: 50%;
}

.tariffs--etrn .slide--edo {
    align-items: center;
    text-align: center;
    min-height: 300px;
}

.tariffs--etrn .slide--edo .btn__blue {
    margin-top: auto;
}

.tariffs--etrn .prev,
.tariffs--etrn .next {
    top: 50%;
}

.slide--edo__price-wrap {
    margin-top: 32px;
    padding: 10px;
    border: 1px solid #e3e3e3;
    border-radius: 20px;
    background-color: #f8f8ff;
}

@media (max-width: 1310px) {
    .slide--edo__price-wrap {
        margin-top: 20px;
        padding: 5px;
    }
}

.slide__description--edo {
    margin-top: 16px;
    margin-bottom: 0px;
}

.slide--edo__price {
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

@media (max-width: 1310px) {
    .slide--edo__price {
        padding: 8px;
        font-size: 12px;
    }
}

.cta__img--torgi {
    width: 45%;
}

.possibilities,
.akkreditation {
    margin-top: 120px;
}

@media (max-width: 1310px) {
    .possibilities,
    .akkreditation {
        margin-top: 90px;
    }
}

@media (max-width: 688px) {
    .possibilities,
    .akkreditation {
        margin-top: 60px;
    }
}

.possibilities__title,
.akkreditation__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: center;
    color: #303030;
}

@media (max-width: 1310px) {
    .possibilities__title,
    .akkreditation__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .possibilities__title,
    .akkreditation__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

.possibilities__warning,
.akkreditation__text {
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 22px;
    line-height: 1.2;
    color: #303030;
    border-left: 3px solid #ffdf57;
}

.akkreditation__text {
    padding-left: 0px;
    border-left: none;
}

.possibilities__warning p,
.akkreditation__text p {
    font-size: 18px;
}

.possibilities__warning ul,
.akkreditation__text ul {
    margin-top: 5px;
    /* margin-left: 10px; */
}

.possibilities__warning ul li,
.akkreditation__text ul li {
    position: relative;
    padding-left: 12px;
    margin: 5px 0px;
    font-size: 16px;
}

.possibilities__warning ul li::before,
.akkreditation__text ul li::before {
    content: '';
    background-image: url(../assets/images/tariffs-arrow.png);
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
}

@media (max-width: 688px) {
    .possibilities__warning,
    .akkreditation__text {
        font-size: 20px;
    }

    .possibilities__warning p,
    .akkreditation__text p {
        font-size: 16px;
    }

    .possibilities__warning ul,
    .akkreditation__text ul {
        margin-top: 10px;
        margin-left: 0px;
    }
}

@media (max-width: 460px) {
    .possibilities__warning,
    .akkreditation__text {
        font-size: 18px;
    }

    .possibilities__warning p,
    .akkreditation__text p {
        font-size: 14px;
    }

    .possibilities__warning ul li,
    .akkreditation__text ul li {
        font-size: 14px;
    }

    .possibilities__warning ul li::before,
    .akkreditation__text ul li::before {
        top: 9px;
    }
}

.possibilities__items {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 688px) {
    .possibilities__items {
        margin-bottom: 32px;
    }
}

.possibilities-item {
    width: 100%;
    padding: 40px 70px;
    border-radius: 20px;
    background: #fff;
    color: #303030;
    text-align: left;
    transition: all 0.2s ease-in;
    border: 1px solid #e3e3e3;
}

.possibilities-item:hover {
    box-shadow: 7px 7px 8px 1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1310px) {
    .possibilities-item {
        padding: 30px;
    }
}

@media (max-width: 688px) {
    .possibilities-item {
        padding: 25px;
    }
}

.possibilities-item__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.possibilities-item__header {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 688px) {
    .possibilities-item__header {
        gap: 20px;
    }
}

@media (max-width: 460px) {
    .possibilities-item__header {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.possibilities-item__header-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.possibilities-item__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
}

@media (max-width: 1310px) {
    .possibilities-item__title {
        font-size: 22px;
    }
}

@media (max-width: 688px) {
    .possibilities-item__title {
        font-size: 20px;
    }
}

@media (max-width: 460px) {
    .possibilities-item__title {
        font-size: 18px;
    }
}

@media (max-width: 688px) {
    .possibilities-item__img {
        width: 60px;
    }
}

.possibilities-item__price {
    font-size: 18px;
}

.possibilities-item__price span {
    border-radius: 15px;
    padding: 5px 10px;
    background-color: #464a9b;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 1310px) {
    .possibilities-item__price {
        font-size: 17px;
    }
}

@media (max-width: 688px) {
    .possibilities-item__price {
        font-size: 15px;
    }
}

.possibilities-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.possibilities-item__toggle {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.possibilities-item__icon.active .possibilities-item__toggle {
    transform: rotate(-135deg);
}

.possibilities-item__content {
    display: none;
}

.possibilities-item__content.active {
    display: block;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1310px) {
    .possibilities-item__content.active {
        flex-direction: column;
    }
}

.possibilities-item__content-padding {
    margin-top: 30px;
}

.possibilities-item__content-padding li {
    position: relative;
    padding-left: 14px;
    margin: 10px 0px;
}

@media (max-width: 1310px) {
    .possibilities-item__content-padding li {
        font-size: 14px;
    }
}

.possibilities-item__content-padding li::before {
    content: '';
    background-image: url(../assets/images/tariffs-arrow.png);
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
}

@media (max-width: 1310px) {
    .possibilities-item__content-padding li::before {
        top: 10px;
    }
}

@media (max-width: 1310px) {
    .possibilities-item__content-padding {
        margin-top: 20px;
    }
}

.possibilities-item__content-title {
    font-weight: 700;
    font-size: 20px;
    color: #31107a;
}

@media (max-width: 1310px) {
    .possibilities-item__content-title {
        font-size: 18px;
    }
}

.possibilities-item__content-subtitle {
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
}

.possibilities-item__content-price {
    margin-top: 15px;
    font-size: 18px;
}

.possibilities-item__content-price span {
    border-radius: 15px;
    padding: 5px 10px;
    background-color: #464a9b;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 1310px) {
    .possibilities-item__content-price {
        font-size: 16px;
    }
}

.possibilities__btns {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 1310px) {
    .possibilities__btns {
        margin-top: 40px;
    }
}

@media (max-width: 688px) {
    .possibilities__btns {
        margin-top: 30px;
    }
}

@media (max-width: 460px) {
    .possibilities__btns {
        flex-direction: column;
        gap: 15px;
    }
}

.cta__img--rutoken {
    margin-left: 50px;
    width: 450px;
}

.cta__img--rutoken img {
    border-radius: 15px;
    box-shadow: 7px 7px 8px 1px rgba(0, 0, 0, 0.1);
}

.services {
    margin-top: 60px;
}

@media (max-width: 1310px) {
    .services {
        margin-top: 40px;
    }
}

@media (max-width: 688px) {
    .services {
        margin-top: 20px;
    }
}

.services__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: center;
    color: #303030;
}

@media (max-width: 1310px) {
    .services__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .services__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

.services__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services__item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 70px;
    border-radius: 20px;
    background: #fff;
    color: #303030;
    transition: all 0.2s ease-in;
    border: 1px solid #e3e3e3;
    cursor: pointer;
}

.services__item img {
    width: 100px;
}

.services__item h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
}

.services__item p {
    margin-top: 16px;
    line-height: 1.42857;
}

.services__item:hover {
    box-shadow: 7px 7px 8px 1px rgba(0, 0, 0, 0.1);
}

.services__item:active {
    transform: scale(0.99);
}

@media (max-width: 1310px) {
    .services__item {
        padding: 30px;
    }

    .services__item h3 {
        font-size: 22px;
    }

    .services__item p {
        font-size: 14px;
    }
}

@media (max-width: 688px) {
    .services__item {
        gap: 20px;
        padding: 20px;
    }

    .services__item h3 {
        font-size: 20px;
    }

    .services__item p {
        margin-top: 10px;
        font-size: 12px;
    }
}

@media (max-width: 460px) {
    .services__item {
        flex-direction: column;
    }

    .services__item h3 {
        font-size: 16px;
    }
}

.services__btns {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 1310px) {
    .services__btns {
        margin-top: 40px;
    }
}

@media (max-width: 688px) {
    .services__btns {
        margin-top: 30px;
    }
}

@media (max-width: 460px) {
    .services__btns {
        flex-direction: column;
        gap: 15px;
    }
}

.tariffs-price {
    margin-top: 60px;
}

@media (max-width: 1310px) {
    .tariffs-price {
        margin-top: 40px;
    }
}

@media (max-width: 688px) {
    .tariffs-price {
        margin-top: 30px;
    }
}

.tariffs-price__sbis-tariffs {
    margin-top: 150px;
}

@media (max-width: 1310px) {
    .tariffs-price__sbis-tariffs {
        margin-top: 110px;
    }
}

@media (max-width: 688px) {
    .tariffs-price__sbis-tariffs {
        margin-top: 90px;
    }
}

.akkreditation__list {
    margin-top: 60px;
}

@media (max-width: 1310px) {
    .akkreditation__list {
        margin-top: 40px;
    }
}

@media (max-width: 688px) {
    .akkreditation__list {
        margin-top: 20px;
    }
}

.tariffs-price__table {
    width: 100%;
    font-size: 20px;
    line-height: 1.5;
    color: #303030;
    cursor: pointer;
}

.tariffs-price__table td a {
    color: #31107a;
    font-weight: 700;
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th,
td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

@media (max-width: 1310px) {
    th,
    td {
        font-size: 16px;
    }
}

@media (max-width: 688px) {
    th,
    td {
        font-size: 14px;
    }
}

th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 700;
    text-align: center;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}

.tariffs-price__label {
    color: #303030;
    font-size: 14px;
    text-decoration: underline;
    text-align: right;
}

@media (max-width: 688px) {
    .tariffs-price__label {
        font-size: 12px;
    }
}

.tariffs-price__small-text {
    font-size: 18px;
    color: #737373;
}

@media (max-width: 1310px) {
    .tariffs-price__small-text {
        font-size: 14px;
    }
}

@media (max-width: 688px) {
    .tariffs-price__small-text {
        font-size: 12px;
    }
}

.ecp-documents {
    margin-top: 60px;
}

@media (max-width: 1310px) {
    .ecp-documents {
        margin-top: 40px;
    }
}

@media (max-width: 688px) {
    .ecp-documents {
        margin-top: 20px;
    }
}

.ecp-documents__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: center;
    color: #303030;
}

@media (max-width: 1310px) {
    .ecp-documents__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .ecp-documents__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

.ecp-documents__list {
    margin-left: 25px;
    line-height: 1.2;
    color: #303030;
}

@media (max-width: 460px) {
    .ecp-documents__list {
        margin-left: 15px;
    }
}

.ecp-documents__list-item {
    position: relative;
    padding-left: 12px;
    margin: 5px 0px;
    font-size: 24px;
}

@media (max-width: 688px) {
    .ecp-documents__list-item {
        font-size: 20px;
    }
}

@media (max-width: 460px) {
    .ecp-documents__list-item {
        font-size: 18px;
    }
}

.ecp-documents__list-item::before {
    content: '';
    background-image: url(../assets/images/tariffs-arrow.png);
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 19px;
    transform: translateY(-50%);
}

@media (max-width: 688px) {
    .ecp-documents__list-item::before {
        top: 16px;
    }
}

@media (max-width: 460px) {
    .ecp-documents__list-item::before {
        top: 13px;
    }
}

.ecp-documents__warning {
    margin-top: 48px;
    padding-left: 25px;
    border-left: 3px solid #ffdf57;
}

@media (max-width: 460px) {
    .ecp-documents__warning {
        padding-left: 15px;
    }
}

.ecp-documents__warning-title {
    font-weight: 700;
    font-size: 22px;
}

@media (max-width: 688px) {
    .ecp-documents__warning-title {
        font-size: 20px;
    }
}

@media (max-width: 460px) {
    .ecp-documents__warning-title {
        font-size: 18px;
    }
}

.ecp-documents__warning-list {
    margin-top: 12px;
}

.ecp-documents__warning-list li {
    position: relative;
    padding-left: 12px;
    margin: 5px 0px;
    font-size: 20px;
}

@media (max-width: 688px) {
    .ecp-documents__warning-list li {
        font-size: 18px;
    }
}

@media (max-width: 460px) {
    .ecp-documents__warning-list li {
        font-size: 16px;
    }
}

.ecp-documents__warning-list li a {
    color: #000;
    text-decoration: underline;
    transition: all 0.2s ease-in;
}

.ecp-documents__warning-list li a:hover {
    color: #464a9b;
}

.ecp-documents__warning-list li::before {
    content: '';
    background-image: url(../assets/images/tariffs-arrow.png);
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 16px;
    transform: translateY(-50%);
}

@media (max-width: 688px) {
    .ecp-documents__warning-list li::before {
        top: 14px;
    }
}

@media (max-width: 460px) {
    .ecp-documents__warning-list li::before {
        top: 12px;
    }
}

.ecp-documents__btns {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 1310px) {
    .ecp-documents__btns {
        margin-top: 40px;
    }
}

@media (max-width: 688px) {
    .ecp-documents__btns {
        margin-top: 30px;
    }
}

@media (max-width: 460px) {
    .ecp-documents__btns {
        flex-direction: column;
        gap: 15px;
    }
}

.cta__img--sverka {
    width: 41%;
}

.possibilities-item__price--sverka {
    font-size: 16px;
    color: #737373;
}

@media (max-width: 688px) {
    .possibilities-item__content-text {
        font-size: 14px;
    }
}

.company {
    margin-top: 150px;
}

@media (max-width: 1310px) {
    .company {
        margin-top: 110px;
    }
}

@media (max-width: 688px) {
    .company {
        margin-top: 90px;
    }
}

.company__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: center;
    color: #262626;
}

@media (max-width: 1310px) {
    .company__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .company__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

.company__wrap {
    display: flex;
    gap: 30px;
}

@media (max-width: 1310px) {
    .company__wrap {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media (max-width: 688px) {
    .company__wrap {
        gap: 15px;
    }
}

@media (max-width: 1310px) {
    .company__logo {
        width: 200px;
    }
}

@media (max-width: 688px) {
    .company__logo {
        width: 150px;
    }
}

.company__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: #303030;
    text-align: justify;
}

.company__content a {
    color: #464a9b;
    text-decoration: underline;
}

@media (max-width: 1310px) {
    .company__content {
        gap: 20px;
    }
}

@media (max-width: 688px) {
    .company__content {
        gap: 15px;
        text-align: left;
    }
}

.company__content-text {
    font-size: 20px;
    line-height: 1.2;
}

@media (max-width: 1310px) {
    .company__content-text {
        font-size: 18px;
    }
}

@media (max-width: 688px) {
    .company__content-text {
        font-size: 16px;
    }
}

.company__content-slogan {
    padding: 10px 15px;
    border-left: 3px solid #ffdf57;
    font-size: 22px;
}

.company__content-slogan span {
    font-weight: 700;
}

@media (max-width: 1310px) {
    .company__content-slogan {
        font-size: 20px;
    }
}

@media (max-width: 688px) {
    .company__content-slogan {
        padding: 5px 10px;
        font-size: 18px;
    }
}

.company__content-directions {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #31107a;
}

@media (max-width: 688px) {
    .company__content-directions {
        font-size: 20px;
    }
}

.content-directions__item {
    position: relative;
    padding-left: 12px;
    margin: 10px 0px;
    color: #303030;
    font-size: 18px;
    font-weight: 400;
}

.content-directions__item::before {
    content: '';
    background-image: url(../assets/images/tariffs-arrow.png);
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
}

@media (max-width: 1310px) {
    .content-directions__item {
        font-size: 16px;
    }
}

@media (max-width: 688px) {
    .content-directions__item {
        font-size: 14px;
    }

    .content-directions__item::before {
        top: 9px;
    }
}

.company-reasons {
    margin-top: 48px;
}

@media (max-width: 1310px) {
    .company-reasons {
        margin-top: 28px;
    }
}

@media (max-width: 688px) {
    .company-reasons {
        margin-top: 18px;
    }
}

.company-reasons__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: left;
    color: #303030;
}

@media (max-width: 1310px) {
    .company-reasons__title {
        font-size: 28px;
        margin-bottom: 28px;
    }
}

@media (max-width: 688px) {
    .company-reasons__title {
        margin-bottom: 32px;
        font-size: 24px;
        text-align: center;
    }
}

.company-reasons__row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.company-reasons__item {
    display: flex;
    flex: 30%;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    border-radius: 20px;
    background: #fff;
    color: #303030;
    transition: all 0.2s ease-in;
    border: 1px solid #e3e3e3;
    cursor: pointer;
}

.company-reasons__item img {
    width: 70px;
}

.company-reasons__item h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
}

.company-reasons__item p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.42857;
}

.company-reasons__item:hover {
    box-shadow: 7px 7px 8px 1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1310px) {
    .company-reasons__item {
        flex: auto;
        padding: 30px;
    }

    .company-reasons__item h3 {
        font-size: 22px;
    }

    .company-reasons__item p {
        font-size: 14px;
    }
}

@media (max-width: 688px) {
    .company-reasons__item {
        gap: 20px;
        padding: 20px;
    }

    .company-reasons__item h3 {
        font-size: 20px;
    }

    .company-reasons__item p {
        margin-top: 10px;
        font-size: 12px;
    }
}

@media (max-width: 460px) {
    .company-reasons__item {
        flex-direction: column;
    }

    .company-reasons__item h3 {
        font-size: 16px;
    }
}

.contacts {
    margin-top: 120px;
}

@media (max-width: 1310px) {
    .contacts {
        margin-top: 90px;
    }
}

@media (max-width: 688px) {
    .contacts {
        margin-top: 60px;
    }
}

.contacts__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: center;
    color: #303030;
}

@media (max-width: 1310px) {
    .contacts__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .contacts__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

.contacts__wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1310px) {
    .contacts__wrap {
        flex-direction: column;
    }
}

.contacts__content {
    flex: 50%;
    padding: 25px 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    line-height: 1.2;
    font-size: 20px;
    color: #303030;
    border: 1px solid #e3e3e3;
    background: #fff;
    -webkit-box-shadow: 0px 1px 6px 1px rgba(34, 60, 80, 0.11);
    -moz-box-shadow: 0px 1px 6px 1px rgba(34, 60, 80, 0.11);
    box-shadow: 0px 1px 6px 1px rgba(34, 60, 80, 0.11);
}

@media (max-width: 1310px) {
    .contacts__content {
        width: 100%;
        flex: 100%;
        font-size: 18px;
    }
}

@media (max-width: 688px) {
    .contacts__content {
        padding: 15px;
        font-size: 16px;
    }
}

.contacts__content-title {
    padding-bottom: 15px;
    font-size: 26px;
    font-weight: 700;
    color: #31107a;
    border-bottom: 1px solid #e3e3e3;
}

@media (max-width: 1310px) {
    .contacts__content-title {
        font-size: 24px;
    }
}

@media (max-width: 688px) {
    .contacts__content-title {
        font-size: 20px;
    }
}

.contacts__content-body p + p {
    margin-top: 5px;
}

.contacts__content-body a {
    color: #464a9b;
    text-decoration: underline;
}

.contacts__socials {
    padding-top: 15px;
    display: flex;
    gap: 8px;
    align-items: center;
    border-top: 1px solid #e3e3e3;
}

.contacts__socials-row {
    display: flex;
    gap: 8px;
}

.contacts__item {
    width: 36px;
    height: 36px;
}

.contacts__map {
    flex: 50%;
}

@media (max-width: 1310px) {
    .contacts__map {
        width: 100%;
        flex: 100%;
    }
}

.contacts__map-iframe {
    filter: grayscale(75%);
    border-radius: 20px;
    -webkit-box-shadow: 0px 1px 6px 1px rgba(34, 60, 80, 0.11);
    -moz-box-shadow: 0px 1px 6px 1px rgba(34, 60, 80, 0.11);
    box-shadow: 0px 1px 6px 1px rgba(34, 60, 80, 0.11);
    transition: all 0.2s ease-in;
}

.contacts__map-iframe:hover {
    filter: grayscale(0%);
}

.catalog {
    margin-top: 60px;
}

@media (max-width: 1310px) {
    .catalog {
        margin-top: 40px;
    }
}

@media (max-width: 688px) {
    .catalog {
        margin-top: 20px;
    }
}

.catalog__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: center;
    color: #303030;
}

@media (max-width: 1310px) {
    .catalog__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .catalog__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

.catalog__products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product {
    padding: 30px;
    display: flex;
    gap: 30px;
    border: 1px solid #e3e3e3;
    background: #fff;
    border-radius: 20px;
    color: #303030;
    transition: all 0.2s ease-in;
}

.product:hover {
    box-shadow: 7px 7px 8px 1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1310px) {
    .product {
        padding: 20px;
        gap: 15px;
    }
}

@media (max-width: 688px) {
    .product {
        gap: 20px;
        flex-direction: column;
    }
}

.product__img {
    width: 25%;
}

@media (max-width: 688px) {
    .product__img {
        align-self: center;
    }
}

@media (max-width: 1310px) {
    .product__img img {
        width: 180px;
    }
}

@media (max-width: 688px) {
    .product__img img {
        width: 200px;
    }
}

.product__description {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 0 1 60%;
}

@media (max-width: 1310px) {
    .product__description {
        gap: 14px;
    }
}

.product__description-title {
    padding-bottom: 18px;
    font-size: 30px;
    border-bottom: 1px solid #e3e3e3;
}

@media (max-width: 1310px) {
    .product__description-title {
        padding-bottom: 14px;
        font-size: 26px;
    }
}

@media (max-width: 688px) {
    .product__description-title {
        font-size: 24px;
    }
}

.product__description-text {
    padding-bottom: 20px;
    font-size: 18px;
}

.product__description-text p + p {
    margin-top: 8px;
}

@media (max-width: 1310px) {
    .product__description-text {
        font-size: 16px;
    }
}

@media (max-width: 688px) {
    .product__description-text {
        padding-bottom: 10px;
        font-size: 14px;
    }
}

.product__description-include {
    width: fit-content;
    font-size: 18px;
}

.product__description-include p {
    width: fit-content;
    position: relative;
    color: #464a9b;
    cursor: pointer;
}

.product__description-include p::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    border-radius: 5px;
    background-color: #464a9b;
    transition: width 0.2s ease;
}

.product__description-include p:hover::after {
    width: 100%;
}

@media (max-width: 1310px) {
    .product__description-include {
        font-size: 16px;
    }
}

@media (max-width: 688px) {
    .product__description-include {
        font-size: 14px;
    }
}

.product__description-hidden-text {
    padding-top: 10px;
    display: none;
}

.product__description-hidden-text ul {
    margin-left: 10px;
}

.product__description-hidden-text ul li {
    position: relative;
    padding-left: 12px;
    margin: 5px 0px;
    font-size: 16px;
}

@media (max-width: 688px) {
    .product__description-hidden-text ul li {
        font-size: 14px;
    }
}

.product__description-hidden-text ul li::before {
    content: '';
    background-image: url(../assets/images/tariffs-arrow.png);
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
}

@media (max-width: 688px) {
    .product__description-hidden-text ul li::before {
        top: 9px;
    }
}

.product__description-hidden-text.active {
    display: block;
}

.product__price {
    flex: 20%;
    display: flex;
    flex-direction: column;
}

.product__price-body {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

@media (max-width: 688px) {
    .product__price-body {
        gap: 14px;
    }
}

.product__price-15month,
.product__price-36month {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price__title {
    font-size: 14px;
    color: #737373;
}

@media (max-width: 1310px) {
    .price__title {
        font-size: 12px;
    }
}

.price__number {
    font-size: 30px;
    color: #31107a;
}

@media (max-width: 1310px) {
    .price__number {
        font-size: 24px;
    }
}

.product__price-btn {
    margin-top: 26px;
    padding: 10px;
}

@media (max-width: 688px) {
    .product__price-btn {
        margin-top: 20px;
        padding: 10px 25px;
        width: fit-content;
        align-self: flex-end;
    }
}

.posts {
    margin-top: 150px;
}

@media (max-width: 1310px) {
    .posts {
        margin-top: 110px;
    }
}

@media (max-width: 688px) {
    .posts {
        margin-top: 90px;
    }
}

.posts__wrap {
    display: flex;
    gap: 20px;
}

@media (max-width: 1310px) {
    .posts__wrap {
        gap: 15px;
    }
}

@media (max-width: 688px) {
    .posts__wrap {
        gap: 30px;
        flex-direction: column;
    }
}

.posts__news-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 1310px) {
    .posts__news-posts {
        gap: 30px;
    }
}

.post {
    padding-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: stretch;
    border-bottom: 1px solid #e3e3e3;
}

@media (max-width: 1310px) {
    .post {
        padding-bottom: 15px;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
}

.post__img {
    width: 300px;
    height: 226px;
}

.post__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1310px) {
    .post__img {
        width: 100%;
        height: 200px;
    }
}

.post__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #303030;
}

@media (max-width: 1310px) {
    .post__details {
        gap: 6px;
    }
}

.post__details-category {
    font-size: 14px;
    color: #737373;
}

@media (max-width: 1310px) {
    .post__details-category {
        font-size: 12px;
    }
}

.post__details-title {
    font-size: 30px;
    font-weight: 700;
}

.post__details-title a {
    color: #31107a;
    transition: all 0.2s ease-in;
}

.post__details-title a:hover {
    color: #464a9b;
}

@media (max-width: 1310px) {
    .post__details-title {
        font-size: 26px;
    }
}

@media (max-width: 688px) {
    .post__details-title {
        font-size: 24px;
    }
}

.post__details-news {
    font-size: 18px;
}

@media (max-width: 1310px) {
    .post__details-news {
        font-size: 16px;
    }
}

@media (max-width: 688px) {
    .post__details-news {
        font-size: 14px;
    }
}

.post__details-link {
    width: fit-content;
    font-size: 14px;
    color: #31107a;
    transition: all 0.2s ease-in;
}

.post__details-link:hover {
    color: #464a9b;
    text-decoration: underline;
}

.side-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1310px) {
    .side-area {
        gap: 15px;
    }
}

.side-area__heading {
    font-size: 28px;
    font-weight: 700;
    color: #31107a;
}

@media (max-width: 1310px) {
    .side-area__heading {
        font-size: 24px;
    }
}

.side-area__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-area__item {
    font-size: 14px;
    color: #737373;
    transition: all 0.2s ease-in;
}

.side-area__item:hover {
    color: #464a9b;
    text-decoration: underline;
}

.pagination-wrap {
    margin-top: 35px;
    display: flex;
}

.pagination {
    display: flex;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    overflow: hidden;
}

.page-item {
    border-right: 1px solid #e3e3e3;
    background: #fff;
    transition: all 0.2s ease-in;
    color: #31107a;
}

.page-item a {
    display: block;
    padding: 10px 15px;
    color: #31107a;
}

.page-item:last-child {
    border-right: none;
}

.page-item:hover {
    background: #e3e3e3;
}

.page-item[style*='opacity: 0.5'] {
    pointer-events: none;
    cursor: default;
}

.active-page {
    background: #e3e3e3;
}

.disabled {
    pointer-events: none;
    user-select: none;
    opacity: 0.25;
}

.breadcrumbs {
    margin-top: 83px;
    padding: 15px 0px;
    background-color: #31107a;
    color: #fff;
    font-size: 14px;
}

@media (max-width: 1310px) {
    .breadcrumbs {
        margin-top: 78px;
        font-size: 12px;
    }
}

@media (max-width: 688px) {
    .breadcrumbs {
        margin-top: 70px;
    }
}

@media (max-width: 460px) {
    .breadcrumbs {
        margin-top: 56px;
    }
}

.breadcrumbs__wrap {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumbs__item a {
    color: #fff;
}

.breadcrumbs__item a:hover {
    text-decoration: underline;
}

.breadcrumbs__separator li {
    color: #fff;
}

.article {
    margin-top: 60px;
}

@media (max-width: 1310px) {
    .article {
        margin-top: 40px;
    }
}

@media (max-width: 688px) {
    .article {
        margin-top: 30px;
    }
}

.article__wrap {
    display: flex;
    gap: 20px;
}

@media (max-width: 1310px) {
    .article__wrap {
        gap: 15px;
    }
}

@media (max-width: 688px) {
    .article__wrap {
        gap: 30px;
        flex-direction: column;
    }
}

.article__item {
    flex: 225%;
    color: #303030;
}

@media (max-width: 1310px) {
    .article__item {
        flex: 226%;
    }
}

.article__heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.article__title {
    font-weight: 700;
    font-size: 30px;
    color: #31107a;
}

@media (max-width: 1310px) {
    .article__title {
        font-size: 26px;
    }
}

@media (max-width: 688px) {
    .article__title {
        font-size: 24px;
    }
}

.article__details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.article__details a {
    color: #464a9b;
}

@media (max-width: 688px) {
    .article__details {
        gap: 4px;
    }
}

.article__image {
    margin-top: 30px;
    width: 100%;
    height: 450px;
}

.article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1310px) {
    .article__image {
        height: 280px;
    }
}

@media (max-width: 688px) {
    .article__image {
        margin-top: 20px;
        height: 180px;
    }
}

.article__text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.4;
}

.article__text h3 {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 20px;
    color: #31107a;
}

.article__text p {
    margin-bottom: 15px;
}

.article__text ul {
    margin-bottom: 15px;
    padding-left: 30px;
}

.article__text ul li {
    list-style: disc;
}

@media (max-width: 688px) {
    .article__text {
        margin-top: 20px;
        font-size: 14px;
    }

    .article__text h3 {
        font-size: 16px;
    }
}

.relatednews {
    margin-top: 40px;
}

.relatednews__title {
    padding-bottom: 4px;
    font-size: 28px;
    font-weight: 700;
    color: #31107a;
    border-bottom: 1px solid #e3e3e3;
}

@media (max-width: 1310px) {
    .relatednews__title {
        font-size: 24px;
    }
}

.relatednews__row {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

@media (max-width: 1310px) {
    .relatednews__row {
        flex-direction: column;
    }
}

.relatednews__post {
    flex: 33%;
    transition: all 0.2s ease-in;
    border-radius: 8px;
}

.relatednews__post:hover {
    box-shadow: 7px 7px 8px 1px rgba(0, 0, 0, 0.1);
}

.relatednews__post-img {
    width: 100%;
    height: 200px;
    border: 1px solid #e3e3e3;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.relatednews__post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.relatednews__post-body {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid #e3e3e3;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    color: #303030;
    line-height: 1.4;
    font-size: 15px;
}

.relatednews__post-title {
    font-size: 18px;
}

.relatednews__post-title a {
    color: #31107a;
}

.relatednews__post-title a:hover {
    text-decoration: underline;
}

.hidden-input {
    display: none;
}

.policy {
    margin-top: 150px;
}

@media (max-width: 1310px) {
    .policy {
        margin-top: 100px;
    }
}

.policy__text h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.14583;
    color: #262626;
}

@media (max-width: 688px) {
    .policy__text h1 {
        font-size: 28px;
    }
}

.policy__text h2 {
    margin-top: 32px;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.5;
    color: #303030;
}

@media (max-width: 688px) {
    .policy__text h2 {
        font-size: 20px;
    }
}

.policy__text h3 {
    margin-top: 16px;
    font-size: 14px;
    line-height: 2.14286;
    color: #737373;
    text-align: right;
}

@media (max-width: 688px) {
    .policy__text h3 {
        font-size: 12px;
    }
}

.policy__text p,
.policy__text ul {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.5;
    color: #303030;
}

.policy__text p li,
.policy__text ul li {
    margin-left: 35px;
    margin-top: 16px;
    list-style: disc;
}

@media (max-width: 688px) {
    .policy__text p,
    .policy__text ul {
        font-size: 16px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: #303030;
}

.cookie-wrap {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-banner a {
    color: #303030;
    text-decoration: underline;
}

.cookie-btn {
    margin-left: 10px;
    background: #31107a;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition:
        color 0.2s,
        background 0.2s ease-in;
    border: 2px solid #31107a;
}

.cookie-btn:hover {
    color: #303030;
    background: #fff;
}

.price-column {
    width: 130px;
    text-align: center;
}

@media (max-width: 688px) {
    .price-column {
        width: 95px;
    }
}

.price-list {
    font-weight: 700;
}

.price-item {
    margin-left: 20px;
    list-style: disc;
    font-weight: 400;
}

.tariffs-price__desc {
    font-size: 20px;
    line-height: 1.5;
    color: #303030;
}

.checkbox {
    font-size: 12px;
    color: #787878;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox__row {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.checkbox a {
    text-decoration: underline;
    color: #31107a;
}

.checkbox__input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8px;
    border: 1px solid #31107a;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    transition:
        background-color 0.2s,
        border-color 0.2s;
}

.checkbox__input:checked {
    background-color: #31107a;
    border-color: #31107a;
}

.checkbox__input:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* === Страница: Электронные транспортные накладные (ЭТрН) === */

.slide .btn__blue {
    margin-top: auto;
}

.etrn-include {
    position: relative;
    z-index: 0;
    margin-top: 48px;
    padding: 40px;
}

.etrn-include__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: #303030;
}

.etrn-include__subtitle {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #737373;
}

.etrn-include__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 32px;
}

.etrn-include__card {
    position: relative;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 100px 0 rgba(208, 218, 227, 0.57);
    background: linear-gradient(200deg, #fff 0%, #f4f9ff 100%);
}

.etrn-include__card-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.22222;
    background: linear-gradient(180deg, #4614e8 0%, #bca7ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.etrn-include__card-text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #303030;
}

.etrn-include__circle-big {
    position: absolute;
    top: 70px;
    right: 10px;
    z-index: -1;
}

.etrn-include__circle-middle {
    position: absolute;
    top: 40%;
    left: 20px;
    z-index: -1;
}

.etrn-include__circle-small {
    position: absolute;
    bottom: 20px;
    right: 28%;
    z-index: -1;
}

.etrn-include__circle--alt {
    bottom: -20px;
    left: 0px;
    top: auto;
    right: auto;
}

.etrn-include__circle--alt2 {
    top: 55%;
    right: 45%;
    bottom: auto;
    left: auto;
}

@media (max-width: 1310px) {
    .etrn-include__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .etrn-include__card-title {
        font-size: 26px;
    }
}

@media (max-width: 688px) {
    .etrn-include {
        padding: 24px;
    }

    .etrn-include__grid {
        grid-template-columns: 1fr;
    }

    .etrn-include__card-title {
        font-size: 22px;
    }

    .etrn-include__circle-big {
        top: 6px;
        right: 6px;
    }
}

.etrn-scheme {
    margin-top: 120px;
}

@media (max-width: 1310px) {
    .etrn-scheme {
        margin-top: 90px;
    }
}

@media (max-width: 688px) {
    .etrn-scheme {
        margin-top: 60px;
    }
}

.etrn-scheme__title {
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: center;
    color: #303030;
}

@media (max-width: 1310px) {
    .etrn-scheme__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .etrn-scheme__title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

@media (max-width: 460px) {
    .etrn-scheme__title {
        font-size: 22px;
    }
}

.etrn-scheme__steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.etrn-scheme__step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 30px 50px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e3e3e3;
    color: #303030;
    transition: box-shadow 0.2s ease-in;
}

.etrn-scheme__step:hover {
    box-shadow: 7px 7px 8px 1px rgba(0, 0, 0, 0.1);
}

.etrn-scheme__step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #464a9b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
}

.etrn-scheme__step-desc h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.25;
}

.etrn-scheme__step-desc p {
    margin-top: 12px;
    line-height: 1.42857;
}

@media (max-width: 1310px) {
    .etrn-scheme__step {
        padding: 26px;
    }

    .etrn-scheme__step-desc h3 {
        font-size: 20px;
    }

    .etrn-scheme__step-desc p {
        font-size: 14px;
    }
}

@media (max-width: 688px) {
    .etrn-scheme__step {
        gap: 18px;
        padding: 20px;
    }

    .etrn-scheme__step-num {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .etrn-scheme__step-desc h3 {
        font-size: 16px;
    }
}

@media (max-width: 460px) {
    .etrn-scheme__step {
        flex-direction: column;
        gap: 12px;
    }
}

.final-cta {
    margin-top: 120px;
}

@media (max-width: 1310px) {
    .final-cta {
        margin-top: 90px;
    }
}

@media (max-width: 688px) {
    .final-cta {
        margin-top: 60px;
    }
}

.final-cta__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.375;
    text-align: center;
    color: #303030;
}

@media (max-width: 1310px) {
    .final-cta__title {
        font-size: 28px;
    }
}

@media (max-width: 688px) {
    .final-cta__title {
        font-size: 24px;
    }
}

@media (max-width: 460px) {
    .final-cta__title {
        font-size: 22px;
    }
}

.final-cta__subtitle {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    color: #303030;
}

@media (max-width: 1310px) {
    .final-cta__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 688px) {
    .final-cta__subtitle {
        font-size: 16px;
    }
}

.final-cta__btns {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 460px) {
    .final-cta__btns {
        flex-direction: column;
        gap: 15px;
    }
}
