
/* flow */
.flow {
    padding: 70px 0px;
}


.flow_bd_tittle {
    display: grid;
}

.flow_bd_tittle_p1,
.flow_bd_tittle_p2{
    justify-self: center;
}

.flow_bd_tittle_p1 {
    color: #848484;
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 500;
    padding: 10px 0px;
}

.flow_bd_tittle_p2 {
    animation-name: scaleAnimation;
    animation-duration: 4s;
    animation-fill-mode: forwards;
    color: #000;
    font-size: 28px;
    letter-spacing: 3px;
    text-align: center;
    font-weight: 700;
    padding: 10px 0px;
}


.flow_bd_content_bd{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 24px;
    row-gap: 48px;
    padding: 40px 0px;
}

.flow_bd_content_1{
    display: grid;
    width: 100%;
}

.flow_bd_content_1_img,
.flow_bd_content_1_p1,
.flow_bd_content_1_p12{
    justify-self: center;
}

.flow_bd_content_1_img img {
    max-height: 90px;
}

.flow_bd_content_1_p1 {
    font-size: 16px;
    font-weight: 700;
    margin: 25px 0px;
}

.flow_bd_content_1_p2 {
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
    text-align: center;
}

@media (max-width: 1200px) {

    .flow_bd_content_bd{
        display: grid;
        grid-template-columns: 1fr ;
        column-gap: 24px;
        padding: 40px 0px;
    }
}

@media (max-width: 576px) {

    .flow_bd_content_bd{
        display: grid;
        grid-template-columns: 1fr ;
        column-gap: 24px;
        padding: 40px 0px;
    }

    .flow_bd_content_1_p1 {
        font-size: 14px;
        font-weight: 700;
        margin: 25px 0px;
    }
    

    .flow_bd_content_1_p2 {
        font-size: 16px;
        font-weight: 300;
        line-height: 25px;
        text-align: center;
    }

}
