body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #000000;
    overflow-x: hidden;
}
/* width */
::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 6px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #2752e7;
    border-radius: 6px;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
ul,
li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
p {
    margin: 0px;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.cursor-pointer {
    cursor: pointer;
}
.text-orrange {
    color: #FAA418;
    font-weight: 700;
}
.page-paddings {
    padding: 100px 0px;
}
.page-title > h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0px;
    font-family: "Poppins", sans-serif;
}
.page-title > h2 > span {
    color: #2752E7;
}
.page-title > p {
    max-width: 970px;
    margin: 20px auto 0px;
    font-weight: 300;
}
.mb-8 {
    margin-bottom: 8px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-15 {
    margin-top: 15px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-40 {
    margin-top: 40px;
}
.btn.btn-primary, 
.btn.btn-secondary {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #2752e7;
    border: 1px solid #2752e7;
    font-family: "Poppins", sans-serif;
    border-radius: 30px;
    padding: 12px 36px;
    display: flex;
    gap: 4px;
    align-items: center;
    outline: 0;
    box-shadow: none;
    text-transform: uppercase;
}
.btn.btn-primary {
    background: linear-gradient(90deg, #468EF9 0%, #2752E7 100%);
    border-color: transparent;
}
.btn.btn-primary[disabled] {
    background-color: #F3F3F3;
    border-color: #ededed;
    color: #000;
    opacity: 1;
    cursor: no-drop;
    pointer-events: inherit;
}
.btn.btn-secondary {
    background-color: transparent;
    border-color: #2752e7;
    color: #2752e7;
}
.btn.btn-secondary.bg-white {
    border-color: #ffffff;
}
.btn.btn-secondary > span {
    background: linear-gradient(111.92deg, #468EF9 0%, #2752E7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.btn.btn-secondary.bg-white > span {
    background: transparent;
    background-clip: inherit;
    -webkit-text-fill-color: inherit;
}
.btn.btn-secondary[disabled] {
    border-color: #F3F3F3;
    color: #707070;
    opacity: 1;
    cursor: no-drop;
    pointer-events: inherit;
}
.btn.btn-secondary.btn-gray {
    color: #707070;
    border-color: #A0A0A0;
    background-color: transparent;
}
.btn.btn-secondary.text-black {
    background-color: #F5F8FE;
    border-color: #e7efff;
}
.btn.btn-primary.btn-red {
    background-color: #C00F0C;
    border-color: #C00F0C;
}
.btn.btn-secondary.btn-red {
    border-color: #C00F0C;
    color: #C00F0C;
}
.btn.btn-primary.btn-green {
    background-color: #267B43;
    border-color: #267B43;
}
.btn.btn-secondary.btn-green {
    border-color: #267B43;
    color: #267B43;
}
.owl-stage {
    display: inline-block;
}
.owl-loaded {
    overflow: hidden;
}
.owl-nav {
    display: none;
}
.owl-dots {
    display: flex
;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.owl-dots > .owl-dot {
    height: 16px;
    width: 16px;
    border: 0px;
    padding: 0px;
    border-radius: 100%;
    background-color: rgb(255 255 255 / 25%);
    margin: 0px;
}
.owl-dots > .owl-dot.active {
    background-color: #ffffff;
}
.owl-item {
    float: left;
}
.form-group {
    position: relative;
}
.form-group > label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}
.form-group > label > .required {
    font-weight: 600;
    color: #ff0000;
}
.form-group .form-control {
    padding: 16px;
    font-size: 16px;
    color: #000;
    background-color: #ffffff;
    border: 1px solid #D9D9D9;
    outline: 0 !important;
    box-shadow: none;
    border-radius: 12px;
}
.form-group .form-control::placeholder {
    color: #B9B9B9;
}
.form-group select.form-control {
    padding-right: 34px !important;
    appearance: none;
    background-image: url(../images/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 9px auto;
}
.form-group .form-control[disabled],
.form-group .form-control[disabled]~span {
    opacity: .5;
}

/* Header */
header {
    padding: 20px 0px;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 99;
    transition: all 0.3s;
}
header.fixed-header {
    background: rgb(255 255 255 / 80%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px 0px;
}
.h-main > .h-left {
    gap: 40px;
}
.logo img {
    max-width: 230px;
}
.h-menu > .navbar .navbar-nav {
    gap: 40px;
}
.h-menu > .navbar .navbar-nav > .nav-item > .nav-link {
    padding: 0px;
    font-size: 16px;
    color: #000000;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s;
}
.h-menu > .navbar .navbar-nav > .nav-item:hover > .nav-link,
.h-menu > .navbar .navbar-nav > .nav-item.active > .nav-link,
.h-menu .dropdown-menu .dropdown-item:hover {
    color: #2752E7;
}
.h-menu > .navbar .navbar-nav > .nav-item > .nav-link.dropdown-toggle::after {
    border: solid #000000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: all 0.3s;
}
.h-menu > .navbar .navbar-nav > .nav-item:hover > .nav-link::after,
.h-menu > .navbar .navbar-nav > .nav-item.active > .nav-link::after {
    border-color: #2752E7;
}
.h-menu .dropdown-menu {
    padding: 15px 15px;
    border: 1px solid #D4D4D4;
    background-color: #fff;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
}
.h-menu .dropdown-menu > .polygon-arrow {
    position: absolute;
    top: -20px;
    left: 12px;
}
.h-menu .dropdown-menu > .polygon-arrow::before {
    content: "";
    height: 2px;
    width: 20px;
    background-color: #fff;
    position: absolute;
    bottom: 2px;
    left: 1px;
}
.h-menu .dropdown-menu .dropdown-item {
    font-size: 16px;
    color: #000000;
    font-family: "Poppins", sans-serif;
    padding: 0px;
    background-color: transparent;
    transition: all 0.3s;
}
.h-menu .dropdown-menu > li {
    margin-bottom: 12px;
}
.h-menu .dropdown-menu > li:last-child {
    margin-bottom: 0px;
}
.h-main > .h-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.ld-media img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 100%;
}
.header__dropdown--profile {
    position: absolute;
    top: 135%;
    right: 0px;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    border-radius: 15px;
    width: 232px;
    max-width: 232px;
    z-index: 99;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.l-dropdown:hover .header__dropdown--profile {
    top: 100%;
    opacity: 1;
    visibility: visible;
}
.submenu__title {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 600;
}
.submenu__email {
    font-size: 14px;
    margin-bottom: 20px;
    color: rgb(0 0 0 / 60%);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.header__dropdown--profile ul {
    padding: 0px;
    margin: 0px;
}
.submenu__nav li {
    margin-bottom: 24px;
}
.submenu__nav li:last-child {
    margin-bottom: 0px;
}
.submenu__nav a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 15px;
    font-weight: 450;
    line-height: 20px;
    color: rgba(51, 51, 51, 0.7);
    transition: transform .2s cubic-bezier(.4,0,.2,1), color .2s cubic-bezier(.4,0,.2,1);
}
.submenu__nav a:hover {
    color: #2752E7;
    transform: translateX(3px);
}
.submenu__nav a:hover path {
    stroke: #2752E7;
}
.submenu__nav svg {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    -webkit-transition: fill .2s;
    transition: fill .2s;
}
.submenu__nav a path {
    stroke: rgba(51, 51, 51, 0.7);
}
.submenu__group {
    margin-top: 24px;
}
.submenu__btn {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 32px;
    padding: 0 16px;
    border: 2px solid #356AD1;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 450;
    line-height: 24px;
    color: #356AD1;
    transition: all 0.3s;
}
.submenu__btn:hover {
    border-color: #000000;
    color: #000000;
}
/* Header */
/* Hero */
.hero {
    background: linear-gradient(0deg, rgba(0, 122, 255, 0.3) 0%, rgba(0, 122, 255, 0) 50%);
    padding: 170px 0px 233px;
    border-radius: 0px 0px 90px 90px;
}
.hero .hero-intro {
    margin-top: 80px;
}
.hero-intro > span {
    background-color: #000000;
    border-radius: 40px;
    padding: 8px 16px;
    display: inline-block;
    line-height: normal;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}
.hero-intro > h1 {
    font-size: 64px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0px;
}
.hero-intro > h1 > span {
    color: #2752E7;
}
.hero-intro > p {
    font-size: 20px;
    font-weight: 300;
    max-width: 660px;
    margin: 40px 0px;
}
.hero-intro > .hero-btn {
    gap: 20px;
}
.hero-media {
    position: absolute;
    right: -150px;
    bottom: -233px;
}
.hero-media > img {
    max-width: 639px;
}
/* Hero */

.why-card {
    padding: 24px;
    background: #F5F5F5;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    position: relative;
}
.why-card > .d-flex {
    gap: 36px;
}
.why-ico > svg {
    height: 72px;
    width: auto;
}
.why-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}


.how-it-works-area {
    padding-top: 72px;
}
.works-card {
    background: rgba(185, 218, 255, 0.2);
    border: 1px solid #B9DAFF;
    border-radius: 20px;
    padding: 45px 120px 0px 160px;
}
.works-media {
    width: 333px;
}
.works-intro {
    width: calc(100% - 333px);
}
.works-list {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 12px 12px;
    position: relative;
    width: 526px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-bottom: 25px;
}
.works-list:last-child {
    margin-bottom: 0px;
}
.works-list:nth-child(2) {
    margin-left: 97px;
}
.works-list:nth-child(3) {
    margin-left: 230px;
}
.works-list > span {
    font-size: 60px;
    color: #ffffff;
    width: 110px;
    height: 110px;
    background: linear-gradient(134.76deg, #4F16FF 4.15%, #2BADFF 96.2%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.works-text > h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}


.features-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.features-card > div {
    width: 50%;
}
.features-card .features-media {
    background: linear-gradient(270deg, rgba(0, 122, 255, 0.3) 0%, rgba(0, 122, 255, 0) 100%);
    border-radius: 0px 80px 80px 0px;
    padding-top: 24px;
}
.features-card.features-right .features-media {
    order: 2;
    background: linear-gradient(270deg, rgba(0, 122, 255, 0) 0%, rgba(0, 122, 255, 0.3) 100%);
    border-radius: 80px 0px 0px 80px;
}
.features-card > .features-intro {
    padding: 100px 100px;
}
.features-intro > h2 {
    font-size: 48px;
    font-weight: 600;
    margin: 0px;
}
.features-intro > h2 > span {
    color: #2752E7;
}
.features-intro ul > li {
    padding-left: 56px;
    padding-top: 4px;
    margin-bottom: 15px;
}
.features-intro ul > li:last-child {
    margin-bottom: 0px;
}
.features-intro ul > li > h3 {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.features-card > .features-intro > p {
    font-weight: 300;
    margin: 24px 0px;
}
.features-intro ul > li > .features-ico {
    position: absolute;
    top: 0px;
    left: 0px;
}
.features-intro ul > li > .features-ico > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
.features-intro ul > li > p {
    font-size: 14px;
    font-weight: 300;
}


.faq-area .faq-box {
    max-width: 1170px;
    margin: 30px auto 0px;
}
.faq-box-list {
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}
.faq-box-list:last-child {
    margin-bottom: 0px;
}
.faq-box-list > a {
    color: #707070;
    font-size: 20px;
    font-weight: 500;
    padding-right: 20px;
    display: block;
    position: relative;
}
.faq-box-list > a.active {
    color: #2854E8;
}
.faq-box-list > a > svg {
    position: absolute;
    top: 13px;
    right: 0px;
    transition: all 0.3s;
}
.faq-box-list > a.active > svg {
    transform: rotate(-180deg);
}
.faq-box-list > .content {
    margin-top: 15px;
    display: none;
}
.faq-box-list > .content > p {
    color: #606267;
    font-weight: 400;
}
.faq-box-list > .content > ul {
    padding-left: 20px;
}
.faq-box-list > .content > ul > li {
    list-style: disc;
    margin-bottom: 6px;
    color: #606267;
}
.faq-box-list > .content > ul > li:last-child {
    margin-bottom: 0px;
}
.faq-box-list > .content > ul > li > a {
    font-weight: 500;
    color: #2854E8;
}


.testimonial-area {
    background-color: #017AFF;
}
.testimonial-area .page-title > h2 > span {
    color: #ffffff;
}
.testimonial-area .page-title > p {
    color: #ffffff;
}
.tes-item {
    background-color: #FFFFFF;
    border-radius: 16px;
    display: flex;
    align-items: center;
}
.tes-item > .tes-intro {
    padding: 45px 40px;
    width: calc(100% - 245px);
}
.tes-intro > p {
    color: #525252;
    font-style: italic;
    margin: 15px 0px;
}
.tes-intro > h3 {
    text-transform: uppercase;
    font-size: 16px;
    margin: 0px;
}


.download-app {
    display: flex;
    align-items: center;
}
.app-intro .page-title > p {
    margin: 20px 0px 0px;
}
.download-app .app-intro {
    border: 1px solid #000000;
    border-right: 0px;
    border-radius: 40px 0px 0px 40px;
    padding: 90px 90px;
    width: calc(100% - 410px);
}
.app-icon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.app-intro > ul {
    margin: 25px 0px;
}
.app-intro > ul > li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 32px;
}
.app-intro > ul > li:last-child {
    margin-bottom: 0px;
}
.app-intro > ul > li > svg {
    position: absolute;
    top: 1px;
    left: 0px;
}
.app-intro > ul > li > span {
    color: #2854E8;
    font-weight: 600;
}
.download-app > .app-media {
    width: 410px;
    border: 1px solid #000000;
    padding: 40px 40px;
    border-radius: 40px;
}


.page-content {
    padding-top: 188px;
}
.talk-main {
    background: #F1F8FF;
    border: 1px solid #D9D9D9;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
}
.talk-main > .talk-card {
    width: 33.33%;
    padding: 32px 32px;
    border-right: 1px solid #D9D9D9;
    position: relative;
}
.talk-main > .talk-card:last-child {
    border-right: 0px;
}
.talk-card > .talk-ico {
    width: 64px;
    height: 64px;
    background: linear-gradient(134.76deg, #4F16FF 4.15%, #2BADFF 96.2%);
    box-shadow: -8px 8px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 0px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    right: 0px;
}
.talk-card > h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}
.talk-card > a {
    font-size: 20px;
    color: #000000;
}
.t-social {
    display: flex;
    align-items: center;
    gap: 30px;
}


.support-area > .container {
    max-width: 930px;
}
.support-area .btn.btn-primary {
    padding: 16px 16px;
}


.legal__content > h2 {
    font-size: 22px;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 600;
}
.legal__content > p {
    font-size: 16px;
    margin-bottom: 8px;
}
.legal__content > p.mb-25 {
    margin-bottom: 25px;
}
.legal__content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}
.legal__content ul li {
    font-size: 16px;
    list-style: disc;
    margin-bottom: 6px;
}
.legal__content ul li:last-child {
    margin-bottom: 0px;
}
.legal__content > ul > li > ul {
    margin-top: 8px;
}
.legal__content > ul > li > ul > li {
    list-style: circle;
}
.legal__content > p > a,
.legal__content ul li > a {
    font-weight: 600;
    color: #2752e7;
}


.footer-top > .container {
    max-width: 1570px;
}
.footer-top .f-bg {
    padding: 80px;
    background: #FFFFFF;
    border: 1px solid #D4D4D4;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.08);
    border-radius: 40px;
}
.f-logo img {
    max-width: 233px;
}
.f-info > p {
    font-size: 22px;
    font-style: italic;
    max-width: 613px;
}
.f-list > h3 {
    font-size: 14px;
    color: #2752E7;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.f-list > ul > li {
    margin-bottom: 12px;
}
.f-list > ul > li:last-child {
    margin-bottom: 0px;
}
.f-list > ul > li > a {
    color: #000;
    transition: all 0.3s;
}
.f-list > ul > li > a:hover {
    color: #2752E7;
}
.footer-top .f-right {
    display: flex;
    gap: 30px;
}
.f-right > .f-list {
    width: 50%;
}
.f-bottom {
    padding: 40px 0px;
}
.f-copyright > p {
    font-size: 20px;
}
.f-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.f-social > a path {
    transition: all 0.3s;
}
.f-social > a:hover path {
    fill: #017AFF;
}

.toast .btn-close {
  background-size: 60%;
}
.notification {
  color: #fff;
  padding: 20px;
  text-align: center;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  width: 400px;
  max-width: 400px;
  font-size: 16px;
  transition: all 0.5s;
  z-index: 9999;
}
.notification.is-success {
  background-color: #4aa155;
}
.notification.is-warning {
  background-color: #df944a;
}
.notification.is-error {
  background-color: #c74244;
}
.notification.is-info {
  background-color: #3eaac5;
}

/* Maintenance CSS */
.maintenance-sec {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
}
.maintenance-info > .maintenance-media {
    margin-bottom: 40px;
}
.maintenance-info > h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}
.maintenance-info > p {
    font-size: 18px;
    color: #717171;
    max-width: 600px;
    margin: 0px auto;
}
.maintenance-info > p.n-help {
    color: #000000;
    margin-top: 50px;
}
.maintenance-info > p.n-help > a {
    color: #244AD1;
    text-decoration: underline;
}
/* Main CSS */