*,
:after,
:before {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:root {
    --bs-primary: #775afc;
    --bs-secondary: #6E51E6;
    --bs-light: #ebf0f4;
    --bs-dark: #010f1c;
    --bs-text: #55585b;
    --bs-border: #E9E9E9;
}

body {
    margin: 0px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-text);
    background-color: var(--bs-white);
    overflow-x: hidden;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    font-weight: 700;
    color: var(--bs-dark);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

a:hover,
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: inherit;
    box-shadow: none;
}

.py-5px {
    padding-top: 5px;
    padding-bottom: 5px;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.form-select:focus,
.form-control:focus,
.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
    border-color: var(--bs-primary);
}

.scrollTop {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: var(--bs-primary);
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    color: var(--bs-white);
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    position: fixed;
    right: 50px;
    bottom: 0;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrollTop.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

.scrollTop:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
    color: var(--bs-white);
}

.text-xs {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

.text-normal {
    font-size: 16px;
}

.text-lg {
    font-size: 18px;
}

.text-xl {
    font-size: 26px;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.btn-primary {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: var(--bs-white);
    background-color: var(--bs-primary);
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--bs-primary);
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
}

.header-btn-4 .btn-primary:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    border: 2px solid var(--bs-secondary);
}

.btn-primary:hover {
    background-color: var(--bs-white);
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/*** ========== Header css ========== ***/
.header-offer img {
    margin-right: 10px;
    animation: light 2.5s linear forwards infinite alternate;
}

@keyframes light {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        color: white;
    }
}

.header-offer p {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--bs-text);
}

.header-offer p span {
    color: #FF6C66;
    font-weight: 500;
}

.header-social a {
    display: inline-block;
    color: #7B8187;
    font-size: 15px;
    margin-left: 15px;
    padding: 17px 0;
}

.header-social a:hover {
    color: var(--bs-primary);
}

.header-bg-4 {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 10px 30px rgba(1, 15, 28, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 0 10px;
    position: relative;
    z-index: 999;
}

.header-sticky .header-bg-4 {
    background-color: var(--bs-white);
}

.tpmenu__area ul li.has-dropdown>a::after {
    content: "\f107";
    transform: translateY(1px);
    font-size: 14px;
    color: var(--bs-text);
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    margin-left: 5px;
    display: inline-block;
}

.tpmenu__area ul li {
    display: inline-block;
    list-style: none;
    margin: 0 16px;
    position: relative;
}

.header .tpmenu__area ul li {
    margin: 0 37px 0 0;
}

.header .tpmenu__area ul li>a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 21px 0;
    display: inline-block;
}

.header .tpmenu__area ul li>a:hover {
    color: var(--bs-primary);
}

.header .header-sticky {
    position: fixed !important;
    left: 0;
    width: 100%;
    top: 20px;
    z-index: 99;
    animation: fadeInDown 500ms ease-in-out 0s normal none 1 running;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.offcanvas-open-btn {
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    border-radius: 50px;
    font-size: 22px;
    width: 50px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-open-btn:hover,
.offcanvas-open-btn:focus {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

/*** ========== Header css ========== ***/

/*** ========== Hero Section css ========== ***/
.banner-4-shape-six {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.banner-4-title {
    color: var(--bs-dark);
    font-weight: 700;
    font-size: 60px;
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-headline.clip span {
    display: inline-block;
    padding: 0 0 20px 0;
}

.cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.banner-4-title b {
    background: linear-gradient(90deg, #501E9C 0%, #A44CEE 43.75%, #FF847F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    padding: 0 0 20px 0;
}

.cd-headline.clip b {
    opacity: 0;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.cd-headline.clip b.is-visible {
    opacity: 1;
}

.banner-4-content p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 38px;
    margin-top: -15px;
}

.contact-4-text span {
    font-size: 14px;
    line-height: 24px;
    color: #55585B;
    display: block;
    line-height: 24px;
}

.contact-4-icon i {
    font-size: 24px;
    margin-right: 14px;
}

/*** ========== Hero Section css ========== ***/

/*** ========== Section css ========== ***/
.description ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
    display: inline-flex;
    width: 20px;
    height: 20px;
    border: 1px solid;
    border-color: rgb(119 90 252 / 40%);
    color: var(--bs-primary);
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    margin-right: 8px;
    padding-top: 2px;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 4px;
}

.bg-primary .description ul li::before {
    border-color: var(--bs-white);
    color: var(--bs-white);
}

.description ul li {
    padding-bottom: 15px;
    display: flex;
    align-items: start;
}

.section-title-4 {
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2;
}

.heading {
    background-color: rgb(119 90 252 / 20%);
    margin: -24px;
    text-align: center;
    padding: 14px;
    margin-bottom: 0;
}

.bg-primary .heading {
    background-color: var(--bs-secondary);
}

.service-item {
    background: var(--bs-white);
    box-shadow: 0px 43px 100px 0px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
    border-top: 10px solid #086ad8;
    transform: translate3d(0, 0, 0);
    padding: 30px 40px 40px;
    transition: all 0.3s linear;
}

.service-item:hover {
    transform: translateY(-5px) translate3d(0, -5px, 0);
}

@keyframes img-border {
    0% {
        -webkit-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
        -moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
        border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    }

    100% {
        -webkit-border-radius: 30% 70% 28% 72%/53% 69% 31% 47%;
        -moz-border-radius: 30% 70% 28% 72%/53% 69% 31% 47%;
        border-radius: 30% 70% 28% 72%/53% 69% 31% 47%;
    }
}

.feature-list-4-icon {
    flex: 0 0 auto;
    margin-right: 30px;
    position: relative;
}

.feature-list-bg {
    position: relative;
}

.feature-list-bg b {
    position: absolute;
    font-weight: 500;
    font-size: 16px;
    line-height: 15px;
    color: var(--bs-white);
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.feature-bg-border-1 {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid rgba(2, 29, 53, 0.4);
    height: 9px;
    width: 9px;
    border-radius: 50%;
}

.feature-bg-border-2 {
    position: absolute;
    top: 1px;
    left: 12px;
    background: rgba(2, 29, 53, 0.5);
    height: 2px;
    width: 2px;
    border-radius: 50%;
}

.feature-bg-border-3 {
    position: absolute;
    bottom: 6px;
    right: -5px;
    background: rgba(2, 29, 53, 0.5);
    height: 5px;
    width: 5px;
    border-radius: 50%;
}

.feature-bg-border-4 {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(2, 29, 53, 0.5);
    height: 2px;
    width: 2px;
    border-radius: 50%;
}

.section-wrapper span {
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    background: linear-gradient(90deg, #501E9C 0%, #A44CEE 43.75%, #FF847F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.tpchoose-border-anim {
    -webkit-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    -moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    -webkit-animation: img-border 5s linear infinite alternate;
    -moz-animation: img-border 5s linear infinite alternate;
    -o-animation: img-border 5s linear infinite alternate;
    animation: img-border 5s linear infinite alternate;
    transition: all 0.3s ease-out 0s;
    max-width: 500px;
    width: 100%;
}

.nav-pills .nav-item .nav-link {
    border: none;
    background: rgb(119 90 252 / 20%);
    color: var(--bs-primary);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.nav-pills .nav-item .nav-link::after,
.nav-pills .nav-item .nav-link::after {
    position: absolute;
    bottom: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: var(--bs-primary) transparent transparent transparent;
    visibility: hidden;
    transition: all .15s ease-in-out;
    opacity: 0;
}

.nav-pills .nav-item .nav-link:hover::after,
.nav-pills .nav-item .nav-link.active::after {
    visibility: visible;
    opacity: 1;
}

.nav-pills .nav-item .nav-link:hover,
.nav-pills .nav-item .nav-link.active {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.feature-list-4 li:nth-child(1n) .main-bg {
    color: #39DDB8;
}

.feature-list-4 li:nth-child(2n) .main-bg {
    color: #905AFF;
}

.feature-list-4 li:nth-child(3n) .main-bg {
    color: #FF816C;
}

.feature-list-4 li:nth-child(4n) .main-bg {
    color: #4260ff;
}

.feature-list-4 li:nth-child(5n) .main-bg {
    color: #086ad8;
}

.fw-bolder {
    font-weight: 800 !important;
}

.portfolio-tab .nav-link {
    display: block;
    padding: 0 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 45px;
    color: #9A9B9C;
    text-align: left;
}

.portfolio-tab .nav-link.active {
    background: linear-gradient(90deg, rgba(119, 90, 252, 0.1) 0%, rgba(119, 90, 252, 0) 100%);
    font-weight: 600;
    font-size: 16px;
    line-height: 45px;
    color: #775AFC;
    position: relative;
}

.portfolio-tab .nav-link.active::before,
.portfolio-tab .show>.nav-link::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 3px;
    background-color: var(--bs-primary);
    left: 0;
    top: 0;
}

.portfolio-4-content-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 50px 0 50px;
}

.portfolio-4-content-top span {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.14em;
    line-height: 10px;
    color: #55585b;
}

.portfolio-4-thumb img {
    border-radius: 20px;
}

.portfolio-carousel .owl-nav {
    margin-left: -50%;
    margin-top: -60px;
}

.portfolio-carousel .owl-nav button {
    font-size: 26px !important;
    margin: 0 5px;
    color: #8A8A8D !important;
}

.portfolio-carousel .owl-nav button:hover {
    color: var(--bs-primary) !important;
}

.tp-accordion .accordion-item {
    background-color: var(--bs-white);
    border-right: none;
    border-left: none;
    border-color: rgba(1, 15, 28, 0.1);
}

.tp-accordion .accordion-button {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    padding: 25px 0px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.tp-accordion .accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.tp-accordion .accordion-button:not(.collapsed) {
    color: #59ba41;
    background-color: var(--bs-white);
    box-shadow: none;
}

.accordion-button::after {
    width: 0;
    height: 0;
    margin-left: auto;
}

.tp-accordion .accordion-button::after {
    content: "+";
    position: absolute;
    background-image: none;
    right: 0;
    width: auto;
    height: auto;
    font-weight: 500;
    font-size: 28px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    top: 50%;
    transform: translateY(-50%);
}

.tp-accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: translateY(-50%) rotate(135deg);
    color: #59ba41;
}

.tp-accordion .accordion-body {
    padding: 0px 70px 35px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #55585B;
}

.shap-title {
    position: relative;
    z-index: 1;
}

.shap-title svg {
    position: absolute;
    bottom: -12px;
    left: 0;
    z-index: -1;
    width: 100%;
}

.tpsection-wrapper p {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.02em;
}

.tp-faq-wrapper .tpsection-wrapper p {
    font-size: 16px;
    margin-bottom: 6px;
}

.tp-faq-wrapper .tpsection-wrapper b {
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    color: var(--bs-dark);
}

.tp-faq-img span {
    height: 80px;
    width: 80px;
    line-height: 77px;
    background-color: #59B642;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
}

.tp-faq-shape {
    position: absolute;
    top: -20px;
    left: 98px;
}

.ftco-intro {
    width: 100%;
    position: relative;
    z-index: 0;
    color: rgba(255, 255, 255, 0.8);
}

.btn.btn-white.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    background: transparent !important;
    color: var(--bs-white) !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
}

.btn.btn-white.btn-outline-white:hover {
    border: 1px solid transparent !important;
    background: var(--bs-white) !important;
    color: #000000 !important;
}

.form-control {
    padding: 10px 14px;
    font-size: 14px;
}

.footer {
    padding: 20px 0;
    background: #002d5b;
}

.footer p {
    color: var(--bs-white);
    font-size: 12px;
}

.footer .nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-right: 17px;
}

.footer .nav a:hover {
    color: var(--bs-white);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgb(119 90 252 / 20%);
    border-radius: 3px;
    margin-right: 5px;
    color: var(--bs-primary);
}

.social-links a:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.brand-area {
    background: linear-gradient(91.91deg, #501E9C 5.01%, #A44CEE 43.79%, #FF847F 93.65%);
}

.modal-content.tpcontact-4-box {
    border-radius: 20px;
    border: none;
}

.tpcontact-4-box::before {
    position: absolute;
    content: "";
    z-index: -11;
    top: -5px;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(69.83deg, #501E9C -8.16%, #A44CEE 49.19%, #FF847F 102.99%);
    mix-blend-mode: normal;
    box-shadow: 0px 20px 40px rgba(36, 7, 66, 0.13);
    border-radius: 20px;
}

.rounded-left {
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.rounded-right {
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

.about-logo-area {
    background-color: var(--bs-white);
    display: block;
    padding: 8px;
    margin: 0 -1.5rem 20px;
    text-align: center;
}

/*** ========== Section css ========== ***/
.main-header {
    position: relative;
    z-index: 999;
}

.overlay {
    position: fixed;
    z-index: 98;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1),
        visibility 0s cubic-bezier(0.19, 1, 0.22, 1) 0.5s,
        z-index 0s cubic-bezier(0.19, 1, 0.22, 1) 0.5s,
        top 0s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
    inset: 0;
}

body.show-menu .overlay {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.mmenu-link {
    border-bottom: 1px solid #eaeaea;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #8d8d8d;
    padding: 11px 0;
    display: block;
    position: relative;
    text-transform: none;
    line-height: 17px;
    min-height: 40px;
}

.msub-menu {
    padding-left: 15px;
    display: none;
}

.mmenu-item {
    position: relative;
}

.opener {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
}

.mmenu-item.active .opener i {
    transform: rotate(90deg);
}

.mobile-menu {
    position: absolute;
    z-index: 99;
    top: calc(100% - 25px);
    left: 12px;
    right: 12px;
    padding-inline: 8px;
    background-color: var(--bs-white);
    border-radius: 0 0 20px 20px;
}

.mmenu-list {
    padding-inline: 18px;
    position: relative;
    padding-top: 30px;
}

.shadow-inset {
    box-shadow: 0px 2px rgb(119 90 252 / 40%);
    border: 1px solid rgb(119 90 252 / 40%);
}

.rounded-10px {
    border-radius: 10px;
}

.form-floating>.form-control {
    padding: 0.5rem .75rem;
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(2.5rem + 2px);
}

.form-floating>label {
    top: 12px;
    left: 8px;
    line-height: 1;
    height: auto;
    padding: 0 0.3rem;
    font-size: 13px;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    transform: scale(.85) translateY(-1.3rem) translateX(.15rem);
    background-color: var(--bs-white);
    opacity: 1;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1rem;
}
