.content-items {
    display: flex;
    flex-flow: row;
}

.content-items h3 {
    display: block;
    writing-mode: tb;
    font-size: 1.3rem;
    text-orientation: sideways;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 20px;
    position: sticky;
    bottom: 0;
    -webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
    -moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
    -o-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
    -ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
    transform: rotateX(0deg) rotateY(0deg) rotateZ(-180deg);
}

.item-col {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: max-content;
    display: flex;
    align-items: center;
    flex-flow: column;
}

.item-col a {
    transition: color ease-in-out .2s;
}

.item-col a.active {
    color: #FF8004 !important;
    transition: color ease-in-out .6s;
}

.item-col a:nth-child(1) {
    margin-top: 10px;
}

.card-project {
    padding: 23px 20px 0 0px;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    min-height: 380px;
    display: grid
}

.card-project,
.card-project * {
    transition: all ease-in-out .2s;
}

.card-project::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: #212121;
    right: 0;
    top: 0;
    z-index: 0;
    transform: scale(.94);
    transition: all ease-in-out .2s;
}

.card-project .image-mask {
    width: 98%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.card-project .image-mask img {
    width: 100%;
}

.card-project .title-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row;
    position: relative;
    z-index: 10;
    padding: 10px 20px 30px 35px;
    box-sizing: border-box;
}

.card-project .title-card,
.card-project .title-card * {
    transition: all ease .2s;
}

.card-project .title-card h4 {
    font-size: 1.4rem;
}

.card-project .title-card h5 {
    font-size: 1.1rem;
}

.card-project:hover {
    padding: 10px 10px 0 10px;
}

.card-project:hover .image-mask {
    width: 100%;
    height: 260px;
}

.card-project:hover::before {
    transform: scaleX(1)
}

.card-project:hover .title-card {
    padding: 20px 10px 20px;
}

.card-project:hover .title-card a {
    color: #FF8004 !important
}

.card-project .title-card sub {
    letter-spacing: .5px;
}

.card-project:hover .title-card,
.card-project:hover .title-card i {
    color: #FF8004 !important
}

@media(max-width:991px) {
    .card-project {
        min-height: 350px;
    }
    .card-project .image-mask {
        height: 200px;
        overflow: hidden;
    }
    .card-project .image-mask a {
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
        margin: 0 0
    }
    .card-project:hover .image-mask {
        height: 200px;
        overflow: hidden;
    }
    .card-project .image-mask img {
        width: inherit;
        height: 100%;
    }
    [data-aos="in-active"].aos-animate .image-mask {
        height: 200px;
        overflow: hidden;
    }
    [data-aos="in-active"].aos-animate {
        padding: 10px 10px 0 10px;
    }
    [data-aos="in-active"].aos-animate .image-mask {
        width: 100%;
        height: 260px;
    }
    [data-aos="in-active"].aos-animate::before {
        transform: scaleX(1)
    }
    [data-aos="in-active"].aos-animate .title-card {
        padding: 20px 10px 20px;
    }
    [data-aos="in-active"].aos-animate .title-card a {
        color: #FF8004 !important
    }
    [data-aos="in-active"].aos-animate .title-card,
    [data-aos="in-active"].aos-animate .title-card i {
        color: #FF8004 !important
    }
}

@media(max-width:800px) {
    .content-items h3 {
        padding: 10px;
    }
    .card-project {
        min-height: 300px;
    }
    .card-project .image-mask {
        height: 120px;
        overflow: hidden;
    }
    .card-project:hover .image-mask {
        height: 140px;
        overflow: hidden;
    }
    [data-aos="in-active"].aos-animate .image-mask {
        height: 140px;
        overflow: hidden;
    }
    .card-project .title-card {
        padding: 15px 10px 15px 20px;
    }
    .card-project .image-mask img {
        width: inherit;
        height: 100%;
    }
    h2 {
        font-size: 2rem;
    }
}

@media(max-width:599px) {
    .content-items h3 {
        padding: 10px;
    }
    .card-project {
        min-height: 280px;
    }
    .card-project .image-mask {
        height: 150px;
        overflow: hidden;
    }
    .card-project:hover .image-mask {
        height: 180px;
        overflow: hidden;
    }
    [data-aos="in-active"].aos-animate .image-mask {
        height: 180px;
        overflow: hidden;
    }
    .card-project .image-mask img {
        width: inherit;
        height: inherit;
        object-fit: cover;
    }
    .card-project .title-card {
        padding: 15px 10px 15px 25px;
    }
    .card-project .title-card h4 {
        font-size: 1.1rem;
    }
    .card-project .title-card h5 {
        font-size: .9rem;
    }
}