<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ========== Global Styles ========== */
:root {
  --bg-light: #FFFCF1;
  --primary-bg: #3B40D5;
  --primary-text: #3A3939;
  --primary-text-white: #ffffff;
  --primary-text-dark: #3A3939;
  --primary-text-dark-muted: #C2C2C7;
  --primary-text-dark-disabled: #E5E7EB;
  --secondary-bg: #3A3939;
  --secondary-text: #ffffff;
  --secondary-text-muted: #4A4A50;
  --light-text: #7D7D86;
  --gray-90: #2F2F33;
  --gray-70:#5D5C63;
  --gray-50: #A9A8AD;
  --brand-yellow: #f7f06e;
  --brand-light-red: #FF8484;
  --h1-font-size: 6rem;
  --xl-font-size: 6rem;
  --h2-font-size: 5rem;
  --h3-font-size: 4.5rem;
  --h4-font-size: 4rem;
  --h5-font-size: 3.5rem;
  --h6-font-size: 3rem;
  --fs-7: 0.7rem;
  --m-h1-font-size: 3rem;
  --m-h2-font-size: 3rem;
  --m-h3-font-size: 4.5rem;
  --m-h4-font-size: 4rem;
  --m-h5-font-size: 3.5rem;
  --m-h6-font-size: 3rem;
  --m-fs-7: 0.7rem;
  --t-h1-font-size: 4.5rem;
  --t-h2-font-size: 4rem;
  --t-h3-font-size: 3.5rem;
  --t-h4-font-size: 3rem;
  --t-h5-font-size: 2.5rem;
  --t-h6-font-size: 2rem;
  --t-fs-7: 0.7rem;
}

@font-face {
    font-family: 'Outfit';
    src: url('/assets/fonts/Outfit-VariableFont_wght.ttf') format('truetype');
}

/* Globals */
/* ================ */

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
}

a {
  color: unset;
  text-decoration: unset;
}

a:hover {
  color: unset;
}

body {
    line-height: 1.6;
    color: var(--primary-text-dark);
    background-color: var(--bg-light);
/*    user-select: none;*/
}


button {
  transition: background-color 0.3s ease-in-out;
}

/* US Map D3 Classes */

#mapContainer .tooltip {
  position: absolute;
  text-align: center;
  padding: 10px;
  background: white;
  border: 0px;
  border-radius: 8px;
  pointer-events: none;
  min-width: 200px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


/* Helper Class */
/* ================ */

.hp-h1 {
  font-size: var(--h1-font-size);
  font-weight: 400;
  line-height: 1.2;
}

.hp-h2 {
  font-size: var(--h2-font-size);
}

.hp-h3 {
  font-size: var(--h3-font-size);
}

.hp-h4 {
  font-size: var(--h4-font-size);
}

.hp-h5 {
  font-size: var(--h5-font-size);
}

.hp-h6 {
  font-size: var(--h6-font-size);
}

.fs-2xl{
  font-size: 120px;
  line-height: 1;
}

.fs-xl {
  font-size: var(--xl-font-size);
  line-height: 1.2;
}

.fs-7 {
  font-size: var(--fs-7);
}

.p {
  color: var(--secondary-text-muted);
}

.mt-6 {
  margin-top: 3.5rem;
}

.mt-8{
  margin-top: 6.5rem;
}

.pb-6 {
  padding-bottom: 2rem!important;
}

.py-6 {
  padding-top: 5rem!important;
  padding-bottom: 5rem;
}

.px-5 {
  padding-left: 4rem!important;
  padding-right: 4rem;
}

.py-8 {
  padding-top: 8rem!important;
  padding-bottom: 8rem;
}

.pt-8 {
  padding-top: 8rem!important;
}

.no-hover:hover {
  color: inherit;
}

.vmh-100 {
  min-height: 100vh;
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.underline-light {
  text-decoration: underline;
  text-decoration-color: #E5E3D9;
  text-underline-offset: 10px;
  text-decoration-thickness: from-font;
}

.pointer {
  cursor: pointer;
}

.cm-bg-light {
  background: var(--bg-light);
}

/* Brand Related Classes */
/* ================ */

.brand-primary {
  background-color: var(--primary-bg);
  color: var(--primary-text-white);
  border: none;
}

.brand-secondary, .brand-secondary:hover {
  background-color: var(--secondary-bg);
  color: var(--primary-text-white);
  border: none;
}

.brand-tertiary, .brand-tertiary:hover {
  background-color: transparent;
  color: var(--primary-text-dark);
  border: 1px solid var(--secondary-bg);
}

.brand-white {
  background-color: white;
  border: none;
}

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

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

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

.yellow-bg {
  background-color: var(--brand-yellow);
  color: var(--primary-text-dark);
}

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

.text-brand-primary-muted {
  color: var(--primary-text-dark-muted);
}

.text-brand-yellow {
  color: var(--brand-yellow);
}

.text-brand-light {
  color: var(--light-text);
}

.border-brand {
  border-color: var(--primary-text-dark-muted);
}

.border-brand-muted {
  border-color: var(--primary-text-dark-disabled);
}

.w-16 {
  width: 16px;
}

.section:not(:first-child) {
/*  min-height: calc(100vh - 0px); */
  overflow: hidden;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f1f1f1;
    z-index: 1000005;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader span {
    width: 15px;
    height: 15px;
    background: #0052cc;
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out both;
}

.loader span:nth-child(1) { animation-delay: -0.3s; }
.loader span:nth-child(2) { animation-delay: -0.15s; }
.loader span:nth-child(3) { animation-delay: 0s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Navbar */

.nb-navbar-container {
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  justify-content: space-between;
  padding: 0;
  align-items: normal;
  backdrop-filter: blur(8px);
  background: transparent;
}

.nb-navbar-content {
  overflow: scroll;
  max-height: calc(100vh - 10rem);
}

.nb-navbar-content::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;
    height: 0px;
}

.nb-navbar-content::-webkit-scrollbar-thumb:vertical {
    border-radius: 4px;
    background-color: rgba(59,64,213,.5);
    -webkit-box-shadow: 0 0 1px rgba(59,64,213,.5);
}

.navbar-light-faded .nb-navbar-container {
/*  background: none;*/
}

.navbar-light {
  color: white;
}

.homepagemain.navbar-full .nb-navbar-container {
  background-color: var(--bg-light);
}
.navbar-light.navbar-light-faded .nb-navbar-container {
  background: rgb(0 0 0 / 10%);
}

.nb-logo {
  display: flex;
  margin-right: 1rem;
  padding: 0.7rem 1rem;
  margin-top: 0.3rem;
}

.navbar-light-logo {
  display: none;
}

.navbar-light .navbar-light-logo {
  display: flex;
}

.navbar-light .navbar-dark-logo {
  display: none;
}

.nb-logo &gt; a &gt; img {
  width: 10rem;
}

.nb-links {
  padding: 0.5rem 2rem;
}

.nb-links-container {
  display: flex;
  flex-grow: 1;
}

.nb-links-item:not(:last-child) {
  flex-grow: 1;
}

.nb-links-item {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--gray-50);
}
.nb-links-container a {
  font-weight: 500;
}

.nb-links {
  color: unset;
}

.navbar-menu {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 25rem;
  background-color: var(--bg-light);
  transform: translate(100%, 0px);
  color: var(--primary-text);
}

.navbar-menu-item {
  display: flex;
  align-items: center;
}

.dropdown-item.active, .dropdown-item:active {
  color: unset;
  text-decoration: none;
  background-color: unset;
}

.navbar-menu-item-img {
  width: 80px!important;
  padding: 0;
}

/* Brand Buttons */

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

.brand-btn {
  display: inline-flex;
  justify-content: space-between;
  min-width: 18rem;
  font-size: 1rem;
  padding: 18px 8px 8px 8px;
  place-items: end;
  min-height: 3rem;
  pointer-events: auto;
}

.brand-btn-variable {
  display: inline-flex;
  justify-content: space-between;
  font-size: 1rem;
  padding: 18px 8px 8px 8px;
  place-items: end;
  min-height: 3rem;
}

.pill-btn {
  display: inline-flex;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  border: 1px solid var(--secondary-bg);
  text-align: center;
  transition: background-color 0.3s ease-in-out;
}

.pill-btn-small {
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid var(--secondary-bg);
  text-align: center;
  text-transform: uppercase;
  width: fit-content;
}

.hamburger-btn {
  display: inline-flex;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  border: none;
  background-color: transparent;
  color: var(--primary-text);
}

.navbar-light .hamburger-btn {
  color: white;
}

.underline-btn {
  display: inline-flex;
  min-width: 12rem;
  font-size: 1rem;
  padding: 18px 8px 8px 8px;
  text-transform: uppercase;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--secondary-bg);
}

.underline-btn::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1.5rem;
  margin-right: 10px;
  color: var(--secondary-bg);
  -webkit-mask:: url('/assets/icons/ri_arrow-right-long-line.svg') no-repeat center center;
  mask: url('/assets/icons/ri_arrow-right-long-line.svg') no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--secondary-bg);
}

.white-btn {
  background-color: white;
}

.white-btn:hover {
  background-color: var(--primary-bg);
  color: var(--primary-text-white);
}

/* Feature Slides */

.features-section {
  display: flex;
  position: relative;
}

.images-container {
  position: sticky;
  top: 0;
  width: 66%;
  height: 100vh;
  overflow: hidden;
}

.feature-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.feature-image.active {
  opacity: 1;
  z-index: 1;
}

.text-slides {
  width: 33%;
  display: flex;
  flex-direction: column;
}

.text-slide {
  min-height: 100vh;
  padding: 100px 40px;
  box-sizing: border-box;
}


/* Homepage */

.hp-hero {
  min-height: 100vh;
  background-image: url(/assets/images/backgrounds/background-homepage.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
}

.hp-text-h1 {
  font-size: var(--h1-font-size);
  line-height: 1.2;
}

.text-white{
  color: white;
}

/* Section 2 - Ethos */

#ethos {
  pointer-events: none;
}

.hp-page-header-page-number {
  width: 235px;
  height: 125px;
  font-size: var(--h2-font-size);
  line-height: 130%;
  background-color: var(--primary-text-dark);
  color: white;
  align-content: center;
}

.hp-page-header-title {
  font-size: var(--h2-font-size);
  line-height: 130%;
}

.circle-indicator.green {
    background-color: #68e64f;
    border-style: none;
    width: 1rem;
    height: 1rem;
    padding: 0;
}

.circle-indicator {
    border-radius: 12px;
    width: 1rem;
    height: 1rem;
    padding: 0;
    animation: 1.5s infinite pulse;
}

/* Fraud &amp; Risk */

.hp-bioscan-img {
  position: absolute;
  top: 80%;
  left: 55%;
  width: 500px;
  height: 500px;
  margin-top: -300px; /* Half the height */
  margin-left: -250px; /* Half the width */
}
.home_grid .hp-bioscan-img{
  margin-top: -350px; 
}
/* Testimonial  */

.hp-turn-buttons {
  width: 3rem;
  height: 3rem;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  cursor: pointer;
}

.hp-turn-buttons[disabled] &gt; svg {
  fill: #A9A8AD;
  cursor: not-allowed;
}

/* Become a Pro Notary */

.hp-pro-notary-card:hover {
  background-color: var(--primary-bg);
  color: var(--primary-text-white);
  transition: background-color 0.5s;
}

.hp-pro-notary-card:hover .d-hover-only {
  opacity: 1;
}

/* Footer */
.ribbon  {
  cursor: pointer;
}

.ribbon-blue {
  
  background: var(--primary-bg);
  color: var(--primary-text-white);
}

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

.ribbon-red {
  background: var(--brand-light-red);
  color: var(--primary-text-dark);
}

.hp-lady-justice {
  max-height: 115vh;
  max-width: 90vw;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0052cc;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Z INDEX */

/* Note: Crisp Chat is harded coded at 1000000 */
.nb-navbar-container {
  z-index: 1000001;
}

.modal-backdrop {
  z-index: 1000001;
}

.modal {
  z-index: 1000002;
}

.modal .close{
  top: 40px;
  right: 40px!important;
  position: absolute;
  border-radius: 50px;
  padding: 5px;
  z-index: 9999;
  background-color: white;

}

.calendly-overlay {
  z-index: 1000002!important;
  background-color: rgba(31, 31, 31, 0.6);
}

/* Overrides */

.calendly-overlay .calendly-popup-close {
  top: 70px!important;
}

.nav-link:focus, .nav-link:hover {
  color: inherit;
}

.dropdown-menu {
  backdrop-filter: blur(1px);
  background-color: rgb(255 252 241 / 80%);
  min-width: calc(11rem + 1px);;
  margin-top: 0!important;
  margin-left: -1px!important;
  margin-right: -1px!important;
  border: 1px solid var(--primary-text-dark);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: rgb(255 252 241 / 90%);
}

.fw-semibold {
  font-weight: 500;
}

.row {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}
.navbar-accordion-item {
  margin-bottom: 0px !important;
}

#accordionHero .accordion-item,
#accordionHero .accordion-button,
.navbar-accordion-item, .navbar-accordion-item .accordion-button {
  background-color: var(--bg-light)!important;
  border-radius: 0;
}

.navbar-accordion-item.accordion-item{
  border-bottom: 1px solid #6c757d!important;
  border-radius: 0px !important;
}

.navbar-accordion-item .accordion-button{
  font-size: 16px!important;
} 

.navbar-accordion-item.accordion-item:not(:first-of-type){
  border-top: 0!important;
}

.navbar-accordion-item .accordion-body{
  padding: 0!important;
  color: var(--primary-text-dark)!important;
}

.faq-accordion-button{
  background: transparent!important;
}

#accordionHero .accordion-button::after,
.faq-accordion-button.accordion-button::after,
.navbar-accordion-item .accordion-button::after {
  display: none;
}

#accordionHero .accordion-button:not(.collapsed),
.faq-accordion-button.accordion-button:not(.collapsed),
.navbar-accordion-item .accordion-button:not(.collapsed) {
  color: var(--primary-text-dark);
  background-color: unset;
  box-shadow: none;
}

#accordionHero .accordion-item {
  border-bottom: 1px solid var(--primary-text) !important;
  border-radius: 0px !important;
}

#accordionHero .accordion-item:focus-visible{
  outline: none!important;
}

.accordion-button:focus, .faq-accordion-button.accordion-button:focus,
.navbar-accordion-item .accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: unset;
    box-shadow: none;
}

.navbar-menu img{
  width: unset;
}

.navbar-menu .brand-btn-variable img {
    width:auto;
    max-height: 100%;
}


.fp-watermark {
  display: none!important;
}

.fp-overflow {
/*  height: 100vh;*/
}

.faq-accordion-item{
  background: transparent!important;
}


/* Sun Animation */
.sun-container {
  width: 82px;
  height: 82px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease 0.4s;
  overflow: hidden;  
  border-radius: 50%;
  animation: rotate 5s ease-in-out paused;
}

.w-60 {
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease 0.4s;
  overflow: hidden;  
  border-radius: 50%;
  animation: rotate 5s ease-in-out paused;
}

.ribbon:hover .sun-container {
  transform: scale(1.1);
  animation-play-state: running;
  transform: rotate(-0.2turn);
}

.ribbon-blue:hover .sun-container {
  box-shadow: 0 0 15px rgba(247 240 109 / 80%);
}

.ribbon-red:hover .sun-container {
  box-shadow: 0 0 15px rgb(109 128 247 / 80%);
}

.ribbon-yellow:hover .sun-container {
  box-shadow: 0 0 15px rgb(255 132 132 / 80%);
}

.sun-rays path {
  transform-origin: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.ribbon:hover .sun-container .sun-rays path {
  transform: scale(1.4);
  opacity: 1;
}

.testimonial-second-icon {
  display: none !important;
}
.blue-notary-second-text {
  display: none !important;
}
.footer-social-icons-instagram {
  display: none !important;
}

.video-container {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.reduce-text-container {
  min-height: 635px;
}

.eclosing-logo-wrap{
  flex-wrap: wrap;
}

.eclosing-logo-wrap img{
  height: 70px;
}

/* Staggered ray animation */
.sun-rays path:nth-child(1) { transition-delay: 0.1s; }
.sun-rays path:nth-child(2) { transition-delay: 0.15s; }
.sun-rays path:nth-child(3) { transition-delay: 0.2s; }
.sun-rays path:nth-child(4) { transition-delay: 0.25s; }
.sun-rays path:nth-child(5) { transition-delay: 0.3s; }
.sun-rays path:nth-child(6) { transition-delay: 0.35s; }
.sun-rays path:nth-child(7) { transition-delay: 0.4s; }
.sun-rays path:nth-child(8) { transition-delay: 0.45s; }
.sun-rays path:nth-child(9) { transition-delay: 0.5s; }
.sun-rays path:nth-child(10) { transition-delay: 0.55s; }
.sun-container:hover { transition-delay: 0.6s; }


/* Media Queries */


/* X-Small devices (portrait phones, less than 576px) */

/* Footer */

@media (max-width: 992px) {
  .hp-bioscan-img {
    top: 105%;
    left: 70%;
  }
  .reduce-text-img-container {
    top: 0rem !important;
    left: -17rem !important;
  }
  .bioscan-img{
    margin-left: 100px;
  }
  section#faq button.faq-accordion-button.accordion-button,section#faq .faq-accordion-body.accordion-body  {
    padding-left: 0px;
  }

  .md-px-0{
    padding: 0px!important;
  }

  .py-8.section{
    padding: 50px 0px!important;
  }

  .pt-8.section{
    padding-top: 50px!important;
  }
  #efficiency h1{
    margin-bottom: 30px;
  }
  .stats-wrapper{
    margin-top: 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    align-items: center;
    border-bottom: 1px solid var(--light-text);
    padding: 10px 0!important;
  }
  .stats-wrapper p{
    margin-bottom: 0;
  }
  .stats-wrapper h4{
    padding-bottom: 0!important;
    font-size: 45px;
  }

}
@media (max-width: 575px) {
  .navbar-menu {
    min-width: 100%;
  }

  .tab-only {
    display: none!important;
  }

  .brand-btn-variable {
    width: 100%;
  }

  .brand-tertiary {
    width: 100%;
  }

  .text-slide {
    padding: 0px;
  }
  .hp-h1 {
    font-size: var(--t-h1-font-size) !important;
    font-weight: 500;
}
.images-container{
  width: 58%;
}

#ourteam-section-container h4,
#careers h4{
  font-size: 34px;
}

}
@media (max-width: 767px) {
  .fs-2xl{
    font-size: 45px;
  }

  .features-section{
    flex-wrap: wrap;
  }
  .text-slides{
    width: 100%;
  }
  .text-slides .feature-image{
    position: unset;
    opacity: 1;
  }
  .text-content{
    padding: 20px;
  }
  .text-slide{
    min-height: auto;
    padding: 0px;
  }
  .mobile-only.feature-image{
    opacity: 1;
  }
  .text-slide h2 {
    font-size: 32px;
  }
  .desktop-only {
    display: none!important;
  }

  .hp-h1 {
    font-size: var(--m-h1-font-size);
    font-weight: 500;
  }

  .hp-h2 {
    font-size: var(--m-h2-font-size);
  }

  .hp-h3 {
    font-size: var(--m-h3-font-size);
  }

  .hp-h4 {
    font-size: var(--m-h4-font-size);
  }

  .hp-h5 {
    font-size: var(--m-h5-font-size);
  }

  .hp-h6 {
    font-size: var(--m-h6-font-size);
  }

  .fs-7 {
    font-size: var(--m-fs-7);
  }

  .m-border-none {
    border-bottom: none!important;
    border-top: none!important;
    border-right: none!important;
    border-left: none!important;
  }

  .hp-hero {
    background-image: none;
  }

  .bg-image {
    height: 40vh;
    width: 100%;
    background-image: url(/assets/images/backgrounds/background-homepage.jpg);
    background-size: cover;
    background-position: center;
  }

  .nb-navbar-container {
    border-bottom: none;
  }

  .sun-container {
    width: 32px;
    height: 32px;
  }

  .sun-container svg {
    width: 32px;
    height: 32px;
  }

  .m-border-bottom-none {
    border-bottom: none!important;
  }

  .m-border-top-none {
    border-top: none!important;
  }
  .pill-btn {
    padding: 0.5rem 1rem;
    font-size: 14px;
  }

  .hp-lady-justice {
    max-height: 100vh;
    max-width: 100%;
  }

  .notary-features {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    flex-wrap: nowrap;
  }

  .notary-features &gt; div {
    max-width: 80%;
  }
  #top-documents .content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .reduce-text-container{
    min-height: auto
  }
  .faq-accordion-question,.faq-accordion-answer{
    font-size: 1rem !important;
    
  }
  .hp-h1{
    font-size: 3rem !important;
  }
  .hp-eclosing-stat .col-md-4,.hp-eclosing-stats .col-md-4 {
    width: 50% !important;
  }

  .hp-eclosing-stat .col-md-8,.hp-eclosing-stats .col-md-8 {
    width: 50%;
  }

  .hp-eclosing-stat .fs-5.eclosing-stats-text {
    font-size: 16px !important;
  }
  section#reduce-fraud .col-md-4 {
    padding-left: 24px !important;
}
div#faq-container .row {
  margin-top: 0px !important;
}
div#faq-container h2 {
  padding: 0px !important;
}
}

@media (max-width: 575px) {
  .tab-only {
    display: none!important;
  }
  .brand-btn-variable {
    width: 100%;
  }
  .brand-tertiary {
    width: 100%;
  }
  .text-slide {
    padding: 0px;
  }
  .text-content p.mt-5 {
    margin-top: 1rem !important;
  }
}
@media (max-width:480px){
  .navbar-menu{
    min-width: 100%;
  }
}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .mobile-only {
    display: none!important;
  }

  .pb-6 {
    padding-bottom: 5rem!important;
  }

  .hp-h1 {
    font-size: var(--t-h1-font-size);
    font-weight: 500;
  }

  .hp-h2 {
    font-size: var(--t-h2-font-size);
  }

  .hp-h3 {
    font-size: var(--t-h3-font-size);
  }

  .hp-h4 {
    font-size: var(--t-h4-font-size);
  }

  .hp-h5 {
    font-size: var(--t-h5-font-size);
  }

  .hp-h6 {
    font-size: var(--t-h6-font-size);
  }

  .fs-7 {
    font-size: var(--t-fs-7);
  }

  .w-md-auto {
    width: auto!important;
  }

  .pt-md-6 {
    padding-top: 5rem!important;
  }

  .pb-md-6 {
    padding-bottom: 5rem!important;
  }

  .py-md-6 {
    padding-top: 5rem!important;
    padding-bottom: 5rem;
  }

  .mt-md-6 {
    margin-top: 5rem!important;
  }

  .mb-md-6 {
    margin-bottom: 5rem!important;
  }

  .vignette-bottom {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
  }

  .text-md-white {
    color: white;
  }
  .section.py-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .api-integration-first-image {
    display: none;
  }

  .api-integration-second-image {
    display: block;
  }
  .faq-accordion-question {
    font-size: 1rem !important;
  }
  .faq-accordion-answer {
    font-size: 1rem !important;
  }
  .d-hover-only {
    opacity: 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hp-h1 {
    font-size: var(--h1-font-size);
    font-weight: 500;
  }

  .hp-hero {
/*    background-position: 0rem -10rem;*/
  }


}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}
.faq-accordion-question {
  font-size: 1.5rem !important;
}
.faq-accordion-answer {
  font-size: 1.25rem !important;
}
/* Animations */

/* Animation for pulsing green dots */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
  to {
    rotate: 2 turn
  }
}

/*@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
    }
}*/

  .blue-overlay-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg);
    opacity: 0.85;
    z-index: 1;
  }
  .underline::after {
    display: none;
  }
  

/* faq-section */
  .faq-accordion-question {
    font-weight: 600;
    color: var(--secondary-text-muted);
  }

  .faq-accordion-answer {
    font-weight: 400;
    color: var(--secondary-text-muted);
  }

  .faq-accordion-body {
    padding: 1rem 1.25rem;
  }


  #notarization-advantage h2{
    line-height: 1em;
  }


  .ondemand-text-loop {
    position: absolute;
    top: 80px;
    left: 0;
    width: fit-content;
    white-space: nowrap;
    overflow: hidden;
    font-size: 100px;
    font-weight: 500;
    z-index: 1;
    color: rgb(250, 248, 248);
    &amp;::after {
      content: "Notaries * Notaries * Notaries * Notaries * Notaries * Notaries";
      margin-left: 50px;
    }
    animation: slideText 20s linear infinite;
  }

  .aboutus-text-loop {
    position: absolute;
    top: 95px;
    left: 0;
    width: fit-content;
    white-space: nowrap;
    overflow: hidden;
    font-size: 100px;
    font-weight: 500;
    line-height: 75px;
    z-index: 1;
    color: rgb(250, 248, 248);
    &amp;::after {
      content: "About Us * About Us * About Us * About Us * About Us * About Us";
      margin-left: 50px;
    }
    animation: slideText 20s linear infinite;
  }


  .aboutup-loop-wrapper{
    height: 210px;
    background: var(--primary-bg);
  }

  .team-member{
    border-color: #3A3939!important;
  }

  .case-studies-text span {
    position: relative;
    display: inline-block;
}

  .case-studies-text span:first-child::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #e5e7eb66;
  }
  .case-studies-text span::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #e5e7eb66;
  }

  .case-studies-hero-section .hero-content p{
    line-height: 36px;
  }

  
  /* .case-studies-text span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 100%;
    height: 1px;
    background-color: var(--primary-text-dark-disabled);
  } */

  .about-banner{
    background: url('/assets/images/backgrounds/about-hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    height: 80vh;
  }

  .career-card{
    transition: background-color 0.3s ease-in-out;
  }

  .career-card a{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .career-card:hover{
    color: #fff;
    background-color: var(--primary-bg);
  }


.ebk-hero{
  color: #fff;
  background: url('/assets/images/backgrounds/ebook-bg.jpg');
  background-size: cover;
  background-position: center center;
}

.ebk-notary-form{
  color: #fff;;
}



  @media(max-width:1024px){
    .about-banner{
      height: 55vh;
      background: url('/assets/images/backgrounds/about-hero-bg.jpg');
      background-position: center left;
      background-size: cover!important;
      background-repeat: no-repeat!important;
    }
  }

  @media(max-width:767px){
    .carreer-section .row{
      display: flex;
      flex-direction: row;
      overflow-x: scroll;
      flex-wrap: nowrap;
    }
    .career-card{
      width: 80%!important;
    }

    .aboutus-text-loop{
      font-size: 45px;
    }
    .aboutup-loop-wrapper{
      height: 130px;
    }
    .aboutus-text-loop{
      top: 55px;
    }
    .we-provide{
      flex-direction: column-reverse;
    }
    .md-border-top{
      border-top: 1px solid #6c757d !important;
    }

    .md-border-bottom{
      border-bottom: 1px solid #6c757d !important;
    }
  }


  @media(max-width:575px){
    .about-banner{
      height: 85vh;
      background-size: cover!important;
      background-repeat: no-repeat!important;
      background: url('/assets/images/backgrounds/mobile-about-hero-bg.jpg');
      background-position: center center;
    }
  }


  @keyframes slideText {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }


  .case-studies-hero-section{
    background: url('/assets/images/backgrounds/case-studies-hero.webp') right;
    height: 100vh;
    background-size: cover !important;
  }

  .case-studies-hero-section .hero-content{
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
  }

  .case-studies-hero-section .hero-content p{
    position: absolute;
    bottom: 60px;
    margin-left: 42%;
    margin-right: 20px;
  }

@media(max-width:1440px){
  .case-studies-hero-section .hero-content h1{
    font-size: 65px!important;
    padding-top: 150px!important;
  }
  .case-studies-hero-section .hero-content p{
    bottom: 40px!important;
  }
}

@media(max-width:1280px){
  .case-studies-hero-section .hero-content p{
    margin-left: 36%;
  }
}

@media(max-width:1024px){
  .case-studies-hero-section{
    background: url('/assets/images/backgrounds/case-studies-hero.webp') right;
    height: 500px;
  }
  .case-studies-hero-section .hero-content h1{
    font-size: 40px!important;
    padding-top: 100px!important;
  }
  .case-studies-hero-section .hero-content p{
    position: relative!important;
    left: 0;
    margin-top: 50px!important;
    margin-left: 0!important;
  }

  .case-study-card h2{
    font-size: 32px;
  }

  .bottom-wrapper{
    flex-direction: column;
    padding: 0px!important;
    border-bottom: 1px solid var(--light-text);
    padding-bottom: 20px!important;
  }

  .bottom-wrapper p{
    padding-bottom: 10px!important;
  }

  .bottom-wrapper .justify-content-end{
    justify-content: start!important;
  }

  .user-wrapper{
    border: none!important;
  }

}

.border-white{
  border-color: #fff!important;
}

@media(max-width:767px){
  .case-studies-hero-section{
    background: url('/assets/images/backgrounds/proofserve-banner-mb.jpg');
    background-position: center bottom;
    height: 640px;
  }

  .case-studies-hero-section .hero-content p{
    font-size: 13px;
    bottom: 0px!important;
    margin-right:0;
    line-height: 22px;
    margin-top: 25px !important;
  }


}



.ebk-form-new .form-control{
  background: #fff;
  border-color: #fff!important;
  border-radius: 0px;
  color: #fff!important;
}

.ebk-form-new .form-control::placeholder{
  color: #fff!important;
}


/* old page header styles */


/* ====== */
.yt{
  aspect-ratio: 16 / 9;
    width: 100%;
}

.platform-fee-list .list-group-item{
  background: transparent;
  padding-left: 0;
}

.platform-fee-list .list-group-item a{
  text-decoration: underline;
}
</pre></body></html>