:root {
    --font-family-1: Poppins, sans-serif;
    --font-family-2: Inter, sans-serif;
    --text-color-1: #222;
    --color-gray-2: #6E778C;
    --color-gray-3: silver;
    --color-gray-4: #d0d5dd;
    --color-gray-5: #f1f1f1;
    --color-gray-6: #f8f8f8;
    --title-color-1: #1f1f1f;
    --color-gray-medium: #d0d7e7;
    --bg-color-1: #f6f9fc;
    --bg-color-2: #0a2540;
    --bg-color-3: #1f4468;
    --bg-color-4: #f3effb;
    --bg-color-5: #3c00e21a;
    --color-white: #ffffff;
    --theme-color-1: #3c00e2;
    --theme-color-2: #6530fb;
    --theme-color-3: #00C4C4;
    --theme-color-4: #02bcf5;
    --button-hover-color: #1f1f1f;
    --gle-style-1: #4285F4;
    --gle-style-2: #DB4437;
    --gle-style-3: #F4B400;
    --gle-style-4: #0F9D58;
}

.color-gradient {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(var(--theme-color-1), var(--theme-color-1));
    -webkit-background-clip: text;
    background-clip: text;
    font-style: normal;
}

.text-sm {
    color: darkgrey;
    font-weight: normal;
    font-size: 13px;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.max-w-60 {
    max-width: 60rem;
}

.b-r-3 {
    border-radius: 3px;
}

.b-r-8 {
    border-radius: 8px;
}

.btn {
    transition: none;
}

.btn-success.disabled,
.btn-success:disabled {
    color: var(--color-white);
    background-color: var(--theme-color-1);
    border-color: var(--theme-color-1);
}

.btn-light:hover {
    border-color: var(--color-gray-2);
}

button:focus {
    outline: none;
}

/* FORM START */
.form-group label {
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    padding: 8px 16px;
}

.form-control:focus {
    box-shadow: 0 0 0 1px rgb(60, 0, 226, 0.4);
    border-color: rgb(60, 0, 226, 0.4);
}

/* FORM END */

/* Toastr Start */

#toast-container {
    font-family: var(--font-family-2);
    padding-left: 12px;
}

#toast-container .toast {
    border: none;
}

.toast-title {
    font-size: 15px;
    font-weight: 600;
}

.toast-message {
    font-weight: normal;
}

#toast-container>div {
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
    width: fit-content;
}

#toast-container>div:hover {
    box-shadow: none;
}

.toast-success {
    background-color: var(--gle-style-4);
}

.toast-error {
    background-color: var(--gle-style-2);
}

.toast-warning {
    background-color: var(--gle-style-3);
}

.toast-close-button {
    font-weight: 600;
    text-shadow: none;
}

/* Toastr End */


.form-validation-error {
    font-size: 0.8rem;
    color: red;
    text-align: left;
    margin: 0;
}

.form-validation-error .validation-error-index {
    text-transform: capitalize;
}

.btn-success {
    background-color: var(--theme-color-1);
    border-color: var(--theme-color-1);
}

.btn-check:active+.btn-success,
.btn-check:checked+.btn-success,
.btn-success.active,
.btn-success:active,
.show>.btn-success.dropdown-toggle,
.btn-check:focus+.btn-success,
.btn-success:focus,
.btn-success:hover {
    background-color: var(--button-hover-color);
    border-color: var(--button-hover-color);
}

.btn-check:focus+.btn-success,
.btn-success:focus,
.btn:focus {
    box-shadow: none !important;
}

.ti-button {
    grid-column-gap: .5rem;
    border: 2px solid var(--theme-color-1);
    background-color: var(--color-white);
    color: var(--theme-color-1);
    text-align: center;
    white-space: nowrap;
    border-radius: .375rem;
    justify-content: center;
    align-items: center;
    min-width: 9.25rem;
    max-width: 21.25rem;
    width: fit-content;
    height: 3rem;
    padding: 1rem 1.25rem;
    font-family: var(--font-family-1);
    font-size: 1rem;
    font-weight: 600;
    line-height: 150%;
    text-decoration: none;
    transition: all .2s;
    display: flex;
}

.ti-button:hover {
    transition: all 0.2s ease;
    box-shadow: 0 .25rem .5rem #0003;
}

.ti-button:hover,
.ti-button-arrow {
    transition: all 0.2s ease;
}

.ti-button.solid {
    background-image: linear-gradient(180deg, var(--theme-color-2), var(--theme-color-1));
    color: var(--color-white);
    border-style: none;
}

.ti-button:not(.solid):hover {
    color: var(--color-white);
    background: var(--theme-color-1);
}

@media screen and (max-width: 767px) {
    .ti-button {
        border-radius: .428rem;
        flex: 1;
        height: 3.429rem;
    }
}

/* HEADER START */
html.w-mod-touch * {
    background-attachment: scroll !important;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.ti_main-menu-parent-link-arrow {
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.ti_main-menu-parent-link-arrow i {
    font-size: 12px;
    color: var(--color-gray-2);
}

.ti_main-menu-parent:hover .ti_main-menu-parent-link-arrow {
    transform: rotate(-180deg);
}

.ti_header {
    z-index: 500;
    width: 100%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    transition: all 0.3s;
}

.ti_header-container {
    width: 100%;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.ti_header-wrapper {
    background-color: var(--color-white);
    border-radius: .5rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 4.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    border: 1px solid var(--color-gray-2);
}

.ti_header-logo-link {
    grid-column-gap: .625rem;
    color: var(--title-color-1);
    align-items: center;
    height: 2.8rem;
    font-family: var(--font-family-1);
    font-size: 1rem;
    font-weight: 700;
    line-height: 150%;
    text-decoration: none;
    display: flex;
}

.ti_header-logo-link img {
    height: 100%;
}

.ti_header-nav {
    grid-column-gap: 2.5rem;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    margin-left: 2.5rem;
    margin-right: auto;
    display: flex;
}

.ti_main-menu-parent {
    position: relative;
}

.ti_main-menu-parent-link {
    grid-column-gap: .375rem;
    letter-spacing: .14px;
    align-items: center;
    text-decoration: none;
    display: flex;
    position: relative;
}

.ti_main-menu-parent-link-text {
    color: var(--text-color-1);
    font-family: var(--font-family-1);
    font-size: 1rem;
    font-weight: 600;
    line-height: 120%;
    transition: opacity .2s;
}

.ti_main-menu-child-links-wrapper {
    min-width: 160px;
    transition: all .25s;
    display: none;
    position: absolute;
}

.ti_main-menu-child-links {
    grid-row-gap: 6px;
    background-color: var(--color-white);
    border-radius: 6px;
    flex-direction: column;
    padding: 6px;
    display: flex;
    transform: translate(0, 15px);
    box-shadow: 0 4px 20px #0c004740;
}

.ti_main-menu-child-link {
    grid-column-gap: 12px;
    border-radius: 4px;
    align-items: center;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    transition: all .2s;
    display: flex;
}

.ti_main-menu-child-link-icon-wrapper {
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    display: flex;
}

.ti_main-menu-child-link-text {
    color: var(--title-color-1);
    white-space: nowrap;
    font-family: var(--font-family-1);
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
}

.ti_header-login-link-text {
    font-family: var(--font-family-1);
    font-size: .875rem;
    font-weight: 600;
    line-height: 120%;
}

.ti_header-button {
    border: 1px solid var(--theme-color-1);
    border-radius: .375rem;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    padding-left: .75rem;
    padding-right: .75rem;
    text-decoration: none;
    transition: all .2s;
    display: flex;
    color: var(--theme-color-1);
}

.ti_header-button.sm-screen {
    display: none;
}

.ti_header-button:not(.solid):hover {
    color: var(--color-white);
    background: var(--theme-color-1);
}


.ti_header-button:hover {
    background-image: linear-gradient(180deg, var(--theme-color-1), var(--theme-color-1));
    box-shadow: 0 .25rem .5rem #0003;
}

.ti_header-button.solid {
    background-image: linear-gradient(180deg, var(--theme-color-1), var(--theme-color-1));
    color: var(--color-white);
}

.ti_header-button.nav-user-dp {
    padding: 0;
    background-image: none;
    border: none;
}

.ti_header-button.nav-user-dp:hover {
    box-shadow: none;
}

.ti_mobile-menu-trigger {
    background-color: var(--color-white);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: none;
    position: relative;
    box-shadow: 0 1px 2px #0003;
}

.ti_mobile-menu-trigger .ti_mobile-menu-close-button,
.ti_mobile-menu-trigger .ti_mobile-menu-open-button {
    color: var(--color-gray-2);
}

.ti_mobile-menu-trigger .ti_mobile-menu-close-button {
    font-size: 18px;
}

.ti_main-menu-child-link:hover {
    background-color: var(--bg-color-5);
}

.ti_header.page-scrolled {
    transition: all 0.3s;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

@media screen and (min-width: 1280px) {
    .ti_header-container {
        max-width: 84.5rem;
    }
}


@media screen and (min-width: 992px) {

    .ti_main-menu-parent:hover .ti_main-menu-child-links-wrapper {
        display: block;
    }
}

@media screen and (max-width: 991px) {

    .ti_header {
        padding-top: 0;
        padding-bottom: 0;
        position: fixed;
        top: 0;
    }

    .ti_header-container {
        padding-left: 0;
        padding-right: 0;
    }

    .ti_header-wrapper {
        box-shadow: none;
        background-color: #0000;
        border-radius: 0;
        height: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;
        position: relative;
        border: none;
    }

    .ti_header-logo-link {
        height: 2.5rem;
    }

    .ti_header-nav {
        background-color: var(--color-white);
        flex-flow: column;
        width: 100%;
        margin-left: 0;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        display: block;
        position: absolute;
        top: 4rem;
        left: 0;
        overflow: auto;
        transform: translate(-110%);
    }

    .ti_main-menu-parent {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        min-height: 64px;
        display: flex;
        overflow: hidden;
    }

    .ti_main-menu-parent-link {
        border-bottom: 1px solid #eee;
        justify-content: space-between;
        width: 100%;
        height: 3.5rem;
    }

    .ti_main-menu-child-links-wrapper {
        box-shadow: none;
        width: 100%;
        max-height: 0;
        padding-top: .75rem;
        display: block;
        position: static;
    }

    .ti_main-menu-child-links {
        box-shadow: none;
        padding-left: 0;
        transform: none;
    }

    .ti_main-menu-child-link {
        padding-left: 0;
    }

    .ti_header-button {
        width: 100%;
        max-width: 18.625rem;
    }

    .ti_main-menu-child-links-wrapper.expanded {
        max-height: 100vh;
        border-bottom: 1px solid #eee;
    }

    .ti_header.page-scrolled,
    .ti_header.nav-open {
        background: var(--color-white) !important;
        box-shadow: 0 .25rem 1.25rem rgba(12, 0, 71, .15);
    }

    .ti_header.nav-open {
        z-index: 1000;
    }

    .ti_header-nav {
        height: calc(100% - 80px);
        height: calc(100dvh - 4rem);
        transition: all 0.5s ease;
    }

    .nav-user-dp {
        display: none;
    }

    .ti_header-button.sm-screen {
        display: flex;
    }

    .ti_header-button.sm-screen i {
        padding-right: 10px;
    }

    .ti_header-nav.open {
        transform: translateX(0);
    }

    .ti_mobile-menu-trigger {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ti_mobile-menu-trigger .ti_mobile-menu-close-button {
        display: none;
    }

    .ti_mobile-menu-trigger .ti_mobile-menu-open-button {
        display: block;
    }

    .ti_mobile-menu-trigger.open .ti_mobile-menu-close-button {
        display: block;
    }

    .ti_mobile-menu-trigger.open .ti_mobile-menu-open-button {
        display: none;
    }

    .ti_main-menu-parent-link-login {
        background: linear-gradient(0, var(--theme-color-1) 0%, var(--theme-color-1) 100%);
        color: var(--color-white);
        border-radius: 8px;
        border: none;
        padding: 8px 16px;
        font-family: var(--font-family-1);
        font-weight: 700;
        font-size: 16px;
        transition: opacity .2s;
        position: absolute;
        bottom: 20px;
        left: 20px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100% - 40px);
    }
}

/* HEADER END */

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    border: 1px solid var(--gle-style-1);
    background-color: #E4ECFB;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.2s;
}

.back-to-top i {
    font-size: 24px;
    color: var(--gle-style-1);
    line-height: 0;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Back to top button end
--------------------------------------------------------------*/

.section-title {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    margin-bottom: 6rem;
}

.section-title div {
    font-family: var(--font-family-2);
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    display: inline-flex;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 4rem;
    }

    .section-title div {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-title div {
        font-size: 2.5rem;
    }
}

.title-d-1::before,
.title-d-2::before,
.title-d-3::before,
.title-d-4::before {
    position: absolute;
    width: 100%;
    height: 11px;
    border-radius: 2px;
    content: "";
    left: 0;
    bottom: 15px;
    z-index: -1;
}

@media (max-width: 768px) {

    .title-d-1::before,
    .title-d-2::before,
    .title-d-3::before,
    .title-d-4::before {
        height: 5px;
        bottom: 14px;
    }
}

.title-d-1::before {
    background: var(--gle-style-1);
}

.title-d-2::before {
    background: var(--gle-style-2);
}

.title-d-3::before {
    background: var(--gle-style-3);
}

.title-d-4::before {
    background: var(--gle-style-4);
}


html {
    scroll-behavior: smooth;
}

/* CONTACT START */

#modal-contact .modal-content {
    border-radius: 1rem !important;
    overflow: hidden;
    border: 1px solid var(--title-color-1) !important;
}

#modal-contact .modal-body {
    overflow-y: auto;
    max-height: 90vh;
}

#modal-contact .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;

    font-size: 12px;
    color: var(--text-color-1);
    display: inline-block;
    cursor: pointer;
}

#modal-contact .btn-submit-contact {
    width: 100%;
    max-width: 100%;
}

/* CONTACT END */

/* PRIVACY POLICY START */
.privacy-policy,
.tos {
    overflow: visible;
    position: relative;
    font-size: 16px;
    color: var(--text-color-1);
    line-height: 1.8;
    padding: 3rem 0;
}

.privacy-policy .section-title,
.tos .section-title {
    padding-top: 0;
    margin-bottom: 3rem;
}

.privacy-policy b,
.privacy-policy strong,
.tos b,
.tos strong {
    font-weight: 700;
}

.privacy-policy ul,
.tos ul {
    list-style-type: disc;
    padding-left: 1rem;
}

.privacy-policy h2,
.tos h2 {
    font-size: 32px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-policy h5,
.tos h5 {
    font-weight: 600;
}


@media screen and (max-width: 767px) {


    .privacy-policy h2,
    .tos h2 {
        font-size: 24px;
    }
}


.privacy-policy h3,
.tos h3 {
    font-size: 25px;
    margin-bottom: 1rem;
    font-weight: 600;
}


.privacy-policy h3 a,
.tos h3 a {
    font-weight: 600 !important;
    text-decoration: none;
}


.privacy-policy h3 b,
.tos h3 b {
    font-weight: 600 !important;
}


.privacy-policy h4,
.tos h4 {
    font-size: inherit;
    margin-bottom: 1rem;
}

.privacy-policy h2,
.privacy-policy h3,
.privacy-policy h4,
.privacy-policy h5,
.tos h2,
.tos h3,
.tos h4,
.tos h5 {
    color: var(--title-color-1);
    font-family: var(--font-family-1);
    margin-top: 2rem;
}

.privacy-policy a,
.tos a {
    text-decoration: underline;
}

/* PRIVACY POLICY END */


/* COOKIE CONSENT BANNER STRAT */
#cookie-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
}

#cookie-wrapper {
    display: flex;
    justify-content: center;
    align-content: center;
    column-gap: 2rem;
    row-gap: 0.6rem;
    align-items: center;
    padding: 0.48rem 20px;
    background: #007af7;
    background-color: var(--color-white);
    font-size: 13px;
    border-top: 1px solid var(--color-gray-2);
}

#cookie-wrapper a {
    color: var(--color-white);
}

#cookie-wrapper a:hover {
    text-decoration: underline;
}

#cookie-wrapper .cookie-text {
    margin: 0;
}

#cookie-wrapper .agree {
    text-align: center;
}

#cookie-wrapper .btn-accept-cookie {
    background-color: var(--gle-style-1);
    color: var(--color-white);
    border: none;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
    word-break: normal;
}

@media (max-width: 480px) {

    #cookie-wrapper {
        flex-wrap: wrap;
    }

    #cookie-wrapper .cookie-text {
        text-align: center;
    }
}

/* COOKIE CONSENT BANNER END */