/* Home page css */
.cms_home .Page_title_main .main_title h1 {
    font-weight: 400;
}

.cms_home .header_section_main .header_section_inner .menu_bar_icon i {
    font-size: 30px;
    line-height: 35px;
    color: #005288BF;
}

.cms_home .header_section_main .header_section_inner .account_signout a {
    font-size: var(--subtitle-font);
    line-height: var(--subtitle-line-height);
    font-weight: 400;
    color: #005288BF;
    text-decoration: none;
}

.home_page_main .card_section .card_block {
    min-height: 130px;
    row-gap: 5px;
}

.home_page_main .multiple_section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home_page_main .multiple_section a{
    flex: 0 0 calc((100% /2) - 15px);
}

.home_page_main .card_section .card_block .card_icon i {
    font-size: 30px;
    line-height: 39px;
}

.home_page_main .card_section .card_block.pre_qualify {
    margin: 0 0 30px;
}

.home_page_main .card_section .card_block.view_customer {
    margin-bottom: 30px;
}

.home_page_main .home_page_inner {
    padding: 30px;
    min-height: unset;
    max-width: 550px;
}

@media only screen and (max-width: 767px) {
    .home_page_main .home_page_inner {
        padding: 20px;
        min-height: unset;
    }

    .home_page_main .card_section .card_block.pre_qualify {
        margin: 0 0 20px;
    }

    .home_page_main .card_section .card_block.view_customer {
        margin-bottom: 30px;
    }

    .home_page_main .multiple_section a {
        flex: 0 0 100%;
    }
}