.block-jump-marks {
    padding: 4.5rem 0 5.722rem;
}
.block-jump-marks .headline {
    width: 93%;
}
.block-jump-marks .txt-img-text {
    margin-top: 2.444rem;
}
.block-jump-marks .jump-marks-container {
    margin-top: 4.611rem;
    display: flex;
    justify-content: space-between;
    gap: 1.944rem;
}
.block-jump-marks .jump-marks-container:not(.few-items) {
    align-items: center;
}
.block-jump-marks .jump-marks-container .jump-marks-item {
    border: 0.056rem solid var(--bs-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    padding: 0.618rem 0.5rem;
    flex: 1;
    box-sizing: border-box;
    min-height: 9.556rem;
    transition: all 0.3s ease;

    color: var(--bs-white);
    font-size: 1rem;
    line-height: 1.556rem;
}
.block-jump-marks .jump-marks-container .jump-marks-item:hover {
    background-color: var(--color-primary);
}
.block-jump-marks .jump-marks-logo {
    flex: 1.7;
}
.block-jump-marks .jump-marks-logo img {
    width: 14.278rem;
}
.block-jump-marks .jump-marks-container .jump-marks-item .title_btn {
    display: block;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}
.block-jump-marks .jump-marks-container .jump-marks-item:hover .title_btn {
    color: var(--bs-white);
}
.block-jump-marks .jump-marks-container .jump-marks-item .description {
    margin-bottom: 0.222rem;
}
.block-jump-marks .jump-marks-container .jump-marks-item:hover .icon-arrow-bottom {
    filter: brightness(2);
}

/** Equals or less than 3 items **/
.block-jump-marks .jump-marks-container.few-items {
    gap: 2.722rem;
}
.block-jump-marks .jump-marks-container.few-items .jump-marks-item {
    padding: 1.269rem;
}
.block-jump-marks .jump-marks-container.few-items .jump-marks-item .title_btn {
    font-size: 1.333rem;
    margin-bottom: 0.833rem;
}
.block-jump-marks .jump-marks-container.few-items .jump-marks-item .title_btn > span {
    display: block;
}

/* Responsive */
@media only screen and (max-width: 991px) and (min-width: 768px) {
    .block-jump-marks .jump-marks-logo {
        flex: 1.2;
    }
    .block-jump-marks .jump-marks-container {
        gap: 0.5rem;
    }
}

@media only screen and (max-width: 767px) {
    .block-jump-marks {
        padding: 3.733rem 0 5.333rem;
    }
    .block-jump-marks .headline {
        width: 100%;
    }
    .block-jump-marks .headline .title {
        margin-right: -0.4rem;
    }
    .block-jump-marks .txt-img-text {
        margin-top: 1.733rem;
    }
    .block-jump-marks .jump-marks-container {
        margin: 1.933rem auto 0;
        gap: 1.6rem !important;
        flex-direction: column;
        width: 80%;
    }
    .block-jump-marks .jump-marks-container.few-items .jump-marks-item .title_btn {
        font-size: 1.28rem;
        line-height: 1.493rem;
        margin-bottom: 0.237rem;
    }
    .block-jump-marks .jump-marks-container .jump-marks-item {
        padding: 1rem 0.833rem 0.833rem !important;
        min-height: inherit;
        width: 100%;
    }
}