/* bottom cta */
.bottom_cta{
    border-bottom: 1px solid #2A2B2C;
    background: #FFF;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    justify-content: center;
}
.bottom_cta .section_main{
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}
.bottom_cta .section_main .cta_sub{
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    border-right: 1px solid rgba(42, 43, 44, 0.15);
}
.bottom_cta .section_main .cta_sub > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.bottom_cta .section_main .cta_sub:last-child{
    border-right: none;
}
.bottom_cta .section_main .cta_sub div p{
    color: #2A2B2C;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 130%; /* 15.6px */
}
.bottom_cta .section_main .cta_sub a{
    max-width: 300px;
    height: 62px;
}

@media screen and (max-width: 880px) {
    .bottom_cta .section_main {
        flex-direction: column;
        align-items: center;
    }
    .bottom_cta .section_main .cta_sub {
        border-right: none;
        width: 88.8%;
        padding-top: 32px;
        padding-bottom: 40px;
    }
    .bottom_cta .section_main .cta_sub:first-child{
        border-bottom: 1px solid rgba(42, 43, 44, 0.15);
    }

    .bottom_cta .section_main .cta_sub a{
        font-size: 18px;
    }
}