@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Variable/Rubik-Variable.woff2') format('woff2');
    font-weight: 100 1000;
    font-optical-sizing: auto;
    font-stretch: 0% 200%;
    font-style: normal;
    font-display: swap;
}

.business-deposits-veksels-container-wrapper * {
    box-sizing: border-box;
}

.business-deposits-veksels-container-wrapper {
    --business-deposits-veksels-container-max-width: 1200px;

    /* семейства шрифтов начало */
    --font-family-rubik: "Rubik";
    /* семейства шрифтов конец */

    /* цвета начало */

    /* цвета шрифтов начало */
    --business-deposits-veksels-font-color-black-1: #000000;
    --business-deposits-veksels-font-color-black-2: #565656;
    --business-deposits-veksels-font-color-blue-1: #00b0ff;
    /* цвета шрифтов конец */

    /* цвета конец */

    font-family: var(--font-family-rubik);
    font-weight: 300;
    line-height: normal;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin-top: 50px;
}

.business-deposits-veksels-font-color-blue-1 {
    color: var(--business-deposits-veksels-font-color-blue-1);
}

.business-deposits-veksels-container {
    max-width: var(--business-deposits-veksels-container-max-width);
    margin: 0 auto;
    padding: 0.5rem;
}

.business-deposits-veksels__title {
    font-family: var(--font-family-rubik);
    font-weight: 400;
    font-size: 40px;
    color: var(--business-deposits-veksels-font-color-black-1);
    line-height: normal;
}

.business-deposits-veksels__subtitle {
    font-family: var(--font-family-rubik);
    font-weight: 400;
    font-size: 30px;
    color: var(--business-deposits-veksels-font-color-black-2);
    line-height: normal;
    margin-bottom: 40px;
}

.business-deposits-veksels__list-docs-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: var(--font-family-rubik);
    font-weight: 300;
    font-size: 20px;
    line-height: normal;
}

.business-deposits-veksels__list-title {
    font-family: var(--font-family-rubik);
    font-weight: 400;
    font-size: 25px;
    color: var(--business-deposits-veksels-font-color-black-1);
    line-height: normal;
    margin-bottom: 40px;
}

.business-deposits-veksels__list-item {
    --padding-left-after-logo: 75px;
    display: flex;
    justify-content: left;
    align-items: center;
    max-width: 100%;
    width: 100%;
    min-height: 65px;
    height: 100%;
    border-radius: 10px;
    color: var(--investment-coins-font-color-black-1);
    font-family: var(--font-family-rubik);
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease-out all;
    margin-bottom: 20px;
    padding-left: var(--padding-left-after-logo);
}

.business-deposits-veksels__list-item__title-docs-for-customer-id-proc {
    position: relative;
    background-size: 56px auto;
    background-image: url("../images/title-docs-for-customer-id-proc.svg");
    background-position: left center;
    background-repeat: no-repeat;
}

.business-deposits-veksels__list-item__agreement-on-sale-of-promissory-notes {
    position: relative;
    background-size: 56px auto;
    background-image: url("../images/agreement-on-sale-of-promissory-notes.svg");
    background-position: left center;
    background-repeat: no-repeat;
}

.business-deposits-veksels__list-item__application-for-issue-repayment-of-promissory-notes {
    position: relative;
    background-size: 56px auto;
    background-image: url("../images/application-for-issue-repayment-of-promissory-notes.svg");
    background-position: left center;
    background-repeat: no-repeat;
}

.business-deposits-veksels__list-item__act-of-acceptance-and-transfer-of-promissory-notes {
    position: relative;
    background-size: 56px auto;
    background-image: url("../images/act-of-acceptance-and-transfer-of-promissory-notes.svg");
    background-position: left center;
    background-repeat: no-repeat;
}

/* медиа-запросы начало */
@media (max-width: 1200px) {
    .business-deposits-veksels__title {
        font-size: 34px;
    }

    .business-deposits-veksels__subtitle {
        font-size: 26px;
    }

    .business-deposits-veksels-container {
        padding: 25px;
    }
}

@media (max-width: 900px) {
    .business-deposits-veksels__title {
        font-size: 26px;
    }

    .business-deposits-veksels__subtitle {
        font-size: 20px;
    }

    .business-deposits-veksels__list-title {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .business-deposits-veksels__list-item {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 560px) {
    .business-deposits-veksels__title {
        font-size: 24px;
    }

    .business-deposits-veksels__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .business-deposits-veksels__list-title {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .business-deposits-veksels__list-item {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {}

/* медиа-запросы конец */