.entreprise {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    min-width: 60%;
    margin: 5px auto;
    padding: 10px 50px;
    background: var(--blocks);
    border-radius: 20px;
    box-shadow: var(--box-shadow);

    img {
        width: 300px;
    }
}

.app-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;

    fieldset legend {
        padding: 0 15px;
        color: var(--cts-main);
        margin-left: 20px;
    }
}

.app-category {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 5px;
    padding: 5px 10px;
    border: 1px solid var(--cts-main);
    border-radius: 10px;
}

.app {
    display: flex;
    align-items: start;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    background: linear-gradient(var(--cts-main), var(--cts-alt));
    color: var(--nav-a-color);
    transition: all .25s ease;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    overflow: hidden;

    &:hover {
        transform: scale(1.1);
    }

    img {
        width: 80%;
    }

    .inner-div {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-height: 20%;
        box-sizing: border-box;
        background: var(--blocks);
        color: var(--cts-main);
        transition: all .25s ease;

        &.hovered {
            max-height: 100%;
        }
    }
}
