.image-cards + .text-section {
    margin-top: 75px;
}

.image-cards {
    background-color: #F8F8F8;    
    padding: 75px 0;
}

.image-cards__content {
    max-width: 750px;
}

.image-cards__content h2,
.image-cards__content p {
    color: #2b2626;
}

.image-cards__content h2 {
    margin-bottom: 10px;
}

.image-cards__content p {
    line-height: 1.4em;
}

.image-cards .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-cards .row:before,
.image-cards .row:after {
    display: none;
}

.image-cards [class*="col-"] {
    float: none;
}

.image-cards__item,
.image-cards__item-link {
    height: 100%;
    display: block;
}

.image-cards [class*="col-"] {
    margin-bottom: 30px;
}

.image-cards__content {
    margin-bottom: 38px;
}

.image-cards__item-image {
    font-size: 0;
    line-height: 0;
}

.image-cards__item-image img {
    height: auto;
    width: 100%;
}

@media (max-width: 1024px) {
    .image-cards__item-image img {
        max-height: 200px;
        object-fit: cover;
        object-position: center;
    }
    
    .image-cards__item-link {
        display: flex;
        flex-direction: column;
    }
    
    .image-cards__item-hover {
        flex: 1;
    }
}

.image-cards__item-hover {
    position: relative;
    display: flex;
    overflow: hidden;
}

.image-cards__item-hover-inner {
    padding: 30px 25px;
    background: rgba(2, 74, 156, 0.8);
    backdrop-filter: blur(2px);
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0, 0.11, 0, 0.95);
    width: 100%;
}

.image-cards__item-link {
    position: relative;
}

.image-cards__item-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0.015em;
    margin-bottom: 25px;
}

.image-cards__item-title {
    font-size: 22px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid #D70C0C;
}

.image-cards__item-link-button {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.image-cards__item-link-button > span {
    box-shadow: 0 1px #D70C0C;
    text-transform: uppercase;
    font-weight: 500;
}

.image-cards__item-hover-title {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 22px;
    color: #fff;
    padding: 20px 25px;
    background: rgba(2, 74, 156, 0.90);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0, 0.11, 0, 0.95);
}

.image-cards__item-hover-title-text {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .image-cards [class*="col-"] {
        width: 50%;
    }
}

@media (min-width: 1025px) {
    .image-cards__content h2 {
        margin-bottom: 20px;
    }
    
    .image-cards [class*="col-"] {
        width: 33.33%;
    }
    
    .image-cards__item-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .image-cards__item-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .image-cards__item-hover {
        min-height: 320px;
    }
    
    .image-cards__item-hover-inner {
        padding: 30px 25px;
    }
    
    .image-cards__item {
        margin-bottom: 0;
    }
    
    .image-cards__item-link:hover .image-cards__item-hover-inner {
        transform: translateY(0);
    }
    
    .image-cards__item-link:hover .image-cards__item-hover-title {
        transform: translateY(100%);
    }
    
    .image-cards__item-hover-inner {
        transform: translateY(-100%);
        background: rgba(2, 74, 156, 0.79);
    }
    
    .image-cards__item-hover-title {
        display: inline-block;
    }
}