:root {
    --page-primary-bg: #F4EFFF;
    --page-secondary-bg: #F0F0FE;
    --page-fade: #F8F8F8;
    --text-theme: #000000;
    --text-grey: #58646A;
}

main section {
    font-family: 'Gilroy' !important;
}

.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/uiux-images/banner-intro.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* About Intro */

.about-wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 15px;
    background: var(--page-primary-bg);
    border-radius: 20px;
    padding: 15px;
}

.about-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about-content {
    background: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Business Block */

.business-block {
    padding: 30px 30px;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
}

.business-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
}

.block-1 {
    background-color: #FFEAE8;
}

.block-2 {
    background-color: #ECFEFF;
}

.block-3 {
    background-color: #F0F0FE;
}

.block-4 {
    background-color: #EAF7FF;
}

.block-5 {
    background-color: #FFF5E1;
}

/* Service Block */

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    background-color: var(--white-color);
    transition: all 0.3s;
}

.service--img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.service--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reason Block */

.reason-intro .business-block {
    display: flex;
    gap: 30px;
    min-height: 300px;
}

/* Tab */

.tab-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tab-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    padding: 25px 25px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: transparent;
}

.tab-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #9A72F9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tab-link:hover,
.tab-link.active {
    border-color: #F3EEFF;
    background-color: #F3EEFF;
}

.tab-group {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    padding: 30px 30px;
    background-color: #ffffff90;
    backdrop-filter: blur(8px);
}

.tab-img,
.tab-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tab-img.active,
.tab-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.tab-imgs {
    position: relative;
    min-height: 300px;
}

.work-block {
    border: 1px solid #9A72F9;
    background-color: #F3EEFF;
    padding: 24px 24px;
    border-radius: 20px;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
}

/* CTA Block */

.cta-block {
    background-image: url(../images/uiux-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 (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 1399px) {

    .tab-group {
        max-width: 380px;
    }

    .tab-link {
        gap: 20px;
        padding: 15px 15px;
    }

    .tab-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

@media only screen and (max-width: 991px) {

    main .hero-section {
        padding-block: 70px !important;
    }

    .text-align-center {
        text-align: center;
    }

    .button {
        width: auto !important;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        border-radius: 20px;
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .reason-intro .business-block {
        flex-direction: column;
    }

    .cta-block {
        padding: 50px 20px;
    }

    .business-block,
    .service--block {
        padding: 20px 20px;
    }
}

@media only screen  and (max-width: 767px) {
    
}