h3.text-center {
    padding: 0 var(--spacing);
    color: #a10000;
}
.benefits {
    background: linear-gradient(180deg, #ffffff, #a6a6a6);
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.benefits .board {
    width: 80%;
    display: grid;
    row-gap: 2rem;
    column-gap: 3rem;
}

.benefits .card {
    background-color: #ffffff;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    border: 2px solid #a10000;
    border-radius: 6px;
}
.benefits .card:hover {
    transform: none;
}

.benefits .card img {
    width: 80px;
    height: auto;
}
.benefits .card p {
    font-size: 1rem;
    /* font-weight: 400; */
    margin-bottom: 1rem !important;
}

.flows,
.desc {
    padding: 1rem var(--spacing);
}

.desc p {
    margin-bottom: 0;
}

.flows {
    display: grid;
    row-gap: 3rem;
    grid-auto-rows: 1fr;
}

.flows .step {
    height: auto;
    padding: 1rem;
    background: linear-gradient(180deg, #ffffff, #a6a6a6);
    gap: 1rem;
    align-items: center;
    position: relative;
    width: 100%;
}
.flows .step span {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    background-color: #ffffff;
    color: #a10000;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.flows .step:not(.flows .step:last-child):after {
    position: absolute;
    content: "";
    top: 100%;
    right: 4rem;
    z-index: 10;
    width: 0;
    height: 0;
    border-left: 6rem solid transparent;
    border-right: 6rem solid transparent;

    border-top: 3rem solid #a10000;
}
.flows .step:not(.flows .step:last-child)::before {
    position: absolute;
    content: "";
    top: 100%;
    right: 0;
    z-index: 10;
    width: 0;
    height: 0;
    border-left: 10rem solid transparent;
    border-right: 10rem solid transparent;

    border-top: 5rem solid #ffffff;
}

.container {
    padding: 2rem var(--spacing);
}

.container-background {
    background: linear-gradient(180deg, #ffffff 50%, #a6a6a6);
    padding: 2rem var(--spacing);
}

.container h3.text-center {
    padding: 0;
}

.about-system {
    width: 100%;
    margin-top: 2rem;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.about-system .detail {
    gap: 1rem;
    flex-direction: column;
    flex: 1;
}

.about-system .img-container {
    flex: 1;
}
.about-system .img-container img {
    width: 100%;
    height: auto;
}

.about-the-support.grid-4 {
    row-gap: 3rem;
    column-gap: 2rem;
    width: 100%;
}
.about-the-support.grid-4 .card {
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    /* height: 300px; */
    height: auto;
    align-items: center;
}
.about-the-support.grid-4 .card img {
    width: 5rem;
    height: auto;
}
.about-the-support.grid-4 .card p {
    padding: 0 0.5rem;
}
.about-the-support.grid-4 .card .p-title {
    margin-bottom: 0px !important;
}
.flows .p-title {
    text-align: left !important;
    margin: 0 !important;
    /* padding-left: 20%; */
}

@media (min-width: 600px) {
    .benefits .board {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-the-support.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-system {
        flex-direction: row;
    }
}

@media (min-width: 1280px) {
    .benefits .board {
        grid-template-columns: repeat(3, 1fr);
    }
    .benefits .board .card:nth-child(4) {
        grid-column: 2 / 3;
        transform: translateX(-50%);
    }
    .benefits .board .card:nth-child(5) {
        grid-column: 3 / 4;
        transform: translateX(-50%);
    }
    .about-the-support.grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 1279px) {
    .benefits .board {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits .board .card:nth-child(5) {
        grid-column: 2 / 2;
        transform: translateX(-50%);
    }
    .about-the-support.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .flows {
        row-gap: 2rem;
    }
    .flows .step {
        gap: 0;
    }

    .flows .step span {
        height: 3rem;
        width: 3rem;
        font-size: 1.5rem;
    }

    .flows .step:not(.flows .step:last-child):after {
        right: 0;
        border-left: 4rem solid transparent;
        border-right: 4rem solid transparent;
        border-top: 2rem solid #a10000;
    }
    .flows .step:not(.flows .step:last-child)::before {
        right: -3rem;
        border-left: 7rem solid transparent;
        border-right: 7rem solid transparent;
        border-top: 3.5rem solid #ffffff;
    }
    .flows .p-title {
        text-align: center !important;
        padding-left: 0% !important;
    }
}

.step .content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.step .content p {
    width: 100%;
}
.step .content p.p-content {
    margin-bottom: 0;
}

.layout-container {
    background: linear-gradient(180deg, #ffffff, #a6a6a6);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}
.strength-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    justify-content: flex-end;
    width: 80%;
    max-width: var(--max-width);
}

.strength-item .image {
    width: 60%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    display: block;
}
.strength-item .text-box {
    position: absolute;
    top: 50%;
    right: 55%;
    min-height: 60%;
    width: 250px;
    font-size: 0.875rem;
    background: white;
    padding: 1rem;
    border: 2px solid darkred;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.strength-item .text-box p {
    margin-bottom: 0;
    text-align: left !important;
    font-weight: 400;
    font-size: 0.75rem;
}
.strength-item:nth-of-type(even) {
    justify-content: flex-start;
}
.strength-item:nth-of-type(even) .text-box {
    left: 50%;
    right: unset;
}

.strength-item .text-box span {
    position: absolute;
    left: 16px;
    top: -1.5rem;
    font-weight: 700;
}

.strength-item:nth-of-type(even) .text-box span {
    left: unset;
    right: 16px;
}

@media (max-width: 768px) {
    .strength-item {
        margin-bottom: 16px;
        justify-content: flex-start;
    }
    .strength-item .image {
        display: none;
    }
    .strength-item .text-box {
        height: auto;
        position: relative;
        right: unset;
        left: unset;
        top: unset;
        width: 60%;
    }
    .strength-item:nth-of-type(even) {
        justify-content: flex-end;
    }
    .strength-item:nth-of-type(even) .text-box {
        left: unset;
    }
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: center;
}

.grid-container .card:nth-child(4) {
    grid-column: 2 / 3;
}
.grid-container .card:nth-child(5) {
    grid-column: 3 / 4;
}

.text-red {
    color: #a10000;
}
