:root {
    --page-primary-bg: #170046;
    --page-secondary-bg: #170046;
    --page-fade: #F8FCFF;
    --text-theme: #170046;
    --text-grey: #58606A;
    --tick-icon: url("../images/hamilton-on-img/tick-icon.webp")
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey);
}

.button-primary,
.button-primary:hover {
    color: var(--page-primary-bg);
    background: #fff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color);
    border: 1px solid var(--page-primary-bg);
    background-color: var(--page-primary-bg) !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
}

.highlight-text {
    color: var(--page-primary-bg) !important;
}

.button svg {
    animation: pulso-effect 2s infinite;
    border-radius: 100px;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.z-1 {
    z-index: 1;
    position: relative;
}

.link-white,
.link-white:hover {
    color: var(--white-color) !important;
    text-decoration: underline !important;
}

.section-wrapper h1,
.section-wrapper .h1,
.section-wrapper h2,
.section-wrapper .h2,
.section-wrapper h3,
.section-wrapper .h3,
.section-wrapper h4,
.section-wrapper .h4,
.section-wrapper h5,
.section-wrapper .h5,
.section-wrapper h6,
.section-wrapper .h6,
p {
    font-family: 'Gilroy' !important;
}

.section-wrapper .w-normal {
    font-weight: 400 !important;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-20 {
    border-radius: 20px;
}

.light-bg {
    background: #F9F6FF;
}

.text-light-bg {
    background: #ffffff3d;
}

.linear-text-bg {
    background: linear-gradient(to right, #fff, #D5EFF4);
}

.swiper-slide {
    height: auto !important;
}

.top--border {
    border-top: 1px solid var(--page-primary-bg);
}

.sales-main img {
    width: fit-content;
    max-width: fit-content;
}

/* common css end */

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.section-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 26px !important;
}

.package-block {
    border: 1px solid #BFBFBF;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    column-gap: 20px;
    transition: 0.5s all ease;
}

.package-block:hover {
    background: #745EA6;
}

.package-block:hover * {
    color: #fff !important;
}

.package-block .business-icon {
    flex-shrink: 0;
    width: 80px;
}

.sticky-column {
    position: sticky;
    top: 140px;
}

.package-wrapper {
    display: flex;
    flex-flow: column;
    row-gap: 20px;
}

.proces-main {
    gap: 0 100px;
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

.proces-main .proces-name {
    width: 100px;
    max-width: 100px;
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--page-primary-bg);
    font-size: 40px;
    border: 11px solid #f1ebff;
    height: 100px;
    font-weight: 800;
    color: #fff;
}

.proces-main:last-child {
    padding-bottom: 0;
}

.proces-main img {
    max-width: fit-content;
    width: fit-content;
}

/* packages */

.packages-card {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #fff;
    border-radius: 10px;
    padding: 30px 0;
    border: 10px solid #fff;
}

.packages-card.hight-light {
    box-shadow: rgb(23 0 70 / 100%) 0px 8px 40px;
}

.packages-card.hight-light .packages-title span {
    animation: zoomInOut 2s ease-in-out infinite;
    display: block;
}

.packages-card .packages-title {
    background: var(--page-primary-bg);
    padding: 10px 5px;
    position: relative;
    z-index: 1;
    width: calc(100% + 50px);
    left: -25px;
}

.packages-card .packages-title::before,
.packages-card .packages-title::after {
    content: "";
    position: absolute;
    bottom: -16px;
    border-top: 18px solid #2e0b5b;
}

.packages-card .packages-title::before {
    left: 0px;
    border-left: 18px solid transparent;
}

.packages-card .packages-title::after {
    right: 0;
    border-right: 18px solid transparent;
}

/* Responsive */
@keyframes zoomInOut {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
        /* zoom in */
    }

    100% {
        transform: scale(0.9);
        /* back to normal */
    }
}

@media only screen and (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }

    .padding-right {
        --page-width: 1200px !important;
        padding-right: calc(50% -(var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 1200px) {

    .sticky-column {
        position: static;
    }

    .packages-row {
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .spacer-xl {
        padding: 70px 0;
    }
}

@media (min-width: 768px) {
    .brand-row>div {
        flex: 1;
    }

    .proces-main:not(:last-child)::before {
        content: "";
        position: absolute;
        left: 50px;
        top: 30px;
        width: 1px;
        height: 100%;
        border-left: 1px dashed #8D8D8D;
        z-index: -1;
    }
}

@media only screen and (max-width: 767px) {
    .mb-50 {
        margin-bottom: 30px !important;
    }

    .proces-main {
        padding-bottom: 20px;
    }

    .proces-main .proces-icon {
        margin-bottom: 20px;
    }

    .proces-main .proces-name {
        display: none;
    }
}