.software__container {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: auto;
}



.software__section__title {
    line-height: 1;
}

.software__topic__description {
    text-align: justify;
    width: 100%;
    max-width: 380px;
}

.software__topics__img {
    width: 100%;
}

.software__img {
    width: 100%;
    height: auto;
    border: solid #279963 2px;
}

.software__topics {
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 50px;
}

.software__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.software__topics__bottom {
    display: flex;
    justify-content: space-evenly;
    align-items: start;
}

.software__singleTopic {
    background-color: #279963;
    color: white;
    gap: 2px;
    border-radius: 5px 5px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    width: 90px;
    padding: 0 4px;

    height: 25px;
    transition: all .3s ease;

    cursor: pointer;
}

.software__singleTopic__label {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}

.software__singleTopic--active {
    height: 35px;
    font-weight: 900;

}


@media (min-width: 1024px) {

    .software__container{
        width: 100%;
        max-width: var(--container-max);
        margin: 0 auto;
        height: auto;
    }

    .software__topics__img{
        width: 100%;
        display: flex;
        justify-content: center
    }

    .software__singleTopic{
        font-size: 1rem;
        width: 18%;
    }

    .software__section__description{
        font-size: 1.3rem;
        text-align: start;
    }

    .software__topics__text{

        width: 55%;
        display: flex;
        flex-direction: column;

        & > img {
            width: 100%;
        }
    }

    .software__text{
        width: 35%;
        text-align: start;
        justify-content: space-around;
        align-items: start;

        padding: 50px 20px;

        & > a {
            align-self: flex-start;
            
        }
    }
    
    .software__topic__title{
        width: 100%;
        font-size: 2.5rem;

    }

    .software__topic__description {
        width: 100%;
        font-size: 1.2rem;
        text-align: start;
    }
}