.service-objects-section {
    background: #F8F8F8;
    padding: 72px;
}

/* HEADER */
.objects-header {
    padding-top: 50px;
    border-top: 1px solid #D7DBDD;
    margin-bottom: 80px;
}

.objects-label {
    font-size: 15px;
    text-transform: uppercase;
    color: rgba(44,55,72,.3);
}

/* TITLE */
.objects-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 816px;
    margin-bottom: 80px;
}

/* GRID */
.object-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.object-image {
    background: #2C3748;
    height: 404px;
    overflow: hidden;
}

.object-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.object-caption {
    padding: 24px;
    border: 1px solid #D7DBDD;
    border-top: none;
    font-size: 20px;
    font-weight: 500;
        flex-grow: 1;
}

/* FOOTER */
.objects-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-top: 80px;
}

.objects-bottom-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 816px;
}

.objects-btn {
    background: #2C3748;
    color: #fff;
    height: 48px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.objects-btn:hover {
    background: #1f2734;
    color: #fff;
}

/* MOBILE */
@media (max-width: 991px) {
.object-card {
    margin-bottom: 16px;
}
    .service-objects-section {
        padding: 32px 0px;
    }

    .objects-header {
        margin-bottom: 32px;
    }

    .objects-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .object-image {
        height: 404px;
    }

    .objects-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: 32px;
    }

    .objects-bottom-text {
        font-size: 24px;
    }

}
