:root {
    --page-text-color: #0B0C0D;
    --page-secondary-bg: #FF006E;
    --page-primary-bg: #5A189A;
    --page-light-bg: linear-gradient(153.27deg, #F9F3FF 6.86%, #FFF1F7 69.82%);;
    --text-grey: #3F4751;
    --tick-icon: url(../images/adult-images/check-icon.webp);
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.page-text-color,
.heading-text {
    color: var(--page-text-color);
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.page-primary-bg {
    background: var(--page-primary-bg);
}

.page-light-bg {
    background-image: var(--page-light-bg);
}

.text-theme {
    color: var(--page-secondary-bg);
}

.text-grey {
    color: var(--text-grey);
}

.circle-icon,
.border-0 {
    border: none;
}

.button-primary:hover svg path {
    stroke: var(--white-color);
    fill: unset !important;
}

.link-active,
.link-active:hover {
    color: var(--primary-color-600) !important;
    font-size: calc(1rem + 0.208vw);
    text-decoration: underline !important;
}

.link-white,
.link-white:hover {
    color: var(--white-color) !important;
    font-size: calc(1rem + 0.208vw);
    text-decoration: underline !important;
}


/* Hero Section */

.hero-section {
    background-image: url(../images/adult-images/banner-bg.webp);
    background-color: var(--page-primary-bg);
    background-size: cover;
    background-repeat: no-repeat;
}

.intro-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.intro-list li {
    font-size: 18px;
    padding: 14px 16px 14px 50px;
    border-radius: 50px;
    background: #F5F5FB33;
    transition: all 0.3s;
}

.intro-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 1px solid #FFFFFF4D;
    position: absolute;
    inset: 0 auto 0 24px;
    margin: auto;
    border-radius: 20px;
}

.intro-list li:hover {
    background: #ffffff60;
}

.intro-list li:hover::before {
    background-color: var(--white-color);
}

/* Counter */

.page-counter {
    padding: 80px 60px;
    background-color: var(--page-secondary-bg);
}

.counter-grid {
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
    display: grid;
    gap: 20px;
}

.counter-theme {
    color: var(--white-color);
    border-right: 1.5px solid #FFFFFF80;
    padding: 0 24px;
    text-align: center;
}

.counter-text.percent::after {
    content: '%';
}

.highlight__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: fit-content;
    margin: auto;
}

.highlight__link::after {
    content: '';
    background-image: url(../images/app-usa-images/highlight-underline.webp);
    height: 30px;
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.highlight__link svg,
.link__button svg {
    transition: all 0.3s;
}

.highlight__link:hover svg,
.link__button:hover svg {
    transition: all 0.3s;
    transform: translateX(10px);
}

.link__button {
    display: flex;
    border-bottom: 2px solid #000;
    padding: 0 0 2px;
    width: fit-content;
}

.link__button:hover {
    color: var(--page-text-color) !important;
}

/* Consulting Block */

.consulting-wrapper {
    padding: 28px;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    border: 1px solid #0000001A;
}

.consulting-wrapper:hover {
    transform: translateY(-2px);
    border-color: var(--page-secondary-bg);
}

.cons-icon {
    height: 50px;
    display: flex;
    align-items: center;
}

/* Software Block */

.sticky-block {
    position: sticky;
    top: 150px;
}

.software-wrapper {
    padding: 20px 20px;
    border: 1px solid transparent;
    background-color: var(--white-color);
    transition: all 0.3s;
}

.software-wrapper:hover {
    transform: translateY(-5px);
    border-color: var(--page-secondary-bg);
}

.count-block {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--page-secondary-bg);
    color: var(--white-color);
    font-weight: 600;
    border-radius: 50px;
}

/* Solution Block */

.solution-wrapper {
    border: 1px solid #00000033;
    background: transparent;
    padding: 20px 20px;
    transition: all 0.3s;
}

.solution-wrapper:hover {
    background-color: var(--page-secondary-bg);
    border-color: var(--page-secondary-bg);
    color: var(--white-color);
}

.solution-wrapper:hover .link-title,
.solution-wrapper .link-title:hover {
    color: var(--white-color) !important;
}

.solution-wrapper:hover img {
    filter: invert();
}

/* Development Wrapper */

.develop-wrapper {
    background-color: var(--white-color);
    padding: 20px 20px;
    border: 1px solid #00000033;
    transition: all 0.3s;
}

.develop-wrapper:hover {
    background-color: transparent;
    border-color: var(--page-secondary-bg);
    transform: translateY(-5px);
}

.link-title {
    text-decoration: underline !important;
    color: var(--page-text-color);
}

.link-title:hover,
.business-block:hover .link-title {
    color: var(--primary-color-600) !important;
}

/* Timeline Block */

.timeline-content .software-wrapper:hover {
    transform: unset !important;
}

.timeline-block::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 50%;
    width: 2px;
    height: 80%;
    background: var(--page-secondary-bg);
    margin: auto;
}

.timeline-block .timeline-content:nth-child(odd) {
    padding: 0 50px 0 15px;
}

.timeline-content {
    padding: 0 15px 0 50px;
}

.marker {
    width: 44px;
    height: 44px;
    background: var(--page-secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white-color);
    /* outline: 6px solid #FF006E33; */
    animation: shadow-hover 2s infinite;
    border-radius: 50px;
    position: absolute;
    right: auto;
    left: -20px;
    top: -8px;
    bottom: 0;
    margin: auto;
}

@keyframes shadow-hover {
    0% {
        -moz-box-shadow: 0 0 0 0 #FF006E40;
        box-shadow: 0 0 0 0 #FF006E40;
    }

    70% {
        -moz-box-shadow: 0 0 0 12px #ff006f1f;
        box-shadow: 0 0 0 12px #ff006f1f;
    }

    100% {
        -moz-box-shadow: 0 0 0 12px #ff006f0a;
        box-shadow: 0 0 0 12px #ff006f0a;
    }
}

.timeline-block .timeline-content:nth-child(odd) .marker {
    right: -22px;
    left: auto;
}

/* Tab Block */

.tab-menu ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 550px;
    flex-wrap: nowrap;
    margin: 0 auto 50px;
    background: var(--page-primary-bg);
    padding: 10px 10px;
    border-radius: 50px;
}

.tab-menu ul li {
    width: 100%;
    text-align: center;
}

.tab-menu ul li a {
    padding: 12px 20px;
    width: 100%;
    display: block;
    transition: 0.5s all;
    color: var(--white-color);
    background: var(--page-primary-bg);
    border-radius: 50px !important;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
}

.tab-menu ul li a:hover,
.tab-menu ul li a.active {
    background: var(--white-color);
    color: var(--page-text-color) !important;
}

.tick-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tick-list li {
    position: relative;
    padding: 0 0 0 34px;
    font-size: 17px;
    font-weight: 600;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 0;
    width: 26px;
    height: 26px;
    background-size: 26px;
    background-repeat: no-repeat;
    margin: 4px auto auto 0;
}

.tab-box {
    display: none;
}

/* Cta Wrapper */

.cta-theme {
    padding: 40px 80px;
    background-color: var(--page-primary-bg);
}

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 34px 0;
    font-size: 24px;
}

/* Responsive */

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }

    .intro-list li {
        font-size: 16px;
        padding: 10px 12px 10px 28px;
    }

    .intro-list li::before {
        inset: 0 auto 0 14px;
    }
}

@media only screen and (max-width: 1399px) {

    .padding-left {
        padding-inline: 12px !important;
    }

    .page-counter {
        padding: 60px 40px;
    }

    .cta-theme {
        padding: 50px 60px;
    }

    .cons-icon {
        max-width: 140px;
    }

    .timeline-block::before {
        top: 114px;
        height: 78%;
    }

    .tick-list li::before {
        margin: 1px auto auto 0;
    }
}

@media only screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .page-counter {
        padding: 50px 10px;
    }

    .cta-theme {
        padding: 30px 20px;
    }

    .row-order {
        flex-direction: column-reverse;
    }

    .consulting-wrapper {
        padding: 20px 20px;
    }

    .timeline-block .timeline-content {
        padding: 0 15px 0 15px !important;
    }

    .marker {
        display: none;
    }

    .timeline-block::before {
        content: unset;
    }
}

@media only screen and (max-width: 767px) {

    .intro-list li::before {
        inset: 0 auto 0 14px;
    }

    .intro-list li {
        font-size: 14px;
        padding: 8px 10px 8px 30px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .counter-grid .counter-theme:nth-child(2),
    .counter-grid .counter-theme:nth-child(4) {
        border: unset !important;
    }

    .counter-theme {
        padding: 0 5px;
        text-align: center;
    }

    .tick-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .tick-list li {
        padding: 0 0 0 26px;
        font-size: 15px;
    }

    .tab-menu ul {
        gap: 10px;
    }

    .tab-menu ul li a {
        padding: 10px 10px;
    }

    .tick-list li::before {
        margin: 0px auto auto 0;
    }
    
}

@media only screen and (max-width: 375px) {

    .tab-menu ul {
        flex-direction: column;
        flex-wrap: wrap;
        border-radius: 24px;
        margin: 0 0 30px;
    }

    .tick-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 18px;
    }
    
}