<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
:root {
  --max-width: 1100px;
  --top-height: 500px;

  /* THEME COLORS */
  --accent-color-1: #980001;
  --accent-color-2: #D10302;

  /* BACKGROUND */
  --background: #717171;
  --background-alt: #980001;
  --item-background: white;

  /* HEADER */
  --header-background: #980001;
  --header-text: aliceblue;
  --header-text-hover: white;

  /* BUTTON COLORS */
  --button-color: linear-gradient(to bottom, #FFBA57 0%, #FAA148 100%);
  --button-text: white;
  --button-hover-color: linear-gradient(to top, #FFBA57 0%, #FAA148 100%);
  --button-hover-text: white;

  /* FONTS */
  --font-default: Helvetica, Arial, sans-serif;
  --font-heading: "Bebas Neue", Impact, Arial, Helvetica, sans-serif;

  /* TEXT COLOR */
  --text-default: #333;
  --text-default-dark: whitesmoke;

  /* SEARCH BOX */
  --searchbox-background: white;
  --searchbox-border: 1px solid lightgray;
  --searchbox-text: black;

  /* FOOTER */
  --footer-background: #980001;
  --footer-text: whitesmoke;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-default);
  width: 100%;

  /* CUSTOMIZE */
  background: var(--background);
  background-size: 100% auto;
  color: var(--text-default-dark);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: bold;
}

a,
.button {
  cursor: pointer;
  text-decoration: none;
}

/* Quick classes */

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}

hr.spacer {
  border: none;
  margin: 25px;
}

/* HEADER */

header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--header-background);
}

header .container {
  max-width: 1200px;
}

header .navbar {
  padding: 15px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar-site-title {
  display: none;
}

.navbar-logo {
  flex: 1;
}

.navbar-logo img {
  width: auto;
  max-height: 60px;
}

#togglemenu {
  display: none;
}

.menu-toggle {
  display: block;
  height: 26px;
  width: 32px;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: var(--header-text);
}

.menu-toggle .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.menu-toggle .line2 {
  transition: transform 0.2s ease-in-out;
}

.menu-toggle .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

#togglemenu:checked ~ .menu-toggle .line {
  border-radius: 10px;
  background: var(--header-text);
}

#togglemenu:checked ~ .menu-toggle .line1 {
  transform: rotate(45deg);
}

#togglemenu:checked ~ .menu-toggle .line2 {
  transform: scaleY(0);
}

#togglemenu:checked ~ .menu-toggle .line3 {
  transform: rotate(-45deg);
}

.navbar-menu {
  justify-items: flex-end;
  z-index: 9999;
}

.navbar-menu {
  position: fixed;
  width: 100%;
  background: var(--header-background);
  padding: 0 10px;
  text-align: center;
  top: 80px;
  margin: 0 auto;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.5s;
  right: 0;
}

.navbar-menu .menu {
  display: block;
  list-style: none;
  padding: 0;
}

.navbar-menu .menu .menu-item {
  display: block;
  width: 100%;
  padding: 10px 0;
}

#togglemenu:checked ~ .navbar-menu {
  max-height: 1000px;
}

.navbar-menu .menu .menu-item,
.navbar-menu .menu .menu-item a {
  display: block;
  width: 100%;
  color: var(--header-text);
  font-family: var(--font-default);
  font-size: 12pt;
}

.navbar-menu .menu .menu-item a.btn {
  max-width: 300px;
  margin: auto;
}

.navbar-menu .menu .menu-item a:hover {
  color: lightgoldenrodyellow;
}

/* DEFAULTS */

#content {
  margin: auto;
  width: 100%;
}

section {
  padding: 30px 30px;
}

section.alt {
  background: var(--background);
}

section#subpage {
  padding: 20px 30px 60px;
}

.container {
  width: 100%;
  margin: auto;
  max-width: var(--max-width);
}

.section-heading {
  font-size: 32pt;
  letter-spacing: 1px;
  margin: 0 0 20px;
}

.grid,
.list {
  display: grid;
  gap: 15px;
}

.flex {
  display: flex;
  gap: 15px;
}

.btn {
  border: none;
  width: auto;
  display: inline-block;
  padding: 8px 20px;
  background: var(--button-color);
  border: none;
  text-transform: uppercase;
  font-family: var(--font-default);
  color: var(--button-text);
  border-radius: 5px;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--button-hover-color);
  color: var(--button-hover-text);
}

/* CTA BUTTONS */

.cta {
  text-transform: none;
  background: linear-gradient(to bottom, #FFBA57 0%, #FAA148 100%);
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 3px 3px 5px #00000029;
}

.cta:hover {
  background: linear-gradient(to top, #FFBA57 0%, #FAA148 100%);  
}

.navbar-menu .menu .menu-item .cta {
  padding: 10px 30px;
}

.navbar-menu .menu .menu-item .cta:hover {
  color: white;
}

section .cta {
  padding: 20px 60px;
  font-size: 22pt;
}

section .cta:hover {
  transform:  scale(1.1) translateY(15px);
}

/* TOP */

section#top {
  min-height: var(--top-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}


.top-grid {
  text-align: center;
  gap: 50px;
  justify-items: center;
  align-items: center;
}

.top-heading {
  font-size: 50pt;
  margin-bottom: 30px;
}

.top-subheading {
  font-family: var(--font-default);
  font-weight: normal;
  font-size: 20pt;
  margin: 0 auto 40px;
}

.top-grid .grid-img {
  width: 500px;
}

/* INTRO */

p {
  line-height: 2;
}

.intro-grid {
  text-align: center;
  gap: 50px;
  justify-items: center;
  align-items: center;
}

.intro-grid .grid-img {
  display: none;
  width: 500px;
}

/* STEPS */

section#steps {
  background: var(--background-alt);
}

.steps-grid {
  gap: 50px;
  justify-items: center;
  align-items: center;
}

section li {
  line-height: 1.75;
  margin-bottom: 15px;
}

.steps-grid .grid-img {
  width: 300px;
}

/* WHY */

section#why {
  background: var(--background);
  padding-bottom: 0;
}

.why-grid {
  gap: 50px;
  justify-items: center;
  align-items: center;
}

.why-grid .grid-img {
  width: 350px;
}

.why-grid ul {
  list-style: none;
  padding-left: 10px;
}

.why-grid li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.why-grid li:before {
  list-style: none;
  display: block;
  content: '✓';
  font-size: 20pt;
}

/* TESTIMONIALS */


section#testimonial{
  padding-bottom: 100px;
}

section#testimonial .section-heading {
  font-size: 50pt;
  text-align: center;
}

.testimonial-grid {
  gap: 50px;
  justify-items: center;
  align-items: center;
}

.testimonial-grid .testimonial-box {
  background: #B2B2B2;
  padding: 30px;
  border-radius: 35px 0;
}

.testimonial-box .testimonial-thumb {
  
  border-radius: 30px 0 0 0;
}


/* BOTTOM */

section#outro {
  min-height: var(--top-height);
  background: url('../images/bg-bottom.png') no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.outro-heading {
  font-size: 50pt;
}

.outro-subheading {
  font-weight: normal;
  font-size: 30pt;
}

/* SUBPAGE */

.subpage-content a {
  color: var(--accent-color-2);
  text-decoration: underline;
}

.subpage-content a:hover {
  color: var(--accent-color-1);
}

/* FOOTER */

footer {
  padding: 20px 30px 20px;
  font-size: 10pt;

  /* CUSTOMIZE */
  background: var(--footer-background);
  color: var(--footer-text);
}

footer a,
footer a:hover {
  /* CUSTOMIZE */
  color: var(--footer-text);
}

/* Mobile first queries */

/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {
  header .navbar {
    padding: 10px 20px;
  }

  section {
    padding: 50px 20px;
  }
  
  body {
    background: var(--background)  url('../images/bg-top.png') no-repeat top right;
    background-size: 100% auto;
  }

  .top-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  section#intro {
    padding-top: 0;
  }
  
  .intro-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  
  .intro-grid .grid-img {
    display: block;
    width: 400px;
  }

  section#steps {
    background: none;
    position: relative;
    padding-top: 100px;
    margin-top: -100px;
  }
  
  section#steps:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 164deg, transparent 40%, var(--background-alt) 40%);
  }

  
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    position: relative;
  }

  section#why {
    position: relative;
    padding-top: 100px;
  }

  
  section#why:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient( to top right, transparent 50%, var(--background-alt) 50%);
  }
  
  .why-grid {
    grid-template-columns: 1fr 1fr;
    position: relative;
  }

    .testimonial-grid {
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }

    
}

/* Larger than desktop */
@media (min-width: 1000px) {
  .menu-toggle {
    display: none;
  }


  header {
    background: none;
    position: static;
  }

  .navbar-menu {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    max-height: none;
    background: none;
  }

  .navbar-menu .menu .menu-item {
    width: auto;
    display: inline-block;
    padding: 0 15px;
    font-size: 13pt;
    align-items: center;
  }

  .navbar-menu .menu .menu-item:hover {
    color: var(--accent-color-1);
  }
  
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}
</pre></body></html>