:root {
    --theme-secondary: #81041F08;
    --theme-primary: #BF1338;
    --tick-icon: url(../images/design-images/check-icon.webp);
}

body {
    color: #121212;
}

.highlight-text {
    color: var(--theme-primary);
}

.banner-intro {
    background-image: url(../images/design-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 180px 0 110px;
}

.tick-list {
    gap: 20px;
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(2, 1fr);
}

.tick-list li {
    font-size: 18px;
    padding: 0 0 0 32px;
    position: relative;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 4px auto 0 0;
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-repeat: no-repeat;
}

.button-primary {
    background-color: var(--theme-primary);
    color: var(--white-color);
}

.button-primary:hover svg path {
    stroke: #fff;
    fill: unset;
}

/* Step Block */

.sticky-blk {
    position: sticky;
    top: 160px;
}

.step--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-block {
    border: 1px solid var(--black-color);
    background-color: var(--white-color);
    padding: 20px 20px;
    width: 100%;
    border-radius: 15px;
    transition: all 0.3s;
}

.step-block .step-count {
    opacity: 1;
    color: var(--black-color);
}

.step-block:hover {
    border-color: var(--theme-primary);
    background-color: var(--theme-secondary);
    transform: translateY(-4px);
}

/* Edge Block */

.edge--block {
    width: 100%;
    height: 100%;
    position: relative;
}

.edge--block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edge--content {
    background: #FFFFFF1A;
    backdrop-filter: blur(40px);
    padding: 30px 30px;
    position: absolute;
    inset: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}

/* Listing Wrapper */

.listing--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.list--tag {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Bordered Block */

.bordered-block {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 20px 20px;
    transition: all 0.3s;
    flex-direction: column;
    background: transparent;
    border: 1px solid var(--black-color);
}

.icon--block {
    width: 8rem;
    min-width: 8rem;
    height: 8rem;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(40px);
    background-color: var(--white-color);
    box-shadow: 0px 28px 44px 0px #00000033;
}

.bordered-block:hover {
    background: var(--theme-secondary);
    border-color: var(--theme-primary);
    transform: translateY(-5px);
}

.bordered-block.hover-dark:hover {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    color: var(--white-color);
    transform: translateY(-5px);
}

/* Cta Block */

.cta-intro {
    background-image: url(../images/design-images/cta-intro.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--black-color);
}

.cta-intro.intro-2 {
    background-image: url(../images/design-images/cta-intro-2.webp);
}

/* Responsive Block */

@media screen and (max-width: 1399px) {

}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .row-order {
        flex-direction: column-reverse;
    }

    .banner-intro {
        padding-block: 70px !important;
    }
}

@media screen and (max-width: 767px) {
    .tick-list {
        grid-template-columns: repeat(1, 1fr);
    }
}