<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Main Styles */
body,
.popover,
.plyr {
  font-family: Inter, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4 {
  letter-spacing: 0.01rem !important;
}

/* Custom Faded Colors */
.faded-primary {
  background-color: rgb(55, 85, 190, 0.08) !important;
}

.bg-faded-secondary {
  background-color: rgba(108, 117, 125, 0.08) !important;
}

.bg-faded-success {
  background-color: rgba(40, 167, 69, 0.08) !important;
}

.bg-faded-info {
  background-color: rgba(23, 162, 184, 0.08) !important;
}

.bg-faded-warning {
  background-color: rgba(255, 193, 7, 0.08) !important;
}

.bg-faded-danger {
  background-color: rgba(220, 53, 69, 0.08) !important;
}

.bg-faded-light {
  background-color: rgba(248, 249, 250, 0.08) !important;
}

.bg-faded-dark {
  background-color: rgba(33, 37, 41, 0.08) !important;
}

/* Faded Buttons */

.btn-faded-secondary {
  background-color: rgba(108, 117, 125, 0.08) !important;
}

.btn-faded-secondary {
  background-color: rgba(108, 117, 125, 0.08) !important;
}

.btn-faded-success {
  background-color: rgba(40, 167, 69, 0.08) !important;
}

.btn-faded-info {
  background-color: rgba(23, 162, 184, 0.08) !important;
}

.btn-faded-warning {
  background-color: rgba(255, 193, 7, 0.08) !important;
}

.btn-faded-danger {
  background-color: rgba(220, 53, 69, 0.08) !important;
}

.btn-faded-light {
  background-color: rgba(248, 249, 250, 0.08) !important;
}

.btn-faded-dark {
  background-color: rgba(33, 37, 41, 0.08) !important;
}

/* Custom Colors */

.bg-grassgreen {
  background-color: #04ae66;
}

/*
.bg-primary {
  background-color: #3755BE !important; }

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #2c4396 !important; }
*/

.bg-primary-4 {
  background-color: #2c3d63 !important;
}

a.bg-primary-4:hover,
a.bg-primary-4:focus,
button.bg-primary-4:hover,
button.bg-primary-4:focus {
  background-color: #202c48 !important;
}

.bg-primary-5 {
  background-color: #6f5eff !important;
}

a.bg-primary-5:hover,
a.bg-primary-5:focus,
button.bg-primary-5:hover,
button.bg-primary-5:focus {
  background-color: #4c37ff !important;
}

.bg-primary-6 {
  background-color: #addcca !important;
}

a.bg-primary-6:hover,
a.bg-primary-6:focus,
button.bg-primary-6:hover,
button.bg-primary-6:focus {
  background-color: #92d0b8 !important;
}

.bg-secondary-4 {
  background-color: #ff6f5e !important;
}

a.bg-secondary-4:hover,
a.bg-secondary:focus,
button.bg-secondary-4:hover,
button.bg-secondary-4:focus {
  background-color: #ff4c37 !important;
}

.bg-light {
  background-color: #F5F7FA !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #212529 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #0a0c0d !important;
}

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

/* Custom Text */
.display-3,
.display-4 {
  margin-bottom: 0.2rem;
}

.display-25 {
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
}

.display-35 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
}

.display-45 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.display-55 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

p.lead {
  margin-top: 0.6rem;
}

.highlight {
  display: inline;
  background: rgba(254, 227, 7, 0.8);
  border-radius: 2px;
  padding-left: 5px;
  padding-right: 5px;
}

/* Flickity Settings */
.flickity-page-dots .dot {
  background: #303043;
}

/* Animations */
/* Truck */
svg#freepik_stories-mail-sent:not(.animated) .animable {
  opacity: 0;
}
svg#freepik_stories-mail-sent.animated #freepik--Character--inject-1--inject-2 {
  animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) lightSpeedRight,
    1.5s Infinite linear shake;
  animation-delay: 0s, 1s;
}
@keyframes lightSpeedRight {
  from {
    transform: translate3d(50%, 0, 0) skewX(-20deg);
    opacity: 0;
  }
  60% {
    transform: skewX(10deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-2deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

/* Lost in the Flood */
svg#freepik_stories-bankruptcy:not(.animated) .animable {
  opacity: 0;
}

svg#freepik_stories-bankruptcy.animated #freepik--Water--inject-217 {
  animation: 1.5s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomIn,
    1.5s Infinite linear shake;
  animation-delay: 0s, 1.5s;
}

svg#freepik_stories-bankruptcy.animated #freepik--Arrow--inject-217 {
  animation: 1.5s Infinite linear shake;
  animation-delay: 0s;
}

svg#freepik_stories-bankruptcy.animated #freepik--Coins--inject-217 {
  animation: 2s 1 forwards ease-out slideUp;
  animation-delay: 0s;
}

svg#freepik_stories-bankruptcy.animated #freepik--Bills--inject-217 {
  animation: 3s Infinite linear wind;
  animation-delay: 0s;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

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

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: inherit;
  }
}

@keyframes wind {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(1deg);
  }

  75% {
    transform: rotate(-1deg);
  }
}

/* Losing Money */
svg#freepik_stories-bankruptcy:not(.animated) .animable {
  opacity: 0;
}
svg#freepik_stories-bankruptcy.animated #freepik--Money--inject-109 {
  animation: 1.5s Infinite linear floating;
  animation-delay: 0s;
}
svg#freepik_stories-bankruptcy.animated #freepik--Character--inject-109 {
  animation: 1.5s Infinite linear floating;
  animation-delay: 0s;
}
@keyframes floating {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.psum-img-illustration {
  margin-top: -50px !important;
  margin-bottom: -50px !important;
}

.psum-img-fluid {
  max-width: 83%;
  padding-left: 30px;
  padding-right: 30px;
}

.psum-img-logo {
  width: 623px !important;
  height: auto !important;
}

/* Custom Water Rising Animation
/* HTML Snippet -----&gt;
&lt;div class="loading wave"&gt;
  Jordan &amp; Sons
&lt;/div&gt;
&lt;div class="loading loading-2 wave wave-2"&gt;
  &lt;div class="ff"&gt;For browsers that don't support background-clip:text:&lt;/div&gt;
  &lt;div class="loading-2-text"&gt;&lt;/div&gt;
&lt;/div&gt;
*/
/* CSS Styles -----&gt;
.loading {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 100pt;
  text-align: center;
  height: 120px;
  line-height: 110px;
  vertical-align: bottom;
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  bottom: 0;
  display: block;
}

.loading-2 {
  top: 300px;
  width: 473px;
  height: 97px;
  font-size: 0;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 auto;
}

.ff {
  position: absolute;
  font-size: 12pt;
  top: -20px;
  color: white;
  line-height: 12pt;
}

.loading-2-text {
  background-image: url("http://i66.tinypic.com/1jxje9.png");
  width: 473px;
  height: 97px;
  display: inline-block;
}

@keyframes wave-animation {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 200px bottom;
  }
}
@keyframes loading-animation {
  0% {
    background-size: 200px 0px;
  }
  100% {
    background-size: 200px 200px;
  }
}
.wave {
  background-image: url("http://i66.tinypic.com/optxd3.png");
  -moz-background-clip: text;
  -o-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 0px rgba(255, 255, 255, 0.06);
  animation: wave-animation 1s infinite linear, loading-animation 10s infinite linear alternate;
  background-size: 200px 100px;
  background-repeat: repeat-x;
  opacity: 1;
}

.wave-2 {
  -moz-background-clip: initial;
  -o-background-clip: initial;
  -webkit-background-clip: initial;
  background-clip: initial;
  display: inline-block;
}
*/

.btn-white:hover {
  color: #3755be;
  background: rgba(236, 242, 249, 1);
}

.psum-btn-med {
  font-weight: 500;
}
.psum-btn-reg {
  font-weight: 400;
}
.psum-btn-light {
  font-weight: 300;
}

.psum_feature ul {
  list-style: none;
  padding-left: 0;
}

.psum_feature ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: align-start;
  -ms-flex-align: align-start;
  align-items: align-start;
}

.psum-checklist {
  list-style: none;
}
.psum-checklist li:before {
  content: "✓";
  color: #037a55;
  margin-right: 12px;
  font-weight: 700;
}

.hover-shadow-md {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.hover-shadow-md:hover {
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.05);
}

/* CTA Padding on Tablet */
@media (min-width: 768px)
.mb-lg-n7, .my-lg-n7 {
    margin-bottom: -6rem !important;
}

.psum-sp-01 {
letter-spacing: -.02em; }

svg.injected-svg.bg-primary {
    width: 100% !important;
}

.divider svg {
    width: 100% !important;
}
</pre></body></html>