.work .container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.work .container hr {
    border: none;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    width: 75%;
    margin: auto;
}

.work .container .type {
    padding: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.work .container .type .title {
    color:#fff;
    text-align: left;
    font-size: 32px;
    font-weight: 700;
    width: 100%;
}

.work .container .type .description {
    font-size: 22px;
    color:#fff;
    padding: 10px 0px 0 0px;
    text-align: justify;
    width: 100%;
}

.work .container .type .images {
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: fit-content;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 40px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.work .container .type .images .image {
    height: fit-content;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    border-radius: 30px;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex: 1;
}

.work .container .type .images .image img {
    width: 100%;
    height: auto;
    transition: 300ms;
    cursor: pointer;
    object-fit: cover;
    object-position: center;
    display: block;
}

.work .container .type .image:hover img {
    transform: scale(1.05);
}

.work .container .image-description {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 2px 10px 2px 10px;
    font-size: 18px;
    text-align: center;
    box-sizing: border-box;
    font-weight: 500;
    border-radius: 10px 10px 0 0;
}

@media only screen and (max-width: 1400px) {
    .work .container {
        width: 90%;
    }
    .work .container .type .description {
        text-align: left;
        font-size: 15px;
    }

    .work .container .type .images {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        border-radius: 20px;
    }

    .work .container .type .images .image {
        flex: 1 1 120px;
        max-width: 300px;
        border-radius: 10px;
    }

    .work .container .image-description {
        font-size: 10px;
    }
}
	