#cases {
    margin-top: 36px;
    margin-bottom: 128px;
    margin-left: 198px;
    margin-right: 196px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.case {
    color: white;
}

.case .header {
    font-family: "Montserrat";
    background-color: var(--color-primary);
    height: 125px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.case .header .title {
    font-weight: 600;
    font-size: 20px;
    padding-right: 30%;
}

.case .header .number {
    font-weight: 400;
    font-size: 48px;
}

.case .description {
    margin-top: 48px;
    padding-left: 20px;
    padding-right: 20px;
    color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: row;
    gap: 36px;
}

.case .description .item {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.case .description .item .title {
    margin: 0;
    text-transform: uppercase;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 16px;
}

.case .description .item .text {
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.36;
}

.case .footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: transparent;
    width: auto;
    margin-top: 20px;
}

.case .footer .info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    gap: 36px;
}

.case .footer .info .item {
    width: auto;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-family: "Montserrat";
    font-weight: 400;
}

.case .footer .info .item .top {
    color: var(--color-primary);
    margin: 0;
    font-size: 48px;
    text-align: center;
}

.case .footer .info .item .bottom {
    color: var(--color-near-black);
    margin: 0;
    padding: 0;
    font-size: 16px;
    text-align: center;
    display: inline;
}

.case .footer .actions {
    display: flex;
    flex-direction: row;
    align-items: last baseline;
}

img.bottom-image {
    width: 100%;
    height: 491px;
    object-fit: cover;
}