* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
.self_img_wrapper {
  position: relative;
  overflow: hidden;
}
.self_img_wrapper img {
  bottom: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-width: none;
  padding: 0;

  right: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.self_img_wrapper [data-main-image] {
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 0.25s linear;
  will-change: opacity;
}
.self_img_wrapper-constrained {
  display: inline-block;
  vertical-align: top;
}

.selfslider {
  border-radius: 6px;
  height: 14px;
  padding: 5px 0;
  position: relative;
  touch-action: none;
  width: 100%;
}

.hero-content {
    margin-top: 75px;
    margin-bottom: 50px;
}

.hero-content h1{
    font-weight: 500;
}

.container .hero-content p{
    margin-top: 25px;
}



.tabarea {
    text-align: center;
}    

.selfslider,
.selfslider * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}
.selfslider-rail {
  background-color: #e9e9e9;
  width: 100%;
}
.selfslider-rail,
.selfslider-track {
  border-radius: 6px;
  height: 4px;
  position: absolute;
}
.selfslider-track {
  background-color: #abe2fb;
  left: 0;
}
.selfslider-handle {
  background-color: #fff;
  border: 2px solid #96dbfa;
  border-radius: 50%;
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: grab;
  height: 14px;
  margin-top: -5px;
  position: absolute;
  touch-action: pan-x;
  width: 14px;
}
.selfslider-handle-dragging.selfslider-handle-dragging.selfslider-handle-dragging {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
}
.selfslider-handle:focus {
  outline: none;
}
.selfslider-handle-click-focused:focus {
  border-color: #96dbfa;
  box-shadow: unset;
}
.selfslider-handle:hover {
  border-color: #57c5f7;
}
.selfslider-handle:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7;
  cursor: grabbing;
}
.selfslider-mark {
  font-size: 12px;
  left: 0;
  position: absolute;
  top: 18px;
  width: 100%;
}
.selfslider-mark-text {
  color: #999;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  text-align: center;
  vertical-align: middle;
}
.selfslider-mark-text-active {
  color: #666;
}
.selfslider-step {
  background: transparent;
  height: 4px;
  position: absolute;
  width: 100%;
}
.selfslider-dot {
  background-color: #fff;
  border: 2px solid #e9e9e9;
  border-radius: 50%;
  bottom: -2px;
  cursor: pointer;
  height: 8px;
  margin-left: -4px;
  position: absolute;
  vertical-align: middle;
  width: 8px;
}
.selfslider-dot-active {
  border-color: #96dbfa;
}
.selfslider-dot-reverse {
  margin-right: -4px;
}
.selfslider-disabled {
  background-color: #e9e9e9;
}
.selfslider-disabled .selfslider-track {
  background-color: #ccc;
}
.selfslider-disabled .selfslider-dot,
.selfslider-disabled .selfslider-handle {
  background-color: #fff;
  border-color: #ccc;
  box-shadow: none;
  cursor: not-allowed;
}
.selfslider-disabled .selfslider-dot,
.selfslider-disabled .selfslider-mark-text {
  cursor: not-allowed !important;
}
.selfslider-vertical {
  height: 100%;
  padding: 0 5px;
  width: 14px;
}
.selfslider-vertical .selfslider-rail {
  height: 100%;
  width: 4px;
}
.selfslider-vertical .selfslider-track {
  bottom: 0;
  left: 5px;
  width: 4px;
}
.selfslider-vertical .selfslider-handle {
  margin-left: -5px;
  touch-action: pan-y;
}
.selfslider-vertical .selfslider-mark {
  height: 100%;
  left: 18px;
  top: 0;
}
.selfslider-vertical .selfslider-step {
  height: 100%;
  width: 4px;
}
.selfslider-vertical .selfslider-dot {
  left: 2px;
  margin-bottom: -4px;
}
.selfslider-vertical .selfslider-dot:first-child,
.selfslider-vertical .selfslider-dot:last-child {
  margin-bottom: -4px;
}
.selfslider-tooltip-zoom-down-appear,
.selfslider-tooltip-zoom-down-enter,
.selfslider-tooltip-zoom-down-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-play-state: paused;
  display: block !important;
}
.selfslider-tooltip-zoom-down-appear.selfslider-tooltip-zoom-down-appear-active,
.selfslider-tooltip-zoom-down-enter.selfslider-tooltip-zoom-down-enter-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}
.selfslider-tooltip-zoom-down-leave.selfslider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}
.selfslider-tooltip-zoom-down-appear,
.selfslider-tooltip-zoom-down-enter {
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transform: scale(0);
}
.selfslider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: 50% 100%;
  }
  to {
    transform: scale(1);
    transform-origin: 50% 100%;
  }
}
@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform: scale(1);
    transform-origin: 50% 100%;
  }
  to {
    opacity: 0;
    transform: scale(0);
    transform-origin: 50% 100%;
  }
}
.selfslider-tooltip {
  left: -9999px;
  position: absolute;
  top: -9999px;
  visibility: visible;
}
.selfslider-tooltip,
.selfslider-tooltip * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}
.selfslider-tooltip-hidden {
  display: none;
}
.selfslider-tooltip-placement-top {
  padding: 4px 0 8px;
}
.selfslider-tooltip-inner {
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
  color: #fff;
  font-size: 12px;
  height: 24px;
  line-height: 1;
  min-width: 24px;
  padding: 6px 2px;
  text-align: center;
  text-decoration: none;
}
.selfslider-tooltip-arrow {
  border-color: transparent;
  border-style: solid;
  height: 0;
  position: absolute;
  width: 0;
}
.selfslider-tooltip-placement-top .selfslider-tooltip-arrow {
  border-top-color: #6c6c6c;
  border-width: 4px 4px 0;
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
}

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[hidden],
template {
  display: none;
}
*,
body,
html {
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  padding: 0;
}
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: auto;
  -moz-text-size-adjust: auto;
  text-size-adjust: auto;
  background-color: #fff;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  height: 100vh;
  line-height: 31px;
  margin: 0 auto;
  overflow-x: hidden;
}
.overflow {
  overflow: hidden !important;
}
.overflow-x {
  overflow-x: hidden;
}
p {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  p {
    font-size: 15px;
    line-height: 24px;
  }
}
.h1,
.h2,
.h3,
h1,
h2,
h3,
h4,
input,
option,
select {
  font-family: Inter, sans-serif;
}
.h1,
.h2,
.h3,
h1,
h2,
h3,
h4 {
  color: #000;
  font-weight: 700;
  margin: 0 0 25px;
}
.h1,
h1 {
  font-family: Inter, serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -1.856px;
  line-height: 71px;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 50px;
  }
}
.h2,
h2 {
  font-size: 50px;
  line-height: 1.2;
}
@media (max-width: 979px) {
  .h2,
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .h2,
  h2 {
    font-size: 30px;
  }
}
.h3,
h3 {
  font-size: 38px;
  line-height: 1.2;
}
@media (max-width: 979px) {
  .h3,
  h3 {
    font-size: 30px;
    line-height: 1.333;
  }
}
@media (max-width: 767px) {
  .h3,
  h3 {
    font-size: 24px;
  }
}
.h4,
h4 {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.22;
}
@media (max-width: 979px) {
  .h4,
  h4 {
    font-size: 18px;
  }
}
.h5,
h5 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 20px;
}
@media (max-width: 979px) {
  .h5,
  h5 {
    font-size: 16px;
  }
}
a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
img,
video {
  max-width: 100%;
  vertical-align: middle;
}
a img {
  pointer-events: all;
}
a,
a:focus,
a:hover {
  outline: none;
}
ol,
ul {
  font-size: 18px;
  line-height: 1.222;
  padding-left: 22px;
}
li {
  margin-bottom: 0.75em;
}
hr {
  border-color: #000;
  margin: 25px 0;
  opacity: 0.1;
}
@media (max-width: 767px) {
  .text-center-mob {
    text-align: center;
  }
}
label {
  display: block;
  font-size: 18px;
  line-height: 35px;
  margin-top: 20px;
}
input[type="email"],
input[type="number"],
input[type="text"],
textarea {
  border-radius: 2px;
  box-shadow: none;
  display: block;
  font-family: inherit;
  font-size: 0.85em;
  margin-bottom: 15px;
  margin-top: 5px;
  outline: none;
  padding: 10px;
  width: 100%;
}
input[type="email"]:focus,
input[type="email"]:hover,
input[type="text"]:focus,
input[type="text"]:hover,
textarea:focus,
textarea:hover {
  outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  box-shadow: 0 0 0 transparent !important;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
button {
  cursor: pointer;
}
.button-unstyled {
  background: transparent;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.button-unstyled:focus {
  outline: 0;
}
.container {
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 15px;
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
    width: 100%;
  }
}
.small-container {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 15px;
}
@media (max-width: 1200px) {
  .small-container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .small-container {
    padding: 0 16px;
    width: 100%;
  }
  .right-no-padding-mob {
    padding-right: 0 !important;
  }
}
.green {
  color: #41ce8e;
}
.yellow {
  color: #fb0;
}
.flex-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media (max-width: 1200px) {
  .flex-row {
    margin: 0;
  }
}
.nowrap {
  flex-wrap: nowrap;
}
.justify-flex-end {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .flex-reverse-mob {
    flex-direction: column-reverse;
  }
}
.align-items-center {
  align-items: center;
}
.justify-content-between {
  justify-content: space-between;
}
.row-reverse {
  flex-direction: row-reverse;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33%;
}
.col-5 {
  width: 42%;
}
.col-6 {
  width: 50%;
}
.col-8 {
  width: 66.67%;
}
.col-7 {
  width: 58%;
}
.col-2 {
  width: 16.7%;
}
.col-10 {
  width: 83.3%;
}
.col {
  padding: 0 15px;
}
@media (max-width: 767px) {
  .col {
    padding: 0;
    width: 100%;
  }
}
.black-bg {
  background-color: #000;
}
.violet-bg {
  background-color: #eff0fe;
}
.yellow-bg {
  background-color: #0016d1;
}
.green-bg {
  background-color: #e6f2fe;
}

.color-black {
  color: #000 !important;
}
@media (min-width: 1024px) {
  .offset-1 {
    margin-left: 8.333333%;
  }
  .offset-2 {
    margin-left: 16.666667%;
  }
  .offset-3 {
    margin-left: 25%;
  }
  .offset-4 {
    margin-left: 33.333333%;
  }
  .offset-5 {
    margin-left: 41.666667%;
  }
  .offset-6 {
    margin-left: 50%;
  }
  .offset-7 {
    margin-left: 58.333333%;
  }
  .offset-8 {
    margin-left: 66.666667%;
  }
  .offset-9 {
    margin-left: 75%;
  }
  .offset-10 {
    margin-left: 83.333333%;
  }
  .offset-11 {
    margin-left: 91.666667%;
  }
}
.button {
  background: #41ce8e;
  border: none;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  min-width: 210px;
  padding: 16px 40px;
  text-align: center;
  transform: scale(1);
  transition: all 0.4s;
}
.button:hover {
  transform: scale(0.95);
}
.button-white {
  background: none;
  border: none;
  color: #28125b;
}
.button-green {
  margin-top: 4px;    
  background: #0016d1;
  border: 1px solid #0016d1;
}

.text-center {
  text-align: center;
}
.tab > * {
  pointer-events: none !important;
}
.heading,
h3 {
  color: #000;
  font-family: Inter, serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1.22px;
  line-height: 75px;
  margin-bottom: -7px;
}
@media (max-width: 767px) {
  .heading,
  h3 {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 45px;
    margin-bottom: 16px;
  }
}
.link-unstyled {
  color: #41ce8e;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.hidden,
.visible-mobile,
.visible-tablet {
  display: none !important;
}
@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
  .visible-mobile {
    display: block !important;
  }
}
@media (max-width: 990px) {
  .visible-tablet {
    display: block !important;
  }
  .hidden-tablet {
    display: none !important;
  }
}
.no-margin {
  margin: 0;
}
.yellow-heading {
  background: #e6f2fe;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: -0.416px;
  line-height: 16px;
  padding: 12px 30px 13px 30px;
  width: -webkit-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .yellow-heading {
    font-size: 14px;
    line-height: 17px;
    padding: 6px 16px;
  }
}
.yellow-heading.text-center {
  margin: 0 auto 10px;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
@media (max-width: 767px) {
  .position-relative-mobile {
    position: relative;
  }
}
.center {
  margin: 0 auto;
}
.red {
  color: #ff6a63;
}
[data-watch-visibility="true"] {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.7s ease;
  transition-delay: 0.3s;
}
.visible,
[data-watch-visibility="true"].no-anim {
  opacity: 1;
  transform: translateY(0);
}
.purple {
  color: #6c5bf2;
}
.small-stroke {
  position: relative;
}
.small-stroke:before {
  background-image: url(img/stroke-small.html);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 90px;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 0;
  width: 100%;
  z-index: 9;
}
.stroke {
  position: relative;
}
.stroke:after {
  background-size: contain;
  content: "";
}
.big-gradient-circle,
.stroke:after {
  background-position: 50%;
  background-repeat: no-repeat;
  position: absolute;
}
.big-gradient-circle {
  background-image: url(../img/violet-gradient.svg);
  background-size: cover;
  height: 712px;
  left: 0;
  right: 0;
  width: 1576px;
  z-index: -1;
}
.big-gradient-circle.small-gradient {
  background-image: url(../img/small-violet-gradient.html);
  height: 700px;
  width: 700px;
}
.big-gradient-circle.green-gradient {
  background-image: url(../img/green-gradient.svg);
}
.big-gradient-circle.green-gradient.small-gradient {
  background-image: url(../img/small-green-gradient.html);
}
.big-gradient-circle.red-gradient {
  background-image: url(../img/red-gradient.svg);
}
.big-gradient-circle.red-gradient.small-gradient {
  background-image: url(../img/small-red-gradient.html);
}
.big-gradient-circle.gradient-anim {
  animation: gradientAnim 5s linear infinite forwards;
}
.delay-1 {
  animation-delay: 1.6s !important;
}
.delay-2 {
  animation-delay: 3.2s !important;
}
.margin-bot-25 {
  margin-bottom: 25px;
}
.pad-left-100 {
  padding-left: 100px;
}
@keyframes gradientAnim {
  0% {
    transform: rotate(0deg) translateX(200px) rotate(0deg);
  }
  to {
    transform: rotate(1turn) translateX(200px) rotate(-1turn);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes floating {
  0% {
    transform: translateZ(0);
  }
  45% {
    transform: translate3d(0, -10%, 0);
  }
  55% {
    transform: translate3d(0, -10%, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}
.header {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.96);
  left: 0;
  margin-bottom: 0;
  padding: 25px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.4s ease;
  z-index: 9999;
}
.header.hide {
  transform: translateY(-100%);
}
.header .nav-block {
  flex-wrap: nowrap;
}
.header .homelers-logo {
  max-width: 213px;
  width: 100%;
}
.header .menu {
  width: 100%;
}
.header .left-nav {
  margin: 0 30px 0 auto;
}
.header .left-nav a {
  transition: all 0.2s;
}
.header .left-nav div:not(:first-child) {
  padding-left: 34px;
}
.header .left-nav > div > a:hover {
  color: #0016d1;
}
.header a {
  font-size: 16px;
  line-height: 19px;
  padding-right: 30px;
}
.header .button {
  border-radius: 100px;
  line-height: 1;
  min-width: 100px;
  padding: 15px 40px;
}
.header .button.sign-up {
  margin-left: 10px;
}
@media (max-width: 990px) {
  .header .button.sign-up {
    width: 100%;
  }
  .header {
    position: fixed;
  }
}
.header .button.log-in {
  background: #f2f2f2;
  color: #000;
}
.header .hamburger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
  width: 24px;
}
.header .hamburger:after,
.header .hamburger:before,
.header .hamburger span {
  background-color: #000;
  border: 1px solid #000;
  border-radius: 2px;
  content: "";
  display: block;
  height: 0;
  margin: 4.5px 0;
  padding: 0;
  transition: 0.5s;
}
.header .hamburger span {
  margin-left: auto;
  width: 67%;
}
.header .hamburger:before {
  margin-top: 0;
}
.header .hamburger:after {
  margin-bottom: 0;
}
.header .hamburger-cross .hamburger:before {
  transform: translateY(6.5px) rotate(135deg);
}
.header .hamburger-cross .hamburger:after {
  transform: translateY(-6.5px) rotate(-135deg);
}
.header .hamburger-cross .hamburger span {
  transform: scale(0);
}
@media (max-width: 990px) {
  .header .headroom {
    padding: 17px 0 18px;
  }
  .header .homelers-logo {
    position: relative;
    right: 0;
    width: 157px;
    z-index: 9999;
  }
  .header .menu {
    background-color: #fff;
    height: 100vh;
    left: 0;
    max-width: 100%;
    overflow-x: hidden;
    padding: 80px 15px 0;
    position: fixed;
    top: 0;
    transform: translateX(100%);
    transition: all 0.3s ease 0s;
    z-index: 9998;
  }
  .header .menu,
  .header .menu .left-nav {
    display: block;
    margin: 0;
  }
  .header .menu .left-nav div:not(:first-child) {
    padding-left: 0;
  }
  .header .menu a:not(.button) {
    align-items: center;
    border-top: 1px solid #dcdee6;
    display: flex;
    font-size: 16px;
    line-height: 27px;
    padding: 20px 4px;
    text-align: left;
  }
  .header .menu .left-nav div:last-child a {
    border-bottom: 1px solid #dcdee6;
  }
  .header .menu .button {
    display: block;
    padding: 15px 0;
    text-align: center;
  }
  .header .button:last-child {
    margin-left: 0;
    margin-top: 10px;
  }
  .header .right-nav {
    bottom: 20px;
    margin: 0 auto;
    position: absolute;
    width: calc(100% - 30px);
    z-index: 9999;
  }
  .header .menu-open {
    transform: translateX(0);
    transition: 0.5s ease;
  }
  .header .hamburger {
    position: relative;
    z-index: 9999;
  }
}
.footer {
  background-color: #0016d1;
  padding: 130px 0 80px;
  position: relative;
  z-index: 9;
}
@media (max-width: 990px) {
  .footer {
    margin-top: -360px;
  }
}
@media (max-width: 767px) {
  .footer {
    margin-top: -150px;
  }
}
.footer .footer-content {
  border-bottom: 1px solid #2434DF;
}
.footer .footer-content h3 {
  color: #fff;
  font-weight: 400;
  line-height: 50px;
  margin: 0 auto 24px;
  max-width: 500px;
  position: relative;
  text-align: center;
}
.footer .footer-content h3 .tilt-text {
  background: #18003F;
  border-radius: 100px;
  color: #fff;
  font-size: 23px;
  font-weight: 400;
  left: 175px;
  letter-spacing: -0.736px;
  line-height: 45px;
  padding: 3px 40px 5px 40px;
  position: absolute;
  text-align: center;
  top: -65px;
  transform: rotate(0deg);
}
.footer .footer-content .button {
  background: #fff;
  border-radius: 100px;
  color: #000;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  margin: 0 auto 70px;
  max-width: 213px;
  padding: 18px 40px;
}
.footer a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 31px;
}
.footer .footer-nav {
  margin: 52px 0 0;
}
.footer .footer-nav .top-footer {
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 28px;
}
.footer .footer-nav .top-footer img {
  max-width: 180px;
}
.footer .footer-nav .top-footer .contact-us {
  max-width: 90px;
  transition: all 0.2s;
}
.footer .footer-nav .top-footer .contact-us:hover {
  color: #fb0;
}
.footer .footer-nav .bottom-footer .footer-links {
  margin-right: auto;
}
.footer .footer-nav .bottom-footer .footer-links a {
  padding-right: 37px;
  transition: all 0.2s;
}
.footer .footer-nav .bottom-footer .footer-links a:hover {
  color: #fb0;
}
.footer .footer-nav .bottom-footer .footer-logo {
  margin-left: auto;
}
.footer .footer-nav .bottom-footer .footer-logo a {
  padding-left: 20px;
  transform: scale(1);
}
.footer .footer-nav .bottom-footer .footer-logo a:first-child {
  padding-left: 0;
}
.footer .footer-nav .bottom-footer .footer-logo a:hover {
  opacity: 0.9;
}
.footer .footer-nav .bottom-footer .footer-logo a:hover img {
  transform: scale(0.988);
}
@media (max-width: 767px) {
  .footer {
    padding: 100px 0 72px;
  }
  .footer .footer-content h3 {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 45px;
    max-width: 335px;
  }
  .footer .footer-content h3 .tilt-text {
    font-size: 14px;
    left: 125px;
    letter-spacing: -0.448px;
    line-height: 16px;
    padding: 8px 20px;
    top: -45px;
  }
  .footer .footer-content .button {
    margin-bottom: 72px;
  }
  .footer .footer-nav {
    margin-top: 72px;
    padding-bottom: 140px;
    position: relative;
  }
  .footer .footer-nav a {
    line-height: 24px;
  }
  .footer .footer-nav .top-footer {
    margin-bottom: 32px;
  }
  .footer .footer-nav .top-footer img {
    bottom: 0;
    left: 50%;
    margin-left: -120px;
    max-width: 240px;
    position: absolute;
  }
  .footer .footer-nav .top-footer .contact-us {
    margin: 0 auto;
  }
  .footer .footer-nav .bottom-footer .footer-logo {
    margin: 0 auto 72px;
    order: 0;
  }
  .footer .footer-nav .bottom-footer .footer-links {
    margin: 0 auto;
    order: 2;
  }
  .footer .footer-nav .bottom-footer .footer-links a {
    line-height: 30px;
    margin: 0 auto 24px;
    min-width: 51%;
    padding: 0;
    text-align: center;
  }
}
@media (max-width: 1200px) and (min-width: 767px) {
  .footer .footer-nav .bottom-footer .footer-links {
    margin: 20px auto;
  }
  .footer .footer-nav .bottom-footer .footer-logo {
    margin: 0 auto;
  }
}
.main_banner {
  overflow: hidden;
  padding: 138px 0 0;
  position: relative;
  text-align: center;
  background-image: linear-gradient(#f6f7f9, #e9f7f2);
  z-index: 1;
}
@media (max-width: 767px) {
  .main_banner {
    padding: 126px 0 0;
  }
}
.main_banner .rectangle {
  top: 100px;
  content: "";
  height: 900px;
  left: 0;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 100vw;
}


@media (max-width: 767px) {
  .main_banner .rectangle {
    height: 100%;
    top: 0px;
  }
}
.main_banner h1 {
  margin: 0 auto 10px;
  max-width: 664px;
}
@media (max-width: 767px) {
  .main_banner h1 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 16px;
  }
}
.main_banner h1 .stroke:after {
  background-image: url(../img/circle-stroke.svg);
  height: 100%;
  left: -7%;
  top: -2%;
  transform: scale(1.1);
  width: 120%;
}
@media (max-width: 767px) {
  .main_banner h1 .stroke:after {
    left: 0;
    top: -6%;
    width: 110%;
  }
}
.main_banner p {
  margin: 0 auto 34px;
  max-width: 524px;
}
@media (max-width: 767px) {
  .main_banner p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}
.main_banner .button {
  display: block;
  margin: 0 auto 60px;
  max-width: 213px;
  z-index: 9999 !important;
}
@media (max-width: 767px) {
  .main_banner .button {
    margin-bottom: 126px;
  }
}
.main_banner .hero-image {
  top: 18px;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .main_banner .hero-image {
    margin: 0 auto;
    max-width: 200px;
  }
  .main_banner .hero-main {
    width: 200px;
  }
}
.main_banner .center-hero-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 27px rgba(0, 0, 0, 0.1);
  left: 300px;
  margin: 0 auto;
  max-height: 115px;
  opacity: 0;
  overflow: hidden;
  padding: 22px 5px 9px 15px;
  position: absolute;
  right: 0;
  top: 220px;
  transform: scale(0.5);
  transform-origin: bottom left;
  transition: all 0.3s ease-out;
  width: 305px;
  z-index: 9;
}
.main_banner .center-hero-card.popup {
  opacity: 1;
  transform: scale(1);
}
.main_banner .center-hero-card h3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 32px;
  margin: 0 0 0 15px;
  max-width: 185px;
  text-align: left;
}
.main_banner .center-hero-card svg {
  height: auto;
  margin-left: auto;
  width: 103px;
}
@media (max-width: 767px) {
  .main_banner .center-hero-card {
    height: auto;
    left: 110px;
    padding: 12px 5px 9px 15px;
    top: 150px;
    width: 165px;
  }
  .main_banner .center-hero-card h3 {
    font-size: 14px;
    line-height: 22px;
  }
}
.main_banner .hero-card {
  max-width: 200px;
  position: absolute;
  transition: all 0s ease-out;
  z-index: -1;
}
.main_banner .hero-card .hero-card-inner {
  animation: floating 5s linear infinite forwards;
  filter: drop-shadow(20px 20px 20px rgba(25, 49, 96, 0.1));
}
.main_banner .hero-card.card-1 {
  left: 8%;
  top: -20%;
  transform: rotate(-0deg) translateZ(0);
  transition: 0.1s ease all;
        
  filter:blur(1px);
    -o-filter:blur(0.5px);
    -ms-filter:blur(0.5px);
    -moz-filter:blur(0.5px);
    -webkit-filter:blur(0.5px);
    
   opacity: 0.5;

}
.main_banner .hero-card.card-1 .hero-card-inner {
  animation-delay: 0.2s;
  animation-duration: 5.4;
  height: auto;
  width: 203px;
}
@media (max-width: 990px) {
  .main_banner .hero-card.card-1 {
    left: 3%;
    top: -12%;
  }
  .main_banner .hero-card.card-1 .hero-card-inner {
    width: 135px;
  }
}
@media (max-width: 767px) {
  .main_banner .hero-card.card-1 {
    display: none;
  }
}


.main_banner .hero-card.card-4 {
  right: 25%;
  top: 10%;
  transform: rotate(-0deg) translateZ(0);
        
  filter:blur(0.5px);
    -o-filter:blur(0.5px);
    -ms-filter:blur(0.5px);
    -moz-filter:blur(0.5px);
    -webkit-filter:blur(0.5px);
    
   opacity: 0.3;


}
.main_banner .hero-card.card-4 img {
  animation-delay: 0.4s;
  animation-duration: 2.2;
    
}
.main_banner .hero-card.card-4 .hero-card-inner {
  filter: drop-shadow(2px 2px 30px rgba(25, 49, 96, 0.1));
}

.main_banner .hero-card.card-4 .hero-card-inner svg {
  height: auto;
  margin-bottom: 15px;
  width: 40px;
}

.main_banner .hero-card.card-4 .hero-card-inner h4 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 13px;
  width: 90px;
}

.main_banner .hero-card.card-4 .hero-card-inner p {
  border: 1px solid #eee;
  border-radius: 2px;
  color: #06cb87;
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
  padding: 6px 10px;
}

@media (max-width: 767px) {
  .main_banner .hero-card.card-4 {
    display: none;


  }
  .main_banner .hero-card.card-4 .hero-card-inner {
    border-radius: 8px;
    padding: 15px;
  }
  .main_banner .hero-card.card-4 .hero-card-inner svg {
    margin-bottom: 10px;
    width: 25px;
  }
  .main_banner .hero-card.card-4 .hero-card-inner h4 {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 10px;
    width: 80px;
  }
  .main_banner .hero-card.card-4 .hero-card-inner p {
    font-size: 9px;
    line-height: 14px;
    margin: 0;
  }
}


.main_banner .hero-card.card-5 {
  right: 8%;
  top: -8%;
  transform: rotate(-0deg) translateZ(0);
  transition: 0.1s ease all;
}

.main_banner .hero-card.card-5 .hero-card-inner {
  animation-delay: 0.2s;
  animation-duration: 5.4;
  height: auto;
  width: 203px;
}

@media (max-width: 990px) {
  .main_banner .hero-card.card-5 {
    left: 3%;
    top: -12%;
  }
  .main_banner .hero-card.card-5 .hero-card-inner {
    width: 135px;
  }
}
@media (max-width: 767px) {
  .main_banner .hero-card.card-5 {
    left: 80%;
    top: -12%;
  }
}

.main_banner .hero-card.card-2 {
  left: 21%;
  top: 2%;
  transform: rotate(-0deg) translateZ(0);

}
.main_banner .hero-card.card-2 img {
  animation-delay: 0.4s;
  animation-duration: 2.2;
    
}
.main_banner .hero-card.card-2 .hero-card-inner {
  filter: drop-shadow(2px 2px 30px rgba(25, 49, 96, 0.1));
}

.main_banner .hero-card.card-2 .hero-card-inner svg {
  height: auto;
  margin-bottom: 15px;
  width: 40px;
}
.main_banner .hero-card.card-2 .hero-card-inner h4 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 13px;
  width: 90px;
}
.main_banner .hero-card.card-2 .hero-card-inner p {
  border: 1px solid #eee;
  border-radius: 2px;
  color: #06cb87;
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
  padding: 6px 10px;
}
@media (max-width: 767px) {
  .main_banner .hero-card.card-2 {
    left: -50%;
    top: -111px;
    width: 150px;
  }
  .main_banner .hero-card.card-2 .hero-card-inner {
    border-radius: 8px;
    padding: 15px;
  }
  .main_banner .hero-card.card-2 .hero-card-inner svg {
    margin-bottom: 10px;
    width: 25px;
  }
  .main_banner .hero-card.card-2 .hero-card-inner h4 {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 10px;
    width: 80px;
  }
  .main_banner .hero-card.card-2 .hero-card-inner p {
    font-size: 9px;
    line-height: 14px;
    margin: 0;
  }
}
.main_banner .hero-card.card-3 {
  right: 90px;
  top: -120px;
  transform: rotate(0deg) translateZ(0);
  width: 205px;
}
.main_banner .hero-card.card-3 .hero-card-inner {
  background-color: #6f6fff;
  border-radius: 8px;
  padding: 15px;
}
.main_banner .hero-card.card-3 .hero-card-inner img {
  margin-right: 10px;
  max-width: 70px;
}
.main_banner .hero-card.card-3 .hero-card-inner .line {
  background-color: #000;
  border-radius: 30px;
  display: block;
  height: 10px;
  margin-bottom: 10px;
  opacity: 0.2;
  width: 90px;
}
@media (max-width: 767px) {
  .main_banner .hero-card.card-3 .hero-card-inner .line {
    width: 65px;
  }
}
.main_banner .hero-card.card-3 .hero-card-inner .line:nth-child(2) {
  width: 45%;
}
.main_banner .hero-card.card-3 .hero-card-inner .hero-card-inner .flex-row div {
  flex: 1 1;
}
.main_banner .hero-card.card-3 .hero-card-inner p {
  background-color: #8e8eff;
  border-radius: 30px;
  color: #fff;
  display: block;
  filter: drop-shadow(0 0px 0px rgba(92, 92, 238, 0.77));
  font-size: 11px;
  font-weight: 600;
  line-height: 11px;
  margin: 15px 0 0;
  padding: 7px 13px 7px 15px;
}
@media (max-width: 990px) and (min-width: 767px) {
  .main_banner .hero-card.card-3 {
    width: 115px;
  }
  .main_banner .hero-card.card-3 .hero-card-inner img {
    margin-bottom: 10px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .main_banner .hero-card.card-3 {
    right: -89px;
    top: -92px;
    width: 150px;
  }
  .main_banner .hero-card.card-3 .hero-card-inner img {
    width: 50px;
  }
  .main_banner .hero-card.card-3 .hero-card-inner .line {
    height: 6px;
    margin-bottom: 7px;
  }
  .main_banner .hero-card.card-3 .hero-card-inner p {
    font-size: 9px;
    line-height: 11px;
    margin: 10px 0 0;
    padding: 6px 10px;
  }
}
.hunt-jobs {
  margin-top: -62px;
  overflow: hidden;
  padding: 0 0 75px;
}
@media (max-width: 767px) {
  .hunt-jobs {
    margin-top: -54px;
    padding: 0 0 64px;
  }
}
.hunt-jobs .intro-video-block {
  opacity: 1;
  position: relative;
}
.hunt-jobs .intro-video-block .intro-video {
  border: 2px solid #41ce8e;
  border-radius: 12px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  z-index: 2;
}
@media (max-width: 767px) {
  .hunt-jobs .intro-video-block .intro-video {
    border: 2px solid #41ce8e;
    border-radius: 12px;
  }
}
.hunt-jobs .intro-video-block .video-card {
  border-radius: 4px;
  max-width: 170px;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
@media (max-width: 767px) {
  .hunt-jobs .intro-video-block .video-card {
    display: none;
  }
}
.hunt-jobs .intro-video-block .video-card img,
.hunt-jobs .intro-video-block .video-card video {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
.hunt-jobs .intro-video-block .video-card.video-card-1 {
  left: -160px;
  top: 8%;
  transform: translateX(200px);
}
.hunt-jobs .intro-video-block .video-card.video-card-2 {
  right: -160px;
  top: 90px;
  transform: translateX(-220px);
}
.hunt-jobs .intro-video-block .video-card.video-card-3 {
  bottom: -60px;
  left: -130px;
  transform: translateX(220px) translateY(-100px);
}
.hunt-jobs .intro-video-block .video-card.video-card-4 {
  bottom: 30px;
  right: -150px;
  transform: translateX(-220px);
}
@media (max-width: 990px) {
  .hunt-jobs .intro-video-block .video-card {
    display: none;
  }
}
.slider-container-1,
.slider-container-2 {
  transform: translateX(0);
}
.how_it_works {
  content-visibility: auto;
  overflow: hidden;
  padding: 156px 0 126px;
}
@media (max-width: 767px) {
  .how_it_works {
    padding: 60px 0 17px;
  }
}
.how_it_works .how-tabs {
  justify-content: space-between;
}
.how_it_works .how-tabs .tab-1 {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 313px;
  padding: 0 15px;
  transform: translateY(0);
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .how_it_works .how-tabs .tab-1 {
    margin-bottom: 52px;
    max-width: unset;
    padding: 0;
  }
  .how_it_works .how-tabs .tab-1:last-child {
    margin-bottom: 0;
  }
}
.how_it_works .how-tabs .tab-1 .tab-image-wrapper {
  width: 100px;
  height: 120px;
  margin-top: 65px;
  margin-bottom: 30px;
  margin-left: 95px;
}
@media (max-width: 767px) {
  .how_it_works .how-tabs .tab-1 .tab-image-wrapper {
    height: unset;
  }
    
}
.how_it_works .how-tabs .tab-1 .tab-image-wrapper img {
  height: auto;
  transition: all 0.5s ease;
  width: 520px;
}
@media (max-width: 767px) {
  .how_it_works .how-tabs .tab-1 .tab-image-wrapper img {
    width: 520px;
    margin-left: 35px;  
  }
}
.how_it_works .how-tabs .tab-1:hover img {
  transform: translateY(-10px);
}
.how_it_works .how-tabs .tab-1 .tab_area {
  display: flex;
  flex-direction: column;
}
.how_it_works .how-tabs .tab-1 .tab_area h5 {
  font-size: 21px;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 15px;
  max-width: 238px;
}
@media (max-width: 767px) {
  .how_it_works .how-tabs .tab-1 .tab_area h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px;
    max-width: unset;
  }
}
.how_it_works .how-tabs .tab-1 .tab_area p {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
}
@media (max-width: 767px) {
  .how_it_works .how-tabs .tab-1 .tab_area p {
    font-size: 14px;
    line-height: 23px;
    max-width: unset;
  }
}
@media (max-width: 1200px) {
  .how_it_works .how-tabs .tab-1 {
    max-width: 28%;
  }
  .how_it_works .how-tabs .tab-1 h3 {
    margin: 3px auto 105px;
  }
}
@media (max-width: 767px) {
  .how_it_works .how-tabs .tab-1 {
    max-width: 100%;
  }
}
.tilted-cards {
  overflow: hidden;
  padding: 110px 0 200px;
}
@media (max-width: 767px) {
  .tilted-cards {
    padding: 100px 0 156px;
  }
}
.tilted-cards .slider-container {
  left: -50px;
  margin: 0 auto;
  position: relative;
  transform: rotate(5deg);
}
.tilted-cards .slider-container .flex-row > div {
  border-radius: 8px;
  flex: 1 1;
  margin: 10px;
  max-height: 268px;
  min-width: 25%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .tilted-cards .slider-container .flex-row > div {
    max-height: 172px;
  }
}
@media (min-width: 1500px) {
  .tilted-cards .slider-container .flex-row > div {
    max-height: 368px;
  }
}
.tilted-cards .slider-container .slider-video {
  border-radius: 10px;
  overflow: hidden;
  transform: translateZ(0);
}
.tilted-cards .slider-container .green-bg,
.tilted-cards .slider-container .violet-bg,
.tilted-cards .slider-container .yellow-bg {
  align-items: center;
  display: flex;
  justify-content: center;
}
.tilted-cards .slider-container .green-bg .slider-card,
.tilted-cards .slider-container .violet-bg .slider-card,
.tilted-cards .slider-container .yellow-bg .slider-card {
  border-radius: 10px;
  padding: 10px;
}
.tilted-cards .slider-container .green-bg .slider-card h4,
.tilted-cards .slider-container .violet-bg .slider-card h4,
.tilted-cards .slider-container .yellow-bg .slider-card h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
  margin: 0 auto 20px;
  max-width: 70%;
}
@media (max-width: 767px) {
  .tilted-cards .slider-container .green-bg .slider-card h4,
  .tilted-cards .slider-container .violet-bg .slider-card h4,
  .tilted-cards .slider-container .yellow-bg .slider-card h4 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
.tilted-cards .slider-container .green-bg .slider-card p,
.tilted-cards .slider-container .violet-bg .slider-card p,
.tilted-cards .slider-container .yellow-bg .slider-card p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  margin: 0 auto;
  max-width: 70%;
}
@media (max-width: 767px) {
  .tilted-cards .slider-container .green-bg .slider-card p,
  .tilted-cards .slider-container .violet-bg .slider-card p,
  .tilted-cards .slider-container .yellow-bg .slider-card p {
    font-size: 12px;
    line-height: 18px;
  }
}
.tilted-cards .slider-container img,
.tilted-cards .slider-container video {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.tilted-cards .slider-container video {
  -o-object-position: 100% 5%;
  object-position: 100% 5%;
}
@media (max-width: 990px) {
  .tilted-cards .slider-container video {
    height: 100%;
  }
  .tilted-cards .slider-container .flex-row > div {
    min-width: 60%;
  }
}
@media (max-width: 767px) {
  .tilted-cards .slider-container .flex-row {
    justify-content: center;
  }
  .tilted-cards .slider-container .flex-row > div {
    border-radius: 5px;
    margin: 6px;
  }
}
.feature .feature-head {
  max-width: 535px;
}
.feature .feature-head .yellow-heading {
  padding: 12px 30px 13px 30px;
}
@media (max-width: 767px) {
  .feature .feature-head .yellow-heading {
    padding: 7px 35px;
  }
}
.feature .feature-head h3 {
  line-height: 54px;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .feature .feature-head h3 {
    line-height: 45px;
  }
}
.feature .feature-image-wrapper {
  height: 562px;
  max-width: 53%;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  width: 100%;
}
.feature .feature-image-wrapper .feature-image {
  height: 100%;
  position: relative;
  text-align: center;
}
.feature .feature-image-wrapper .feature-image > img {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 96%;
}
.feature .feature-image-wrapper .feature-image .asset {
  height: 100%;
  opacity: 0;
  position: absolute;
  transform: translateY(40px);
  transition: 0.4s ease;
  transition: 0.3s ease;
  transition: 0.5s ease;
  width: 100%;
}
.feature .feature-image-wrapper .feature-image .asset.is-active {
  opacity: 1;
  transform: translateY(0);
}
.feature .feature-image-wrapper .feature-image .asset img {
  height: auto;
  width: 100%;
}
.feature .feature-image-wrapper .feature-image .asset .asset-inner {
  box-shadow: 40px 60px 160px rgba(26, 96, 25, 0.24);
  position: absolute;
}
.feature .feature-image-wrapper .feature-image .asset .asset-inner.asset-1 {
  background-color: #fff;
  border-radius: 8px;
  bottom: 35%;
  left: 8%;
  padding: 18px 12px;
  width: 216px;
}
.feature .feature-image-wrapper .feature-image .asset .asset-inner.asset-1 img {
  margin-right: 14px;
  width: 80px;
}
.feature
  .feature-image-wrapper
  .feature-image
  .asset
  .asset-inner.asset-1
  .line {
  background-color: #efefef;
  border-radius: 10px;
  display: block;
  height: 10px;
  margin-bottom: 10px;
  width: 94px;
}
.feature
  .feature-image-wrapper
  .feature-image
  .asset
  .asset-inner.asset-1
  .line:nth-child(2) {
  width: 48px;
}
.feature
  .feature-image-wrapper
  .feature-image
  .asset
  .asset-inner.asset-1
  .hero-card-inner
  .flex-row
  div {
  flex: 1 1;
}
.feature .feature-image-wrapper .feature-image .asset .asset-inner.asset-1 p {
  background: linear-gradient(228.33deg, #41ce8e 4.27%, #00d082 95.55%);
  border-radius: 12px;
  color: #fff;
  display: block;
  font-size: 9px;
  font-weight: 600;
  line-height: 11px;
  margin: 15px 0 0;
  padding: 10px;
}
.feature .feature-image-wrapper .feature-image .asset .asset-inner.asset-2 {
  bottom: 10%;
  right: 5%;
  width: 250px;
}
.feature .feature-image-wrapper .feature-image .asset .asset-inner.asset-3 {
  bottom: 5%;
  left: 5%;
  width: 256px;
}
.feature .feature-image-wrapper .feature-image .asset .asset-inner.asset-4 {
  bottom: 35%;
  box-shadow: 46.0541px 69.0811px 184.216px rgba(26, 96, 25, 0.24);
  right: 5%;
  width: 213px;
}
.feature .feature-image-wrapper .feature-image .asset .asset-inner.asset-5 {
  bottom: 4%;
  left: 0;
  margin: 0 auto;
  right: 0;
  width: 355px;
}
.feature .feature-image-wrapper .feature-image .asset .asset-inner.asset-6 {
  bottom: 28%;
  box-shadow: none;
  right: 2%;
  width: 188px;
}
.feature .feature-image-wrapper .feature-image .asset .asset-inner.asset-7 {
  background-color: #fff;
  border-radius: 8px;
  bottom: 5%;
  height: 262px;
  overflow: hidden;
  right: 12%;
  width: 256px;
}
.feature
  .feature-image-wrapper
  .feature-image
  .asset
  .asset-inner.asset-7
  .stars {
  height: 52px;
  position: relative;
  text-align: start;
  width: 100%;
}
.feature
  .feature-image-wrapper
  .feature-image
  .asset
  .asset-inner.asset-7
  .stars:after {
  background-image: url(../img/stars-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 22px;
  position: absolute;
  right: 11px;
  top: 11px;
  width: 22px;
}
.feature
  .feature-image-wrapper
  .feature-image
  .asset
  .asset-inner.asset-7
  .stars
  img {
  background-color: #fff;
  border: 5px solid #fff;
  border-radius: 50%;
  left: 20px;
  position: relative;
  top: 25px;
  width: 56px;
}
.feature
  .feature-image-wrapper
  .feature-image
  .asset
  .asset-inner.asset-7
  .lines-faded {
  margin-top: 39px;
  width: 216px;
}
.feature .feature-image-wrapper .feature-image .asset .asset-inner.asset-8 {
  bottom: 2%;
  box-shadow: none;
  left: 27%;
  width: 188px;
}

.asset-8 {
  bottom: 8.5% !important;
}

.feature .feature-content {
  margin-left: 11%;
  max-width: 36%;
}
@media (max-width: 767px) {
  .feature .feature-content {
    margin-left: 0;
    max-width: 100%;
  }
}
.feature .feature-content .feature-single {
  margin-top: 220px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .feature .feature-content .feature-single {
    margin-bottom: 56px;
    margin-top: 0;
    padding-bottom: 0;
  }
}
.feature .feature-content .feature-single:last-child {
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  .feature .feature-content .feature-single:last-child {
    padding-bottom: 0;
  }
}
.feature .feature-content .feature-single img {
  margin-bottom: 13px;
  margin-right: 13px;
}
.feature .feature-content .feature-single h4 {
  font-weight: 700;
  margin: 0 0 13px;
}
@media (max-width: 767px) {
  .feature .feature-content .feature-single h4 {
    font-size: 18px;
    line-height: 35px;
  }
}
.feature .feature-content .feature-single p {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
}
@media (max-width: 767px) {
  .feature .feature-content .feature-single p {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 32px;
  }
}
.pricing {
  overflow: hidden;
  padding: 237px 0 125px;
  position: relative;
}
@media (max-width: 767px) {
  .pricing {
    padding: 83px 0 25px;
  }
}
.pricing .col {
  padding: 0;
}
.pricing .big-gradient-circle {
  bottom: 20%;
}
@media (max-width: 767px) {
  .pricing .big-gradient-circle {
    bottom: auto;
    left: auto;
    right: -134%;
    top: 13%;
  }
  .pricing .big-gradient-circle.red-gradient {
    bottom: 0;
    left: auto;
    right: -120%;
    top: auto;
  }
  .pricing .big-gradient-circle.green-gradient {
    bottom: auto;
    left: auto;
    right: -130%;
    top: 40%;
  }
}
.pricing .pricing-head {
  margin: 0 auto 54px;
  max-width: 635px;
}
.pricing .pricing-main {
  margin: 0 auto 16px;
  max-width: 900px;
  position: relative;
}
.pricing .pricing-main .tab-list > .flex-row {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab-list > .flex-row {
    padding-left: 10px;
  }
}
.pricing .pricing-main .tab-list .tab {
  background-color: transparent;
  border: none;
  border-radius: 12px 12px 0 0;
  margin-right: -22px;
  padding: 0;
  position: relative;
  transition: all 0.2s;
  width: 160px;
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab-list .tab {
    width: 128px;
  }
}
.pricing .pricing-main .tab-list .tab svg {
  border-top-right-radius: 12px;
  display: block;
  height: auto;
  position: relative;
  top: 2px;
  transform: scaleY(1.05);
  width: 100%;
}
.pricing .pricing-main .tab-list .tab svg path {
  transition: 0.3s ease;
}
.pricing .pricing-main .tab-list .tab.active svg path {
  fill: #41ce8e;
  stroke: #41ce8e;
}
.pricing .pricing-main .tab-list .tab.active p {
  color: #fff;
}
.pricing .pricing-main .tab-list .tab p {
  left: 0;
  margin: 0;
  position: absolute;
  right: 0;
  top: 5px;
  transition: 0.3s ease;
}
.pricing .pricing-main .tab_area {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}
.pricing .pricing-main .tab_area .plan-number {
  padding: 46px 40px 56px 50px;
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab_area .plan-number {
    border-bottom: 4px solid #f2f2f2;
    padding: 32px 26px 16px;
  }
}
.pricing .pricing-main .tab_area .plan-number .striked-text {
  color: #d0d0d0;
  font-family: Inter, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1.59314px;
  line-height: 24px;
  margin-bottom: 0;
  margin-right: 24px;
  text-decoration: line-through;
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab_area .plan-number .striked-text {
    font-size: 20px;
    line-height: 20px;
    margin-right: 16px;
  }
}
.pricing .pricing-main .tab_area .plan-number .yellow-heading {
  font-size: 11px;
  font-weight: 600;
  line-height: 13px;
  margin-bottom: 0;
  padding: 6px 15px;
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab_area .plan-number .yellow-heading {
    font-size: 12px;
    line-height: 15px;
    padding: 5px 14px;
  }
}
.pricing .pricing-main .tab_area .plan-number h5 {
  font-weight: 700;
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab_area .plan-number h5 {
    font-size: 15px;
    line-height: 24px;
  }
}
.pricing .pricing-main .tab_area .plan-number p {
  font-weight: 500;
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab_area .plan-number p {
    font-size: 13px;
    line-height: 20px;
  }
}
.pricing .pricing-main .tab_area .plan-number .price {
  font-size: 48px;
  margin-bottom: 18px;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab_area .plan-number .price {
    font-size: 36px;
    letter-spacing: -1.59px;
    line-height: 50px;
    margin-bottom: 32px;
  }
}
.pricing .pricing-main .tab_area .plan-number .price span {
  font-size: 30px;
  opacity: 0.4;
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab_area .plan-number .price span {
    font-size: 18px;
    letter-spacing: -0.94px;
  }
}
.pricing .pricing-main .tab_area .plan-details {
  background-color: #fbfbfb;
  border-radius: 8px;
  height: 100%;
  padding: 46px 40px;
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab_area .plan-details {
    padding: 16px 26px 32px;
  }
}
.pricing .pricing-main .tab_area .plan-details h5 {
  font-weight: 700;
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab_area .plan-details h5 {
    font-size: 15px;
    line-height: 24px;
  }
}
.pricing .pricing-main .tab_area .plan-details .flex-row {
  margin: 0 0 20px;
}
.pricing .pricing-main .tab_area .plan-details .flex-row:last-child {
  margin: 0;
}
.pricing .pricing-main .tab_area .plan-details img {
  margin-right: 10px;
}
.pricing .pricing-main .tab_area .plan-details p {
  font-weight: 400;
  margin-bottom: 0;
  max-width: calc(100% - 30px);
}
@media (max-width: 767px) {
  .pricing .pricing-main .tab_area .plan-details p {
    font-size: 13px;
  }
}
.pricing .custom-branding {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.111973);
  margin: 0 auto;
  max-width: 900px;
}
@media (max-width: 767px) {
  .pricing .custom-branding {
    background-color: #fbfbfb;
  }
}
.pricing .custom-branding .custom-branding-image {
  margin: 21px 18px;
  max-width: 412px;
  width: 100%;
}
@media (max-width: 767px) {
  .pricing .custom-branding .custom-branding-image {
    border-bottom: 4px solid #f2f2f2;
    margin: 0;
    padding: 50px 15px;
  }
}
.pricing .custom-branding .custom-branding-content {
  background-color: #fbfbfb;
  border-radius: 0 10px 10px 0;
  padding: 32px 48px 32px 58px;
}
@media (max-width: 767px) {
  .pricing .custom-branding .custom-branding-content {
    background-color: #fff;
    padding: 16px 26px 32px;
  }
}
.pricing .custom-branding .custom-branding-content .yellow-heading {
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 12px;
  padding: 6px 20px;
}
.pricing .custom-branding .custom-branding-content h3 {
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .pricing .custom-branding .custom-branding-content h3 {
    font-size: 24px;
  }
}
.pricing .custom-branding .custom-branding-content p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .pricing .custom-branding .custom-branding-content p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 15px;
  }
}
.pricing .custom-branding .custom-branding-content .price {
  font-family: Inter, serif;
  font-size: 48px;
  line-height: 75px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .pricing .custom-branding .custom-branding-content .price {
    font-size: 36px;
    line-height: 50px;
  }
}
.pricing .custom-branding .custom-branding-content .price.stars {
  display: inline-block;
  position: relative;
}
.pricing .custom-branding .custom-branding-content .price.stars span {
  font-size: 28px;
  opacity: 0.4;
}
.pricing .custom-branding .custom-branding-content .price.stars:after {
  background-image: url(../img/stars.svg);
  content: "";
  height: 38px;
  position: absolute;
  right: -30px;
  top: 0;
  width: 38px;
}
.faq {
  content-visibility: auto;
  overflow: hidden;
  padding: 70px 0 25px;
}
@media (max-width: 767px) {
  .faq {
    padding: 25px 0;
  }
}
.faq .faq-head {
  margin: 0 auto 78px;
  max-width: 635px;
}
@media (max-width: 767px) {
  .faq .faq-head {
    margin-bottom: 56px;
  }
}
.faq .faq-content {
  border-radius: 4px;
  margin: 0 auto;
  max-width: 1027px;
  overflow: hidden;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .faq .faq-content {
    overflow: initial;
    padding: 32px 16px;
  }
}
.faq .faq-content .accordion {
  background-color: #fff;
  border-radius: 3px;
  margin: 0 auto 15px;
  max-width: 680px;
  padding: 15px 24px;
}
@media (max-width: 767px) {
  .faq .faq-content .accordion {
    padding: 16px;
  }
}
.faq .faq-content .accordion:last-child {
  margin-bottom: 0;
}
.faq .faq-content .accordion-head {
  padding-right: 30px;
  position: relative;
  text-align: left;
  width: 100%;
}
.faq .faq-content .accordion-head svg {
  transform: rotate(0);
  transition: all 0.3s ease;
}
.faq .faq-content .accordion-head svg.active {
  transform: rotate(180deg);
}
.faq .faq-content .accordion-head h5 {
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 44px;
  margin: 0;
}
@media (max-width: 767px) {
  .faq .faq-content .accordion-head h5 {
    font-size: 14px;
    line-height: 23px;
  }
}
.faq .faq-content .accordion-body {
  height: auto;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq .faq-content .accordion-body.active {
  max-height: unset;
  overflow: auto;
}
.faq .faq-content .accordion-body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.faq .faq-content .accordion.is-active .accordion-head svg {
  transform: rotate(180deg);
}
.faq .faq-content .accordion.is-active .accordion-body {
  animation: fadein 1s ease 1 forwards;
  max-height: -webkit-max-content;
  max-height: max-content;
}
.faq .faq-content .accordion.is-active .accordion-body p {
  margin: 0 0 15px;
}
@media (max-width: 767px) {
  .faq .faq-content .accordion.is-active .accordion-body p {
    margin: 5px 0;
  }
}
.faq .faq-content .accordion svg {
  position: absolute;
  right: 0;
  top: 50%;
}
.feature-cards-main {
  overflow: hidden;
  padding: 100px 0 150px 0;
}
.feature-cards-main .feature-card-group {
  width: 130%;
  padding-left: 50px;
}
.feature-cards-main .feature-card-group .single-feature-card {
  min-width: 25%;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .feature-cards-main .feature-card-group .single-feature-card {
    min-width: 40%;
  }
}
.feature-cards-main .feature-card-group .single-feature-card img {
  width: 100%;
}
.feature-cards-main .feature-card-group .single-feature-card .inner-card {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
  min-height: 316px;
  padding: 60px;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .feature-cards-main .feature-card-group .single-feature-card .inner-card {
    min-height: 212px;
    padding: 12px;
  }
}
@media (min-width: 1450px) {
  .feature-cards-main .feature-card-group .single-feature-card .inner-card {
    min-height: 356px;
  }
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.yellow-bg
  .center {
  height: 108px;
  max-width: 386px;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.yellow-bg
  .inner-card-image {
  margin: unset;
  max-width: 76%;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card
  .inner-card-image {
  height: 108px;
  margin: 0 auto;
  max-width: 386px;
  position: relative;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card
  .inner-card-image
  .yellow-asset-2 {
  position: absolute;
  right: 0;
  top: 23%;
  transform: rotate(-15deg);
  width: 10%;
  z-index: 2;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card
  .inner-card-image
  .yellow-asset-3 {
  align-items: center;
  background-color: #fff;
  border: 1px solid #ededed;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 94%;
  max-height: 100%;
  max-width: 100%;
  padding: 8px 30px 8px 0;
  position: absolute;
  top: 27%;
}
@media (max-width: 767px) {
  .feature-cards-main
    .feature-card-group
    .single-feature-card
    .inner-card
    .inner-card-image
    .yellow-asset-3 {
    padding: 0 23px 0 0;
  }
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card
  .inner-card-image
  .yellow-asset-3
  p {
  color: #070e11;
  display: inline-flex;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: -0.075px;
  line-height: 14px;
  margin: 8px auto 8px 12px;
}
@media (max-width: 767px) {
  .feature-cards-main
    .feature-card-group
    .single-feature-card
    .inner-card
    .inner-card-image
    .yellow-asset-3
    p {
    font-size: 6px;
    letter-spacing: -0.05px;
    line-height: 9px;
  }
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card
  .inner-card-image
  .yellow-asset-3
  p
  .circle {
  align-self: center;
  border-radius: 50%;
  display: inline-block;
  height: 12px;
  margin-right: 8px;
  width: 12px;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card
  .inner-card-image
  .yellow-asset-3
  p
  .circle.green {
  border: 3px solid #03cd9b;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card
  .inner-card-image
  .yellow-asset-3
  p
  .circle.gray {
  border: 1px solid #727478;
}
.feature-cards-main .feature-card-group .single-feature-card .inner-card h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .feature-cards-main .feature-card-group .single-feature-card .inner-card h4 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 0;
  }
}
.feature-cards-main .feature-card-group .single-feature-card .inner-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 auto;
  max-width: 327px;
}
@media (max-width: 767px) {
  .feature-cards-main .feature-card-group .single-feature-card .inner-card p {
    font-size: 10px;
    line-height: 16px;
    margin-bottom: 0;
  }
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.green-bg {
  padding: 54px 18px 32px;
}
@media (max-width: 767px) {
  .feature-cards-main
    .feature-card-group
    .single-feature-card
    .inner-card.green-bg {
    padding: 32px 6px 16px 9px;
  }
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.green-bg
  .inner-card-image {
  width: 100%;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.green-bg
  .inner-card-image
  .center {
  display: flex;
  justify-content: center;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.green-bg
  .inner-card-image
  .center
  .green-asset-1 {
  margin-top: -8px;
  max-width: 50%;
  position: absolute;
  transform: rotate(-10deg);
  z-index: 2;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.green-bg
  .inner-card-image
  .green-asset-2 {
  position: relative;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.green-bg
  h4,
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.green-bg
  p {
  color: #fff;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.violet-bg {
  background: linear-gradient(146.6deg, #6c5bf2 10.2%, #8841f9 96.67%);
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.violet-bg
  .inner-card-image {
  width: 100%;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.violet-bg
  .inner-card-image
  .violet-asset-1 {
  max-width: 19%;
  position: relative;
  right: 17%;
  top: 60px;
  transform: rotate(-7deg);
  z-index: 2;
}
@media (max-width: 767px) {
  .feature-cards-main
    .feature-card-group
    .single-feature-card
    .inner-card.violet-bg
    .inner-card-image
    .violet-asset-1 {
    top: 24px;
  }
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.violet-bg
  .inner-card-image
  .violet-asset-2 {
  max-width: 28%;
  position: absolute;
  right: 35%;
  top: 10px; 
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.violet-bg
  h4,
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.violet-bg
  p {
  color: #fff;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.white-bg {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding-top: 15px;
}
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.white-bg
  .inner-card-image,
.feature-cards-main
  .feature-card-group
  .single-feature-card
  .inner-card.white-bg
  .inner-card-image
  .white-asset-1 {
  width: 100%;
}
@media (max-width: 990px) {
  .feature-cards-main .feature-card-group {
    width: 200%;
  }
}
@media (max-width: 767px) {
  .feature-cards-main .feature-card-group .single-feature-card {
    padding: 0 7px;
  }
}
.custom-rangeslider {
  padding: 60px 0 50px;
}
.custom-rangeslider .selfslider-handle {
  background: #fff;
  border: 5px solid #6c5bf2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.21);
  height: 24px;
  margin-top: -8px;
  width: 24px;
}
.custom-rangeslider .selfslider-rail {
  border-radius: 15px;
  height: 8px;
}
.custom-rangeslider .selfslider-track {
  background: #6c5bf2;
  border-radius: 10px;
  height: 8px;
}
.custom-rangeslider .selfslider-step {
  display: none;
}
.selfslider-tooltip-hidden {
  display: block;
  z-index: 9;
}
.selfslider-tooltip-inner {
  background: linear-gradient(146.6deg, #6c5bf2 10.2%, #8841f9 96.67%);
  border-radius: 17px;
  font-size: 14px;
  height: auto;
  padding: 10px 14px;
}
.selfslider-tooltip-placement-top {
  z-index: 8;
}
.selfslider-tooltip-arrow {
  border-top-color: #8841f9 !important;
}
.circular-video-section {
  margin: 150px 0 0;
  padding: 90px 0 0;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .circular-video-section {
    margin-top: 50px;
  }
}
.circular-video-section svg {
  left: 0;
  margin: 0 auto;
  max-width: 960px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .circular-video-section svg {
    height: auto;
    left: -15%;
    top: 30px;
    width: 130%;
  }
}
.circular-video-section > img {
  border-radius: 50%;
  display: block;
  height: 100%;
  height: 780px;
  margin: 0 auto;
  max-width: 780px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
@media (max-width: 990px) {
  .circular-video-section > img {
    height: 80%;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .circular-video-section > img {
    height: auto;
    width: 100%;
  }
}
.circular-video-section .round-thumb-block {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  max-height: 800px;
  max-width: 800px;
  position: absolute;
  right: 0;
  top: 10%;
}
@media (max-width: 990px) and (min-width: 768px) {
  .circular-video-section .round-thumb-block {
    margin: 0 6%;
    max-height: 750px;
    max-width: 750px;
    top: 12%;
  }
}
.circular-video-section .round-thumb-block .round-img-thumb {
  height: 120px;
  margin: 0 auto;
  width: 120px;
}
.circular-video-section .round-thumb-block .round-img-thumb video {
  border-radius: 50%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  width: 100%;
}
@media (max-width: 990px) {
  .circular-video-section .round-thumb-block .round-img-thumb {
    height: 80px;
    width: 80px;
  }
}
@media (max-width: 767px) {
  .circular-video-section .round-thumb-block .round-img-thumb {
    height: 60px;
    width: 60px;
  }
}
.circular-video-section .one {
  position: absolute;
  right: 0;
  top: 0;
}
.circular-video-section .two {
  left: 0;
  position: absolute;
  top: 0;
}
.circular-video-section .three {
  bottom: 0;
  left: 0;
  position: absolute;
}
.circular-video-section .four {
  bottom: 0;
  position: absolute;
  right: 0;
}
.circular-video-section .infinite {
  -webkit-animation-iteration-count: infinite;
}
.circular-video-section .linear {
  -webkit-animation-timing-function: linear;
}
.circular-video-section .counter {
  -webkit-animation-direction: reverse;
  -webkit-animation-duration: inherit;
  -webkit-animation-iteration-count: inherit;
  -webkit-animation-name: inherit;
  -webkit-animation-timing-function: inherit;
  height: 120px;
  width: 120px;
}
@media (max-width: 990px) {
  .circular-video-section .counter {
    height: 80px;
    width: 80px;
  }
}
@media (max-width: 767px) {
  .circular-video-section .counter {
    height: 60px;
    width: 60px;
  }
}
.circular-video-section .rotate {
  animation-duration: 16s;
  -webkit-animation-name: circle;
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 10;
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
  }
}
#demo-modal {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.3s ease;
  visibility: hidden;
  z-index: 9999;
}
#demo-modal.show-modal {
  opacity: 1;
  visibility: visible;
}
#demo-modal .modal {
  background-color: #fff;
  border-radius: 10px;
  margin: 0 auto;
  max-height: 95vh;
  max-width: 640px;
  overflow: auto;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  #demo-modal .modal {
    border-radius: 6px;
  }
}
#demo-modal .modal .button-close {
  opacity: 1;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 99999;
}
@media (max-width: 767px) {
  #demo-modal .modal .button-close {
    right: 16px;
    top: 10px;
  }
}
#demo-modal .modal .button-close img {
  height: 12px;
  opacity: 0.8;
  width: 12px;
}
#demo-modal .modal .button-close:hover img {
  opacity: 1;
}
#demo-modal .modal form {
  padding: 32px;
}
@media (max-width: 767px) {
  #demo-modal .modal form {
    padding: 40px 20px 20px;
  }
}
#demo-modal .modal form.hide {
  display: none;
}
@media (max-width: 767px) {
  #demo-modal .modal form .flex-row {
    justify-content: space-between;
  }
}
@media (min-width: 767px) {
  #demo-modal .modal form .flex-row {
    margin: 0 -16px;
  }
  #demo-modal .modal form .flex-row.no-margin {
    margin: 0;
  }
  #demo-modal .modal form .flex-row .col {
    padding: 0 8px;
  }
}
#demo-modal .modal form h4 {
  font-family: Inter, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 0;
  margin-right: 24px;
}
@media (max-width: 767px) {
  #demo-modal .modal form h4 {
    font-size: 20px;
    line-height: 30px;
    margin-right: 4px;
  }
}
#demo-modal .modal form .yellow-heading {
  font-size: 11px;
  height: -webkit-max-content;
  height: max-content;
  line-height: 13px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #demo-modal .modal form .yellow-heading {
    font-size: 8px;
    letter-spacing: -0.45px;
    line-height: 9px;
    padding: 6px 13px;
  }
}
#demo-modal .modal form .button {
  display: block;
  margin-top: 32px;
  min-width: 100%;
  position: static;
}
#demo-modal .modal form .form-group input,
#demo-modal .modal form .form-group label,
#demo-modal .modal form .form-group option,
#demo-modal .modal form .form-group select {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
@media (max-width: 767px) {
  #demo-modal .modal form .form-group input,
  #demo-modal .modal form .form-group label,
  #demo-modal .modal form .form-group option,
  #demo-modal .modal form .form-group select {
    font-size: 14px;
    line-height: 23px;
  }
}
#demo-modal .modal form .form-group input,
#demo-modal .modal form .form-group select {
  border: 1px solid #dcdee6;
  border-radius: 4px;
  font-size: 16px;
  height: 50px;
  margin: 4px 0 0;
  padding: 10px 0 10px 8px;
  width: 100%;
}
#demo-modal .modal form .form-group input:focus,
#demo-modal .modal form .form-group select:focus {
  border-color: #41ce8e;
}
#demo-modal .modal form .form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url(img/arrow-down.svg);
  background-position-x: calc(100% - 8px);
  background-position-y: 50%;
  background-repeat: no-repeat;
  color: #000;
}
#demo-modal .modal form .form-group select option {
  font-size: 16px;
  line-height: 27px;
}
#demo-modal .modal form .form-group .form-phone-row select {
  border-bottom-right-radius: 0;
  border-right-color: transparent;
  border-top-right-radius: 0;
  max-height: 50px;
  max-width: 20%;
}
#demo-modal .modal form .form-group .form-phone-row select:focus {
  border-color: #41ce8e;
}
@media (max-width: 767px) {
  #demo-modal .modal form .form-group .form-phone-row select {
    max-width: 31%;
  }
}
#demo-modal .modal form .form-group .form-phone-row input {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#demo-modal .modal .thanks-form {
  align-items: center;
  display: none;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 150px 0 40px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  #demo-modal .modal .thanks-form {
    padding: 30px 20px 24px;
  }
}
#demo-modal .modal .thanks-form.show {
  display: flex;
}
#demo-modal .modal .thanks-form img {
  margin-bottom: 48px;
  width: 197px;
}
@media (max-width: 767px) {
  #demo-modal .modal .thanks-form img {
    margin-bottom: 20px;
    width: 105px;
  }
}
#demo-modal .modal .thanks-form h4 {
  font-size: 21px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #demo-modal .modal .thanks-form h4 {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 32px;
  }
}
#demo-modal .modal .thanks-form p {
  bottom: 40px;
  color: #727478;
  font-weight: 500;
  margin: 50px auto 0;
  max-width: 550px;
}
@media (max-width: 767px) {
  #demo-modal .modal .thanks-form p {
    font-size: 13px;
    line-height: 24px;
  }
}
#demo-modal .modal .thanks-form p a {
  color: #06cb87;
}
.margin-bottom-negative {
  margin-bottom: -450px;
}
@media (max-width: 767px) {
  .margin-bottom-negative {
    margin-bottom: -150px;
  }
}
.blogSingleHero .blog-page-rectangle {
  overflow: hidden;
  padding: 70px 0 310px;
  position: relative;
  text-align: center;
}
.blogSingleHero .blog-page-rectangle-privacy {
  height: 152px;
  margin: 70px 0 0;
  overflow: hidden;
  position: relative;
}
.blogSingleHero .big-gradient-circle {
  left: 40%;
  top: 30%;
}
.blogSingleHero .big-gradient-circle.red-gradient {
  left: auto;
  right: 50%;
  top: -20%;
}
.blogSingleHero .big-gradient-circle.green-gradient {
  left: 33%;
  top: -60%;
}
.blogSingleHero h1 {
  font-size: 40px;
  letter-spacing: -1.28px;
  line-height: 62px;
  margin: 0 auto;
  max-width: 733px;
  padding: 86px 0 27px;
  text-align: center;
}
.blogSingleHero .blog-author {
  background: #fff;
  border-radius: 26px;
  filter: drop-shadow(0 3px 6px rgba(25, 49, 96, 0.0812322));
  justify-content: center;
  margin: 0 auto;
  min-width: 160px;
  padding: 11px 14px 9px 12px;
}
.blogSingleHero .blog-author img {
  margin-right: 4px;
  width: 32px;
}
.blogSingleHero .blog-author h5 {
  font-family: Inter, serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  margin: 0;
}
.blogSingleHero .blog-author h5 span {
  font-family: Inter;
  font-weight: 400;
}
@media (max-width: 767px) {
  .blogSingleHero .blog-page-rectangle {
    padding: 70px 20px 264px;
  }
  .blogSingleHero h1 {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 45px;
    padding: 40px 0 24px;
  }
  .blogSingleHero .blog-author {
    border-radius: 100px;
    margin: 0 auto;
    max-width: 235px;
    padding: 8px 16px;
  }
  .blogSingleHero .blog-author img {
    margin-right: 8px;
    width: 24px;
  }
  .blogSingleHero .blog-author h5 {
    font-size: 14px;
    letter-spacing: -0.448px;
    line-height: 16px;
  }
  .blogSingleHero .blog-author h5 span {
    line-height: 17px;
  }
  .blogSingleHero .big-gradient-circle.red-gradient {
    right: -50%;
  }
  .blogSingleHero .big-gradient-circle.green-gradient {
    left: -33%;
  }
}
.blogPage {
  margin-top: -244px;
}
.blogPage .small-container-blog {
  margin: 0 auto;
  max-width: 970px;
}
.blogPage .blog-page-image {
  max-height: 535px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
.blogPage .blog-page-content-area {
  display: flex;
}
.blogPage .link-logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 125px;
  padding-top: 73px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 35px;
}
.blogPage .link-logo a {
  height: 35px;
  transition: 0.3s ease;
  width: 35px;
}
.blogPage .link-logo a svg {
  transform: scale(0.875);
}
.blogPage .link-logo a svg circle {
  fill: #000;
  transition: all 3s;
}
.blogPage .link-logo a:hover svg circle {
  fill: url(#paint0_linear);
}
.blogPage .link-logo a:not(:last-child) {
  margin-bottom: 26px;
}
.blogPage .blog-page-content {
  display: block;
  margin-bottom: 100px;
  margin-top: 73px;
  max-width: 735px;
  padding-left: 45px;
}
.blogPage .blog-page-content a {
  color: #6c5bf2;
}
.blogPage .blog-page-content ol,
.blogPage .blog-page-content ul {
  padding-left: 25px;
}
.blogPage .blog-page-content ol li,
.blogPage .blog-page-content ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 20px;
}
.blogPage .blog-page-content h3,
.blogPage .blog-page-content h5 {
  font-family: Inter, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 38px;
  margin: 64px 0 15px;
}
.blogPage .blog-page-content h2,
.blogPage .blog-page-content h4 {
  font-family: Inter, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 38px;
  margin: 64px 0 15px;
}
.blogPage .blog-page-content-privacy {
  display: block;
  margin-bottom: 100px;
  margin-top: 53px;
}
.blogPage .blog-page-content-privacy a {
  color: #6c5bf2;
}
.blogPage .blog-page-content-privacy ol,
.blogPage .blog-page-content-privacy ul {
  padding-left: 25px;
}
.blogPage .blog-page-content-privacy ol li,
.blogPage .blog-page-content-privacy ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 20px;
}
.blogPage .blog-page-content-privacy h3,
.blogPage .blog-page-content-privacy h5 {
  font-family: Inter, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 38px;
  margin: 64px 0 15px;
}
.blogPage .blog-page-content-privacy h2,
.blogPage .blog-page-content-privacy h4 {
  font-family: Inter, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 38px;
  margin: 64px 0 15px;
}
.blogPage p {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}
.blogPage h3,
.blogPage h5 {
  font-family: Inter, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 38px;
}
.blogPage .blog-endpage-rectangle {
  height: 375px;
  overflow: hidden;
  position: relative;
}
.blogPage .blog-endpage-rectangle .green-oval-gradient,
.blogPage .blog-endpage-rectangle .red-oval-gradient {
  height: 855px;
  position: absolute;
  width: 2157.72px;
  z-index: -1;
}
.blogPage .blog-endpage-rectangle .red-oval-gradient {
  background: radial-gradient(
    49.66% 49.66% at 50% 50%,
    #fedcf4 0,
    rgba(254, 221, 232, 0) 100%
  );
  right: 3%;
  top: -290px;
}
.blogPage .blog-endpage-rectangle .green-oval-gradient {
  background: radial-gradient(
    49.13% 49.13% at 50% 50.53%,
    rgba(0, 214, 144, 0.162) 0,
    rgba(0, 214, 144, 0) 100%
  );
  left: 6%;
  top: -290px;
}
.blogPage .blog-endpage-rectangle h3 {
  font-size: 36px;
  line-height: 43px;
  margin: 115px auto 27px;
  max-width: 610px;
  text-align: center;
}
.blogPage .blog-endpage-rectangle .button {
  background: #fff;
  border-radius: 4px;
  color: #8048f7;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(25, 49, 96, 0.0812322));
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  margin: 0 auto 160px;
  max-width: 213px;
  padding: 18px 30px;
}
@media (max-width: 767px) {
  .blogPage {
    margin-top: -214px;
  }
  .blogPage .small-container-blog {
    padding: 0 20px;
  }
  .blogPage .blog-page-image {
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 30% 0;
    object-position: 30% 0;
    width: 100%;
  }
  .blogPage .blog-page-content-area {
    display: block;
  }
  .blogPage .link-logo {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    padding-bottom: 40px;
    padding-top: 40px;
    position: static;
    top: 0;
    width: 184px;
  }
  .blogPage .link-logo a,
  .blogPage .link-logo a svg {
    height: 40px;
    width: 40px;
  }
  .blogPage .link-logo a:not(:last-child) {
    margin-bottom: 0;
  }
  .blogPage .blog-page-content {
    display: block;
    margin-bottom: 64px;
    margin-top: 0;
    max-width: 735px;
    padding-left: 0;
  }
  .blogPage .blog-page-content-privacy ol li,
  .blogPage .blog-page-content-privacy p,
  .blogPage .blog-page-content-privacy ul li,
  .blogPage .blog-page-content ol li,
  .blogPage .blog-page-content p,
  .blogPage .blog-page-content ul li {
    font-size: 14px;
    line-height: 26px;
  }
  .blogPage .blog-page-content-privacy h3,
  .blogPage .blog-page-content-privacy h5,
  .blogPage .blog-page-content h3,
  .blogPage .blog-page-content h5 {
    font-size: 18px;
    line-height: 24px;
  }
  .blogPage .blog-page-content-privacy h2,
  .blogPage .blog-page-content-privacy h4,
  .blogPage .blog-page-content h2,
  .blogPage .blog-page-content h4 {
    font-size: 24px;
  }
  .blogPage .blog-page-content-privacy h2,
  .blogPage .blog-page-content-privacy h3,
  .blogPage .blog-page-content-privacy h4,
  .blogPage .blog-page-content-privacy h5,
  .blogPage .blog-page-content h2,
  .blogPage .blog-page-content h3,
  .blogPage .blog-page-content h4,
  .blogPage .blog-page-content h5 {
    line-height: 36px;
    margin-top: 56px;
  }
  .blogPage ol li,
  .blogPage p,
  .blogPage ul li {
    font-size: 14px;
    line-height: 26px;
  }
  .blogPage h5 {
    line-height: 36px;
  }
  .blogPage .blog-endpage-rectangle {
    height: 359px;
  }
  .blogPage .blog-endpage-rectangle .green-oval-gradient,
  .blogPage .blog-endpage-rectangle .purple-oval-gradient,
  .blogPage .blog-endpage-rectangle .red-oval-gradient {
    height: 411px;
    position: absolute;
    width: 687px;
    z-index: -1;
  }
  .blogPage .blog-endpage-rectangle .red-oval-gradient {
    right: 5%;
    top: -50px;
  }
  .blogPage .blog-endpage-rectangle .green-oval-gradient {
    left: -33%;
    top: -124px;
  }
  .blogPage .blog-endpage-rectangle .purple-oval-gradient {
    background: radial-gradient(
      50% 50% at 50% 50%,
      #b3b7ff 0,
      rgba(222, 221, 254, 0.082) 100%
    );
    filter: blur(19.8346px);
    left: 3%;
    top: 134px;
  }
  .blogPage .blog-endpage-rectangle h3 {
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 40px;
    margin: 96px auto 32px;
    padding: 0 20px;
  }
  .blogPage .blog-endpage-rectangle .button {
    margin: 0 auto 96px;
    max-width: 213px;
    padding: 18px 30px;
  }
}
.blog-single-slider-main {
  padding: 150px 0 0;
}
@media (max-width: 767px) {
  .blog-single-slider-main {
    padding-top: 80px;
  }
}
.blog-single-slider-main .heading {
  font-size: 36px;
  line-height: 43px;
  margin-bottom: 70px;
}
.blog-single-slider-main .blogList {
  padding-top: 0;
}
.blog-single-slider-main .blogList .slick-list {
  padding-left: 0 !important;
}
.blog-single-slider-main .blogList .slick-slider {
  position: relative;
}
.blog-single-slider-main .blogList .slick-slider .slick-arrow {
  background-color: #000;
  background-image: url(img/chevron.html);
  background-position: 50%;
  background-repeat: no-repeat;
  border: none;
  border-radius: 50%;
  font-size: 0;
  height: 40px;
  left: auto;
  position: absolute;
  top: -110px;
  transition: 0.3s ease;
  width: 40px;
  z-index: 4;
}
.blog-single-slider-main .blogList .slick-slider .slick-arrow.slick-prev {
  background-image: url(img/chevron-left.html);
  right: calc(50vw - 545px);
}
.blog-single-slider-main .blogList .slick-slider .slick-arrow.slick-next {
  left: auto;
  right: calc(50vw - 595px);
}
.blog-single-slider-main .blogList .slick-slider .slick-arrow:hover {
  background-color: #6c5bf2;
}
@media (max-width: 1200px) {
  .blog-single-slider-main .blogList .slick-slider .slick-arrow.slick-prev {
    right: 70px;
  }
  .blog-single-slider-main .blogList .slick-slider .slick-arrow.slick-next {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .blog-single-slider-main .blogList .slick-slider .slick-arrow {
    bottom: -20px;
    right: auto;
    top: auto;
  }
  .blog-single-slider-main .blogList .slick-slider .slick-arrow.slick-prev {
    left: 20px;
  }
  .blog-single-slider-main .blogList .slick-slider .slick-arrow.slick-next {
    left: 70px;
  }
}
.blog-single-slider-main .blog-single-slider {
  margin: 0 30px;
}
@media (max-width: 990px) {
  .blog-single-slider-main .blog-single-slider {
    margin: 0 15px;
  }
}
.blog-single-slider-main .blog-single-slider .blog-image-wrapper {
  max-width: 100% !important;
}

.subpage-body {
    max-width: 1170px;
    margin: 0 auto;
    padding: 100px 0px 100px 0px;
    text-align: justify;
    text-justify: inter-word;    
}

.subpage-body h4 {
    font-weight: 600;
}    

@media (max-width: 767px) {
  .subpage-body {
    padding: 50px 25px 100px 25px;
    margin-bottom: 100px; 
    text-align: left;
  }
}


table.hm-table {
  width: 100%;
  background-color: #ffffff;
  border-collapse: collapse;
  border-width: 1px;
  border-color: #ededed;
  border-style: solid;
  color: #000000;
}

table.hm-table td, table.hm-table th {
  border-width: 1px;
  border-color: #ededed;
  border-style: solid;
  padding: 20px;
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 16px;

}

table.hm-table thead {
  background-color: #f6f6f6;
}