.featured-portfolio {
    background: hsl(var(--black-light1));
  
    padding: var(--grid-gutter);
    gap: var(--grid-gutter);
    overflow: auto;
    scrollbar-width: none;
}

.featured-portfolio::-webkit-scrollbar {
    display: none;
}

.port-item {
    aspect-ratio: 1/1.5;
    width: 100%;
    max-width: 400px;
    margin-right: var(--grid-gutter-half);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.port-item .image {
    pointer-events: none;
}

.port-item .image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    object-position: top;
}



.port-item .port-info {
    position: absolute;
    z-index: 2;
    background: linear-gradient(to bottom, hsl(var(--black)) 0%, hsl(var(--black-light1), 0.85) 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--grid-gutter);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.port-item:hover .port-info {
    opacity: 1;
}

.port-info .title {
    color: hsl(var(--white));
}

.port-info .icon {
    position: absolute;
    bottom: var(--grid-gutter-half);
    right: var(--grid-gutter-half);
    z-index: 1;
    width: 35px;
    color: hsl(var(--blue));
}

.port-info .content {
    transform: translateY(20%);
    transition: transform 0.5s ease;
}

.port-item:hover .content {
    transform: translateY(0);
} 
/** TESTIMONIALS **/
.test-slider {
    border-bottom: 1px solid hsl(var(--white),0.4);
}
.testimonial-content {
    width: 100%;
    max-width: 100%;
    margin: var(--grid-gutter) var(--grid-gutter) var(--grid-gutter) 0;
    background: linear-gradient(180deg, hsl(var(--black-light1)) 0%, hsl(var(--black-light1), 0.5) 0%, hsl(var(--black)) 101%);
    padding: var(--grid-gutter) 30%;
    min-height: 100%;
    display: grid;
    align-items: center;
    font-size: var(--h5);
    box-shadow: 0 0 15px hsl(var(--blue));
    text-align: center;
}

.testimonials:before {
    content: '';
     background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgba(0, 0, 0, 1) 100%);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

@media only screen and (max-width: 749px) {
    .testimonial-content { 
    padding: var(--grid-gutter);
}
.testimonials:before {
    display: none;
}
}

.contact-modal [data-close] {
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    width: 25px;
    display: flex;
    background: hsl(var(--black));
    justify-content: center;
}

.contact-modal .inner {
    padding: var(--grid-gutter-2x) var(--grid-gutter) var(--grid-gutter);
    background: hsl(var(--black-light1));
    border-radius: 2px;
    position: relative;
    border: 4px solid hsl(var(--black));
}