:root {
    --page-primary-bg: #157FEC;
    --page-secondary-bg: #FAF9FF;
    --page-fade: #F8F8F8;
    --text-theme: #000000;
    --text-grey: #58646A;
    --tick-icon: url(../images/backend-images/check-icon.webp);
}

main section {
    font-family: 'Gilroy' !important;
}

.banner-heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.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;
}

.circle-icon,
.border-0 {
    border: none;
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.highlight {
    background: linear-gradient(91.69deg, #9A72F9 21.66%, #FF80FF 88.18%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.link-active,
.link-active:hover {
    background: linear-gradient(91.69deg, #9A72F9 21.66%, #FF80FF 88.18%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Hero Section */

.hero-section {
    background-image: url(../images/backend-images/banner-intro.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 166px !important;
}

img.banner-mockup-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

img.w-100.banner-mockup {
    z-index: 1;
    position: relative;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tick-list li {
    font-size: 20px;
    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: 4px auto 0 0;
    width: 22px;
    height: 22px;
    background-size: 22px;
    background-repeat: no-repeat;
}

/*Info Block*/

.banner-info-wrapper {
    padding: 70px 30px;
    box-shadow: 0px 0px 20px 0px #2B2B2B1A;
    background: #fff;
    border-radius: 10px;
}

section.banner-info {
    margin-top: -100px;
    z-index: 1;
    position: relative;
}

/*Reason Block*/

.reason-block {
    border: 1px solid #DEDEDE;
    padding: 35px 30px;
    border-radius: 10px;
    transition: 400ms;
    height: 100%;
}

.reason-icon {
    background-color: var(--page-primary-bg);
    width: 74px;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
}

.reason-block:hover {
    background-color: var(--page-primary-bg);
}

.reason-block:hover .reason-icon {
    background: #fff;
}

.reason-block:hover .reason-icon svg path {
    fill: #157fec;
}

.reason-block:hover h4,
.reason-block:hover p {
    color: #fff !important;
}

/*Tech Block*/
.tech-block {
    padding: 40px;
    background: #1B1B1B;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tech-block img {
    width: 70px;
}

.tech-list-block {
    padding: 20px;
    background: #272727;
    border-radius: 10px;
    height: 100%;
}

.tech-list-block ul {
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-list-block ul li::marker {
    color: var(--page-primary-bg);
}


/*Comprehensive Block*/
.comp-block {
    border: none;
    background: #fff;
    box-shadow: 0px 0px 14px 0px #0033681A;
}

/*Hiring Block*/
.hiring-block {
    display: flex;
    flex-direction: column;
    gap: 70px;
    background: #fff;
    box-shadow: 0px 0px 14px 0px #0033681A;
    padding: 40px;
    border-radius: 10px;
    justify-content: space-between;
}

/* Counter Block */

/* About Intro */

/* Business Block */

/* Service Block */

/* Reason Block */

/* Tab */

/* CTA Block */

.cta-block {
    background-image: url(../images/backend-images/cta-intro.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 90px;
    border-radius: 20px;
    overflow: hidden;
}

/* Faq */

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 32px 0;
    font-size: 22px;
    font-weight: 600;
}


/* Responsive */

@media only screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .hiring-block {
        gap: 40px;
    }

    .button {
        width: auto !important;
    }

    .cta-block {
        padding: 50px 20px;
    }
}