#grid1 {
    margin-top: 36px;
    padding-left: 198px;
    padding-right: 198px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

#grid1 .row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px 0;
}

#grid1 .row:first-child {
    border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 50%, transparent);
}

#grid1 .row .card {
    flex: 1;
}

#grid1 .row .card .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#grid1 .row .card .header .title {
    margin: 0;
    font-family: "Roboto";
    font-weight: 600;
    font-size: 20px;
    color: var(--color-near-black);
    text-transform: uppercase;
}

#grid1 .row .card .header .number {
    margin: 0;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 32px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .3);
    color: color-mix(in srgb, var(--color-primary) 50%, transparent);
}

#grid1 .row .card .text {
    margin: 0;
    padding-top: 42px;
    padding-bottom: 40px;
    padding-right: 5px;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, .8)
}

#transparency-feedback {
    margin-top: 64px;
    margin-left: 198px;
    margin-right: 192px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#transparency-feedback .text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#transparency-feedback .text .title {
    margin: 0;
    padding: 0;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 32px;
    line-height: 1.06;
    color: var(--color-near-black);
}

#transparency-feedback .text .description {
    margin: 0;
    padding: 0;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.06;
    color: var(--color-near-black);
}

#transparency-feedback .actions {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

#transparency-feedback .actions .buttons .button {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 16px;
}

#metrics {
    margin-top: 128px;
    padding-top: 20px;
    padding-left: 198px;
    padding-right: 197px;
    padding-bottom: 20px;
    background-color: var(--color-primary);
}

#metrics .title {
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 36px;
    color: white;
    margin: 0;
    line-height: 1.06;
}

#metrics .content {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

#metrics .content .row {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 83.5px;
}

#metrics .content .row-right {
    justify-content: end;
}

#metrics .content .row .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#metrics .content .row .item .title {
    margin: 0;
    padding: 0;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 82px;
    text-align: center;
    line-height: 1.06;
    color: transparent;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .3)) drop-shadow(0 8px 12px rgba(0, 0, 0, .15));
    background: linear-gradient(180deg, #fff 38.9%, var(--color-dark-grey) 100%);
    background-clip: text;
}

#metrics .content .row .item .title .small {
    font-size: 48px;
}

#metrics .content .row .item .text {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.36;
    color: rgba(255, 255, 255, .5);
    text-align: center;
}

#metrics .footer {
    margin-top: 64px;
}

#metrics .footer .tags {
    margin-top: 64px;
    display: flex;
    flex-direction: row;
    gap: 12px;
}

#metrics .footer .tags .tag {
    background-color: #bdbdbd;
    margin: 0;
    padding: 10px 20px;
    border-radius: 3px;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .5);
}

#conditions {
    margin-top: 128px;
    margin-left: 198px;
    margin-right: 198px;
}

#conditions .heading {
    margin: 0;
    padding: 0;
    color: var(--color-near-black);
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 36px;
}

#conditions .cards {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

#conditions .cards .row {
    display: flex;
    flex-direction: row;
    gap: 52px;
}

#conditions .cards .row .card {
    flex: 1;
    padding: 0 20px;
    border-left: 1px var(--color-primary) solid;
}

#conditions .cards .row .card .title {
    margin: 0;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--color-primary);
}

#conditions .cards .row .card .text {
    margin-top: 42px;
    color: rgba(0, 0, 0, .5);
    font-family: "Roboto";
}

#feedback {
    margin-top: 64px;
}