
.about-page .hero .text
{
    position: absolute;
    z-index: 5;
    top: 50%;
    right: 25%;
    transform: translate(50%, -50%);
    width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.about-page .hero .detail p
{
    font-size: var(--font-size-small);
}
.about-page .hero .title-box
{
    margin-bottom: 42px;
}
.about-page .values
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}
.about-page .values .top-title
{
    padding: 12px 18px;
    position: relative;
    top: 0;
    transform: translateY(-50%);
    background-color: var(--primary);
    box-shadow: rgba(0, 0, 0, 0.75) 0 5px 37px;
    font-weight: 200;
}
.about-page .values .top-title strong
{
    font-weight: 600;
}

.about-page .values .top-title > *
{
    font-size: var(--font-size-title);
}

.about-page .values img.stylized-spacer
{
    margin-top: 40px;
}

.about-page .values .value-items-wrapper
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    padding: 25px 125px 125px 125px;
}

.about-page .values .value-items-wrapper .value-item
{
    flex: 1 1 370px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.about-page .values .value-items-wrapper .value-item .title
{
    font-size: var(--font-size-mid-title);
    font-weight: bold;
}
.about-page .values .value-items-wrapper .value-item .text
{
    font-size: var(--font-size-small);
}

