/*#magnifying-glass {
  animation: magnifying-glass 3s infinite ease-in-out;
  transform-origin: bottom left;
  transform-style: preserve-3D;
  transform-box: fill-box;
  animation-direction: alternate;
}

#hands {
  animation: hands 1.5s infinite ease-in-out;
  transform-origin: top right;
  animation-direction: alternate;
  transform-box: fill-box;
}

#engine {
  animation: engine .7s infinite ease-in-out;
  transform-origin: top center;
  transform-style: preserve-3D;
  transform-box: fill-box;
  animation-direction: alternate;
  transform: translate(-132px, -117px);
}

#cloud-1 {
  animation: cloud-1 5s infinite linear;
  transform-origin: center;
  transform-style: preserve-3D;
  transform-box: fill-box;
  transform: translate(-337px, -180px)
}

#cloud-2 {
  animation: cloud-2 8s infinite linear;
  transform-origin: center;
  transform-style: preserve-3D;
  transform-box: fill-box;
  transform: translate(-283px, -193px);
}

#cloud-3 {
  animation: cloud-3 8s infinite linear;
  transform-origin: center;
  transform-style: preserve-3D;
  animation-direction: reverse;
  transform-box: fill-box;
  transform: translate(-300px, -193px);
}

#cloud-4 {
  animation: cloud-4 5s infinite linear;
  transform-origin: center;
  transform-style: preserve-3D;
  animation-direction: reverse;
  transform-box: fill-box;
  transform: translate(-277px, -193px);
}
*/
#search-box {
  animation: search-box 18s 4s infinite ease-in-out;
  transform-origin: right right; }

#search-text {
  font-family: sans-serif;
  transform: translate(-353px, -86px); }

#search-text-result-1, #search-text-result-2, #search-text-result-3 {
  font-family: sans-serif;
  opacity: 0;
  animation: search-box-result 18s 4s infinite ease-in-out; }

.search-text-bold {
  font-weight: bold; }

#search-text-result-1 {
  transform: translate(-353px, 45px); }

#search-text-result-2 {
  transform: translate(-353px, 75px); }

#search-text-result-3 {
  transform: translate(-353px, 105px); }

#click {
  animation: cursor 18s infinite ease;
  transform: translate(600px, 400px); }

#highlight {
  transform: translate(-372px, 39px);
  opacity: 0;
  animation: highlight 18s infinite ease; }

/*Keyframes*/
@keyframes search-box {
  0% {
    height: 46px; }
  15% {
    height: 46px; }
  20%, 80% {
    height: 140px;
    fill: #e6e6e6; }
  85% {
    height: 46px;
    fill: #cbe2ff; }
  100% {
    height: 46px; } }

@keyframes search-box-result {
  0% {
    opacity: 0; }
  19% {
    opacity: 0; }
  20%, 80% {
    opacity: 1; }
  81% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes cursor {
  0% {
    transform: translate(600px, 400px); }
  35% {
    transform: translate(600px, 400px); }
  40%, 50% {
    transform: translate(300px, 250px); }
  55% {
    transform: translate(400px, 400px); }
  100% {
    transform: translate(600px, 400px); } }

@keyframes highlight {
  0%, 42% {
    opacity: 0; }
  44% {
    opacity: 1; }
  80% {
    opacity: 1; }
  83%, 100% {
    opacity: 0; } }

/*@keyframes cloud-1 {
  from {
    transform: translate(-337px, -180px) rotate(0deg);
  }
  to {
    transform: translate(-337px, -180px) rotate(360deg);
  }
}

@keyframes cloud-2 {
  from {
    transform: translate(-300px, -180px) rotate(0deg);
  }
  to {
    transform: translate(-300px, -180px) rotate(360deg);
  }
}

@keyframes cloud-3 {
  from {
    transform: translate(-320px, -180px) rotate(0deg);
  }
  to {
    transform: translate(-320px, -180px) rotate(360deg);
  }
}

@keyframes cloud-4 {
  from {
    transform: translate(-277px, -180px) rotate(0deg);
  }
  to {
    transform: translate(-277px, -180px) rotate(360deg);
  }
}

@keyframes magnifying-glass {
  from {
    transform:rotate(0deg);
  }
  to {
    transform:rotate(10deg);
  }
}

@keyframes hands {
  from {
    transform: translate(234px, -108px) rotate(0deg);
  }
  to {
    transform: translate(232px,-105px) rotate(3deg);
  }
}

@keyframes engine {
  0% {
    transform: translate(-132px, -117px) scale(0.9);
  }
  30% {
    transform: translate(-132px, -117px) scale(0.7);
  }
  50% {
    transform: translate(-132px, -117px) scale(0.9);
  }
  70% {
    transform: translate(-132px, -117px) scale(0.8);
  }
  100% {
    transform: translate(-132px, -117px) scale(0.9);
  }
}
*/
.primary-button {
  background-color: #0C57C0 !important;
  color: #ffffff !important;
  position: relative;
  outline: none;
  text-decoration: none;
  border-radius: 100px;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  padding: 5px 50px;
  cursor: pointer;
  opacity: 1;
  border: none;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(12, 87, 192, 0.4);
  -moz-box-shadow: 0px 10px 15px 0px rgba(12, 87, 192, 0.4);
  box-shadow: 0px 10px 15px 0px rgba(12, 87, 192, 0.4);
  transition: all 0.3s ease-in-out;
  top: 0; }
  .primary-button:hover {
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(12, 87, 192, 0.2);
    -moz-box-shadow: 0px 10px 20px 0px rgba(12, 87, 192, 0.2);
    box-shadow: 0px 10px 20px 0px rgba(12, 87, 192, 0.2);
    top: -5px; }
  .primary-button:focus {
    -webkit-box-shadow: 0px 10px 15px 0px rgba(12, 87, 192, 0.4);
    -moz-box-shadow: 0px 10px 15px 0px rgba(12, 87, 192, 0.4);
    box-shadow: 0px 10px 15px 0px rgba(12, 87, 192, 0.4);
    top: -3px; }
  .primary-button span {
    color: #fff; }
    .primary-button span:hover {
      text-decoration: none; }
  .primary-button:hover {
    animation: rotate 0.7s ease-in-out both;
    text-decoration: none; }
    .primary-button:hover span {
      animation: rotate 0.7s ease-in-out both; }
  .primary-button:focus {
    outline: none;
    border: none; }

.secondary-button {
  background-color: #fff !important;
  position: relative;
  outline: none;
  text-decoration: none;
  border-radius: 100px;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  padding: 5px 50px;
  cursor: pointer;
  opacity: 1;
  border: none;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(13, 65, 175, 0.3);
  -moz-box-shadow: 0px 10px 15px 0px rgba(13, 65, 175, 0.3);
  box-shadow: 0px 10px 15px 0px rgba(13, 65, 175, 0.3);
  transition: all 0.3s ease-in-out;
  top: 0; }
  .secondary-button:hover {
    transition: all 0.3s ease-in-out;
    top: -5px;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(13, 65, 175, 0.2);
    -moz-box-shadow: 0px 10px 20px 0px rgba(13, 65, 175, 0.2);
    box-shadow: 0px 10px 20px 0px rgba(13, 65, 175, 0.2); }
  .secondary-button span {
    color: #0D41AF !important; }
    .secondary-button span:hover {
      text-decoration: none; }
  .secondary-button:hover {
    animation: rotate 0.7s ease-in-out both;
    text-decoration: none; }
    .secondary-button:hover span {
      animation: rotate 0.7s ease-in-out both; }
  .secondary-button:focus {
    outline: none;
    border: none; }

.toTop {
  display: none; }

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 2010; }
  .to-top-btn {
    padding: 12px 21px;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
    transition: all .3s ease; }
    .to-top-btn:hover {
      background-color: #e6e6e6;
      cursor: pointer; }
  .to-top .up {
    width: 20px;
    height: 35px; }

/*
@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes storm {
  0% {
    transform: translate3d( 0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d( 4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d( -3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d( 2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d( 0, 0, 0) translateZ(0);
  }
}
*/
.header-logo {
  width: 100%;
  height: 47px; }
  @media (max-width: 767px) {
    .header-logo {
      width: 70%; } }

.navbar {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px !important; }
  .navbar :hover {
    color: #fff !important; }
  .navbar ul li {
    padding: 0px 0px;
    margin: 0px 5px;
    color: #fff; }
    .navbar ul li a {
      color: #fff; }

.navbar-light :hover {
  color: #000 !important; }

.nav-item {
  border-bottom: 1px solid transparent; }
  .nav-item:not(:last-child):hover {
    border-bottom: 2px solid #fff; }

.navbar-dark .navbar-nav .nav-link {
  color: white; }

.navbar-light .navbar-nav .nav-link {
  color: #444 !important; }

.navbar-light .navbar-nav .nav-item:not(:last-child):hover {
  border-bottom: 2px solid #444; }

.active {
  border-bottom: 2px solid #fff; }

.active-dark {
  border-bottom: 2px solid #333333; }

.nav-bg {
  transition: all .1s ease;
  background-color: white;
  border-bottom: 1px solid #000000; }
  .nav-bg-white {
    background-color: #fff; }
  .nav-bg .btn-primary:hover {
    color: #fff !important; }
  .nav-bg .btn-secondary {
    border: none !important; }
  .nav-bg .btn-secondary:hover {
    background-color: red !important; }

@media (max-width: 991px) {
  .header-logo {
    width: 85%;
    margin-top: 10px; } }

.menu-container {
  margin-top: 30px;
  overflow: scroll;
  height: 82%; }
  .menu-container::-webkit-scrollbar {
    display: none; }
  .menu-container .mobile-item {
    list-style-type: none;
    text-decoration: none;
    font-size: 30px;
    margin-bottom: 10px; }
    .menu-container .mobile-item a {
      color: #212529; }
  .menu-container .mobile-login-signup {
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 0;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #fff; }
    .menu-container .mobile-login-signup .btn-signup {
      padding: 10px;
      border-radius: 40px;
      background-color: #007bff;
      border: 1px solid #206891;
      color: #fff;
      width: 100%; }

.btn-mobile {
  background-color: transparent;
  border: none;
  padding: 10px;
  width: 20px;
  height: 20px;
  position: fixed;
  right: 95px;
  top: 12px;
  z-index: 5003; }
  @media (min-width: 992px) {
    .btn-mobile {
      display: none; } }

#nav-icon1 {
  width: 50px;
  height: 45px;
  position: relative;
  left: 20px;
  margin: auto;
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer; }

:focus {
  outline: none !important; }

#nav-icon1:focus, #nav-icon1:hover, #nav-icon1:active, #nav-icon1:visited {
  outline: none !important; }

.open:focus, .open:hover, .open:active, .open:visited {
  outline: none !important; }

#nav-icon1 span {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 9px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out; }

#nav-icon1 span:nth-child(1) {
  top: 0; }

#nav-icon1 span:nth-child(2) {
  top: 18px; }

#nav-icon1 span:nth-child(3) {
  top: 36px; }

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -o-transform: rotate(135deg);
  transform: rotate(135deg); }

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px; }

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg); }

#nav-icon1.open span {
  background-color: #4A4B4D; }

.mobile-navigation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  padding: 30px;
  background-color: #fff;
  width: 100%;
  height: 100%; }

.mobile-light span {
  background: #fff !important;
  z-index: 3; }

.mobile-dark span {
  background: #333333 !important;
  z-index: 3; }

a.dropdown-item-custom {
  color: #333 !important; }
  a.dropdown-item-custom:hover {
    color: #333 !important; }

img.language-icon {
  width: 25px;
  vertical-align: middle; }

.dropdown-item:focus, .dropdown-item:hover {
  background-color: #c1c1c1; }

.mobile-dropdown {
  background-color: #e9ecef;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 20px;
  margin-top: 10px; }

.footer {
  background-color: #FBFBFB;
  padding-bottom: 80px; }
  .footer a:hover {
    color: #000; }
  .footer-section {
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .footer-section-1 {
        margin-bottom: 20px; } }
    @media (max-width: 767px) {
      .footer-section-2 {
        margin-bottom: 20px; } }
  @media (max-width: 767px) {
    .footer {
      text-align: center; } }
  @media (max-width: 767px) {
    .footer .primary-button {
      margin: 0 auto; } }
  .footer ul {
    font-family: 'Public Sans', sans-serif;
    color: #333333;
    margin: 0;
    padding: 0; }
    @media (max-width: 767px) {
      .footer ul {
        text-align: center; } }
    .footer ul li {
      list-style-type: none; }

.footer-about-us {
  font-size: 16px; }

.border-divider {
  border-bottom: 4px solid #0D8BEC;
  display: block;
  margin: 5px auto 20px auto; }
  .border-divider-1 {
    width: 390px; }
    @media (max-width: 991px) {
      .border-divider-1 {
        width: 100%; } }
  .border-divider-2 {
    width: 390px; }
    @media (max-width: 991px) {
      .border-divider-2 {
        width: 100%; } }
  .border-divider-3 {
    width: 80px; }

.padding-large {
  padding-top: 100px; }

.padding-small {
  padding-top: 50px; }

.w-60 {
  width: 60% !important; }

.getting-started_container {
  width: 60%; }
  @media (max-width: 767px) {
    .getting-started_container {
      width: 100%; } }

.getting-started_form {
  width: 100% !important; }
  .getting-started_form label {
    font-family: 'Public Sans', sans-serif;
    font-weight: 700; }

input, textarea {
  border-radius: 15px !important;
  border: none !important; }

@media (max-width: 767px) {
  .contact-info {
    text-align: center; } }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  padding: 0;
  margin: 0;
  font-family: 'Public Sans', sans-serif; }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  padding: 0;
  font-family: 'Public Sans', sans-serif;
  font-size: 1.1rem;
  color: #333333; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

p {
  font-size: 22px;
  font-family: 'Public Sans', sans-serif;
  color: #333333; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
  font-family: 'Public Sans', sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Public Sans', sans-serif;
  margin: 0 !important; }

h3 {
  font-size: 2.25rem; }

h4 {
  font-size: 1.75rem; }

h5 {
  font-size: 1.5rem; }

.btn-lg {
  font-size: 1.5rem; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

.container-fluid {
  margin: 0 !important;
  padding: 0 !important; }

ul, li {
  color: #333333; }

.title {
  font-family: 'Public Sans', sans-serif;
  margin: 10px !important; }

.get-more {
  font-size: 28px;
  margin-bottom: 10px; }

.home-bg {
  background: url("/img/svg/home-bg.svg") center no-repeat;
  background-size: cover;
  height: 2000px;
  position: absolute;
  top: -1280px;
  display: block;
  width: 100%;
  z-index: -1; }
  @media (max-width: 767px) {
    .home-bg {
      height: 100vh;
      top: 0; } }

@media (max-width: 767px) {
  .title-text {
    font-size: 22px;
    text-align: center; } }

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

.about-box {
  background: #020024;
  background: linear-gradient(141deg, #0D41AF 0%, #0D8BEC 100%);
  height: 200px;
  border-radius: 20px;
  color: #fff;
  line-height: 300px; }
  .about-box-how-it-works {
    height: 300px;
    padding-top: 80px; }

.problem-text {
  padding-top: 140px; }
  @media (max-width: 991px) {
    .problem-text {
      padding-top: 30px; } }
  @media (max-width: 767px) {
    .problem-text {
      padding-top: 30px; } }

.solution-text {
  padding-top: 80px; }
  @media (max-width: 991px) {
    .solution-text {
      padding-top: 40px; } }

.cat-section {
  background: #020024;
  background: linear-gradient(141deg, #0D41AF 0%, #0D8BEC 100%);
  width: 100%;
  padding: 25px; }
  .cat-section button {
    display: block;
    margin: 0 auto; }

.gray-bg {
  background-color: #FBFBFB; }

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

.scrollbar-disabled {
  scrollbar-width: none; }
  .scrollbar-disabled::-webkit-scrollbar {
    display: none;
    width: 0; }

#includedContent svg {
  width: 100%;
  margin: 0 auto; }

.how-it-works-bg {
  background: url("/img/svg/how-it-works_bg.svg") center no-repeat;
  background-size: cover;
  height: 730px;
  position: absolute;
  top: -340px;
  display: block;
  width: 100%;
  z-index: -1; }
  @media (max-width: 767px) {
    .how-it-works-bg {
      top: -190px; } }

.stitches {
  position: absolute;
  top: 1350px;
  left: 225px;
  z-index: -3; }
  @media (max-width: 991px) {
    .stitches {
      display: none; } }

.no_illustration-bg {
  background: url("/img/svg/how-it-works_bg.svg") center no-repeat;
  background-size: cover;
  height: 730px;
  position: absolute;
  top: -500px;
  display: block;
  width: 100%;
  z-index: -1; }
  @media (max-width: 767px) {
    .no_illustration-bg {
      top: -500px; } }

.pricing-container {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2); }
  .pricing-container button, .pricing-container p, .pricing-container h1, .pricing-container h2, .pricing-container h3, .pricing-container h4, .pricing-container h5, .pricing-container h6 {
    font-family: 'Public Sans', sans-serif; }
  .pricing-container_header {
    padding: 20px;
    background: #3298e6;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #3298e6 0%, #0d41af 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #3298e6 0%, #0d41af 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #3298e6 0%, #0d41af 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3298e6', endColorstr='#0d41af',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */ }
  .pricing-container_body {
    padding: 10px 30px; }
  .pricing-container_footer {
    padding: 20px; }

.underline {
  border-bottom: 1px solid #333333;
  margin-bottom: 15px; }

.pricing-bullets {
  padding-top: 40px; }
  @media (max-width: 767px) {
    .pricing-bullets {
      padding-top: 10px;
      text-align: center; } }

.padding-reduced {
  padding-right: 5px;
  padding-left: 5px; }

.pricing-container p {
  font-size: 18px; }

.header-text-container {
  width: 60%;
  margin: 0 auto;
  display: block; }
  @media (max-width: 767px) {
    .header-text-container {
      width: 90%; } }

.getting-started-bg {
  top: -300px;
  height: 960px; }

.form-container {
  width: 60%;
  display: block;
  margin: 0 auto;
  background-color: #EEF4FA;
  border-radius: 30px;
  padding: 30px 30px 10px 30px; }
  @media (max-width: 767px) {
    .form-container {
      width: 90%; } }

.left-guy-illustration {
  position: absolute;
  top: 350px;
  left: 150px; }
  @media (max-width: 1199px) {
    .left-guy-illustration {
      left: 110px; } }
  @media (max-width: 991px) {
    .left-guy-illustration {
      left: 50px; } }
  @media (max-width: 767px) {
    .left-guy-illustration {
      display: none; } }

.right-lady-illustration {
  position: absolute;
  top: 350px;
  right: 150px; }
  @media (max-width: 991px) {
    .right-lady-illustration {
      right: 50px; } }
  @media (max-width: 767px) {
    .right-lady-illustration {
      display: none; } }

.rocket {
  position: absolute;
  top: 160px;
  right: 460px;
  z-index: -1; }
  @media (max-width: 1199px) {
    .rocket {
      right: 350px; } }
  @media (max-width: 991px) {
    .rocket {
      display: none; } }
  @media (max-width: 767px) {
    .rocket {
      display: none; } }

.contact-bg {
  top: -350px; }

.contact-form {
  width: 100% !important; }

.team-bg {
  top: -1400px; }

.team-member {
  width: 220px;
  height: 220px;
  margin-bottom: 30px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.3); }
  @media (max-width: 767px) {
    .team-member {
      width: 90%;
      height: auto; } }

.terms_container {
  width: 70%;
  display: block;
  margin: 0 auto; }
  @media (max-width: 767px) {
    .terms_container {
      width: 100%; } }

.term {
  margin-bottom: 70px; }

.login {
  background: #F5F8FF;
  height: 99vh;
  padding: 20px; }
  @media (max-width: 575px) {
    .login {
      height: auto; } }
  .login-img {
    justify-items: center;
    justify-content: center;
    align-items: center;
    align-self: center;
    display: block;
    margin: 0 auto; }
  .login-container-page {
    overflow: hidden; }
    @media (max-width: 575px) {
      .login-container-page {
        overflow: unset; } }
  .login form {
    padding: 40px; }
  .login label {
    display: inline-block;
    margin-top: 15px; }
  .login input {
    padding: 15px;
    margin: 0 7px 7px 0;
    width: 100%;
    font-size: 14px; }

.stats-bg {
  background: #0d8bec;
  background: -moz-linear-gradient(90deg, #0d8bec 0%, #0d41af 100%);
  background: -webkit-linear-gradient(90deg, #0d8bec 0%, #0d41af 100%);
  background: linear-gradient(90deg, #0d8bec 0%, #0d41af 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d8bec",endColorstr="#0d41af",GradientType=1);
  height: 88px;
  width: 100%;
  position: absolute; }

.stats-title {
  font-weight: bold;
  color: #0C57C0; }

.chart-container {
  padding: 15px;
  border-radius: 20px;
  background-color: #F5F5F5; }

.list-element_container {
  padding: 25px;
  background-color: #F5F5F5;
  border-radius: 15px;
  height: 350px; }
  .list-element_container .table td, .list-element_container .table th {
    border-top: unset;
    border-bottom: 1px solid #dee2e6; }
  .list-element_container .table-container {
    overflow-y: scroll; }
    .list-element_container .table-container-purchased {
      padding: 10px 20px;
      border-radius: 15px;
      background-color: #fff;
      max-height: 225px !important; }
    .list-element_container .table-container-search {
      max-height: 225px; }
    .list-element_container .table-container-interested_in {
      max-height: 280px; }

.keyword-search-container {
  background-color: #fff;
  border-radius: 15px;
  padding-left: 25px;
  padding-top: 5px; }
  .keyword-search-container select.language {
    border: none;
    border-left: 1px solid black;
    margin-bottom: 8px;
    padding-left: 5px;
    position: absolute;
    right: 120px; }
  .keyword-search-container select.keyword {
    border: none;
    margin-bottom: 0.5ex;
    padding-left: 5px; }
  .keyword-search-container input {
    margin-bottom: 9px; }
  .keyword-search-container .btn-search {
    background-color: #0C57C0;
    border-radius: 20px;
    font-size: 15px;
    padding: 5px 15px; }

.dropdown button {
  border-radius: 25px;
  padding: 5px 30px;
  background-color: #0C57C0;
  border: none; }

.selected-keyword {
  color: #0C57C0;
  font-weight: bold; }

.canvas-container {
  background-color: #fff;
  border-radius: 15px;
  padding: 15px 5px; }

.highlight {
  padding: 15px 15px 1px 15px;
  border-radius: 15px;
  background: #0d8bec;
  background: -moz-linear-gradient(90deg, #0d8bec 0%, #0d41af 100%);
  background: -webkit-linear-gradient(90deg, #0d8bec 0%, #0d41af 100%);
  background: linear-gradient(90deg, #0d8bec 0%, #0d41af 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d8bec",endColorstr="#0d41af",GradientType=1);
  -webkit-box-shadow: 0px 10px 23px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 10px 23px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 10px 23px 0px rgba(0, 0, 0, 0.3); }
  .highlight p {
    font-size: 15px;
    color: #fff !important;
    font-weight: bold; }

button:hover {
  cursor: pointer; }

.dropdown-menu.show {
  -webkit-box-shadow: 0px 10px 23px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 10px 23px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 10px 23px 0px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  margin-top: 15px;
  border: none;
  padding: 15px; }
  .dropdown-menu.show a {
    color: #0C57C0; }
  .dropdown-menu.show input {
    border: 1px solid #0C57C0 !important;
    padding: 5px;
    margin-bottom: 10px; }
  .dropdown-menu.show button {
    width: 100%;
    padding: 4px !important;
    margin-top: 15px; }

.btn-outline {
  background-color: #fff !important;
  border: 1px solid #0C57C0 !important;
  color: #0C57C0 !important; }

.table-container::-webkit-scrollbar-track {
  background-color: transparent; }

.table-container::-webkit-scrollbar {
  width: 5px;
  background-color: transparent; }

.table-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px; }

/* Enter and leave animations can use different */
/* durations and timing functions.              */
.slide-fade-enter-active {
  transition: all .3s ease; }

.slide-fade-leave-active {
  transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1); }

.slide-fade-enter, .slide-fade-leave-to {
  transform: translateX(10px);
  opacity: 0; }

.clickable {
  overflow: hidden; }

object {
  width: 100%;
  pointer-events: none; }
