.search-cta {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 400px;
    left: 50%;
    transform: translateX(-50%);
}

.search-cta .item {
    margin: calc(6px + (15 - 6) * ((100vw - 1024px) / (1800 - 1024)));;
    position: relative;
    width: 29%;
}

.search-cta .item .img-cont {
    position: relative;
}

.search-cta .item .img-cont img {
    display: block;
    border-radius: 9px;
    width: 100%;
}

.search-cta .item .img-cont::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.search-cta .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 25px 20px;
}

.search-cta .title h2 {
    font-size: 17px;
    font-weight: bold;
    line-height: 20px;
    margin: 0;
    text-transform: uppercase;
    color: white;
    text-align: center;
}

@media (min-width: 1800px) {
    .search-cta .item {
        margin: 15px;
    }
}