.tech-item {
    box-shadow: 0px 0px 15px var(--color__gray-2);
    position: relative;
    min-height: 440px;
	border-radius: 20px;
}
.tech-item-image img {
    border-radius: 20px 20px 0px 0px;
}

.tech-slider.swiper-container {
    padding: 5px 10px 10px 5px;
    margin: 5px 40px 30px 45px !important;
}
.tech-item-image,
.tech-item-name,
.tech-item-text {
    display: block;
    position: relative;
}
.tech-item-image:after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    left: 0px;
    position: absolute;
    bottom: 0px;
    background: url(/images/top-gradient-background.png) center center repeat-y;
    background-size: cover;
}
.tech-item-image a:before {
    content: "";
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: black;
    opacity: .2;
    z-index: 1;
}
.tech-item-image a:after {
    z-index: 2;
}
.tech-item-image a:hover:before {
    display: block;
}
.tech-item-image img {
    display: block;
    position: relative;
}
.tech-item-name,
.tech-item-text {
    text-align: left;
    box-sizing: border-box;
}
.tech-item-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--color__text-2);
    text-decoration: none;
}
.tech-item-name {
    padding: 15px 15px 15px 15px;
   /* text-transform: uppercase;  */
}
.tech-item-text {
    padding: 0px 15px 15px 15px;
}
.tech-item-text > p {
    margin: 0px 0px 15px 0px;
}
.tech-item-text > p:last-child {
    margin: 0;
}
@media only screen and (max-width: 580px) {
    .tech-item {
        min-height: auto;
    }
}

