.portfolio-area-v3{padding-top: 0px;}
.portfolio-left {
    padding: 30px;
}
.portfolio-right {
    padding: 30px;
}
h1.title-h-text {
    font-size: 60px;
    font-weight: bold;
}
.portfolio-area-v3 .container-fluid {
    padding-left: 70px;
    padding-right: 70px;
}
.gr {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x)/ -2);
    margin-left: calc(var(--bs-gutter-x)/ -2);
}
.service-item {
    display: block;
    position: relative;    margin-bottom: 30px;
}

.service-item img {
    width: 100%;
}

.service-item-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    background: rgb(0 0 0 / 70%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scrollbar-width: thin;
    scrollbar-color: #222222 rgba(34, 34, 34, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    overflow-y: overlay;
}

.service-item-caption::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

.service-item-caption::-webkit-scrollbar-thumb {
    background: rgba(34, 34, 34, 0.5);
}

.mobile .service-item-caption::-webkit-scrollbar, .service-item-caption:hover::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.service-item-caption .service-title {
    color: #fff;font-size: 20px;
}

.service-item-caption .service-title a {
    color: #fff;
}

.service-item-caption .service-title a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.service-item-caption .service-bottom {
    text-align: right;
}

.service-item-caption .service-bottom a {
    color: #fff;
}

.service-item-caption .service-bottom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.service-item-caption * + p {
    margin-top: 0.5625rem;
    color: #fff;
    font-size: 14px;
}

.service-item-caption * + .service-bottom {
    margin-top: 10px;
}

.service-item-simple .service-item-caption {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item-simple.service-item-simple-left .service-item-caption {
    align-items: flex-start;
    justify-content: flex-start;
}

.service-item-color-2 .service-item-caption {
    background: rgba(37, 89, 87, 0.9);
}

.service-item-color-3 .service-item-caption {
    background: rgba(186, 147, 56, 0.9);
}

.service-item-color-4 .service-item-caption {
    background: rgba(119, 32, 48, 0.9);
}

.service-item-color-5 .service-item-caption {
    background: rgba(183, 94, 64, 0.9);
}

.service-item-color-6 .service-item-caption {
    background: rgba(17, 17, 17, 0.7);
}

@media (min-width: 1200px) {
    .service-item .service-item-caption {
        transition: all 0.2s ease-in-out;
        opacity: 0;
    }
    .service-item .service-item-caption .service-body,
    .service-item .service-item-caption .service-bottom {
        transition: all .5s ease-in-out;
        opacity: .0;
    }
    .service-item .service-item-caption .service-body {
        max-width: 360px;
        transform: translateY(-100%);
    }
    .service-item .service-item-caption .service-bottom {
        transform: translateY(100%);
    }
    .service-item:hover .service-item-caption {
        opacity: 1;
    }
    .service-item:hover .service-item-caption .service-body,
    .service-item:hover .service-item-caption .service-bottom {
        opacity: 1;
        transform: translateY(0);
    }
}
