body {
    padding: 0px 10px;
}

.container {
    max-width: 1406px;
    margin: auto;
}

.back {
    display: flex;
    width: 100%;
    padding: 0px 80px 40px 80px;
    flex-direction: column;
    background: #3D65C9;
    border-radius: 20px;
    margin-top: 10px;
    height: 480px;
    justify-content: center;
    background-image: url("./images/processcard-general.png");
    background-size: cover;
}

.b24-window-popup-wrapper .b24-window-scrollable {
    max-height: 90vh !important;
}

.title {
    color: #FFFFFF;
    text-shadow: 0 0 8px #3D65C9, 0 0 2px #3D65C9;
    font-family: Manrope;
    font-size:52px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    max-width: 720px;
}

.section {
    margin-top: 144px;
}

.center {
    text-align: center;
}

.text {
    margin-top: 24px;
    margin-bottom: 48px;
    text-align: center;
    color: #1A1A1A;
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.grey {
    color:rgba(26, 26, 26, 0.70);
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1016px;
    gap: 10px;
    margin: auto;
}

.card {
    display: flex;
    padding: 22px;
    gap: 16px;
    border-radius: 10px;
    background: var(--color-background-blue-1, #F0F4F9);

    color: #1A1A1A;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.subtitle {
    color: #1A1A1A;
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 16px;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.pad-lr32 {
    padding: 0px 32px;
}

.black-button {
    color: #FFFFFF;
    border-radius: 40px;
    background: #2B2C30;
    box-shadow: -16px -16px 24px -16px rgba(255, 255, 255, 0.10) inset, 16px 16px 24px -16px rgba(0, 0, 0, 0.30) inset;
    height: 56px;
    padding: 0 32px;
    align-content: center;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    line-height: 56px;
    white-space: nowrap;
}

.comment {
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: rgba(26, 26, 26, 0.7);
}

.blocks-title {
    padding: 0px 32px 16px 32px;
    display: flex;
    gap: 12px;
    color: #1A1A1A;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    align-items: center;
}

.blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
    gap: 10px;
    border-radius: 20px;
    background: #E7EFF8;
}

.block {
    padding: 18px 22px 22px 22px;
    gap: 16px;
    border-radius: 10px;
    background: #FFFFFF;

    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.block-title {
    color: #1A1A1A;
    font-size: 16px;
    margin-bottom: 16px;
}

.processes {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.process {
    padding: 6px 12px 8px 12px;
    border-radius: 5px;
    background: #E7EFF8;
    color: #3A4A6B;
}

.union {
    grid-column: span 2;
}

.green {
    background: #E4F6F3 !important;
    color: #4F6360;
}

.violet {
    background: #EFEFFA !important;
    color: #5A5A81;
}

.tabs {
    display: none;
}

.bottom {
    display: none;
}

.logo {
    width: 58px;
    height: 58px;
    background-image: url("./images/processcard.svg");
    margin: auto;
    border-radius: 10px;
}

.check {
    width: 28px;
    height: 28px;
    background-image: url("./images/processcard-check.svg");
}

.image {
    border-radius: 9999px;
    box-shadow: 0.5px 0.5px 1px 0 rgba(255, 255, 255, 0.75) inset, -0.5px -0.5px 1px 0 rgba(0, 0, 0, 0.25) inset, 0 0 8px 0 #FFF inset;
}

.h-32 {
    height: 32px;
}


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

    .hide {
        display: none;
    }

    .blocks {
        display: flex;
        flex-direction: column;
        border-top-left-radius: 0px;
    }

    .tabs {
        display: flex;
        gap: 5px;
    }

    .tab {
        display: flex;
        gap: 12px;
        background: #E7EFF8;
        border-radius: 20px 20px 0px 0px;
        min-height: 48px;
        padding: 12px 28px 14px 24px;
        color: #1A1A1A;
        align-items: center;
		cursor: pointer;
    }

    .image {
        width: 28px;
        height: 28px;
    }

    .h-28 {
        height: 28px;
    }

    .processcard {
        gap: 0px;
    }

	.show {
		display: flex;
	}

	.hidden {
		display: none;
	}
}

@media (max-width: 599px) {
    .back {
        padding: 40px 20px 200px 20px;
        height: auto;
        background-image: url("./images/processcard-general-small.png");
    }

    .title {
        font-size: 32px;
    }

    .text {
        font-size: 18px;
    }

    .section {
        margin-top: 120px;
    }

    .cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .card {
        flex-direction: column;
    }

    .subtitle {
        font-size: 24px;
    }

    .comment {
        font-size: 16px;
    }

    .hidden-button {
        display: none;
    }

    .bottom {
        display: block;
        margin: auto;
        margin-top: 40px;
    }

    .blocks {
        border-top-right-radius: 0px;
    }

    .tabs {
        overflow-x: scroll;
    }
}