


.software-content {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.software-title{
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.box {
    height: 350px;
    img {
        height: inherit;
    }
}

.software-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-wrap: wrap;
    text-align: center;
    height: 25%;
    width: 500px;
    img {
        height: 40px;
    }
    h2{
        color: #0D84C8;
    }
}

.gray {
    background-color: #f8f9fa;
    width: 100%;
}

.software-details {
    img {
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        min-width: 300px;
        transition: transform 0.5s ease;
        &:hover {
            transform: scale(1.1);
        }
    }
    .screenshot {
        display: flex;
        justify-content: center;
        max-width: 600px;
        img {
            width: 100%;
            cursor: pointer;
        }
    }
    .screenshot-multiple{
        display: flex;
        align-items: center;
        max-width: 600px;
        img {
            cursor: pointer;
            display:block;
            transition: all 0.3s ease;
        }
        .first {
            z-index: 1;
            margin-right: -400px;
            width: 100%;
        }
        .second {
            z-index: 2;
            margin-top: 150px;
            width: 80%;
        }
    }
    .software-details-content{
        margin: 40px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10vw;
        flex-wrap: wrap;
        .software-text {
            height: fit-content;
            text-align: center;
            max-width: 550px;
            height: 60%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-top: 10px;
            margin-bottom: 10px;
        }
    }
    .column {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        .software-text{
            margin: auto;
        }
        .screenshots {
            width: 75%;
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 7vw;
            align-items: center;
            flex-wrap: wrap;
            margin: auto;
            margin-top: 15px;
            .screenshot {
                flex: 1;
            }
        }
    }
    .reverse {
        flex-direction: row-reverse;
        gap: 10vw;
    }

    ul {
        text-align: left;
        li {
            line-height: 1.7rem;
        }
    }
    .table {
        margin-top: 10px;
        align-items: center;
        display: flex;
        flex-direction: column;
        tr {
            text-wrap: wrap;
            line-height: 1.7rem;
        }
        td{
            &:first-child {
                color: #6c757d;
                font-weight: 400;
            }
        }
        .gap {
            width: 20px;
        }
        .blue {
            color: #0D84C8;
            font-weight: 600;
        }
    }
}


.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    height: 85%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #0D84C8;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #0D84C8;
    text-decoration: none;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: #0D84C8;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 15px;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 15px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}