.border-bottom-1px {
  border-bottom: 1px solid var(--color3);
}

html {
  height: 100%;
}

body {
  font-family: var(--fontRegular);
  font-style: normal;
  font-weight: var(--fontWeight1);
  font-size: var(--fontSize1);
  line-height: 1.2;
  color: var(--color4);
  position: relative;
  background-color: var(--bg-color);
  min-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
body > .container,
body > header {
  position: relative;
  z-index: 1;
}
@media (max-width: 1300px) {
  body > .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.landing-page::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color);
  background-image: var(--landing-vertical-gradient);
}
@media (min-width: 769px) and (max-height: 800px) {
  body.landing-page::before {
    background-image: var(--landing-horizontal-gradient);
  }
}

main:not(.no-bg-gradient)::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-image: var(--bg-gradient2);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 768px) {
  main:not(.no-bg-gradient)::after {
    background-image: var(--bg-gradient1);
  }
}
main .section-bg-gradient {
  background-image: var(--bg-gradient2);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  main .section-bg-gradient {
    background-image: var(--bg-gradient1);
  }
}

.page-content {
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
@media (max-width: 768px) {
  .page-content {
    max-height: calc(100vh - 60px);
  }
}

a {
  text-decoration: none;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1240px;
  }
}
/* Header nav menu */
.header {
  background-color: var(--color11);
  z-index: 2;
}
@media (max-width: 768px) {
  .header {
    top: 0;
    left: 0;
    right: 0;
    position: relative;
    z-index: 11;
  }
  .header .menu-arrow {
    display: none;
  }
}
.header .container-xxl {
  display: flex;
  align-items: center;
  max-width: 1236px;
  height: 70px;
  border-bottom: 1px solid var(--color12);
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1300px) {
  .header .container-xxl {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .header .container-xxl {
    height: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 768px) {
  .header .brandLogo {
    width: 101px;
  }
}
.header .brandLogo img {
  user-select: none;
  max-width: 100%;
  height: var(--height1);
}
@media (max-width: 768px) {
  .header .brandLogo img {
    height: auto;
  }
}
.header .menu {
  margin-left: auto;
}
.header .menu .menuBtn {
  display: none;
  position: relative;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.header .menu .menuBtn span {
  height: 2px;
  width: 24px;
  background-color: var(--color4);
  display: block;
  position: absolute;
  left: 50%;
  transition: 0.35s ease-out;
}
.header .menu .menuBtn span:nth-child(1) {
  top: 8px;
  transform: translate3d(-50%, 0, 0);
}
.header .menu .menuBtn span:nth-child(2) {
  width: 12px;
  top: 50%;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
}
.header .menu .menuBtn span:nth-child(3) {
  bottom: 8px;
  transform: translate3d(-50%, 0, 0);
}
@media (max-width: 768px) {
  .header .menu .menuBtn {
    display: block;
  }
}
.header .menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.header .menu ul li {
  margin-left: 25px;
}
.header .menu ul li.active a {
  color: var(--color16);
}
.header .menu ul li a {
  font-family: var(--fontHeavy);
  color: var(--color7);
  font-size: var(--fontSize10);
  font-weight: var(--fontWeight2);
  text-transform: var(--textTransform1);
  transition: 0.23s ease-out;
}
.header .menu ul li a:hover {
  color: var(--color16);
}
@media (max-width: 768px) {
  .header .menu ul {
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 60px;
    bottom: 0;
    width: 100%;
    justify-content: center;
    padding: 20px 20px 80px;
    transition: 0.35s ease-out;
    transform: translate3d(-100%, 0, 0);
    background-color: var(--bg-color);
    background-image: var(--bg-gradient1);
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .header .menu ul li {
    margin-left: 0;
    border-bottom: 1px solid var(--color4);
  }
  .header .menu ul li a {
    display: block;
    padding: 20px 0;
    font-size: var(--fontSize1);
    position: relative;
  }
  .header .menu ul li a::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url("../img/icons/icon-arrow-right.svg") no-repeat center center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

canvas {
  position: absolute;
  outline: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

canvas.fullscreen {
  position: fixed;
}

img, canvas {
  transition: opacity 1s;
}

body.menu--active {
  overflow: hidden;
}
body.menu--active .header {
  z-index: 3;
}
@media (max-width: 768px) {
  body.menu--active .header .menu ul {
    transform: translate3d(0, 0, 0);
  }
  body.menu--active .header .menu .menuBtn span:nth-child(1) {
    top: 8px;
    transform: translate3d(-50%, 8.5px, 0) rotate(45deg);
  }
  body.menu--active .header .menu .menuBtn span:nth-child(2) {
    width: 0px;
    opacity: 0;
  }
  body.menu--active .header .menu .menuBtn span:nth-child(3) {
    bottom: 8px;
    transform: translate3d(-50%, -8.5px, 0) rotate(-45deg);
  }
}

/* Mail Buttton */
@keyframes zoomInMailLink {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.mail-button .mailLink {
  position: fixed;
  display: flex;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  bottom: 75px;
  right: 50px;
  background-color: var(--color14);
  align-items: center;
  text-align: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  animation: zoomInMailLink 0.35s ease-out forwards;
  transition: 0.23s ease-out;
  z-index: 11;
}
.mail-button .mailLink img {
  display: inline-block;
}
.mail-button .mailLink:hover {
  background-color: var(--color15);
}
@media (max-width: 768px) {
  .mail-button .mailLink {
    bottom: 65px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  .mail-button .mailLink img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 576px) {
  .mail-button .mailLink {
    bottom: 15px;
  }
}

.video {
  position: relative;
  margin-top: 45px;
}
.video video {
  position: relative;
  width: 100%;
  max-width: 858px;
  height: auto;
  border-radius: var(--borderRadius8);
  cursor: pointer;
}
@media (max-width: 991px) {
  .video video {
    border-radius: var(--borderRadius7);
  }
}

.banner .company-logos-container {
  overflow: hidden;
}
.banner .company-logos-container:hover .company-logos {
  animation-play-state: paused;
}
.banner .company-logos {
  display: flex;
  align-items: center;
  width: fit-content;
  animation-name: companyLogoAnimation;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
}

.social-icons {
  display: flex;
  gap: 18px;
}
.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transition: 0.23s ease-out;
}
.social-icons a:not(.user) {
  background-color: var(--color25);
}
@media (max-width: 576px) {
  .social-icons a:not(.user) {
    background-color: var(--color27);
  }
}
.social-icons a:not(.user) svg {
  fill: var(--color11);
}
@media (max-width: 576px) {
  .social-icons a:not(.user) svg {
    fill: var(--color26);
  }
}
.social-icons a.user {
  background-color: var(--color24);
}
@media (max-width: 576px) {
  .social-icons a.user {
    background-color: var(--color30);
  }
}
.social-icons a.user svg {
  fill: var(--color11);
}
@media (max-width: 576px) {
  .social-icons a.user svg {
    fill: var(--color29);
  }
}
@media (max-width: 768px) {
  .social-icons {
    gap: 10px;
  }
}

/* Footer */
.footer {
  max-height: 70px;
  background-color: var(--color11);
  margin-top: auto;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 768px) {
  .footer {
    max-height: 60px;
  }
}
@media (max-width: 576px) {
  .footer {
    background-color: var(--color28);
    max-height: 172px;
  }
}
.footer .brandLogo img.logo-mobile {
  display: none;
}
@media (max-width: 576px) {
  .footer .brandLogo img.logo-mobile {
    display: block;
  }
}
.footer .brandLogo img.logo-desktop {
  display: block;
  max-width: 75px;
}
@media (max-width: 576px) {
  .footer .brandLogo img.logo-desktop {
    display: none;
  }
}
.footer div.container-xxl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 1236px;
  height: 70px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1300px) {
  .footer div.container-xxl {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .footer div.container-xxl {
    height: 60px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 576px) {
  .footer div.container-xxl {
    flex-direction: column;
    gap: 24px;
    height: max-content;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 1200px) and (max-height: 1000px) and (min-height: 650px) {
  .footer div.container-xxl {
    height: 70px;
  }
}
.footer div.container-xxl .copyright {
  font-size: 12px;
  color: var(--color5);
}
@media (max-width: 576px) {
  .footer div.container-xxl .copyright {
    color: var(--color11);
  }
}
.footer .footer-links {
  display: flex;
  gap: 24px;
  font-size: var(--fontSize10);
}
@media (max-width: 768px) {
  .footer .footer-links {
    gap: 12px;
  }
}
.footer .footer-links a {
  color: var(--color7);
  text-align: center;
  transition: 0.23s ease-out;
}
.footer .footer-links a:hover {
  color: var(--color16);
}
@media (max-width: 576px) {
  .footer .footer-links a {
    color: var(--footerLinkColorMobile);
  }
}

/* Contact page */
.page-sign-up {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.page-sign-up section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199.98px) {
  .page-sign-up section {
    padding-top: 0;
  }
}
.page-sign-up .container-fluid {
  flex-grow: 1;
  display: flex;
  padding-right: 0;
}
.page-sign-up .container-fluid > div {
  flex-basis: 50%;
  padding: 50px;
}
@media (max-width: 1199.98px) {
  .page-sign-up .container-fluid {
    position: relative;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
}
.page-sign-up .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: var(--fontSize9);
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: initial;
  padding-left: 0 !important;
}
.page-sign-up .contact h1 {
  margin-top: 2em;
}
.page-sign-up .contact p {
  max-width: 520px;
}
@media (max-width: 1199.98px) {
  .page-sign-up .contact {
    position: static;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-sign-up .form-title {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.page-sign-up .form-title > div:first-child {
  font-family: var(--fontHeavy);
  font-size: var(--signupFormTitleFontSize);
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.page-sign-up form {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
.page-sign-up .button-primary {
  background-color: var(--formSubmitButtonBackground);
  width: 100%;
}
.page-sign-up .button-primary:hover {
  background-color: var(--formSubmitButtonBackgroundHover);
}
.page-sign-up .login-button {
  position: absolute;
  top: 50px;
  right: 50px;
  font-family: var(--fontBlack);
  color: var(--loginButtonColor);
  text-decoration: underline;
  margin: 0;
  padding: 8px 12px;
  transition: 0.23s ease-out;
}
.page-sign-up .login-button:hover {
  color: var(--loginButtonColorHover);
}
@media (max-width: 1199.98px) {
  .page-sign-up .login-button {
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 500px) {
  .page-sign-up .login-button {
    right: 8px;
  }
}
.page-sign-up .background {
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
}
.page-sign-up .background > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1199.98px) {
  .page-sign-up .background > div {
    height: 500px;
  }
}
.page-sign-up .background .testimonial {
  font-size: var(--testimonialFontSize);
  color: var(--testimonialColor);
  max-width: 62ch;
}
.page-sign-up .background .author {
  display: inline-block;
  font-size: var(--authorFontSize);
  color: var(--authorColor);
  margin-top: 1em;
}
@media (max-width: 1199.98px) {
  .page-sign-up .background {
    background-size: 100%;
  }
}
@media (max-width: 575.98px) {
  .page-sign-up .background {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

.contact {
  text-align: center;
  margin: 50px auto 50px;
  max-width: 700px;
  font-size: var(--fontSize2);
}
.contact .grecaptcha-badge {
  bottom: 85px !important;
}
@media (max-width: 768px) {
  .contact {
    font-size: var(--fontSize9);
  }
  .contact .grecaptcha-badge {
    bottom: 75px !important;
  }
}
@media (max-width: 576px) {
  .contact .grecaptcha-badge {
    bottom: 177px !important;
  }
}
.contact h1 {
  font-family: var(--fontHeavy);
  font-size: var(--fontSize6);
  font-weight: var(--fontWeight2);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact h1 {
    font-size: var(--fontSize4);
  }
}
.contact .letusknow {
  font-family: var(--fontBlack);
  font-weight: var(--fontWeight3);
}
.contact #contact-form .button-wrapper .button-primary {
  width: 100%;
}
.contact #signup-form .checkbox-wrapper {
  display: flex;
  column-gap: 12px;
  margin-bottom: 40px;
}
.contact #signup-form .checkbox-input {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--color1);
  border-radius: 6px;
  cursor: pointer;
}
.contact #signup-form .checkbox-input::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 6px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(-45deg);
  box-sizing: content-box;
}
.contact #signup-form .checkbox-input:checked::after {
  border-left-color: var(--color1);
  border-bottom-color: var(--color1);
}
.contact #signup-form .checkbox-label {
  margin-bottom: 0;
}

/* Download page */
.download-page {
  overflow: hidden;
  text-align: center;
  margin: 30px auto 0;
  max-width: 700px;
  font-size: var(--fontSize2);
}
@media (max-width: 768px) {
  .download-page {
    font-size: var(--fontSize9);
  }
}
.download-page h1 {
  font-family: var(--fontHeavy);
  font-size: var(--fontSize4);
  font-weight: var(--fontWeight2);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .download-page h1 {
    font-size: var(--fontSize4);
  }
}
.download-page iframe {
  width: 1242px;
  height: 1775px;
  transform: scale(0.5);
  transform-origin: left top;
  overflow: hidden;
  filter: blur(4px);
  background: white;
}
.download-page .frame-container {
  width: 621px;
  height: 888px;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
}
.download-page .form {
  position: fixed;
  bottom: 70px;
  left: 0;
  width: 100%;
  max-height: 100%;
  background-color: var(--color13);
  overflow-y: auto;
}
@media (max-width: 768px) {
  .download-page .form {
    max-height: calc(100% - 60px);
    bottom: 60px;
  }
}
@media (max-width: 576px) {
  .download-page .form {
    max-height: calc(100% - 172px - 60px);
    bottom: 172px;
  }
}
.download-page .form-content {
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .download-page .form-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.download-page .form input {
  background-color: white;
  color: #444444;
}
.download-page .button-wrapper .button-primary {
  width: auto;
}
.download-page + footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

.input-wrapper {
  text-align: left;
  margin-bottom: 20px;
}
.input-wrapper label {
  display: block;
  font-size: var(--fontSize11);
  font-weight: var(--fontWeight2);
  margin-bottom: 5px;
}
.input-wrapper input[type=text], .input-wrapper input[type=email], .input-wrapper input[type=url] {
  width: 100%;
  height: 46px;
  padding: 10px 15px;
  border-radius: 4px;
  outline: none;
  border: 1px solid var(--color4);
  background-color: transparent;
}
.input-wrapper textarea {
  width: 100%;
  height: 150px;
  border-radius: 4px;
  outline: none;
  padding: 10px 15px;
  background-color: transparent;
  border: 1px solid var(--color4);
}
@media (max-width: 768px) {
  .input-wrapper textarea {
    height: 120px;
  }
}

.button-wrapper {
  padding-top: 10px;
}
@media (max-width: 768px) {
  .button-wrapper .button-primary {
    width: 100%;
  }
}

/* Buttons */
.button-primary {
  background-color: var(--color1);
  color: var(--color8);
  border-radius: var(--buttonRadius);
  border: 0;
  line-height: 1;
  white-space: nowrap;
  height: 44px;
  padding: 10px 24px;
  transition: 0.23s ease-out;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fontHeavy);
  font-size: var(--fontSize1);
  font-weight: var(--fontWeight2);
}
.button-primary:hover {
  color: var(--color19);
  background-color: var(--color5);
}

.button-outlined {
  background-color: transparent;
  color: var(--color9);
  border: 2px solid var(--color21);
  border-radius: var(--buttonRadius);
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  height: 44px;
  padding: 10px 24px;
  transition: 0.23s ease-out;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fontHeavy);
  font-weight: var(--fontWeight2);
}
.button-outlined:hover {
  color: var(--color5);
  border-color: var(--color5);
}

/* Page - Examples */
.page-examples {
  padding: 45px 0;
}
.page-examples .row {
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 20px;
}
.page-examples .row > div {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.page-examples h1 {
  font-family: var(--fontHeavy);
  font-weight: var(--fontWeight2);
  font-size: var(--fontSize6);
}
@media (max-width: 768px) {
  .page-examples h1 {
    font-size: var(--fontSize4);
  }
}
.page-examples .description {
  font-weight: var(--fontWeight1);
  font-size: var(--fontSize2);
  margin-bottom: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .page-examples .description {
    font-size: var(--fontSize9);
  }
}
.page-examples .single {
  padding: 20px 20px 36px 20px;
  margin-bottom: 20px;
  border-radius: var(--borderRadius2);
  height: 100%;
  position: relative;
  border: 1px solid var(--color6);
}
.page-examples .single h2 {
  font-family: var(--fontHeavy);
  font-size: var(--fontSize4);
  font-weight: var(--fontWeight2);
}
@media (max-width: 768px) {
  .page-examples .single h2 {
    font-size: var(--fontSize3);
  }
}
.page-examples .single .thumbnail {
  border: 1px solid var(--color6);
  background: var(--color20);
  border-radius: var(--borderRadius1);
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  margin-bottom: 20px;
}
.page-examples .single .thumbnail img {
  max-width: 100%;
  max-height: 100%;
}
.page-examples .single .button-wrapper {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

/* Page - Examples */
.page-example-details {
  padding: 45px 0;
}
.page-example-details .row {
  margin-right: -10px;
  margin-left: -10px;
}
.page-example-details .row > div {
  padding-left: 10px;
  padding-right: 10px;
}
.page-example-details h1 {
  font-weight: var(--fontWeight2);
  font-size: var(--fontSize6);
  margin-bottom: 20px;
}
.page-example-details .description {
  font-weight: var(--fontWeight1);
  font-size: var(--fontSize2);
  margin-bottom: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.page-example-details .single {
  margin-bottom: 20px;
  border-radius: var(--borderRadius2);
}
@media (max-width: 991px) {
  .page-example-details .single {
    margin-bottom: 40px;
  }
}
.page-example-details .single h2 {
  font-family: var(--fontHeavy);
  font-size: var(--fontSize4);
  font-weight: var(--fontWeight2);
}
.page-example-details .single .thumbnail {
  border: 1px solid var(--color6);
  background: var(--color20);
  border-radius: var(--borderRadius7);
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (min-width: 991px) {
  .page-example-details .single .thumbnail {
    height: 350px;
  }
}
.page-example-details .single .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-example-details .single .thumbnail.thumbnail-play::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
  background: url("../img/icons/icon-play.svg") no-repeat center center;
}
@media (min-width: 768px) {
  .page-example-details .single .details .button-wrapper {
    display: flex;
  }
}
.page-example-details .single .details .button-wrapper .button-outlined {
  border-radius: var(--borderRadius6);
}
@media (min-width: 991px) {
  .page-example-details .single .details {
    max-width: 430px;
    margin: 0px auto;
  }
}
.page-example-details .single .details.details-main h1, .page-example-details .single .details.details-main h2 {
  font-family: var(--fontBlack);
  font-size: var(--fontSize6);
  font-weight: var(--fontWeight2);
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .page-example-details .single .details.details-main h1, .page-example-details .single .details.details-main h2 {
    font-size: var(--fontSize4);
    margin-bottom: 20px;
  }
}
.page-example-details .single .details p {
  font-weight: var(--fontWeight1);
  font-size: var(--fontSize2);
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .page-example-details .single .details p {
    font-size: var(--fontSize9);
  }
}
@media (max-width: 768px) {
  .page-example-details .single .details {
    max-width: 100%;
  }
}
.page-example-details .single .flex-lg-row-reverse .details {
  margin-left: 0;
}
@media (max-width: 768px) {
  .page-example-details .single {
    margin-bottom: 30px;
  }
  .page-example-details .single .button-wrapper .button-primary {
    margin-bottom: 10px;
  }
  .page-example-details .single .button-wrapper .button-primary,
  .page-example-details .single .button-wrapper .button-outlined {
    width: 100%;
  }
}

/* page-landing */
.page-landing {
  text-align: center;
  padding: 50px 0;
}
@media (max-width: 420px) {
  .page-landing .hero-details {
    position: relative;
    z-index: 1;
  }
}
.page-landing h1.title {
  font-family: var(--fontBlack);
  font-weight: var(--fontWeight2);
  font-size: var(--fontSize7);
  color: var(--color4);
  max-width: 750px;
  margin: 0 auto 5vh;
}
@media (max-width: 768px) {
  .page-landing h1.title {
    font-size: var(--fontSize5);
  }
}
.page-landing .buttons-wrapper .button-primary {
  margin: 0 15px 10px;
}
.page-landing .buttons-wrapper .button-outlined {
  margin: 0 0px 10px 0px;
}
@media (max-width: 768px) {
  .page-landing .buttons-wrapper .button-primary, .page-landing .buttons-wrapper .button-outlined {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.page-landing .demo-area {
  padding: 45px 0;
  height: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.page-landing .demo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .page-landing .demo-area {
    max-width: 100%;
    height: 320px;
  }
}
@media (max-width: 420px) {
  .page-landing .demo-area {
    margin-top: -5vw;
    margin-bottom: -5vw;
  }
}
@media (max-width: 380px) {
  .page-landing .demo-area {
    margin-top: -11vw;
    margin-bottom: -11vw;
  }
}
@media (max-width: 320px) {
  .page-landing .demo-area {
    margin-top: -18vw;
    margin-bottom: -18vw;
  }
}
.page-landing .description, .page-landing .description-bottom {
  font-weight: var(--fontWeight1);
  font-size: var(--fontSize2);
}
.page-landing .description {
  margin-bottom: 5vh;
  display: none;
}
@media (min-width: 1200px) and (max-height: 1000px) and (min-height: 650px) {
  .page-landing {
    display: flex;
    text-align: left;
    align-items: center;
    flex-grow: 1;
  }
  .page-landing .hero-details {
    width: 45%;
    min-width: 480px;
    padding-right: 30px;
  }
  .page-landing .demo-area {
    text-align: center;
    width: 55%;
  }
  .page-landing .demo-area img {
    width: 100%;
  }
  .page-landing .buttons-wrapper .button-primary {
    margin-left: 0;
    margin-right: 4px;
  }
  .page-landing .description-bottom {
    display: none;
  }
  .page-landing .description {
    display: block;
  }
}

/* page-pricing */
.page-pricing {
  padding-top: 40px;
  padding-bottom: 40px;
}
.page-pricing .row > div {
  margin-bottom: 20px;
}
.page-pricing .title {
  text-align: center;
  font-family: var(--fontHeavy);
  font-weight: var(--fontWeight2);
  font-size: var(--fontSize6);
}
@media (max-width: 768px) {
  .page-pricing .title {
    font-size: var(--fontSize4);
  }
}
.page-pricing .description {
  text-align: center;
  font-weight: var(--fontWeight1);
  font-size: var(--fontSize2);
  max-width: 790px;
  margin: 20px auto 40px;
}
@media (max-width: 768px) {
  .page-pricing .description {
    font-size: var(--fontSize9);
  }
}
.page-pricing .single {
  border-radius: var(--borderRadius2);
  border: 1px solid var(--color4);
  min-height: 515px;
  padding: 40px 20px 67px 20px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.page-pricing .single::before {
  content: "";
  display: block;
  height: 26px;
  background-color: var(--color2);
  margin-bottom: 25px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
.page-pricing .single.single1::before {
  background-color: var(--color2);
}
.page-pricing .single.single2::before {
  background-color: var(--color3);
}
.page-pricing .single.single3::before {
  background-color: var(--color17);
}
.page-pricing .single .button-wrapper {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: center;
}
.page-pricing .single .button-wrapper .button-primary {
  border-radius: var(--borderRadius6);
}
.page-pricing .single ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.page-pricing .single ul li {
  background: url("../img/icons/icon-check-circle.svg") no-repeat left center;
  padding-left: 25px;
  margin-bottom: 13px;
  font-size: var(--fontSize0);
  font-weight: var(--fontWeight2);
}
.page-pricing .pricing-wrapper {
  max-width: 925px;
  margin: 0 auto;
}
.page-pricing .pricing-wrapper > .row {
  margin-right: -10px;
  margin-left: -10px;
}
.page-pricing .pricing-wrapper > .row > div {
  padding-left: 10px;
  padding-right: 10px;
}
.page-pricing .pricing-wrapper .note {
  font-family: var(--fontRegular);
  font-size: var(--fontSize0);
  font-weight: var(--fontWeight2);
  color: var(--color10);
  margin-top: 20px;
}
.page-pricing .pricing-head {
  border-bottom: 1px solid var(--color4);
  min-height: 70px;
  margin-bottom: 20px;
}
.page-pricing .pricing-head-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-pricing .pricing-head-inner h2 {
  font-family: var(--fontRegular);
  font-weight: var(--fontWeight2);
  font-size: var(--fontSize4);
  color: var(--color18);
}
@media (max-width: 768px) {
  .page-pricing .pricing-head-inner h2 {
    font-size: var(--fontSize3);
  }
}
.page-pricing .pricing-head-inner .amount {
  font-family: var(--fontBlack);
  font-size: var(--fontSize2);
  font-weight: var(--fontWeight3);
}
.page-pricing .pricing-head-inner .amount .frequency {
  font-family: var(--fontRegular);
  font-size: var(--fontSize1);
}
.page-pricing .pricing-note {
  text-align: right;
  font-weight: var(--fontWeight2);
  font-size: var(--fontSize0);
}
@media (max-width: 768px) {
  .page-pricing .title, .page-pricing .description {
    text-align: left;
  }
  .page-pricing .single {
    margin-bottom: 20px;
  }
  .page-pricing .pricing-wrapper .note {
    margin-top: 0px;
  }
}

/* page-business */
.page-business {
  color: var(--color23);
}
.page-business > section {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .page-business > section {
    padding: 50px 0;
  }
}
.page-business > section:nth-child(even) {
  background-color: var(--color22);
}
.page-business > section:last-child {
  border-bottom: 1px solid var(--color3);
}
.page-business h1.title {
  font-family: var(--fontBlack);
  font-weight: var(--fontWeight2);
  font-size: var(--fontSize6);
  color: var(--color5);
  margin-bottom: 4.5vh;
}
@media (max-width: 768px) {
  .page-business h1.title {
    font-size: var(--fontSize5);
  }
}
.page-business h2.title {
  font-family: var(--fontBlack);
  font-size: var(--fontSize3);
}
.page-business .hero-details .container {
  max-width: 1060px;
}
.page-business .hero-details h1.title {
  color: var(--color4);
}
.page-business .hero-details .stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding-top: 70px;
}
@media (max-width: 991px) {
  .page-business .hero-details .stats-container {
    padding-top: 50px;
  }
}
.page-business .hero-details .stat-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  background-color: var(--statItemBackground);
  padding: 24px;
  border: 1px var(--statItemBorderColor) solid;
  border-radius: var(--borderRadius10);
}
@media (max-width: 767.98px) {
  .page-business .hero-details .stat-card {
    max-width: 500px;
  }
}
.page-business .hero-details .stat-card > div:nth-child(2) {
  font-family: var(--fontBlack);
  font-size: var(--fontSize3);
}
.page-business .hero-details .stat-card > div:last-child {
  font-family: var(--fontHeavy);
  flex-basis: 100%;
}
.page-business .hero-details .stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--statIconBackground);
}
.page-business .hero-details .stat-icon img {
  height: auto;
}
.page-business .hero-details .data-analysis-icon {
  width: 55%;
}
.page-business .hero-details .stamp-icon {
  width: 85%;
}
.page-business .hero-details .warning-icon {
  width: 70%;
}
.page-business .banner {
  padding-top: 33px;
  padding-bottom: 33px;
}
.page-business .banner .banner-title {
  font-size: var(--fontSize0);
  text-transform: uppercase;
  font-weight: var(--fontHeavy);
  color: var(--color5);
  margin-bottom: 30px;
}
.page-business .banner .company-logos {
  gap: 56px;
  animation-duration: 70s;
}
@media (max-width: 768px) {
  .page-business .banner .company-logos {
    gap: 46px;
  }
}
.page-business .banner .company-logos img {
  height: 36px;
  width: auto;
  filter: grayscale(100);
}
@media (max-width: 768px) {
  .page-business .banner .company-logos img {
    height: 26px;
  }
}
.page-business .cards-container .container {
  max-width: 1060px;
}
.page-business .cards-container .container > div {
  padding: 45px 0;
}
@media (max-width: 991px) {
  .page-business .cards-container .container > div {
    padding: 25px 0;
  }
}
.page-business .cards-container .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 70px 0;
}
@media (max-width: 991px) {
  .page-business .cards-container .cards {
    padding: 50px 0;
  }
}
.page-business .cards-container .cards .card {
  color: var(--color32);
  background-color: var(--color31);
  border-radius: 12px;
  padding: 24px;
  max-width: 300px;
}
@media (max-width: 767.98px) {
  .page-business .cards-container .cards .card {
    max-width: 500px;
  }
}
.page-business .cards-container .cards .card .description {
  margin: auto;
}
.page-business .help-details .container {
  max-width: 1060px;
}
.page-business .help-details .help-items {
  display: flex;
  flex-direction: column;
  gap: 90px;
  max-width: 834px;
  margin: auto;
  padding: 70px 0 10px;
}
@media (max-width: 991px) {
  .page-business .help-details .help-items {
    padding-top: 50px;
    gap: 60px;
  }
}
@media (max-width: 991px) {
  .page-business .help-details .help-items {
    gap: 50px;
  }
}
.page-business .help-details .help-items .help-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
}
.page-business .help-details .help-items .help-item img {
  width: 306px;
  height: 204px;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .page-business .help-details .help-items .help-item {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .page-business .help-details .help-items .help-item {
    flex-direction: column;
    gap: 40px;
  }
  .page-business .help-details .help-items .help-item img {
    width: 100%;
    max-width: 306px;
    height: auto;
  }
  .page-business .help-details .help-items .help-item.align-right > div:last-child, .page-business .help-details .help-items .help-item.align-left > div:first-child {
    text-align: center;
  }
  .page-business .help-details .help-items .help-item.align-left {
    display: flex;
    flex-direction: column-reverse;
  }
}
.page-business .how-it-works-details .container {
  max-width: 1060px;
}
.page-business .how-it-works-details .how-it-works-items {
  max-width: 834px;
  margin: auto;
  padding: 70px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.page-business .how-it-works-details .how-it-works-items h2.title {
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .page-business .how-it-works-details .how-it-works-items h2.title {
    margin-bottom: 22px;
  }
}
.page-business .how-it-works-details .how-it-works-items > div {
  position: relative;
  padding-left: 54px;
}
@media (max-width: 575px) {
  .page-business .how-it-works-details .how-it-works-items > div {
    padding-left: 32px;
  }
}
.page-business .how-it-works-details .how-it-works-items > div::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: var(--color3);
  border-radius: 50%;
}
@media (max-width: 575px) {
  .page-business .how-it-works-details .how-it-works-items > div::before {
    top: 4px;
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 991px) {
  .page-business .how-it-works-details .how-it-works-items {
    padding-top: 50px;
    gap: 25px;
  }
}
.page-business .testimonials .slider-container {
  position: relative;
  width: 100%;
  max-width: 1244px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
}
.page-business .testimonials .slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}
.page-business .testimonials .slide {
  min-width: 100%;
  box-sizing: border-box;
}
.page-business .testimonials .slide-contents-wrapper {
  display: flex;
  align-items: center;
  gap: 90px;
  padding: 0 107px;
}
.page-business .testimonials .slide-contents-wrapper > div:last-child {
  padding: 30px 0;
}
@media (max-width: 767px) {
  .page-business .testimonials .slide-contents-wrapper > div:last-child {
    text-align: center;
  }
}
.page-business .testimonials .slide-contents-wrapper > div:last-child .name {
  text-transform: uppercase;
  color: var(--clientNameColor);
}
.page-business .testimonials .slide-contents-wrapper > div:last-child .designation {
  text-transform: uppercase;
  color: var(--clientDesignationColor);
}
.page-business .testimonials .slide-contents-wrapper .avatar {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  overflow: hidden;
}
.page-business .testimonials .slide-contents-wrapper .avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .page-business .testimonials .slide-contents-wrapper {
    gap: 30px;
    padding: 0 60px;
  }
}
@media (max-width: 767px) {
  .page-business .testimonials .slide-contents-wrapper {
    flex-direction: column;
    gap: 0;
    padding: 30px 0;
  }
}
.page-business .testimonials .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  padding: 0;
  background: transparent;
  border: 10px solid transparent;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-business .testimonials .arrow {
    top: 100%;
    transform: translateY(-100%);
  }
}
.page-business .testimonials .arrow.left {
  left: 10px;
  border-right-color: var(--testimonialArrowColorActive);
  border-left-width: 0;
}
@media (max-width: 767px) {
  .page-business .testimonials .arrow.left {
    left: calc(50% - 40px);
  }
}
.page-business .testimonials .arrow.right {
  right: 10px;
  border-left-color: var(--testimonialArrowColorActive);
  border-right-width: 0;
}
@media (max-width: 767px) {
  .page-business .testimonials .arrow.right {
    right: calc(50% - 40px);
  }
}
.page-business .testimonials .arrow:disabled {
  border-right-color: var(--testimonialArrowColorDisabled);
  border-left-color: var(--testimonialArrowColorDisabled);
  cursor: not-allowed;
}
.page-business .faq .container {
  max-width: 1060px;
}
.page-business .faq .accordion-container {
  padding-top: 70px;
}
@media (max-width: 991px) {
  .page-business .faq .accordion-container {
    padding-top: 50px;
  }
}

@keyframes companyLogoAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Responsive Youtube Video */
.video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-container::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal.zoom .modal-dialog {
  transform: scale(0.25);
  transition: 0.5s ease-out;
}
.modal.zoom.show .modal-dialog {
  transform: scale(1);
}

/* page-home */
.page-home {
  color: var(--homePageColor);
}
.page-home h1 {
  font-family: var(--fontBlack);
  font-size: var(--mainHedingfontSize);
  max-width: 685px;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .page-home h1 {
    text-align: center;
  }
}
.page-home h2.section-heading {
  font-family: var(--fontRegular);
  font-size: var(--sectionHedingfontSize);
  text-align: center;
  margin-bottom: 0;
}
.page-home h3.title,
.page-home .title {
  font-family: var(--fontHeavy);
  font-size: var(--contentHedingfontSize);
  line-height: 1.25;
  margin-bottom: 0.75em;
}
.page-home p.para,
.page-home .cta-note {
  font-family: var(--fontRegular);
  font-size: var(--contentBodyfontSize);
}
@media (max-width: 767.98px) {
  .page-home p.para,
  .page-home .cta-note {
    line-height: 1.5;
  }
}
.page-home .button-primary {
  font-family: var(--fontHeavy);
  font-size: var(--buttonfontSize);
  line-height: initial;
  width: 585px;
  height: auto;
  background-color: var(--buttonBackground);
  padding: 0.75em 1.335em;
  margin-bottom: 1.657em;
  border-radius: var(--borderRadius10);
}
@media (max-width: 991.98px) {
  .page-home .button-primary {
    border-radius: var(--borderRadius9);
  }
}
@media (max-width: 767.98px) {
  .page-home .button-primary {
    width: auto;
  }
}
.page-home .button-outlined {
  font-size: var(--buttonfontSize);
  line-height: initial;
  color: var(--outlinedButtonColor);
  background-color: var(--buttonBackground);
  height: auto;
  padding: 0.75em 1.335em;
  border-color: var(--outlinedButtonBorderColor);
  border-radius: var(--borderRadius10);
}
@media (max-width: 991.98px) {
  .page-home .button-outlined {
    border-radius: var(--borderRadius9);
  }
}
.page-home .section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991.98px) {
  .page-home .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .page-home .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 575.98px) {
  .page-home .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.page-home .contents-gap {
  gap: 40px;
}
@media (max-width: 991.98px) {
  .page-home .contents-gap {
    gap: 32px;
  }
}
@media (max-width: 767.98px) {
  .page-home .contents-gap {
    gap: 24px;
  }
}
@media (max-width: 575.98px) {
  .page-home .contents-gap {
    gap: 16px;
  }
}
.page-home .hero-section {
  background-color: var(--heroBackground);
  overflow: hidden;
}
.page-home .hero-section .container-lg {
  position: relative;
}
.page-home .hero-section .contents {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-top: 70px;
  z-index: 1;
}
.page-home .hero-section .contents > div:last-child {
  width: max-content;
  text-align: center;
}
@media (max-width: 991.98px) {
  .page-home .hero-section .contents {
    align-items: center;
    gap: 48px;
    padding-top: 60px;
  }
}
@media (max-width: 767.98px) {
  .page-home .hero-section .contents {
    gap: 32px;
    padding-top: 50px;
  }
}
@media (max-width: 575.98px) {
  .page-home .hero-section .contents {
    gap: 24px;
    padding-top: 40px;
  }
}
.page-home .hero-section h1 > span {
  color: var(--accentColor1);
}
.page-home .hero-section .flex-row {
  display: flex;
  gap: 24px;
}
@media (max-width: 767.98px) {
  .page-home .hero-section .flex-row {
    gap: 16px;
  }
}
@media (max-width: 575.98px) {
  .page-home .hero-section .flex-row {
    flex-direction: column !important;
  }
}
.page-home .hero-section .flex-row .flex-col {
  flex-basis: 33.33%;
  position: relative;
  max-width: 270px;
  min-height: 166px;
  padding: 24px;
  background-color: var(--heroItemBackground);
  box-shadow: 4px 4px 9px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(24px);
  border-radius: var(--borderRadius10);
}
.page-home .hero-section .flex-row .flex-col::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: var(--heroItemBorderGradient);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
}
.page-home .hero-section .flex-row .flex-col .title {
  font-family: var(--fontBlack);
  margin-bottom: 0.25em;
}
.page-home .hero-section .flex-row .flex-col p.para {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .page-home .hero-section .flex-row .flex-col {
    border-radius: var(--borderRadius9);
  }
}
@media (max-width: 575.98px) {
  .page-home .hero-section .flex-row .flex-col {
    text-align: center;
    max-width: initial;
    min-height: initial;
  }
}
.page-home .hero-section .hero-background {
  position: absolute;
  right: -26%;
  top: 50%;
  transform: translateY(-50%);
  width: 1120px;
  height: 100%;
  z-index: 0;
}
@media (max-width: 1399.98px) {
  .page-home .hero-section .hero-background {
    right: -33%;
    height: 90%;
  }
}
@media (max-width: 1199.98px) {
  .page-home .hero-section .hero-background {
    right: -45%;
    height: 85%;
  }
}
@media (max-width: 991.98px) {
  .page-home .hero-section .hero-background {
    top: unset;
    right: unset;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 28%);
    height: 117%;
  }
}
.page-home .hero-section .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-home .banner {
  background-color: var(--bannerBackground);
  padding-top: 54px;
  padding-bottom: 54px;
}
@media (max-width: 991.98px) {
  .page-home .banner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (max-width: 767.98px) {
  .page-home .banner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .page-home .banner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.page-home .banner .banner-title {
  font-size: var(--sectionHedingfontSize2);
  font-family: var(--fontRegular);
  color: var(--bannerHeadingColor);
  margin-bottom: 1.5em;
}
.page-home .banner .company-logos-container {
  position: relative;
}
.page-home .banner .company-logos-container::before, .page-home .banner .company-logos-container::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 260px;
  z-index: 1;
}
.page-home .banner .company-logos-container::before {
  left: -100px;
  background: var(--bannerGradient1);
}
@media (max-width: 1199.98px) {
  .page-home .banner .company-logos-container::before {
    left: -150px;
  }
}
.page-home .banner .company-logos-container::after {
  right: -100px;
  background: var(--bannerGradient2);
}
@media (max-width: 1199.98px) {
  .page-home .banner .company-logos-container::after {
    right: -150px;
  }
}
.page-home .banner .company-logos {
  gap: 72px;
  animation-duration: 200s;
}
@media (max-width: 991.98px) {
  .page-home .banner .company-logos {
    gap: 60px;
  }
}
@media (max-width: 767.98px) {
  .page-home .banner .company-logos {
    gap: 50px;
  }
}
.page-home .banner .company-logos img {
  height: 56px;
  width: auto;
  filter: grayscale(1) brightness(0.3) contrast(1.6);
}
@media (max-width: 991.98px) {
  .page-home .banner .company-logos img {
    height: 48px;
  }
}
@media (max-width: 767.98px) {
  .page-home .banner .company-logos img {
    height: 40px;
  }
}
.page-home .category-section {
  margin-bottom: clamp(-30px, -5vw, -60px);
}
.page-home .category-section .flex-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .page-home .category-section .flex-container {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .page-home .category-section .flex-container {
    gap: 16px;
  }
}
@media (max-width: 575.98px) {
  .page-home .category-section .flex-container {
    gap: 12px;
  }
}
.page-home .category-section .flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 34px;
}
@media (max-width: 991.98px) {
  .page-home .category-section .flex-row {
    padding: 24px;
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .page-home .category-section .flex-row {
    flex-direction: column !important;
    padding: 20px;
    gap: 0;
  }
}
@media (max-width: 575.98px) {
  .page-home .category-section .flex-row {
    padding: 16px 0;
  }
}
@media (max-width: 767.98px) {
  .page-home .category-section .flex-row:nth-child(2) {
    flex-direction: column-reverse !important;
  }
}
.page-home .category-section .flex-col {
  flex-basis: calc(50% - 20px);
  border-radius: var(--borderRadius10);
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .page-home .category-section .flex-col {
    flex-basis: calc(50% - 15px);
    border-radius: var(--borderRadius9);
  }
}
@media (max-width: 767.98px) {
  .page-home .category-section .flex-col {
    flex-basis: calc(50% - 12px);
  }
  .page-home .category-section .flex-col:not(.img-container) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .page-home .category-section .flex-col.img-container {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 575.98px) {
  .page-home .category-section .flex-col {
    flex-basis: calc(50% - 10px);
  }
}
.page-home .category-section .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .category-section .contents {
  height: 100%;
  background: var(--categoryBackground);
  padding: 40px;
}
@media (max-width: 991.98px) {
  .page-home .category-section .contents {
    padding: 32px;
  }
}
@media (max-width: 767.98px) {
  .page-home .category-section .contents {
    padding: 28px;
  }
}
@media (max-width: 575.98px) {
  .page-home .category-section .contents {
    padding: 24px;
  }
}
.page-home .category-section .contents .category {
  font-size: var(--categoryLabelFontSize);
  font-family: var(--fontBlack);
  color: var(--accentColor2);
  margin-bottom: 0.45em;
}
.page-home .category-section .contents h3.title {
  margin-bottom: 0.45em;
}
.page-home .category-section .contents p.para {
  color: var(--categoryBodyColor);
  margin-bottom: 0;
}
.page-home .key-benefits-section {
  background-color: var(--keyBenefitsBackground);
}
.page-home .key-benefits-section .container-xl {
  display: flex;
  flex-direction: column;
}
.page-home .key-benefits-section .section-heading {
  font-style: italic;
}
.page-home .key-benefits-section .video {
  margin-top: 0;
}
.page-home .key-benefits-section .video video {
  max-width: initial;
  border-radius: var(--borderRadius13);
}
@media (max-width: 991.98px) {
  .page-home .key-benefits-section .video video {
    border-radius: var(--borderRadius11);
  }
}
.page-home .key-benefits-section .flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .page-home .key-benefits-section .flex-row {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .page-home .key-benefits-section .flex-row {
    gap: 16px;
  }
}
@media (max-width: 575.98px) {
  .page-home .key-benefits-section .flex-row {
    flex-direction: column !important;
  }
}
.page-home .key-benefits-section .flex-row .flex-col {
  flex-basis: calc(33.33% - 16px);
  position: relative;
  z-index: 0;
  background: var(--keyBenefitsItemBorderGradient);
  border-radius: var(--borderRadius15);
  border: 4px solid transparent;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .page-home .key-benefits-section .flex-row .flex-col {
    border-radius: var(--borderRadius14);
  }
}
@media (max-width: 991.98px) {
  .page-home .key-benefits-section .flex-row .flex-col {
    flex-basis: calc(50% - 12px);
  }
}
@media (max-width: 767.98px) {
  .page-home .key-benefits-section .flex-row .flex-col {
    border-radius: var(--borderRadius12);
  }
}
.page-home .key-benefits-section .flex-row .flex-col > div {
  height: 100%;
  padding: 24px;
}
@media (max-width: 767.98px) {
  .page-home .key-benefits-section .flex-row .flex-col > div {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-home .key-benefits-section .flex-row .flex-col img {
  width: 68px;
  height: auto;
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .page-home .key-benefits-section .flex-row .flex-col img {
    width: 48px;
    margin-bottom: 20px;
  }
}
.page-home .key-benefits-section .flex-row .flex-col h3.title {
  color: var(--keyBenefitsHeadingColor);
}
.page-home .key-benefits-section .flex-row .flex-col p.para {
  color: var(--keyBenefitsBodyColor);
  margin-bottom: 0;
}
.page-home .process-steps-section .container-xl {
  display: flex;
  flex-direction: column;
}
.page-home .process-steps-section .section-heading {
  font-style: italic;
}
.page-home .process-steps-section img {
  width: 100%;
  height: auto;
  border: 1px solid var(--stepsImageBorderColor);
  border-radius: var(--borderRadius13);
}
@media (max-width: 991.98px) {
  .page-home .process-steps-section img {
    border-radius: var(--borderRadius11);
  }
}
.page-home .process-steps-section .flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 991.98px) {
  .page-home .process-steps-section .flex-row {
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .page-home .process-steps-section .flex-row {
    gap: 16px;
  }
}
@media (max-width: 575.98px) {
  .page-home .process-steps-section .flex-row {
    flex-direction: column !important;
  }
}
.page-home .process-steps-section .flex-row .flex-col {
  flex-basis: calc(25% - 9px);
  background-color: var(--stepsBackground);
  padding: 24px;
  border-radius: var(--borderRadius10);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991.98px) {
  .page-home .process-steps-section .flex-row .flex-col {
    border-radius: var(--borderRadius9);
    flex-basis: calc(50% - 12px);
  }
}
@media (max-width: 767.98px) {
  .page-home .process-steps-section .flex-row .flex-col {
    flex-basis: calc(50% - 8px);
  }
}
.page-home .process-steps-section .flex-row .flex-col > div:first-child {
  font-family: var(--fontBlack);
  font-size: var(--stepsLabelFontSize);
  color: var(--accentColor3);
  width: max-content;
  background-color: var(--stepsLabelBackground);
  padding: 12px 24px;
  border-radius: var(--borderRadius10);
}
@media (max-width: 991.98px) {
  .page-home .process-steps-section .flex-row .flex-col > div:first-child {
    border-radius: var(--borderRadius9);
  }
}
.page-home .process-steps-section .flex-row .flex-col h3.title {
  font-family: var(--fontRegular);
  color: var(--stepsHeadingColor);
  margin-bottom: 0;
}
.page-home .process-steps-section .flex-row .flex-col p.para {
  color: var(--stepsBodyColor);
  margin-bottom: 0;
}
.page-home .workflow-section {
  margin-top: clamp(-10px, -2vw, -20px);
}
.page-home .workflow-section .container-xl {
  display: flex;
  flex-direction: column;
}
.page-home .workflow-section h2.section-heading {
  font-size: var(--sectionHedingfontSize2);
}
.page-home .workflow-section .flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 991.98px) {
  .page-home .workflow-section .flex-row {
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .page-home .workflow-section .flex-row {
    gap: 16px;
  }
}
@media (max-width: 575.98px) {
  .page-home .workflow-section .flex-row {
    flex-direction: column !important;
  }
}
.page-home .workflow-section .flex-col {
  flex-basis: calc(50% - 16px);
  border-radius: var(--borderRadius13);
  background-color: var(--workflowItemBackground);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 991.98px) {
  .page-home .workflow-section .flex-col {
    gap: 8px;
    border-radius: var(--borderRadius11);
  }
}
.page-home .workflow-section .flex-col img {
  width: 51px;
  height: auto;
}
@media (max-width: 991.98px) {
  .page-home .workflow-section .flex-col img {
    width: 41px;
  }
}
.page-home .workflow-section .flex-col p.para {
  margin-bottom: 0;
}
.page-home .review-section {
  background-color: var(--reviewBackground);
}
.page-home .review-section .container-xl {
  display: flex;
  flex-direction: column;
}
.page-home .review-section .tab-container {
  overflow-x: hidden;
}
.page-home .review-section .tab-container [type=radio] {
  display: none;
}
.page-home .review-section .tabs {
  display: flex;
  align-items: stretch;
  list-style: none;
  padding: 0;
}
.page-home .review-section .tab {
  flex-basis: 33.33%;
}
.page-home .review-section .tab > label {
  display: block;
  font-size: var(--reviewTabItemFontSize);
  text-align: center;
  color: var(--reviewTabItemColor);
  height: 100%;
  padding: 0.75em 0.5em;
  box-shadow: inset 0 -1px 0 0 var(--reviewTabItemBorderColor);
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 419.98px) {
  .page-home .review-section .tab > label {
    padding: 0.75em;
  }
}
.page-home .review-section .tab:hover label {
  color: var(--reviewTabItemHoverColor);
}
.page-home .review-section .tab-content {
  display: none;
  padding: 24px;
}
@media (max-width: 767.98px) {
  .page-home .review-section .tab-content {
    padding: 16px;
  }
}
.page-home .review-section .tab-content .review {
  font-size: var(--reviewFontSize);
  max-width: 72ch;
  padding: 24px;
}
@media (max-width: 767.98px) {
  .page-home .review-section .tab-content .review {
    padding: 16px;
  }
}
@media (max-width: 575.98px) {
  .page-home .review-section .tab-content .review {
    padding: 0;
  }
}
.page-home .review-section .tab-content .user-details {
  display: flex;
  align-items: center;
  gap: 24px;
}
.page-home .review-section .tab-content img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 100px;
}
@media (max-width: 767.98px) {
  .page-home .review-section .tab-content img {
    width: 60px;
    height: 60px;
  }
}
.page-home .review-section .tab-content .user-name {
  font-family: var(--fontHeavy);
  margin-bottom: 0.25em;
}
.page-home .review-section .tab-content .user-info {
  font-family: var(--fontRegular);
}
.page-home .review-section .tab-content .user-name,
.page-home .review-section .tab-content .user-info {
  font-size: var(--userDetailsFontSize);
}
.page-home .review-section .tab-container [type=radio]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) label,
.page-home .review-section .tab-container [type=radio]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) label,
.page-home .review-section .tab-container [type=radio]:nth-of-type(3):checked ~ .tabs .tab:nth-of-type(3) label,
.page-home .review-section .tab-container [type=radio]:nth-of-type(4):checked ~ .tabs .tab:nth-of-type(4) label,
.page-home .review-section .tab-container [type=radio]:nth-of-type(5):checked ~ .tabs .tab:nth-of-type(5) label {
  box-shadow: inset 0 -3px 0 0 var(--reviewTabItemBorderActiveColor);
  color: var(--reviewTabItemActiveColor);
}
.page-home .review-section .tab-container [type=radio]:nth-of-type(1):checked ~ .tab-content:nth-of-type(1),
.page-home .review-section .tab-container [type=radio]:nth-of-type(2):checked ~ .tab-content:nth-of-type(2),
.page-home .review-section .tab-container [type=radio]:nth-of-type(3):checked ~ .tab-content:nth-of-type(3),
.page-home .review-section .tab-container [type=radio]:nth-of-type(4):checked ~ .tab-content:nth-of-type(4) {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-home .faq .container-lg {
  display: flex;
  flex-direction: column;
}
.page-home .cta-section {
  position: relative;
  text-align: center;
  background-color: var(--ctaBackground);
  overflow: hidden;
}
.page-home .cta-section .contents {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1019px;
  margin: auto;
  z-index: 1;
}
.page-home .cta-section h2 {
  font-family: var(--fontRegular);
  font-size: var(--ctaHeadingFontSize);
  text-align: center;
  color: var(--ctaHeadingColor);
  margin-bottom: 0;
}
.page-home .cta-section p {
  font-family: var(--fontRegular);
  font-size: var(--ctaBodyFontSize);
  color: var(--ctaBodyColor);
  margin-bottom: 0;
}
.page-home .cta-section .cta-note {
  line-height: 1.3;
  color: var(--ctaNoteColor);
  opacity: 0.5;
  max-width: 435px;
  margin: auto;
}
.page-home .cta-section .cta-background {
  position: absolute;
  top: -20%;
  bottom: 40px;
  left: 0;
  right: 0;
  opacity: 0.22;
  filter: blur(5px);
  z-index: 0;
}
.page-home .cta-section .cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq .accordion {
  border-bottom: 1px solid var(--faqItemBorderColor);
  padding: 28px 16px;
}
@media (max-width: 767.98px) {
  .faq .accordion {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}
.faq .accordion h3.title {
  font-family: var(--fontRegular);
  font-size: var(--contentHedingfontSize2);
}
@media (max-width: 767.98px) {
  .faq .accordion h3.title {
    margin-right: 50px;
  }
}
.faq .accordion .accordion-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}
.faq .accordion .accordion-details .description {
  color: var(--faqBodyColor);
  margin: 12px 0;
}
.faq .accordion .accordion-details .description:first-of-type {
  margin-top: 20px;
}
.faq .accordion .accordion-details .description:last-of-type {
  margin-bottom: 0;
}
.faq .accordion .accordion-summary {
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
}
.faq .accordion .accordion-summary::before {
  content: "+";
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: var(--faqTriggerColor);
  transform-origin: center center;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .faq .accordion .accordion-summary::before {
    font-size: 25px;
    right: -37px;
  }
}
.faq .accordion .accordion-summary[aria-expanded=true]::before {
  color: var(--faqTriggerActiveColor);
  transform: translateY(-50%) rotate(-135deg);
}
.faq .accordion .accordion-summary::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background-color: var(--faqTriggerBackground);
  border-radius: 50px;
  cursor: pointer;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .faq .accordion .accordion-summary::after {
    width: 42px;
    height: 42px;
    right: -50px;
  }
}

.footer-2 {
  font-family: var(--fontHeavy);
  font-size: var(--footerFontSize);
  background-color: var(--color11);
  text-transform: uppercase;
  padding: 50px 30px;
  margin-top: auto;
  border-top: 1px solid var(--color3);
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .footer-2 {
    padding: 40px 30px;
  }
}
@media (max-width: 767.98px) {
  .footer-2 {
    padding: 30px 15px;
  }
}
@media (max-width: 575.98px) {
  .footer-2 {
    padding: 20px 15px;
  }
}
.footer-2 address {
  line-height: 1.6;
  margin-bottom: 0;
}
.footer-2 address > span {
  color: var(--companyAddressColor);
}
.footer-2 address > span:first-child {
  color: var(--companyNameColor);
}
.footer-2 ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
.footer-2 ul li {
  margin-bottom: 5px;
}
.footer-2 ul a {
  display: inline-block;
  width: 100%;
  color: var(--footerLinkColor);
  padding: 10px 15px;
  transition: all 0.2s;
}
.footer-2 ul a:hover {
  color: var(--footerLinkHoverColor);
}
@media (max-width: 767.98px) {
  .footer-2 ul a {
    padding: 7px 15px;
  }
}
.footer-2 .brandLogo img {
  width: 160px;
  height: auto;
}
.footer-2 .flex-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 575.98px) {
  .footer-2 .flex-row {
    flex-direction: column !important;
    gap: 30px;
  }
}
.footer-2 .flex-row .flex-col {
  flex-basis: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-2 .flex-row .flex-col > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 575.98px) {
  .footer-2 .flex-row .flex-col > div {
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .footer-2 .flex-row .flex-col {
    flex-basis: 30%;
  }
  .footer-2 .flex-row .flex-col:first-child {
    flex-basis: 40%;
  }
}
.footer-2 .social-icons {
  padding-left: 15px;
  padding-right: 15px;
}

/*# sourceMappingURL=website.css.map */
