.cb-navigation-cards {
    padding: 120px;
    position: relative;


}
.cb-navigation-cards .header-row {
    position: absolute;
    height: 100px;
    width: calc(100% - 680px);

}
.cb-navigation-cards .header-row h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    color: #F9ECDF;
    text-transform: uppercase;
}

.cb-navigation-cards .header-row .shadow-header {
    position: absolute;
    bottom: 0;
    right: 50px;
    font-family: "Roboto Slab", sans-serif;
    font-size: 84px;
    line-height: 1;
    color: #A59E94;
    opacity: 0.2;
    font-weight: 200;
    text-transform: uppercase;
}

.cb-navigation-cards .header-row .subheader {
    padding-left: 120px;
    margin-top: 120px;
    color: #D49F7F;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 42px;
}

.cb-navigation-cards .content-wrapper {
    padding: 0 240px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;

}
.cb-navigation-cards .content-wrapper .card {
    flex: 0 0 200px;
    height: 200px;
    border-radius: 0;
    background-color: #F9ECDF;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transition: background-color 0.15s ease-in-out;

}
.cb-navigation-cards .content-wrapper .card .card-image {
    text-align: center;
}
.cb-navigation-cards .content-wrapper .card .card-title {
    font-family: "Roboto Slab", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #3D3F3C;
    text-align: center;
}

.cb-navigation-cards .content-wrapper .card:hover {
    background-color: #D49F7F;
    cursor: pointer;
}

.cb-navigation-cards .content-wrapper .card.empty {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

@media screen and (max-width: 1440px) {
    .cb-navigation-cards .content-wrapper {
        padding: 0 120px;
    }
}
@media screen and (max-width: 1199px) {
    .cb-navigation-cards .content-wrapper {
        padding: 0 60px;
    }
    .cb-navigation-cards .header-row .subheader {
        font-size: 36px;
    }
}
@media screen and (max-width: 1079px) {
    .cb-navigation-cards .content-wrapper {
        padding: 0;
    }
    .cb-navigation-cards .header-row {
        width: calc(100% - 443px);
    }
    .cb-navigation-cards .header-row .subheader {
        font-size: 36px;
    }
}
@media screen and (max-width: 767px) {
    .cb-navigation-cards {
        padding: 120px 30px;
    }
    .cb-navigation-cards .content-wrapper {
        justify-content: space-around;
        gap: 60px 0;
    }
    .cb-navigation-cards .header-row {
        width: 100%;
    }
}
