:root {
    --page-primary-bg: #2A474E;
    --page-secondary-bg: #BEE1DA;
    --page-fade: #FCFCFC;
    --text-theme: #1E1E1E;
    --text-grey: #2F2F2F;
    --tick-icon: url(../images/astro-img/list-icon.png);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1E1E1E;
}

.sticky_top {
    position: sticky;
    top: 150px;
}

.text__primary {
    color: var(--page-primary-bg);
}

.bg__primary {
    background-color: var(--page-primary-bg) !important;
}

.bg__secondary {
    background-color: var(--page-secondary-bg) !important;
}

.bg__light {
    background-color: #F6FFFD;
}

.rounded-20 {
    border-radius: 20px;
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background-color: var(--page-primary-bg) !important;
    font-weight: 600 !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color);
    border: 1px solid #ffffff;
    background-color: #ffffff30 !important;
    font-weight: 600 !important;
    backdrop-filter: blur(8px);
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-20 {
    border-radius: 20px;
}

.hero-wrap {
    background-image: url(../images/arch-img/hero-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tick-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 15px;
}

.tick-list li {
    font-size: 19px;
    padding: 0 0 0 34px;
    position: relative;
    color: var(--white-color);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 2px auto 0 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

.about-wrap {
    padding: 30px 20px;
    box-shadow: 0px 0px 14px 0px #00000040;
    border-radius: 20px;
}

.about-wrap ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.business-card {
    box-shadow: 0px 0px 20px 0px #00000033;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

.business-card:hover {
    background: var(--page-primary-bg);
}

.strategy-card *,
.business-card:hover * {
    color: var(--white-color);
}

.strategy-card {
    text-align: center;
    padding: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 70px;
    margin-top: -80px;
}

.process-card {
    text-align: center;
}

.process-card>img {
    height: 110px;
}

.process-grid .process-card:nth-child(2),
.process-grid .process-card:nth-child(3) {
    padding-top: 80px;
}

main .new-faq .accordion-item :is(h2, .h2).accordion-header button{
    font-size: 26px !important;
}

@media (min-width: 992px) {
    .border-lg-end {
        border-right: 1px solid var(--page-primary-bg);
    }

    .strategy-row {
        border: 1px solid transparent;
        /* Outer border */
        position: relative;
    }

    .strategy-card {
        padding: 40px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.2);
        border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    }

    /* Remove right border on every 3rd column */
    .strategy-row .col-lg-4:nth-child(3n) .strategy-card {
        border-right: none;
    }

    /* Remove bottom border on last row (items 7,8,9) */
    .strategy-row .col-lg-4:nth-child(n+7) .strategy-card {
        border-bottom: none;
    }

    .client-cta img {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 50%;
        object-fit: cover;
    }

    .spacer-lg-xl {
        padding-block: 80px !important;
    }
}

@media (max-width: 767px) {
    .process-grid {
        margin: 0;
        grid-template-columns: 1fr;
    }
    .process-grid .process-card:nth-child(2), .process-grid .process-card:nth-child(3) {
        padding: 0;
    }
}
@media (max-width: 575px) {
    .about-wrap ul {
        grid-template-columns: 1fr;
    }
}