.page {
    background: rgba(244, 246, 252, 0.8);
}

.info-page {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 50px;
}

.info-page .breadcrumbs {
    margin-top: 20px;
}

.info-page h1 {
    font-weight: 700;
    font-size: 21px;
    line-height: 120%;
    margin-bottom: 20px;
}

.info-page .subtitle {
    font-weight: 600;
    font-size: 17px;
    line-height: 120%;
    margin-bottom: 20px;
    margin-top: 40px;
}

.info-page .info-page__subtitle {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 40px;
    margin-top: 20px;
}

.info-page div {
    margin-bottom: 30px;
}

.info-page p {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    max-width: 800px;
}

.info-page .info-page__content a {
    color: #4c73e3;
}

.info-page ul,
.info-page ol {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-page ul li,
.info-page ol li {
    position: relative;
    padding-left: 23px;
}

.info-page ul li::before {
    content: '';
    width: 3px;
    height: 3px;
    display: block;
    border-radius: 50%;
    background: var(--black);
    position: absolute;
    left: 7px;
    top: 7px;
}

.info-page ol {
    counter-reset: item 0;
}

.info-page ol li {
    list-style: none;
    counter-increment: item 1;
}

.info-page ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 15px;
    line-height: 120%;
    max-width: 800px;
    font-weight: 700;
    color: #4c73e3;
}

.info-page strong {
    display: block;
    font-weight: 600;
    font-size: 17px;
    line-height: 120%;
    margin-top: 20px;
}

.counterparty {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.counterparty > div {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.counterparty p {
    display: flex;
    gap: 10px;
    max-width: 350px;
    min-height: 30px;
}

.counterparty div,
.counterparty p {
    margin-bottom: 0;
}

.counterparty p b {
    flex: 0 0 50%;
}

@media (min-width: 480px) {
    .info-page {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .info-page {
        padding: 0 25px;
    }
}

@media (min-width: 1024px) {
    .counterparty > div {
        flex: 0 0 auto;
    }
}

@media (min-width: 1280px) {
    .info-page {
        padding: 0;
        padding-bottom: 100px;
    }

    .info-page h1 {
        font-weight: 700;
        font-size: 32px;
        line-height: 120%;
        margin-bottom: 40px;
    }

    .counterparty p b {
      flex: 0 0 60%;
  }
}

@media (min-width: 1440px) {
    .info-page {
        max-width: 1280px;
    }
}

@media (min-width: 1920px) {
    .info-page {
        max-width: 1400px;
    }
}
