﻿
.software_section {
    padding: 10px 5%;
    margin: 10px 0;
    /*font-family: "Roboto";*/
}

    .software_section .software_container ul {
        list-style-image: linear-gradient(130deg, #c0f862, #10a690, #402b6d);
        text-align: justify;
    }

        .software_section .software_container ul strong {
            color: #1166a3;
            border-bottom: 2px solid #c0f862;
        }

.software_container img {
    width: 100%;
    max-width: 25em;
    padding: 10px 0;
}

.auto_loan_btn {
    text-transform: uppercase;
    margin: 7px;
    text-align: center;
    background-color: #0d6efd;
    border-radius: 5px;
    color: white;
    border: 1px solid #0d6efd;
    font-weight: bold;
    padding: 10px 30px;
}

    .auto_loan_btn:hover, .auto_loan_btn:active, .auto_loan_btn:focus {
        color: #0d6efd;
        font-weight: bold;
        text-decoration: none;
        background-color: white;
        /*box-shadow: 0 0 0 2px #10a690;*/
    }

/*.soft_fimg {
    
    border-radius: 5px;
    border: 1px solid #10a690;
    box-shadow: 0 0 0 2px #c0f862;
    margin: .25em;
    padding: .25em;
    background-color: white;
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
}*/

.grid_13 {
    display: grid;
    grid-template-areas: "left right";
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    box-sizing: border-box;
}


    .grid_13 > div{
        grid-area: left;
        text-align: justify;
    }

    .grid_13 > img, .grid_13 > .r_box {
        max-width: 100%;
        grid-area: right;
    }

        .grid_13 > div ul {
            list-style-image: linear-gradient(130deg, #c0f862, #10a690, #402b6d);
            text-align: justify;
            padding-left: 20px;
        }

            .grid_13 > div ul strong {
                color: #1166a3;
                border-bottom: 1px solid #c0f862;
            }

            .grid_13 > div ul li {
                padding-top: .25em;
                padding-bottom: .25em;
            }


@media (max-width: 991.98px) {
    .grid_13 {
        display: grid;
        grid-template-areas: "right" "left" !important;
        grid-template-columns: 1fr !important;
        padding: 0;
        grid-row-gap: 20px;
        box-shadow: none !important;
    }
}