:root {
    --page-primary-bg: linear-gradient(90deg, #7C98E5 0%, #9F83D2 100%);
    --page-secondary-bg: #000000;
    --page-fade: #FAFAFA;
    --text-theme: #000000;
    --text-grey: #5D5D5D;
    --tick-icon: url(../images/hservice-images/check-icon.webp);
}

main section {
    font-family: 'Gilroy' !important;
}

.banner-heading {
    font-size: clamp(2rem, 6vw, 3rem);
}

.page-primary {
    background-color: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.link-title {
    color: var(--text-theme) !important;
}

.circle-icon,
.border-0 {
    border: none;
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.button-primary,
.button-primary:hover {
    background: var(--page-primary-bg) !important;
    color: var(--white-color) !important;
    font-weight: 600;
}

.button-secondary,
.button-secondary:hover {
    background-color: var(--page-secondary-bg) !important;
    color: var(--white-color) !important;
    font-weight: 600;
}

.z-1 {
    z-index: 1;
    position: relative;
}

.object-cover {
    object-fit: cover;
}

/* Hero Intro */

.hero-section {
    background-image: url(../images/hservice-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.tick-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    gap: 20px;
}

.tick-list.listing--block {
    grid-template-columns: repeat(1, 1fr);
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 30px;
    position: relative;
    color: var(--text-theme);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 4px auto 0 0;
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Serice Block */

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.4s;
    background-color: var(--white-color);
    border: 1px solid #8096E3;
}

.icon--box {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bordered Blocks */

.border-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24px 24px;
    border-right: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    align-items: center;
}

.border-card.borderr-0 {
    border-right: none;
}

.border-card.borderb-0 {
    border-bottom: none;
}

/* Tab Wrapper */

.tab-wrapper {
    border: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 0 0 10px;
    gap: 30px;
    overflow-x: auto;
}

.tab-wrapper::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.tab-wrapper::-webkit-scrollbar
{
	width: 5px;
    height: 5px;
	background-color: #F5F5F5;
    cursor: pointer;
}

.tab-wrapper::-webkit-scrollbar-thumb
{
	background-color: var(--text-theme);
    cursor: pointer;
}

.tab-wrapper .nav-link {
    color: var(--text-theme);
    font-size: 20px;
    border-radius: 0;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    padding: 0 0 4px;
    white-space: nowrap;
}

.tab-wrapper .nav-link.active {
    background-color: transparent;
    font-weight: 600 !important;
    border-color: #8096E3;
    color: var(--text-theme);
}

.tabs__content {
    color: var(--text-theme);
}

/* CTA Block */

.cta--block {
    background-image: url(../images/hservice-images/cta-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 90px 90px;
}

.cta--block.blk-2 {
    background-image: url(../images/hservice-images/cta-intro-2.webp);
    background-color: var(--page-secondary-bg);
    padding: 20px 20px 20px 50px;
}

.cta--block.blk-3 {
    background-image: url(../images/hservice-images/cta-intro-3.webp);
    background-color: var(--page-secondary-bg);
    padding: 50px 50px 0;
}

.cta--block.blk-5 {
    background-image: url(../images/hservice-images/cta-intro-4.webp);
    background-color: var(--page-secondary-bg);
}

.cta--block.blk-6 {
    background-image: url(../images/hservice-images/cta-intro-5.webp);
    background-color: var(--page-secondary-bg);
}

.cta--gradient {
    background: linear-gradient(90deg, #7086D3 0%, #9477D3 100%);
    padding: 10px 90px;
    border-radius: 20px;
}

.cta--gradient img {
    margin: -40px 0;
}

/* Faq */

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 32px 0;
    font-size: 22px;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }

    .banner-heading {
        font-size: clamp(2rem, 6vw, 2.7rem);
    }
}

@media only screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .button {
        width: auto !important;
    }

    .tick-list {
        grid-template-columns: repeat(1, 1fr);
        margin-inline: auto;
        width: fit-content;
    }

    .cta--block,
    .cta--gradient {
        padding: 40px 20px !important;
    }

    .cta--gradient img {
        margin: 0 0 30px;
    }

    .border-card {
        border: 1px solid #E0E0E0 !important;
    }

    .service--block {
        padding: 20px 20px;
    }

    .tab-wrapper {
        margin-bottom: 20px !important;
    }

}

@media only screen  and (max-width: 767px) {

    .point-list li {
        flex-direction: column;
        text-align: center;
    }
}