.intro {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 100px 120px;
    background: url("../../../../assets/images/fixed_income_bg.webp") no-repeat center center / cover;
}

.intro-title {
    max-width: 790px;
    color: var(--white);
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.intro-description {
    max-width: 790px;
    color: var(--dark-20);
    text-align: center;
    font-size: 20px;
    line-height: 140%;
}

.intro .light-button {
    width: fit-content;
}

.back-to-products {
    position: absolute;
    top: 32px;
    left: 120px;
    width: fit-content;
}

.back-to-products-btn, .bonds-list-link-btn {
    display: flex;
    align-items: center;
    font-family: Inter, sans-serif;
    color: var(--white);
}

.back-to-products-btn .back-to-products-icon, .bonds-list-link-btn .bonds-list-link-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.back-to-products-icon {
    background: url("../../../../assets/icons/arrow_left_white.svg") center / contain no-repeat;
}

.datasets {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 150px 0;
}

.datasets-title {
    color: var(--dark-100);
    font-size: 34px;
    font-weight: 700;
}

.datasets-mosaic {
    display: flex;
    gap: 30px;
}

.datasets-mosaic-column {
    flex: 1 1 calc(50% - 30px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.datasets-mosaic-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid var(--dark-20);
    border-radius: 16px;
    padding: 16px;
}

.datasets-mosaic-item-header {
    color: var(--dark-100);
    font-size: 20px;
    font-weight: 700;
}

.datasets-mosaic-item-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.datasets-mosaic-item-content p, .datasets-mosaic-item-content ul {
    color: var(--dark-60);
    font-size: 16px;
    line-height: 140%;
}

.datasets-mosaic-item-content ul {
    list-style: disc inside;
}

.datasets-mosaic-item-content li {
    text-indent: -1.5em;
    padding-left: 1.5em;
}

.datasets-mosaic-item-content strong {
    color: var(--dark-100);
}

.datasets-mosaic-item-footer {
    display: flex;
    gap: 16px;
}

.datasets-mosaic-item-footer .primary-button, .datasets-controls .primary-button {
    width: fit-content;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 8px;
}

.datasets-controls {
    display: flex;
    justify-content: center;
}

.dark-section {
    background: url("../../../../assets/images/dark_section_bg.webp") no-repeat center center / cover;
    padding: 100px 0;
}

.use-cases {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.use-cases .title {
    color: var(--white);
    font-size: 34px;
    font-weight: 700;
}

.use-cases-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 64px 30px;
}

.use-cases-item {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 20px);
    padding: 16px;
    border: 1px solid var(--dark-80);
    border-radius: 16px;
}

.use-cases-item-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 8px;
}

.use-cases-item-description {
    color: var(--dark-10);
    line-height: 140%;
    list-style: disc inside;
}

.use-cases-item-description li {
    text-indent: -1.5em;
    padding-left: 1.5em;
}

.bonds-info {
    display: flex;
    gap: 120px;
    margin-top: 150px;
}

.bonds-info-title {
    flex: 1 1 calc(50% - 120px);
    color: var(--white);
    font-size: 34px;
    font-weight: 700;
}

.bonds-info-content {
    flex: 1 1 calc(50% - 120px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bonds-info-content p {
    color: var(--dark-20);
    line-height: 140%;
}

.bonds-info-content strong {
    color: var(--white);
    font-size: 20px;
    line-height: 140%;
}

.bonds-list-link {
    width: fit-content;
    font-family: "Proxima-Nova", sans-serif;
    font-size: 20px;
}

.bonds-list-link-icon {
    background: url("../../../../assets/icons/arrow_right_white.svg") center / contain no-repeat;
}

.flat-files-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../../../../assets/images/flat_files_banner.webp") center / cover no-repeat;
}

.flat-files-banner-content {
    max-width: 790px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.flat-files-banner-label {
    color: var(--dark-100);
    font-size: 20px;
    font-weight: 700;
    border-radius: 24px;
    background-color: var(--white);
    padding: 4px 12px;
}

.flat-files-banner-text {
    color: var(--white);
    text-align: center;
    font-size: 77px;
    font-weight: 700;
}

@media screen and (max-width: 960px) {

    .back-to-products {
        left: 40px;
    }

    .intro {
        padding: 40px;
        justify-content: center;
    }

    .datasets-mosaic {
        flex-direction: column;
    }

    .dark-section {
        padding: 50px 0;
    }

    .use-cases-wrapper {
        gap: 16px;
    }

    .use-cases-item {
        flex: 0 0 calc(50% - 8px);
    }

    .bonds-info {
        flex-direction: column;
        gap: 24px;
    }

    .flat-files-banner-content {
        width: 688px;
    }

    .flat-files-banner-text {
        font-size: 48px;
    }
}

@media screen and (max-width: 590px) {

    .back-to-products {
        left: 16px;
    }

    .intro {
        padding: 16px;
    }

    .use-cases-item {
        flex: 0 0 100%;
    }

    .flat-files-banner-content {
        width: 343px;
    }
}
