:root {
    --page-gradient: linear-gradient(90deg, #183449 0%, #5688B9 100%);
    --page-primary-bg: #EE4323;
    --page-secondary-bg: #1A374D;
    --page-fade: #EAF6FF;
    --text-theme: #000000;
    --text-grey: #5D5D5D;
}

main section {
    font-family: 'Gilroy' !important;
}

.banner-heading {
    font-size: clamp(2rem, 6vw, 3.9rem);
}

.page-gradient {
    background: var(--page-gradient);
}

.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;
}

.button-primary,
.button-primary:hover {
    background: var(--page-gradient) !important;
    color: var(--white-color) !important;
    font-weight: 600;
}

.button-primary.btn-b,
.button-primary.btn-b:hover {
    border: 1px solid var(--white-color) !important;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.highlight {
    background: linear-gradient(90deg, #ECB2FC 0%, #AF77F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.object-cover {
    object-fit: cover;
}

/* Counter */

.counter-grid {
    display: grid;
    gap: 20px;
    justify-content: space-between;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 40px;
    border-radius: 20px;
    background-color: var(--page-primary-bg);
}

.counter-theme {
    border-right: 1.5px solid #ffffff33;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.counter-text {
    color: var(--white-color);
}

.counter-text.percent::after {
    content: '%';
}

/* Business Block */

.business-slider .swiper-slide  {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.business--block {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.4s;
    border: 1px solid var(--page-secondary-bg);
    background-color: var(--white-color);
}

.business--block::before {
    content: '';
    height: 0%;
    width: 100%;
    margin: auto;
    inset: 0 0 auto 0;
    position: absolute;
    border-radius: 20px 20px 100% 100%;
    transition: ease-in-out 0.4s;
    background: var(--page-gradient);
}

.business--block:hover::before {
    height: 100%;
    border-radius: 0;
}

.business--block:hover p,
.business--block:hover h4 {
    color: var(--white-color) !important;
}

.icon--box {
    width: 90px;
    height: 90px;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Develop Block */

.sticky-cloumn {
    position: sticky;
    top: 180px;
}

.develop-intro .business--block {
    border: 1px solid #DEDEDE;
}

.develop--wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.develop--wrapper .business--block {
    border: 1px solid #DEDEDE;
    display: flex;
    gap: 20px;
}

/* Table Block */

.diffr--block {
    padding: 90px 50px;
    border-radius: 50px;
    background-color: var(--page-primary-bg);
}

.inner-pricing-section table {
    border-radius: 30px;
    overflow: hidden;
}

.inner-pricing-section table tr th {
    width: 33.3%;
    border-bottom: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    text-align: center;
    height: 90px;
    padding: 10px;
    font-size: 24px;
    color: var(--white-color);
    font-weight: 600 !important;
}

.inner-pricing-section table tr th span {
    width: 100%;
    display: inline-block;
    font-weight: 300;
}

tbody tr td:first-child {
    background-color: #FF9373;
    font-weight: 600;
    font-size: 18px !important;
    color: var(--white-color) !important;
}

tbody tr td {
    background-color: var(--white-color);
    font-weight: 500;
    color: #1C1B21 !important;
}

.inner-pricing-section table tr th:nth-child(1) {
    background-color: #FF7F5F;
}

.inner-pricing-section table tr th:nth-child(2) {
    background-color: #FF6B4B;
}

.inner-pricing-section table tr th:last-child {
    background-color: #FF5737;
}

.flex-featured {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-pricing-section img {
    width: 100%;
    max-width: 24px;
}

.inner-pricing-section table tr td {
    font-size: 17px;
    padding: 20px 20px;
    border-bottom: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
}

/* CTA Block */

.cta--wrap {
    padding: 50px 50px;
    border-radius: 20px;
    background-color: var(--page-fade);
}

.cta--wrap.cta--bg {
    background-size: cover;
    background-repeat: no-repeat;
    background: url(../images/codeIgniter-images/cta-intro.webp), var(--page-fade);
}

.cta--block {
    padding: 90px 90px;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background: url(../images/codeIgniter-images/cta-intro-2.webp), var(--page-primary-bg);
}

.cta--block.cta-2 {
    background: url(../images/codeIgniter-images/cta-intro-3.webp), var(--page-secondary-bg);
}

.cta--block ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cta--block ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
}

/* 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;
    }

    .cta--block ul {
        width: fit-content;
        margin-inline: auto;
        text-align: left !important;
    }

    .button {
        width: auto !important;
    }

    .diffr--block {
        padding: 60px 20px;
        border-radius: 30px;
    }

    .business--block {
        padding: 20px 20px;
    }

    .cta--wrap,
    .cta--block,
    .cta--block.cta-2 {
        padding: 40px 20px;
    }
}

@media only screen  and (max-width: 767px) {

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
    }

    .counter-grid .counter-theme:nth-child(2) {
        border: none;
    }

    .develop--wrapper .business--block {
        flex-direction: column;
    }

    .inner-pricing-section table {
        border-radius: unset !important;
        padding: 0;
        border: none !important;
    }

    .inner-pricing-section table tr td:not(:last-child) {
        border-bottom: 1px solid #d5d5d5 !important;
    }

    .inner-pricing-section table tbody tr td:first-child:before {
        color: var(--white-color);
    }

    .inner-pricing-section table, thead, tbody, th, td, tr {
      display: block;
    }

    .inner-pricing-section thead {
        display: none;
    }

    .inner-pricing-section tr {
        padding: 10px 0;
        border: none !important;
    }

    .inner-pricing-section td {
        text-align: right;
        padding-left: 50% !important;
        position: relative;
        border: none !important;
        min-height: 90px;
    }

    .inner-pricing-section td::before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        width: 45%;
        text-align: left;
        font-weight: 600;
        color: var(--text-theme);
    }
}