@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --primary-color: #101828;
  --secondary-color: #f0b100;
  --tertiary-color: #030712;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-inter: Inter, sans-serif;
}

/* Base styles and global variables */
body {
  font-family: var(--font-inter);
  color: var(--white-color);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--primary-color);
  font-weight: 400;
}

a,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white-color);
  margin-top: 0;
  line-height: 1.2;
  font-weight: 400;
}

.text-black {
  color: var(--black-color);
}

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

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

.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

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

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

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

.bg-white {
  background-color: var(--white-color);
}

.bg-light-gray {
  background-color: #1e2939 !important;
}

header.header-container {
  background-color: #1e2939;
}
header.header-container .top-header {
  background-color: #070f1d;
}

#chat-widget-container {
  bottom: -10px !important;
}

.global-go-up-button {
  background-color: #f0b100;
  position: fixed;
  bottom: 10px;
  right: 50px;
  width: 45px;
  height: 45px;
  border-radius: 15px;
  z-index: 100;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0px 10px 30px rgba(1, 28, 42, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.global-go-up-button:hover {
  transform: translateY(-2px);
}
.global-go-up-button:active {
  transform: translateY(0);
}
.global-go-up-button:focus-visible {
  outline: 3px solid rgba(253, 83, 47, 0.5);
  outline-offset: 3px;
}
@media (max-width: 575px) {
  .global-go-up-button {
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

.global-go-up-button.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-go-up-button::after {
  display: block;
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(/assets/images/png/arrow-right.png);
  top: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  transform: translateY(-50%) rotate(-90deg);
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .global-go-up-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
}

/* FOR GOOGLE TRANSLATE CSS START HERE */
body {
  top: 0 !important;
  background-color: var(--primary-color);
}

body .goog-text-highlight {
  background: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
}

.goog-te-gadget {
  display: block !important;
}

#google_translate_element,
select.goog-te-combo {
  position: fixed;
  z-index: 999;
  top: -999px;
}

.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-tooltip {
  display: none !important;
}

font,
.goog-text-highlight {
  background-color: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
}

#goog-gt-tt,
.goog-te-combo,
.skiptranslate {
  display: none !important;
}

#teams-dropdown-menu span.icon .fa {
  display: inline-block;
  color: #ffffff;
}

#teams-dropdown-menu span.icon {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
}

#teams-dropdown-menu span.icon i {
  transition: transform 0.2s ease;
  transform-origin: center;
}

.loader {
  z-index: 999999;
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  left: 0;
}

#teams-dropdown-menu ul li {
  text-transform: capitalize;
}

#teams-dropdown-menu {
  border-radius: 10px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  width: 60px;
  display: flex;
  align-items: center;
  height: 36px;
  padding: 6px;
  margin-bottom: 0px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

#teams-dropdown-menu * {
  cursor: pointer;
}

#teams-dropdown-menu .flag-text {
  font-size: 0px;
  color: #000000;
}

#teams-dropdown-menu ul {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(10, 10, 10, 0.0509803922), 0 0 10px 0 rgba(10, 10, 10, 0.0784313725);
  display: none;
  left: 0;
  overflow: hidden;
  padding: 10px 0;
  position: absolute;
  top: 50px;
  width: 135px;
  z-index: 99;
  padding: 0;
  left: unset !important;
  right: 0;
}

img.img-fluid.flg {
  margin-right: 10px;
}

#teams-dropdown-menu ul.active {
  display: block;
  animation: slidedown 0.2s;
  top: 50px;
}

#teams-dropdown-menu ul.active ~ span.icon i {
  transform: rotate(180deg);
}

@keyframes slidedown {
  from {
    margin-top: -25px;
    opacity: 0;
  }
  to {
    margin-top: 0;
    opacity: 1;
  }
}
#teams-dropdown-menu ul li {
  padding: 10px 15px;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.5px;
  height: auto !important;
  display: flex;
  margin-left: 0;
  float: none;
}

#teams-dropdown-menu ul li:hover {
  color: #000 !important;
  background-color: #f0f0f0;
}

#teams-dropdown-menu span.icon:before {
  display: none;
  content: none;
}

@media screen and (max-width: 1199px) {
  #teams-dropdown-menu {
    height: 32px;
    position: relative !important;
    cursor: pointer !important;
    width: 60px !important;
    display: flex !important;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
  }
  #teams-dropdown-menu .flag-text {
    font-size: 0px;
    color: #000000;
    margin-right: 10px;
  }
  #teams-dropdown-menu .submenu-button {
    display: none;
  }
  #teams-dropdown-menu span.icon i {
    color: #000;
  }
  .header-main #teams-dropdown-menu {
    margin-left: auto !important;
  }
  .header.sticky header nav.menu.open ul {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  #teams-dropdown-menu .flag-text {
    margin-right: 0;
  }
}
/* FOR GOOGLE TRANSLATE CSS END'S HERE */
/* TABLE CSS START HERE */
table tr th {
  border: 1px solid #101828 !important;
  color: #fff !important;
  font-size: 16px;
  text-align: center;
  background-color: #101828 !important;
}
@media (min-width: 1024px) {
  table tr th {
    padding: 16px !important;
    font-size: 24px;
  }
}
table tr td {
  font-weight: 400;
  text-align: center;
  border: 1px solid #a7a7a7;
}
@media (min-width: 1024px) {
  table tr td {
    padding: 16px !important;
  }
}

/* TABLE CSS END HERE */
/* fade-in-scroll CSS START HERE */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* fade-in-scroll CSS END HERE */
/* section-container CSS START HERE */
.section-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  scroll-margin-top: 94px;
}
@media (min-width: 1200px) {
  .section-container {
    scroll-margin-top: 69px;
  }
}

#pricingplans {
  scroll-margin-top: 94px;
}
@media (min-width: 1200px) {
  #pricingplans {
    scroll-margin-top: 69px;
  }
}

/* section-container CSS END HERE */
/* font-weight CSS START HERE */
.font-normal {
  font-weight: 400;
}

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

.font-bold {
  font-weight: 700;
}

/* font-weight CSS END HERE */
/* font-size CSS START HERE */
.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-base {
  font-size: 1rem;
  line-height: 1.6;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75;
}

/* font-size CSS END HERE */
/* background-color CSS START HERE */
.bg-primary {
  background-color: var(--primary-color) !important;
}

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

.bg-white {
  background-color: var(--white-color);
}

/* background-color CSS START HERE */
.btn {
  padding: 8px;
  font-weight: 600;
}
.btn.btn-secondary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}
.btn.btn-white {
  background-color: var(--white-color) !important;
  border-color: var(--white-color) !important;
  color: var(--primary-color) !important;
}

.text-muted {
  color: #99a1af !important;
}

.fit-content {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.icon-container {
  border-radius: 14px;
  background-color: #f0b100;
  padding: 1rem;
}

.form-container {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 650px;
  width: 100%;
}
@media (min-width: 1024px) {
  .form-container {
    padding: 40px;
  }
}

.form-control-underline {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  border-radius: 0;
  padding: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.568627451);
  width: 100%;
}

.form-control-underline:focus-visible,
.form-control-underline:focus {
  outline: none;
}

.form-control,
.form-control:focus {
  background-color: #f5f5f5;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 15px;
  color: #868686;
}

.form-control-underline::-moz-placeholder, .form-control::-moz-placeholder {
  color: #868686;
}

.form-control-underline::placeholder,
.form-control::placeholder {
  color: #868686;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(245, 245, 245, 0.3);
  background-color: #f5f5f5;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.password-input-wrapper {
  position: relative;
}
.password-input-wrapper .form-control {
  padding-right: 3rem;
}
.password-input-wrapper .password-toggle-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 1rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.password-input-wrapper .password-toggle-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.password-input-wrapper .password-toggle-btn:focus {
  outline: none;
  color: #101828;
}
.password-input-wrapper .password-toggle-btn i {
  font-size: 1.1rem;
  color: #ffffff;
}

.auth-hero-container {
  background-image: url(/assets/images/webp/auth-hero.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 593px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.auth-hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(30, 41, 57, 0.5));
  z-index: 1;
}
@media (min-width: 1024px) {
  .auth-hero-container {
    padding: 24px;
    height: 932px;
  }
}
.auth-hero-container .content {
  z-index: 2;
}

/* banner */
.banner {
  width: 100%;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-color: #101828;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .banner {
    height: 192px;
  }
}
.banner.faq-bg {
  height: 301px;
  background-image: url("/assets/images/webp/faq.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.banner.faq-bg > * {
  position: relative;
  z-index: 1;
}
.banner.faq-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(16, 24, 40, 0.7);
}
@media (min-width: 1024px) {
  .banner.faq-bg {
    background-position: center 90%;
  }
}

.main-wrapper.hero {
  background-color: transparent;
  background-image: url(/assets/images/webp/hero-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
}
.main-wrapper.hero .secondary-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

#services.section-container .service-container {
  overflow: hidden;
  border-radius: 16px;
  background-color: #1e2939;
}
#services.section-container .service-container img {
  width: 100%;
}
#services.section-container .service-container .service-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  #services.section-container .service-container .service-body {
    padding: 2rem;
  }
}

#about-us.section-container .about-us-hero-container {
  background-image: url(/assets/images/webp/about-us-hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 1rem;
  height: 346px;
  width: 100%;
  position: relative;
}
#about-us.section-container .copy-text {
  position: absolute;
  bottom: 0;
  padding: 1rem;
  text-align: center;
  width: 320px;
  transform: translate(1rem, -1rem);
}
@media (min-width: 1024px) {
  #about-us.section-container .copy-text {
    transform: translate(-25px, 30px);
  }
}

.pricing-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.nav-tabs {
  border: none;
  margin-bottom: 30px;
}

.nav-item.first .nav-link {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.nav-item.last .nav-link {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.nav-tabs .nav-link {
  background-color: #1a1f3a;
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
body:not(en_wrapper) .nav-tabs .nav-link {
  padding: 8px;
}
@media (min-width: 1024px) {
  body:not(en_wrapper) .nav-tabs .nav-link {
    padding: 15px 40px;
  }
}
@media (min-width: 1024px) {
  .nav-tabs .nav-link {
    padding: 15px 40px;
    font-size: 1.1rem;
  }
}
.nav-tabs .nav-link.professional {
  position: relative;
}

.nav-tabs .nav-link:hover {
  background-color: #252b4a;
}

.nav-tabs .nav-link.active {
  background-color: #f5a623;
  color: #0a0e27;
}

.popular-badge {
  background-color: #1a1f3a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #f5a623;
  color: #f5a623;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
body:not(en_wrapper) .popular-badge {
  transform: translate(-50%, -80%);
}

.pricing-card {
  background: linear-gradient(135deg, #1a1f3a 0%, #0f1329 100%);
  border: 1px solid #2a3150;
  border-radius: 16px;
  padding: 24px;
}
@media (min-width: 1024px) {
  .pricing-card {
    padding: 50px;
  }
}

.plan-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.price {
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

.price-period {
  color: #99a1af;
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 10px;
}

.plan-description {
  color: #99a1af;
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 40px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.features-list li {
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 0;
  display: flex;
  align-items: center;
}

.features-list li::before {
  content: "✓";
  color: #f5a623;
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 15px;
}

.btn-signup {
  background-color: #f5a623;
  color: #0a0e27;
  border: none;
  border-radius: 8px;
  padding: 15px 60px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.btn-signup:hover {
  background-color: #e09615;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(245, 166, 35, 0.4);
}

#contact-us.section-container .contact-us-container {
  padding: 1rem;
  border-radius: 1rem;
}
@media (min-width: 1024px) {
  #contact-us.section-container .contact-us-container {
    padding: 2rem;
  }
}
#contact-us.section-container .contact-us-container .form-control {
  background-color: #101828;
  border: 1px solid #364153;
  color: #364153;
}

.form-label {
  color: #d1d5dc;
}

/*  POLICY PAGE CSS START HERE */
.policy-content {
  position: relative;
  /* Custom to this site */
  background-color: #ffffff;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .policy-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.policy-content .terms-content {
  font-size: 16px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 400;
}
.policy-content .terms-content span {
  font-size: 16px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 400;
}
@media (max-width: 375px) {
  .policy-content .terms-content {
    font-size: 14px;
  }
}
.policy-content .terms-content h1,
.policy-content .terms-content h2 {
  color: #101828;
  font-style: normal;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.3;
  margin: 0;
  padding: 50px 0 15px 0;
}
@media (max-width: 1199px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    padding: 40px 0 15px 0;
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    padding: 30px 0 10px 0;
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    font-size: 18px;
    padding: 20px 0 10px 0;
  }
}
.policy-content .terms-content h6 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: rgba(27, 37, 52, 0.65);
  line-height: 1.3;
}
.policy-content .terms-content b {
  font-size: 18px;
  line-height: 1.3;
  color: #101828;
}
@media (max-width: 575px) {
  .policy-content .terms-content b {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .policy-content .terms-content b {
    font-size: 15px;
  }
}
.policy-content .terms-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #101828;
  margin-bottom: 15px;
}
.policy-content .terms-content p.version {
  font-size: 14px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.policy-content .terms-content a {
  color: #101828;
  transition: 0.3s all;
  font-weight: 500;
}
.policy-content .terms-content a:hover {
  color: #101828;
  transition: 0.3s all;
}
.policy-content .print {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  right: 0;
  padding: 20px 14px;
  writing-mode: vertical-rl;
  color: #101828;
  background: #f0b100;
  box-shadow: 0px 4px 60px rgba(30, 92, 255, 0.2);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  transform: rotate(-180deg);
  transition: 0.3s all;
  border-radius: 0px 12px 12px 0px;
  position: sticky;
  width: -moz-max-content;
  width: max-content;
  float: right;
  top: 140px;
  z-index: 2;
}
@media (max-width: 1399px) {
  .policy-content .print {
    padding: 20px 10px;
  }
}
@media (max-width: 991px) {
  .policy-content .print {
    writing-mode: unset;
    transform: none;
    border-radius: 12px 0 0 12px;
    padding: 10px;
    font-size: 0;
    transition: 0.3s all;
  }
}
@media (max-width: 575px) {
  .policy-content .print {
    padding: 8px;
  }
}
.policy-content .print img {
  padding-top: 10px;
}
@media (max-width: 991px) {
  .policy-content .print img {
    padding: 0;
    transform: rotate(90deg);
  }
}

.mb-self h2 {
  margin-bottom: 10px;
}

/*  POLICY PAGE CSS END'S HERE */
.faq-accordion .accordion-item {
  border: 1px solid #1f2939;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  color: #f0b100;
  font-weight: 500;
  font-size: 16px;
  padding: 20px 24px;
  background-color: #1f2939;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: #f0b100;
  background-color: #1f2939;
  box-shadow: none;
}
.faq-accordion .accordion-button:hover {
  background-color: #202a3b;
}
.faq-accordion .accordion-button:focus {
  border-color: #1f2939;
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}
.faq-accordion .accordion-body {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  padding: 0 24px 20px 24px;
  background-color: #1f2939;
}
.faq-accordion .accordion-collapse {
  border: none;
}/*# sourceMappingURL=main.css.map */