/* dedicated-software */

.dedicated-img img {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    object-fit: contain;
}

section.dedicated-software {
    margin-top: 5%;
    background: linear-gradient(169deg, #356279, transparent);
    padding: 25px 0;
}

.dedicated-team-text {
    background: #49494900;
    padding: 10px 30px;
    border-radius: 20px;
}

span.quote img {
    height: 35px;
}

.dev-quote2 {
    background: #181818a3;
}

span.quote {
    margin-bottom: 30px;
    display: inline-block;
}

.dedicated-auth {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.dedicated-auth img {
    height: 65px;
}

.dedicated-auth .name p {
    margin: 0;
}

.hire-team-title h1 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
}

/* pricing */

.pricing-title h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
}

span.bg-price {
    background: #222;
}

.price-item {
    background: linear-gradient(135deg, #0a0a0a, #16213e, #1f4068);
    padding: 40px 25px 15px;
    position: relative;
    border-radius: 15px;
}

.price-item.center .price-enquiry a {
    background: #fff;
    color: #000;
}

.price-enquiry a:hover {
    background: #fff;
    color: #000;
}


.price-item h3 {
    font-size: 20px;
    font-weight: 600;
}

.price-item .price p span {
    font-size: 32px;
}

.popular {
    position: absolute;
    background: #ffffff;
    top: -2%;
    left: 32%;
    padding: 5px 20px;
    border-radius: 10px;
}

.popular p {
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.price-enquiry a {
    background: #111111;
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ffffffad;
}

.require-list {
    margin-top: 30px;
}

.require-list ul li {
    margin-bottom: 15px;
    list-style: none;
}

.require-list ul {
    padding: 0;
}

.pricing-title {
    margin-bottom: 60px;
}

.require-list ul li i {
    background: #ffffff;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    font-size: 12px;
    padding-top: 4px;
    margin-right: 8px;
    color: #000;
}

.price-bottom {
    text-align: center;
}

.price-bottom p a {
    color: #fff;
    font-weight: 600;
}

.price-bottom p {
    font-size: 20px;
}

.price-item.center {
    position: relative;
    border-radius: 12px;
    z-index: 1;
    background: linear-gradient(135deg, #0a0a0a, #1a2a4f);
}

.price-item.center::before {
    /* content: ""; */
    /* position: absolute; */
    /* inset: 0; */
    /* padding: 2px; */
    /* border width */
    /* border-radius: 12px; */
    /* background: #111111; */
    -webkit-mask:
        #111 content-box,
        #111;
    /* -webkit-mask-composite: xor; */
    /* mask-composite: exclude; */
    /* z-index: -1; */
}

/* features-section */

.features-row {
    display: flex;
    align-items: flex-start;
}

.feature-col {
    flex: 1;
    padding: 10px 40px 48px 40px;
    position: relative;
}

.feature-col+.feature-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ffffff3d;
}


.icon-box {
    width: 60px;
    height: 60px;
    background: #FFFFFF3D;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.6;
}

.feature-col .icon-box img {
    height: 40px;
}

.feature-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.35;
}

.feature-col p {
    margin: 0;
    font-size: 16px;
}

.progress-track {
    position: relative;
    height: 2px;
    background: #1e2a3a;
    border-radius: 99px;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 0%;
    background: #ffffffa3;
    border-radius: 99px;
    transition: width 0.08s linear, height 0.08s linear;
}

.progress-dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #575757;
    border: 2px solid #2e3a50;
    transition: background .3s, border-color .3s, box-shadow .3s;
    z-index: 3;
}

.progress-dot.active {
    background: #ffffffa3;
    border-color: #ffffffa3;
    box-shadow: 0 0 0 4px rgb(255 255 255 / 28%);
}

.scroll-hint {
    text-align: center;
    padding: 28px 0 60px;
    font-size: 0.76rem;
    color: #2e3a50;
    letter-spacing: .1em;
    text-transform: uppercase;
}


@media (min-width: 1400px) {
    .feature-col {
        padding: 10px 25px 20px 25px;
    }

    .feature-col h3 {
        font-size: 1.2rem;
    }
}


@media (max-width: 991px) and (min-width: 768px) {
    .features-row {
        flex-wrap: wrap;
    }

    .feature-col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px 28px 36px 28px;
        border-bottom: 1px solid #1e2a3a;
    }

    .feature-col+.feature-col::before {
        display: none;
    }


    .feature-col:nth-child(odd) {
        border-right: 1px solid #1e2a3a;
    }


    .feature-col:last-child {
        border-bottom: none;
    }

    .feature-col:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }
}


@media (max-width: 767px) {
    .features-section {
        padding: 0 0 60;
    }

    .features-row {
        flex-direction: column;
    }

    .feature-col {
        width: 100%;
        padding: 24px 20px;
        border-bottom: 1px solid #1e2a3a;
        flex: unset;
    }

    .feature-col:last-child {
        border-bottom: none;
    }

    .feature-col+.feature-col::before {
        display: none;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        margin-bottom: 18px;
    }

    .icon-box svg {
        width: 22px;
        height: 22px;
    }

    .feature-col h3 {
        font-size: 0.98rem;
    }

    /* â”€â”€ vertical progress â”€â”€ */
    .progress-wrap {
        display: none;
    }

    .progress-track {
        width: 2px;
        height: 180px;
        background: #1e2a3a;
    }

    .progress-fill {
        width: 2px !important;
        height: 0% !important;
        top: 0;
        left: 0;
        background: #111111;
    }

    .progress-dot {
        left: 50% !important;
        transform: translate(-50%, -50%);
    }

    #dot0 {
        top: 0% !important;
    }

    #dot1 {
        top: 33% !important;
    }

    #dot2 {
        top: 66% !important;
    }

    #dot3 {
        top: 100% !important;
    }

    .scroll-hint {
        padding: 20px 0 44px;
    }
}

@media (max-width: 399px) {
    .feature-col {
        padding: 20px 14px;
    }

    .feature-col h3 {
        font-size: 0.92rem;
    }

    .progress-track {
        height: 150px !important;
    }
}


/* dev-brand */

.brand-item img {
    height: 70px;
    width: 130px;
    object-fit: contain;
}

.dev-brand-items {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.dev-brand-track {
    display: flex;
    animation: marquee 20s linear infinite;
    width: max-content;
    gap: 15px;
}

.brand-item {
    text-align: center;
    background: #FFFFFF14;
    padding: 14px;
}

section.dev-brand {
    background: #181818a3;
}

.dev-brand-title h3 {
    font-weight: 600;
    font-size: 26px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* team-work */

.work-item {
    background: #00000026;
    padding: 15px;
    border: 0.6px solid #ffffff2e;
    border-radius: 15px;
    margin-bottom: 25px;
    min-height: 418px;
}

.team-icon {
    background: #222;
    height: 60px;
    width: 60px;
    margin: auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-icon img {
    height: 30px;
}

.team-count {
    background: #ffffff1f;
    border: 1px solid #fff;
    position: absolute;
    top: -6px;
    right: -15px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-work-text {
    text-align: center;
    min-height: 220px;
}

.team-work-text p {
    font-size: 20px;
}

.team-work-text h3 {
    margin: 15px 0;
    font-weight: 600;
    font-size: 20px;
}

.work-item.line {
    position: relative;
}

.work-item.line:before {
    position: absolute;
    content: "";
    height: 4px;
    width: 24px;
    background: #222;
    right: -25px;
    top: 14%;
}

/* dev-quote2 */

/* .hire-wrap {
    background: #111111;
    border-radius: 15px;
} */

.hire-dev-quote {
    position: relative;
    text-align: center;
}

.quote-icon1 {
    position: absolute;
    content: "";
    left: -30px;
}

.quote-icon2 {
    position: absolute;
    content: "";
    right: -30px;
}

.quote-auths {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.quote-auths p {
    margin: 0;
}

.quote-auths .auth1 {
    border-right: 2px solid #fff;
    padding: 0 20px 0 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.quote-auths .auth1.right {
    border-right: none;
}

.quote-auths .auth1 img {
    height: 65px;
}

/* hire-benefits */

.hire-benefits h2 {
    margin-bottom: 30px;
}

.hire-benefits .main-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.hire-benefits .main-tabs {
    display: inline-flex;
    background: #FFFFFF26;
    border-radius: 10px;
    padding: 6px;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.hire-benefits .main-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 7px;
    border: none;
    background: transparent;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: background .25s, color .25s;
    white-space: nowrap;
    font-size: 20px;
}

.hire-benefits .main-tab-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    flex-shrink: 0;
}

.hire-benefits .main-tab-btn.active {
    background: #111111;
    color: #fff;
}

.hire-benefits .outer-card {
    background: #111111;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    gap: 20px;
    min-height: 420px;
    border: 1px solid #ffffff38;
}

.hire-benefits .subtab-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 260px;
    flex-shrink: 0;
}

.hire-benefits .subtab-btn {
    background: #49494952;
    border: none;
    border-radius: 40px;
    color: #fff;
    font-weight: 500;
    padding: 10px 18px;
    text-align: left;
    cursor: pointer;
    transition: background .2s, color .2s;
    width: 100%;
    font-size: 18px;
}


.hire-benefits .subtab-btn.active {
    background: #ffffffde;
    color: #000;
}

.hire-benefits .content-panel {
    flex: 1;
    background: #49494952;
    border-radius: 14px;
    padding: 32px 36px;
    display: none;
}

.hire-benefits .content-panel.active {
    display: block;
}

.hire-benefits .panel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.hire-benefits .panel-icon {
    width: 80px;
    height: 80px;
    background: #FFFFFF47;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hire-benefits .panel-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.hire-benefits .panel-desc {
    font-size: 20px;
    color: #fff;
    line-height: 1.7;
}

.hire-benefits .benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hire-benefits .benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.hire-benefits .benefit-check {
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: #000;
}

.hire-benefits .benefit-check svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
}

.hire-benefits .benefit-text strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.hire-benefits .benefit-text p {
    font-size: 20px;
    color: #fff;
    line-height: 1.7;
    margin: 0;
}

/* hire-cta */

/* .hire-cta-wrap {
    background: #111111;
    padding: 0 50px;
    border-radius: 15px;
} */

.hire-cta {
    background: #181818a3;
}

.hire-cta-img img {
    width: 70%;
}

.hire-cta-text {
    height: 100%;
    padding-left: 40px;
}

.hire-cta-text p {
    font-size: 26px;
    font-weight: 600;
}


/* hire-dev-services */

.hire-dev-services h2 {
    margin-bottom: 30px;
}

.dev-service-item {
    background: #111111;
    padding: 15px;
    border: 1px solid #ffffff52;
    border-radius: 10px;
    margin-bottom: 15px;
    min-height: 395px;
}

.dev-service-icon {
    width: 60px;
    height: 60px;
    background: #FFFFFF3D;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.dev-service-icon img {
    height: 40px;
}

.dev-service-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* technology-stack */

.technology-stack h2 {
    margin-bottom: 30px;
}

/* Tabs */
.tech-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: nowrap;
    overflow-x: auto;
}

.tech-tabs::-webkit-scrollbar {
    display: none;
}

.tech-tabs .nav-link {
    color: #fff;
    padding: 12px 18px;
    border: none;
    background: transparent;
    position: relative;
    white-space: nowrap;
}

.tech-tabs .nav-link:hover {
    color: #fff;
}

.tech-tabs .nav-link.active {
    color: #fff;
}

.tech-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #ffffffba;
}

/* Tech Cards */
.tech-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-align: center;
    padding: 15px 10px;
    color: #e5e7eb;
    font-size: 14px;
    transition: 0.3s;
}

.tech-card:hover {
    border-color: #111;
    transform: translateY(-3px);
}

section.technology-stack .tab-content {
    background: #111111;
    padding: 20px;
    border-radius: 15px;
}

.stack-icons {
    display: flex;
    gap: 15px;
}

.stack-item {
    background: #49494952;
    padding: 20px 15px;
    border-radius: 10px;
    min-height: 220px;
}

.stack-item-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 12px;
}

.stack-item-content p {
    font-size: 16px;
    margin: 0;
}

.technology-stack .owl-prev,
.technology-stack .owl-next {
    height: 40px;
    width: 40px;
    border-radius: 50% !important;
    border: 1px solid #fff !important;
    font-size: 22px !important;
}

.technology-stack .owl-nav {
    margin-top: 25px;

}

.technology-stack .owl-nav button:hover {
    background: none !important;
}

/* industries */

.industries h2 {
    margin-bottom: 30px;
}

.industries-wrap {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.industries-item {
    background: #FFFFFF14;
    padding: 18px 15px;
    border-radius: 15px;
    text-align: center;
    width: 215px;
}

.industries-icon img {
    height: 55px;
}

.industries-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.industries-name h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}


/* comparison */

.comparison h2 {
    margin-bottom: 30px;
}

.comparison-table {
    background: #111111;
    border-radius: 22px;
    padding: 28px 22px;
}

.comparison-table__header-row {
    display: flex;
    margin-bottom: 0;
}

.comparison-table__hdr-factor {
    width: 280px;
    flex-shrink: 0;
    padding: 0 20px 14px 8px;
    margin-top: 22px;
}

.comparison-table__hdr-factor-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.45);
    display: block;
}

.comparison-table__hdr-right {
    flex: 1;
    background: #00000096;
    border-radius: 16px 16px 0 0;
    display: flex;
}

.comparison-table__hdr-col {
    flex: 1;
    padding: 7px 18px 15px 18px;
    margin: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.45);
}

.comparison-table__hdr-col-title {
    font-weight: 700;
    color: #fff;
    font-size: 20px;
}

.comparison-table__data-row {
    display: flex;
    align-items: stretch;
}

.comparison-table__data-row:last-child .comparison-table__cell-agicent,
.comparison-table__data-row:last-child .comparison-table__cell-inhouse {
    border-bottom: none;
}

.comparison-table__data-row:last-child .comparison-table__row-right {
    border-radius: 0 0 16px 16px;
    padding-bottom: 15px;
}

.comparison-table__data-row:last-child .comparison-table__cell-agicent {
    border-radius: 0 0 0 16px;
}

.comparison-table__data-row:last-child .comparison-table__cell-inhouse {
    border-radius: 0 0 16px 0;
}

.comparison-table__row-factor {
    width: 280px;
    flex-shrink: 0;
    padding: 10px 20px 10px 8px;
    display: flex;
    align-items: center;
}

.comparison-table__row-factor span {
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
}

.comparison-table__row-right {
    flex: 1;
    background: #00000096;
    display: flex;
}

.comparison-table__cell-agicent,
.comparison-table__cell-inhouse {
    flex: 1;
    padding: 10px 10px 10px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-table__chk {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.comparison-table__chk svg {
    width: 10px;
    height: 10px;
}

.comparison-table__cell-txt {
    color: #fff;
    line-height: 1.52;
}



@media (max-width: 1400px) {
    .dedicated-team-text {
        padding: 30px 30px;
    }

    .work-item {
        min-height: 450px;
    }

    .dev-service-item {
        min-height: 428px;
    }
}

@media (max-width: 1200px) {
    .work-item.line:before {
        display: none;
    }

    .work-item {
        min-height: 420px;
    }

    .dev-service-item {
        min-height: 490px;
    }
}

@media (max-width: 991px) {
    .hire-benefits .outer-card {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .hire-cta-wrap {
        padding: 30px 25px !important;
        text-align: center;
    }

    .hire-cta-text {
        padding-left: 0 !important;
    }

    .hire-cta-wrap .hire-cta-img {
        display: none;
    }

    .hire-benefits .subtab-list {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: 100%;
        max-width: 100%;
    }

    .hire-benefits .subtab-btn {
        width: auto;
        flex: 1 1 auto;
        text-align: center;
        padding: 11px 14px;
    }

    .hire-benefits .content-panel {
        padding: 24px 20px;
    }

    .hire-wrap {
        padding-left: 38px;
        padding-right: 38px;
    }

    .hire-cta-text2 .cta2-img {
        height: 25% !important;
    }

    .hire-cta-text2 .cta1-img {
        height: 30% !important;
    }

    .dedicated-img img {
        height: 100%;
    }

    .work-item {
        min-height: 300px;
    }

    .dev-service-item {
        min-height: 348px;
    }
}

@media (max-width: 767px) {
    body {
        padding: 36px 0;
    }

    .hire-benefits .main-tab-btn {
        padding: 9px 14px;
        /* font-size: 0.82rem; */
    }

    .hire-benefits .panel-header {
        flex-direction: column;
        gap: 14px;
    }

    .hire-benefits .panel-icon {
        width: 58px;
        height: 58px;
    }

    /* .hire-benefits .panel-title {
        font-size: 16px;
    }

    .hire-benefits .panel-desc {
        font-size: 16px;
    }

    .hire-benefits .benefit-text strong {
        font-size: 16px;
    }

    .hire-benefits .benefit-text p {
        font-size: 16px;
    } */
    .quote-auths {
        display: block;
        padding-left: 20px;
    }

    .quote-auths .auth1 {
        padding-bottom: 20px;
        border-right: 0;
    }

    .hire-team-title h1 {
        font-size: 28px;
    }

    .team-work-text {
        min-height: 100%;
    }

    .work-item {
        min-height: 280px;
    }

    .dev-service-item {
        min-height: 100%;
    }
}

@media (max-width: 585px) {
    .hire-cta-text2 .cta2-img {
        height: 10% !important;
    }

    .hire-cta-text2 .cta1-img {
        height: 15% !important;
    }

    .hire-cta-text2 {
        padding: 50px 20px !important;
    }

    .pricing-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hire-benefits .subtab-btn {
        /* font-size: 0.78rem; */
        padding: 10px 10px;
    }

    .hire-benefits .outer-card {
        padding: 14px;
    }

    .hire-benefits .content-panel {
        padding: 18px 14px;
    }
}

@media (max-width: 860px) {

    .comparison-table__hdr-factor,
    .comparison-table__row-factor {
        width: 170px;
    }

    .comparison-table__cell-txt {
        font-size: 0.75rem;
    }

    .comparison-table__row-factor span {
        font-size: 0.75rem;
    }
}

@media (max-width: 991px) {
    body {
        padding: 20px 10px;
    }

    .comparison-table {
        padding: 16px 10px;
        border-radius: 16px;
    }

    .comparison-table__header-row {
        display: none;
    }

    .comparison-table__data-row {
        flex-direction: column;
        margin-bottom: 10px;
        border-radius: 12px;
        overflow: hidden;
    }

    .comparison-table__data-row:last-child {
        margin-bottom: 0;
    }

    .comparison-table__row-factor {
        width: 100%;
        background: rgba(255, 255, 255, 0.12);
        padding: 9px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comparison-table__row-factor span {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
    }

    .comparison-table__row-right {
        flex-direction: column;
        border-radius: 0 0 12px 12px;
    }

    .comparison-table__cell-agicent,
    .comparison-table__cell-inhouse {
        border-right: none !important;
        border-bottom: 1px solid #f0eaf8;
        padding: 10px 14px;
    }

    .comparison-table__cell-inhouse {
        border-bottom: none;
    }

    .comparison-table__data-row:last-child .comparison-table__cell-agicent {
        border-radius: 0;
    }

    .comparison-table__data-row:last-child .comparison-table__cell-inhouse {
        border-radius: 0 0 12px 12px;
    }

    .comparison-table__data-row:last-child .comparison-table__row-right {
        border-radius: 0 0 12px 12px;
    }

    .comparison-table__mob-label {
        display: block;
        font-size: 0.67rem;
        font-weight: 700;
        color: #7c3aad;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 3px;
    }

    .comparison-table__cell-txt {
        font-size: 18px;
    }
}

.comparison-table__mob-label {
    display: none;
}

@media (max-width: 600px) {
    .comparison-table__mob-label {
        display: block;
    }
}


/* hire-cta2 */

.hire-cta-text2 {
    /* background: #111111; */
    padding: 50px;
    position: relative;
    text-align: center;
    border-radius: 20px;
}

section.hire-cta2 {
    background: #181818a3;
    position: relative;
}

.hire-cta2 .cta1-img {
    position: absolute;
    height: 50%;
    bottom: 0;
    left: 0;
}

.hire-cta2 .cta2-img {
    position: absolute;
    height: 42%;
    top: 0;
    right: 0;
}

.hire-cta-text2 h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hire-dev-quote h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 22px;
}

/* why-choose */

.why-title h2 {
    text-align: left !important;
}

.why-choose .section-title::after {
    left: 10%;
}