body {
    background-image:
        radial-gradient(circle 8vw at 50% 65%, rgba(255, 143, 87, 0.45) 0%, transparent 100%),
        radial-gradient(circle 16vw at top right, #343434 0%, transparent 100%),
        radial-gradient(circle 50px at 75% 30%, rgba(255, 95, 15, 0.85) 0%, transparent 100%),
        radial-gradient(circle 6vw at 60% 30%, rgb(55, 55, 55) 0%, transparent 100%),
        radial-gradient(circle 10vw at 85% 60%, rgba(90, 90, 90, 0.75) 0%, transparent 100%);
    background-repeat: no-repeat;
}
#idSoftware_start_section h2 {
    margin-bottom: 1%;
    color: var(--secondary-text-color);
}
#idSoftware_start_section img {
    width: 100%;
    border-radius: 5px;
    opacity: 0.6;
    box-shadow:
        5px 5px 25px var(--secondary-bg-color),
        -5px 0 10px var(--primary-bg-color),
        5px 0 10px var(--primary-bg-color);
}
.software_intro_text {
    margin-bottom: 1rem;
}
.software_main_1_img {
    width: 35%;
}
.software_main_3_features {
    width: 100%;
    margin-top: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}
#software_circle_1 h2,
#software_circle_2 h2,
#software_circle_3 h2 {
    color: white;
    text-align: center;
}
.software_circle_1_show,
.software_circle_2_show,
.software_circle_3_show {
    width: 400px;
    height: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #343434;
    border-radius: 50%;
    transition: all 1s ease-in-out;
}
.software_circle_1_show {
    box-shadow:
        inset 0px 45px 30px rgba(255, 95, 15, 0.9),
        inset -15px 10px 35px rgba(225, 225, 225, 0.868),
        10px 5px 35px rgba(90, 90, 90, 0.868);
    transform: translate(0px, 0px);
}
.software_circle_2_show {
    box-shadow:
        inset 45px -35px 50px rgba(255, 95, 15, 0.9),
        inset -5px 5px 40px rgba(225, 225, 225, 0.868),
        10px 5px 35px rgba(90, 90, 90, 0.868);
    transform: translate(-240px, 0px);
}
.software_circle_3_show {
    box-shadow:
        inset -45px -35px 70px rgba(255, 95, 15, 0.9),
        inset -15px 10px 35px rgba(225, 225, 225, 0.868),
        10px 5px 35px rgba(90, 90, 90, 0.868);
    transform: translate(240px, -400px);
}
.software_circle_off {
    width: 100%;
    height: auto;
    margin: 0;
    background-image: none;
    display: block;
    border-radius: 0;
    transition: all 1s ease-in-out;
    transform: translate(0px, 0px);
}
.software_circle_off h2 {
    margin-top: 3%;
    color: var(--secondary-text-color);
    text-align: left;
    transition: all 1s ease-in-out;
}
.software_circle_off:first-child h2 {
    margin-top: 0;
}
.feature_card_content {
    flex: 1;
}
.software-button-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 1600px) {
    .software_circle_1_show,
    .software_circle_2_show,
    .software_circle_3_show {
        width: 350px;
        height: 350px;
    }
    .software_circle_1_show {
        box-shadow:
            inset 0px 35px 30px rgba(255, 95, 15, 0.9),
            inset -15px 10px 35px rgba(225, 225, 225, 0.868),
            10px 5px 35px rgba(90, 90, 90, 0.868);
    }
    .software_circle_2_show {
        box-shadow:
            inset 35px -25px 50px rgba(255, 95, 15, 0.9),
            inset -5px 5px 40px rgba(225, 225, 225, 0.868),
            10px 5px 35px rgba(90, 90, 90, 0.868);
        transform: translate(-200px, 0px);
    }
    .software_circle_3_show {
        box-shadow:
            inset -35px -25px 70px rgba(255, 95, 15, 0.9),
            inset -15px 10px 35px rgba(225, 225, 225, 0.868),
            10px 5px 35px rgba(90, 90, 90, 0.868);
        transform: translate(200px, -350px);
    }
}

/* @media (max-width: 1100px) {
    .main_container,
    .cards_sm_ctn {
        margin: 3% auto;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
} */

@media (max-width: 800px) {
    body {
        background-image:
            radial-gradient(circle 8vw at 50% 65%, rgba(255, 143, 87, 0.5) 0%, transparent 100%),
            radial-gradient(circle 8vw at 25% 30%, rgba(255, 143, 87, 0.5) 0%, transparent 100%),
            radial-gradient(circle 16vw at top right, #343434 0%, transparent 100%),
            radial-gradient(circle 50px at 75% 30%, rgba(255, 95, 15, 0.9) 0%, transparent 100%),
            radial-gradient(circle 50px at 40% 15%, rgba(255, 95, 15, 0.9) 0%, transparent 100%),
            radial-gradient(circle 6vw at 60% 30%, rgb(55, 55, 55) 0%, transparent 100%),
            radial-gradient(circle 6vw at 30% 15%, rgb(55, 55, 55) 0%, transparent 100%),
            radial-gradient(circle 10vw at 85% 60%, rgba(90, 90, 90, 0.868) 0%, transparent 100%),
            radial-gradient(circle 10vw at 42% 30%, rgba(90, 90, 90, 0.868) 0%, transparent 100%);
    }
    .software_main_1_img {
        position: sticky;
        top: 100px;
        width: 100%;
        opacity: 0.6;
        z-index: -1;
    }
    .software_main_3_features {
        margin: 0;
    }
    .software_circle_1_show,
    .software_circle_2_show,
    .software_circle_3_show {
        width: 100%;
        height: 10vh;
        margin: 3% 0;
        transform: translate(0px, 0px);
    }
    .software_circle_1_show {
        border-radius: 10px 10px 5px 5px;
        box-shadow:
            inset 10px 10px 20px rgba(255, 95, 15, 0.9),
            inset 0px -5px 20px rgba(225, 225, 225, 0.868),
            5px 5px 15px rgba(90, 90, 90, 0.868);
    }
    .software_circle_2_show {
        border-radius: 5px;
        box-shadow:
            inset 10px 0px 20px rgba(255, 95, 15, 0.9),
            inset 0px -5px 20px rgba(225, 225, 225, 0.868),
            inset 0px 5px 20px rgba(225, 225, 225, 0.868),
            5px 5px 15px rgba(90, 90, 90, 0.868);
    }
    .software_circle_3_show {
        border-radius: 5px 5px 10px 10px;
        box-shadow:
            inset -10px -10px 20px rgba(255, 95, 15, 0.9),
            inset 0px 5px 20px rgba(225, 225, 225, 0.868),
            5px 5px 15px rgba(90, 90, 90, 0.868);
    }
    /* .main_container,
    .cards_sm_ctn {
        gap: 30px;
    } */
    .software-button-wrap {
        width: 80%;
        margin: 3% auto;
        justify-content: center;
    }
}

@media (max-width:480px) {
    .software-button-wrap {
        width: 90%;
    }
}