:root {
    --primary-color: #4F4CFF;
    --secondry-color: #FECF39;
    --light-yellow: #FFFAEB;
    --text-light: #fff;
    --bg-light-gray: #F6F5FF;
    --text-dark: #000;
    --text-dark-opacity: rgba(0, 0, 0, 0.80);
    --font-p: 16px;
    --font-p-lh: 24px;
}

.home-sections {
    padding: 0px 0px;
}

.home-hero-block {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 780px;
    position: relative;
    padding: 120px 0px 30px;

    @media(max-width: 991px) {
        padding: 30px 0px 30px;
    }

    .hero-desc {
        color: #fff;
        margin: 20px 0 0;
        font-size: 16px;
        line-height: 26px;
        font-family: var(--primary-font-family);
    }
}

.home-hero-block .container {
    position: relative;
    z-index: 1;
}

.home-hero-block:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.number-block {
    display: flex;
    align-items: center;
}

.home-hero-block .hero-img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-title-block {
    @media(max-width: 991px) {
        text-align: center;
    }
}

.hero-title-block h1 {
    font-size: 60px;
    line-height: 70px;
    color: var(--text-light);
    width: 100%;
    max-width: 890px;
    margin-bottom: 0px;
    font-family: 'Involve';

    @media(max-width: 767px) {
        font-size: 40px;
        line-height: 50px;
    }
}

.hero-title-block p {
    margin: 20px 0px 0px;
    font-size: var(--font-p);
    line-height: var(--font-p-lh);
    color: var(--text-light);
    width: 100%;
    max-width: 526px;
    font-family: 'Switzer';
    font-weight: 400;

    @media(max-width: 991px) {
        margin: 20px auto 20px;
    }
}

.hero-number-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px 0px;
    padding: 0px;
    list-style-type: none;

    @media(max-width: 767px) {
        margin: 0px;
    }
}

.hero-number-list li {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0px 10px;

    @media(max-width: 991px) {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px 10px;
    }

    @media(max-width: 767px) {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 5px 0px;
    }
}

.hero-number-item {
    background: linear-gradient(to bottom, rgba(79, 76, 255, 0.10) 0%, rgba(47, 46, 153, 0.10) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.11);
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    height: 100%;
}

.number-block span {
    display: inline-block;
    vertical-align: middle;
}

.hero-number-item .number {
    color: var(--text-light);
    font-size: 50px;
    line-height: 24px;
    font-family: 'Switzer';
    font-weight: 600;

    @media(max-width: 767px) {
        font-size: 40px;
    }
}

.hero-number-item .suffix {
    color: var(--secondry-color);
    font-size: 50px;
    line-height: 24px;
    font-family: 'Switzer';
    font-weight: 600;

    @media(max-width: 767px) {
        font-size: 40px;
    }
}

.hero-number-item .text {
    font-size: 16px;
    line-height: 21px;
    color: var(--text-light);
    font-family: 'Switzer';
    font-weight: 600;
    display: block;
    width: 100px;
    position: relative;
    padding-left: 12px;
    margin-left: 12px;

    @media(max-width: 767px) {
        font-size: 14px;
    }
}

.hero-number-item .text:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    width: 1px;
    height: 31px;
    background-color: rgba(255, 255, 255, 0.20);
    transform: translate(0px, -50%);
}

.hero-cta-block {
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    padding-bottom: 29px;
    margin-bottom: 20px;

    @media(max-width: 991px) {
        text-align: center;
    }

}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    a {
        margin-left: 10px;

        @media(max-width: 991px) {
            margin: 20px 10px 0px;
        }
    }

    @media(max-width: 991px) {
        justify-content: center;
    }

    @media(max-width: 767px) {
        flex-direction: column;
    }
}

.hero-trust-block {
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    padding: 7px 15px 7px 7px;

    img {
        width: 23px;
        height: 23px;
        flex-shrink: 0;
        margin-right: 10px;
    }

    span {
        font-size: 16px;
        line-height: 20px;
        font-family: 'Switzer';
        font-weight: 600;
        color: var(--text-light);
    }
}

.section-title-block {
    margin: 0px auto 47px;
    text-align: center;
    width: 100%;
    max-width: 820px;
    position: relative;

    h2 {
        font-size: 42px;
        line-height: 52px;
        color: var(--text-dark);
        margin-bottom: 0px;
        font-family: 'Involve';
        font-weight: 700;

        span {
            color: var(--primary-color);
        }

        @media(max-width: 767px) {
            font-size: 32px;
            line-height: 42px;
        }
    }

    p {
        margin: 20px 0px 0px;
        font-size: var(--font-p);
        line-height: var(--font-p-lh);
        color: var(--text-dark-opacity);
        font-family: 'Switzer';

        @media(max-width: 767px) {
            margin: 10px 0px 0px;
        }
    }

    &.left {
        text-align: left;
        margin-left: 0px;

        @media(max-width: 991px) {
            text-align: center;
        }
    }

    @media(max-width: 767px) {
        margin: 0px auto 30px;
    }
}

.home-video-block {
    padding: 100px 0px;
    /* background-color: #fff; */
    position: relative;

    &::before,
    &::after {
        content: '';
        position: absolute;
        top: -250px;
        left: -400px;
        width: 913px;
        height: 583px;
        background-color: #8302F3;
        overflow: hidden;
        border-radius: 40%;
        transform: translateZ(0) rotate(45deg);
        will-change: transform;
        filter: blur(120px);
        opacity: .1;
        z-index: -1;
    }

    &::after {
        top: unset;
        bottom: -100px;
        left: unset;
        right: -200px;
        background-color: #4F4CFF;
    }

    .shape-img {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

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

.video-content {
    width: 100%;
    max-width: 1096px;
    height: 528px;
    margin: 0px auto 0px;
    position: relative;

    a {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }

    img {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        object-fit: cover;
        object-position: center center;
        box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.09);
    }

    .circle-play-icon {
        pointer-events: none;
    }

    &:hover {
        .circle-play-icon {
            background-color: var(--primary-color);
        }
    }

    @media(max-width: 767px) {
        height: 300px;
    }
}

.circle-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;

    i {
        color: #fff;
        font-size: 30px;

        @media(max-width: 767px) {
            font-size: 20px;
        }
    }

    @media(max-width: 767px) {
        width: 60px;
        height: 60px;
    }
}

.app-block {
    padding: 80px 0px;
    background-color: #fff;

    .section-title-block {
        p {
            max-width: 623px;
        }
    }

    .app-content {
        background-color: var(--light-yellow);
        border-radius: 30px;
        position: relative;
        overflow: hidden;
        padding: 20px 50px 0px 50px;

        @media(max-width: 767px) {
            padding: 20px 15px 0px 15px;
        }
    }

    .shape-img {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        pointer-events: none;
    }

    .app-icon-block {
        .app-icon-img {
            display: inline-block;
            vertical-align: middle;
            margin-right: 20px;

            a {
                display: block;

                img {
                    width: 100%;
                }
            }

            @media(max-width: 991px) {
                margin: 5px 5px;
            }
        }

        @media(max-width: 991px) {
            text-align: center;
        }

        @media(max-width: 767px) {
            display: flex;
            justify-content: center;
        }
    }

    .app-img-block {
        padding-top: 39px;
        text-align: center;

        img {
            width: 100%;
        }
    }

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

.packages-block {
    background-color: var(--bg-light-gray);
    padding: 100px 0px;

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

.packages-listing {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    list-style: none;
    padding: 0px;

    >li {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 10px;

        @media(max-width: 991px) {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 10px 10px;
        }

        @media(max-width: 767px) {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 10px 0px;
        }
    }

    @media(max-width: 767px) {
        margin: 0px;
    }
}

.package-items {
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.12);
    padding: 20px 20px 92px 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;

    &:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(79, 76, 255, 1) 0%, rgba(129, 3, 241, 1) 100%);
        transition: all 0.3s;
        opacity: 0;
        pointer-events: none;
        z-index: -1;
    }

    h5 {
        font-size: 20px;
        line-height: 24px;
        color: var(--text-dark);
        font-family: 'Switzer';
        margin-bottom: 6px;
        font-weight: 600;
        transition: all 0.3s;
        position: relative;
    }

    p {
        font-size: 14px;
        line-height: 22px;
        color: rgba(0, 0, 0, 0.50);
        margin-bottom: 0px;
        transition: all 0.3s;
        font-family: 'Switzer';
        font-weight: 500;
        position: relative;
    }

    .price-block {
        border-color: rgba(0, 0, 0, 0.10);
        border-style: solid;
        border-width: 1px 0px;
        padding: 19px 0px;
        margin-top: 20px;
        font-family: 'Switzer';
        position: relative;

        span {
            display: inline-block;
            transition: all 0.3s;
        }
    }

    .price {
        font-size: 44px;
        line-height: 44px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .price-info {
        font-size: 14px;
        color: rgba(0, 0, 0, 0.50);
        font-weight: 500;
        margin-left: 5px;
        line-height: 26px;
    }

    ul {
        list-style: none;
        padding: 0px;
        margin-top: 20px;
        max-height: 140px;
        overflow: auto;

        li {
            position: relative;
            font-size: 14px;
            line-height: 24px;
            font-family: 'Switzer';
            font-weight: 500;
            padding-left: 26px;
            color: rgba(0, 0, 0, 0.70);
            transition: all 0.3s;

            &:before,
            &:after {
                content: "";
                position: absolute;
                transition: all 0.3s;
            }

            &:before {
                top: 4px;
                left: 0px;
                width: 16px;
                height: 16px;
                border-radius: 100%;
                background-color: var(--secondry-color);
            }

            &:after {
                top: 9px;
                left: 4.5px;
                border-style: solid;
                border-color: #000;
                border-width: 0px 0px 1px 1px;
                padding: 1.5px 3.5px;
                transform: rotate(-45deg);
            }

            &:not(:last-child) {
                margin-bottom: 4px;
            }
        }
    }

    .primary-cta {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        transition: all 0.3s;
        max-width: 100%;

        i {
            transition: all 0.3s;
        }
    }

    &:hover {
        &:before {
            opacity: 1;
        }

        .package-category {
            .category-badge {
                color: #fff;
            }
        }

        h5 {
            color: #fff;
        }

        p {
            color: rgba(255, 255, 255, 0.80);
        }

        .price-block {
            border-color: rgba(255, 255, 255, 0.10);
        }

        .price {
            color: var(--text-light);
        }

        .price-info {
            color: var(--text-light);
        }

        ul {
            li {
                color: #fff;

                &:before {
                    background-color: #fff;
                }

                &:after {
                    border-color: var(--primary-color);
                }
            }
        }

        .primary-cta {
            background-color: #fff;
            color: var(--primary-color);

            i {
                color: var(--primary-color);
            }
        }
    }
}

.package-image-block {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        border-radius: 10px;
    }
}

.custom-tabs {
    text-align: center;
    position: relative;

    .nav-tabs {
        background-color: #F3F5F7;
        border-radius: 60px;
        display: inline-flex;
        border: none;
        padding: 4px;

        .nav-link {
            font-size: 14px;
            font-family: 'Switzer';
            font-weight: 600;
            color: rgba(0, 0, 0, 0.70);
            padding: 8px 16px;
            border-radius: 38px;
            transition: all 0.3s;
            border: none;
            width: auto !important;
            margin: 0px !important;

            &.active {
                color: #000;
                background-color: #fff;
                box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05);

                @media(max-width: 767px) {
                    box-shadow: none;
                    color: var(--primary-color);
                }
            }

            @media(max-width: 767px) {
                text-align: left;
                border-radius: 5px;
            }
        }

        @media(max-width: 767px) {
            display: none;
            flex-direction: column;
            background-color: #fff;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05);
            border-radius: 5px;
            padding: 0px;
            position: absolute;
            top: 100%;
            left: 0px;
            width: 100%;
            z-index: 1;

            &.active {
                display: flex;
            }
        }
    }
}

.custom-tab-content {
    padding: 0px;
    margin-top: 35px;

    @media(max-width: 767px) {
        margin-top: 15px;
    }
}

.mobile-tab-trigger {
    background-color: #fff;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    position: relative;
    font-size: 14px;
    font-family: 'Switzer';
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    padding: 10px 15px;
    cursor: pointer;
    text-align: left;

    &:before {
        content: "";
        position: absolute;
        top: 15px;
        right: 15px;
        border-style: solid;
        border-color: #000;
        border-width: 0px 0px 2px 2px;
        padding: 3px;
        transform: rotate(-45deg);
        transition: all 0.3s;
        pointer-events: none;
    }

    &.active {
        &:before {
            transform: rotate(135deg);
        }
    }

    @media(min-width: 768px) {
        display: none;
    }
}

.modal {
    background-color: rgba(0, 0, 0, 0.50);
}

.modal-header {
    padding: 15px 45px 15px 20px;
    border-bottom: 1px solid #eee;
    position: relative;

    .modal-title {
        font-size: 20px !important;
        color: var(--text-dark);
        font-weight: 600;
        font-family: 'Switzer';
    }

    .btn-close {
        margin: 0px !important;
        transform: translate(0px, -50%) !important;
        position: absolute;
        top: 50%;
        right: 10px;
        box-shadow: none;
    }
}

.modal-footer {
    padding: 10px 20px;
    border-top: 1px solid #eee;
}

.package-popup-content {
    .title {
        font-size: 18px;
        color: var(--text-dark);
        font-weight: 600;
        font-family: 'Switzer';
        margin-bottom: 10px;
    }
}

.radio-check-list {
    list-style: none;
    padding: 0px;

    li {
        &:not(:last-child) {
            margin-bottom: 10px;
        }

        .item {
            position: relative;
        }

        input[type="checkbox"],
        input[type="radio"] {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

        label {
            font-size: 14px;
            line-height: 18px;
            color: #000;
            font-family: 'Switzer';
            padding-left: 26px;

            .price {
                font-weight: 600;
            }
        }
    }
}

.check-listing {
    .item {
        display: inline-block;
        vertical-align: middle;
    }

    input[type="checkbox"] {
        &:checked {
            +label {
                .check-icon {
                    border-color: var(--primary-color);
                    background-color: var(--primary-color);

                    &:before {
                        opacity: 1;
                    }
                }
            }
        }
    }

    label {
        display: block;
        pointer-events: none;

        .check-icon {
            width: 18px;
            height: 18px;
            position: absolute;
            top: 0px;
            left: 0px;
            border: 1px solid #d9dee3;
            border-radius: 3px;
            background-color: #fff;
            transition: all 0.3s;

            &:before {
                content: "";
                position: absolute;
                top: 4.5px;
                left: 3px;
                border-style: solid;
                border-color: #fff;
                border-width: 0px 0px 2px 2px;
                padding: 1.5px 3.5px;
                transform: rotate(-45deg);
                transition: all 0.3s;
                opacity: 0;
            }
        }
    }
}

.radio-listing {
    .item {
        display: block;
    }

    input[type="radio"] {
        &:checked {
            +label {
                .radio-icon {
                    border-color: var(--primary-color);

                    &:before {
                        opacity: 1;
                    }
                }
            }
        }
    }

    label {
        display: flex;
        pointer-events: none;
        justify-content: space-between;

        .radio-icon {
            width: 18px;
            height: 18px;
            position: absolute;
            top: 0px;
            left: 0px;
            border: 1px solid #d9dee3;
            border-radius: 100%;
            background-color: #fff;
            transition: all 0.3s;

            &:before {
                content: "";
                position: absolute;
                top: 2px;
                left: 2px;
                right: 2px;
                bottom: 2px;
                background-color: var(--primary-color);
                border-radius: 100%;
                transition: all 0.3s;
                opacity: 0;
            }
        }

        @media(max-width: 767px) {
            flex-direction: column;
        }
    }
}

.footer {
    background-color: #000;
    font-family: 'Switzer';

    @media (max-width:767px) {
        padding-top: 80px;
    }
}

.footer-top {
    padding: 60px 0px 40px;

    @media(max-width: 767px) {
        padding: 30px 0px 20px;
    }
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.60);
    font-weight: 500;
    margin-bottom: 20px;
    width: 100%;
    max-width: 310px;

    @media(max-width: 767px) {
        font-size: 14px;
        max-width: 100%;
    }
}

.footer-menu {
    list-style: none;
    padding: 0px;
    margin: 0px;

    li {
        margin-bottom: 12px;

        &:last-child {
            @media(min-width: 992px) {
                margin-bottom: 0px;
            }
        }

        a {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            padding: 5px 0px;
            transition: all 0.3s;

            i {
                font-size: 16px;
                margin-right: 5px;
                display: inline-block;
                vertical-align: middle;
            }

            &:hover {
                color: var(--primary-color);
            }
        }
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    padding: 25px 0px;

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

.footer-copyright {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.footer-social {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;

    li {
        padding: 0px 5px;

        a {
            display: flex;
            width: 36px;
            height: 36px;
            border-radius: 100%;
            border: 1px solid rgba(255, 255, 255, 0.20);
            background-color: transparent;
            transition: all 0.3s;
            align-items: center;
            justify-content: center;

            i {
                color: #fff;
                font-size: 16px;
            }

            &:hover {
                border-color: var(--primary-color);
                background-color: var(--primary-color);
            }
        }
    }

    @media(max-width: 991px) {
        margin-bottom: 20px;
    }
}

.marquee-block {
    background: linear-gradient(to right, rgba(79, 76, 255, 1) 0%, rgba(131, 2, 243, 1) 100%);
    padding: 22px 0px;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Involve';
    color: #fff;

    .marquee {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
    }

    .marquee-track {
        display: inline-flex;
        will-change: transform;
    }

    span {
        font-style: italic;
        padding: 0px 10px;
    }

    @media(max-width: 767px) {
        font-size: 24px;
        padding: 18px 0px;
    }
}