/*
SASS Name: SASS/CSS UIUX For Axiom Print UIUX Kits
Author: Lyndon Abing
Version: 1.0
*/
.landing-page {
  /*
  |--------------------------------------------------------------------------
  | Google Fonts
  |--------------------------------------------------------------------------
  */
  @import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
  /*
  |--------------------------------------------------------------------------
  | Brand Colors
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Grays
  |--------------------------------------------------------------------------
  */
  /* ----- From Bootstrap Generate Colors ----- */
  /* Generate Colors https://getbootstrap.com/docs/5.1/customize/color/#all-colors */
  /* Generate Colors from Tutorial https://www.youtube.com/watch?v=CTmubyW4uYo */
  /* Generate All Shades of Primary Text, Background, Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /* Text */
  /* Background */
  /* Border */
  /*
  |--------------------------------------------------------------------------
  | Font Family
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Font Weight
  |--------------------------------------------------------------------------
  */
  /* Heading
  |--------------------------------------------------------------------------
  | Desktop
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Tablet
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Mobile
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Font Sizes
  |--------------------------------------------------------------------------
  */
  /* ==========================================
     Border
  ========================================== */
  /*
  |--------------------------------------------------------------------------
  | Border Radius
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Border Radius Utilities
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Shadows
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Shadows
  |--------------------------------------------------------------------------
  */
  /*
  body {
      font-family: $font-body;
      font-size: $font-size-base;
      font-weight: $font-regular;
      line-height: 1.6;
      //color: $text-body;
  }
  */
  /*
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: $font-heading;
      font-weight: $font-bold;
      line-height: auto;
      margin: 0;
      padding: 0;
  }

  h1{
      font-size: $font-size-h1;
  }

  h2{
      font-size: $font-size-h2;
  }

  h3{
      font-size: $font-size-h3;
  }

  h4{
      font-size: $font-size-h4;
  }

  h5{
      font-size: $font-size-h5;
  }

  h6{
      font-size: $font-size-h6;
  }
  */
  /*
  |--------------------------------------------------------------------------
  | Links
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Background Colors
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Background Images
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Overlay
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Sections
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Features
  |--------------------------------------------------------------------------
  */
  /*
  |--------------------------------------------------------------------------
  | Feature Grid
  |--------------------------------------------------------------------------
  */
  /*
  @import "components/accordion";
  @import "components/badge";
  @import "components/form";
  @import "components/modal";
  @import "components/pricing";
  @import "components/table";
  @import "components/testimonials";
  @import "components/timeline";
  */
}
.landing-page .btn {
  display: inline-block;
  font-weight: 400;
  color: #111111;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .landing-page .btn {
    transition: none;
  }
}
.landing-page .btn:hover {
  color: #111111;
  text-decoration: none;
}
.landing-page .btn:focus, .landing-page .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(76, 19, 109, 0.25);
}
.landing-page .btn.disabled, .landing-page .btn:disabled {
  opacity: 0.65;
}
.landing-page .btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.landing-page a.btn.disabled,
.landing-page fieldset:disabled a.btn {
  pointer-events: none;
}
.landing-page .btn-primary {
  color: #ffffff;
  background-color: #4C136D;
  border-color: #4C136D;
}
.landing-page .btn-primary:hover {
  color: #ffffff;
  background-color: rgb(53.2890625, 13.322265625, 76.427734375);
  border-color: rgb(45.71875, 11.4296875, 65.5703125);
}
.landing-page .btn-primary:focus, .landing-page .btn-primary.focus {
  color: #ffffff;
  background-color: rgb(53.2890625, 13.322265625, 76.427734375);
  border-color: rgb(45.71875, 11.4296875, 65.5703125);
  box-shadow: 0 0 0 0.2rem rgba(102.85, 54.4, 130.9, 0.5);
}
.landing-page .btn-primary.disabled, .landing-page .btn-primary:disabled {
  color: #ffffff;
  background-color: #4C136D;
  border-color: #4C136D;
}
.landing-page .btn-primary:not(:disabled):not(.disabled):active, .landing-page .btn-primary:not(:disabled):not(.disabled).active, .show > .landing-page .btn-primary.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(45.71875, 11.4296875, 65.5703125);
  border-color: rgb(38.1484375, 9.537109375, 54.712890625);
}
.landing-page .btn-primary:not(:disabled):not(.disabled):active:focus, .landing-page .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(102.85, 54.4, 130.9, 0.5);
}
.landing-page .btn-secondary {
  color: #ffffff;
  background-color: #00B5EE;
  border-color: #00B5EE;
}
.landing-page .btn-secondary:hover {
  color: #ffffff;
  background-color: rgb(0, 151.9107142857, 199.75);
  border-color: rgb(0, 142.2142857143, 187);
}
.landing-page .btn-secondary:focus, .landing-page .btn-secondary.focus {
  color: #ffffff;
  background-color: rgb(0, 151.9107142857, 199.75);
  border-color: rgb(0, 142.2142857143, 187);
  box-shadow: 0 0 0 0.2rem rgba(38.25, 192.1, 240.55, 0.5);
}
.landing-page .btn-secondary.disabled, .landing-page .btn-secondary:disabled {
  color: #ffffff;
  background-color: #00B5EE;
  border-color: #00B5EE;
}
.landing-page .btn-secondary:not(:disabled):not(.disabled):active, .landing-page .btn-secondary:not(:disabled):not(.disabled).active, .show > .landing-page .btn-secondary.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(0, 142.2142857143, 187);
  border-color: rgb(0, 132.5178571429, 174.25);
}
.landing-page .btn-secondary:not(:disabled):not(.disabled):active:focus, .landing-page .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38.25, 192.1, 240.55, 0.5);
}
.landing-page .btn-success {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.landing-page .btn-success:hover {
  color: #ffffff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.landing-page .btn-success:focus, .landing-page .btn-success.focus {
  color: #ffffff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
  box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.landing-page .btn-success.disabled, .landing-page .btn-success:disabled {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.landing-page .btn-success:not(:disabled):not(.disabled):active, .landing-page .btn-success:not(:disabled):not(.disabled).active, .show > .landing-page .btn-success.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}
.landing-page .btn-success:not(:disabled):not(.disabled):active:focus, .landing-page .btn-success:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.landing-page .btn-info {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.landing-page .btn-info:hover {
  color: #ffffff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.landing-page .btn-info:focus, .landing-page .btn-info.focus {
  color: #ffffff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.landing-page .btn-info.disabled, .landing-page .btn-info:disabled {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.landing-page .btn-info:not(:disabled):not(.disabled):active, .landing-page .btn-info:not(:disabled):not(.disabled).active, .show > .landing-page .btn-info.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.landing-page .btn-info:not(:disabled):not(.disabled):active:focus, .landing-page .btn-info:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.landing-page .btn-warning {
  color: #111111;
  background-color: #ffc107;
  border-color: #ffc107;
}
.landing-page .btn-warning:hover {
  color: #111111;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.landing-page .btn-warning:focus, .landing-page .btn-warning.focus {
  color: #111111;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  box-shadow: 0 0 0 0.2rem rgba(219.3, 166.6, 8.5, 0.5);
}
.landing-page .btn-warning.disabled, .landing-page .btn-warning:disabled {
  color: #111111;
  background-color: #ffc107;
  border-color: #ffc107;
}
.landing-page .btn-warning:not(:disabled):not(.disabled):active, .landing-page .btn-warning:not(:disabled):not(.disabled).active, .show > .landing-page .btn-warning.dropdown-toggle {
  color: #111111;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.landing-page .btn-warning:not(:disabled):not(.disabled):active:focus, .landing-page .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(219.3, 166.6, 8.5, 0.5);
}
.landing-page .btn-danger {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.landing-page .btn-danger:hover {
  color: #ffffff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.landing-page .btn-danger:focus, .landing-page .btn-danger.focus {
  color: #ffffff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}
.landing-page .btn-danger.disabled, .landing-page .btn-danger:disabled {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.landing-page .btn-danger:not(:disabled):not(.disabled):active, .landing-page .btn-danger:not(:disabled):not(.disabled).active, .show > .landing-page .btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(178.3481012658, 30.9018987342, 45.0284810127);
}
.landing-page .btn-danger:not(:disabled):not(.disabled):active:focus, .landing-page .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}
.landing-page .btn-light {
  color: #111111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.landing-page .btn-light:hover {
  color: #111111;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}
.landing-page .btn-light:focus, .landing-page .btn-light.focus {
  color: #111111;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  box-shadow: 0 0 0 0.2rem rgba(213.35, 214.2, 215.05, 0.5);
}
.landing-page .btn-light.disabled, .landing-page .btn-light:disabled {
  color: #111111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.landing-page .btn-light:not(:disabled):not(.disabled):active, .landing-page .btn-light:not(:disabled):not(.disabled).active, .show > .landing-page .btn-light.dropdown-toggle {
  color: #111111;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.landing-page .btn-light:not(:disabled):not(.disabled):active:focus, .landing-page .btn-light:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(213.35, 214.2, 215.05, 0.5);
}
.landing-page .btn-dark {
  color: #ffffff;
  background-color: #212529;
  border-color: #212529;
}
.landing-page .btn-dark:hover {
  color: #ffffff;
  background-color: rgb(15.9425675676, 17.875, 19.8074324324);
  border-color: rgb(10.2567567568, 11.5, 12.7432432432);
}
.landing-page .btn-dark:focus, .landing-page .btn-dark.focus {
  color: #ffffff;
  background-color: rgb(15.9425675676, 17.875, 19.8074324324);
  border-color: rgb(10.2567567568, 11.5, 12.7432432432);
  box-shadow: 0 0 0 0.2rem rgba(66.3, 69.7, 73.1, 0.5);
}
.landing-page .btn-dark.disabled, .landing-page .btn-dark:disabled {
  color: #ffffff;
  background-color: #212529;
  border-color: #212529;
}
.landing-page .btn-dark:not(:disabled):not(.disabled):active, .landing-page .btn-dark:not(:disabled):not(.disabled).active, .show > .landing-page .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(10.2567567568, 11.5, 12.7432432432);
  border-color: rgb(4.5709459459, 5.125, 5.6790540541);
}
.landing-page .btn-dark:not(:disabled):not(.disabled):active:focus, .landing-page .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(66.3, 69.7, 73.1, 0.5);
}
.landing-page .btn-axiom-magenta {
  color: #ffffff;
  background-color: #ED008B;
  border-color: #ED008B;
}
.landing-page .btn-axiom-magenta:hover {
  color: #ffffff;
  background-color: rgb(198.75, 0, 116.5664556962);
  border-color: rgb(186, 0, 109.0886075949);
}
.landing-page .btn-axiom-magenta:focus, .landing-page .btn-axiom-magenta.focus {
  color: #ffffff;
  background-color: rgb(198.75, 0, 116.5664556962);
  border-color: rgb(186, 0, 109.0886075949);
  box-shadow: 0 0 0 0.2rem rgba(239.7, 38.25, 156.4, 0.5);
}
.landing-page .btn-axiom-magenta.disabled, .landing-page .btn-axiom-magenta:disabled {
  color: #ffffff;
  background-color: #ED008B;
  border-color: #ED008B;
}
.landing-page .btn-axiom-magenta:not(:disabled):not(.disabled):active, .landing-page .btn-axiom-magenta:not(:disabled):not(.disabled).active, .show > .landing-page .btn-axiom-magenta.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(186, 0, 109.0886075949);
  border-color: rgb(173.25, 0, 101.6107594937);
}
.landing-page .btn-axiom-magenta:not(:disabled):not(.disabled):active:focus, .landing-page .btn-axiom-magenta:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-axiom-magenta.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(239.7, 38.25, 156.4, 0.5);
}
.landing-page .btn-axiom-purple {
  color: #ffffff;
  background-color: #4C136D;
  border-color: #4C136D;
}
.landing-page .btn-axiom-purple:hover {
  color: #ffffff;
  background-color: rgb(53.2890625, 13.322265625, 76.427734375);
  border-color: rgb(45.71875, 11.4296875, 65.5703125);
}
.landing-page .btn-axiom-purple:focus, .landing-page .btn-axiom-purple.focus {
  color: #ffffff;
  background-color: rgb(53.2890625, 13.322265625, 76.427734375);
  border-color: rgb(45.71875, 11.4296875, 65.5703125);
  box-shadow: 0 0 0 0.2rem rgba(102.85, 54.4, 130.9, 0.5);
}
.landing-page .btn-axiom-purple.disabled, .landing-page .btn-axiom-purple:disabled {
  color: #ffffff;
  background-color: #4C136D;
  border-color: #4C136D;
}
.landing-page .btn-axiom-purple:not(:disabled):not(.disabled):active, .landing-page .btn-axiom-purple:not(:disabled):not(.disabled).active, .show > .landing-page .btn-axiom-purple.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(45.71875, 11.4296875, 65.5703125);
  border-color: rgb(38.1484375, 9.537109375, 54.712890625);
}
.landing-page .btn-axiom-purple:not(:disabled):not(.disabled):active:focus, .landing-page .btn-axiom-purple:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-axiom-purple.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(102.85, 54.4, 130.9, 0.5);
}
.landing-page .btn-axiom-cyan {
  color: #ffffff;
  background-color: #00B5EE;
  border-color: #00B5EE;
}
.landing-page .btn-axiom-cyan:hover {
  color: #ffffff;
  background-color: rgb(0, 151.9107142857, 199.75);
  border-color: rgb(0, 142.2142857143, 187);
}
.landing-page .btn-axiom-cyan:focus, .landing-page .btn-axiom-cyan.focus {
  color: #ffffff;
  background-color: rgb(0, 151.9107142857, 199.75);
  border-color: rgb(0, 142.2142857143, 187);
  box-shadow: 0 0 0 0.2rem rgba(38.25, 192.1, 240.55, 0.5);
}
.landing-page .btn-axiom-cyan.disabled, .landing-page .btn-axiom-cyan:disabled {
  color: #ffffff;
  background-color: #00B5EE;
  border-color: #00B5EE;
}
.landing-page .btn-axiom-cyan:not(:disabled):not(.disabled):active, .landing-page .btn-axiom-cyan:not(:disabled):not(.disabled).active, .show > .landing-page .btn-axiom-cyan.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(0, 142.2142857143, 187);
  border-color: rgb(0, 132.5178571429, 174.25);
}
.landing-page .btn-axiom-cyan:not(:disabled):not(.disabled):active:focus, .landing-page .btn-axiom-cyan:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-axiom-cyan.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38.25, 192.1, 240.55, 0.5);
}
.landing-page .btn-axiom-purple-dark {
  color: #ffffff;
  background-color: #300F45;
  border-color: #300F45;
}
.landing-page .btn-axiom-purple-dark:hover {
  color: #ffffff;
  background-color: rgb(26.1428571429, 8.1696428571, 37.5803571429);
  border-color: rgb(18.8571428571, 5.8928571429, 27.1071428571);
}
.landing-page .btn-axiom-purple-dark:focus, .landing-page .btn-axiom-purple-dark.focus {
  color: #ffffff;
  background-color: rgb(26.1428571429, 8.1696428571, 37.5803571429);
  border-color: rgb(18.8571428571, 5.8928571429, 27.1071428571);
  box-shadow: 0 0 0 0.2rem rgba(79.05, 51, 96.9, 0.5);
}
.landing-page .btn-axiom-purple-dark.disabled, .landing-page .btn-axiom-purple-dark:disabled {
  color: #ffffff;
  background-color: #300F45;
  border-color: #300F45;
}
.landing-page .btn-axiom-purple-dark:not(:disabled):not(.disabled):active, .landing-page .btn-axiom-purple-dark:not(:disabled):not(.disabled).active, .show > .landing-page .btn-axiom-purple-dark.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(18.8571428571, 5.8928571429, 27.1071428571);
  border-color: rgb(11.5714285714, 3.6160714286, 16.6339285714);
}
.landing-page .btn-axiom-purple-dark:not(:disabled):not(.disabled):active:focus, .landing-page .btn-axiom-purple-dark:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-axiom-purple-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(79.05, 51, 96.9, 0.5);
}
.landing-page .btn-axiom-purple-light {
  color: #111111;
  background-color: #E4DFF9;
  border-color: #E4DFF9;
}
.landing-page .btn-axiom-purple-light:hover {
  color: #111111;
  background-color: rgb(200.8223684211, 190.7894736842, 242.9605263158);
  border-color: rgb(191.7631578947, 180.0526315789, 240.9473684211);
}
.landing-page .btn-axiom-purple-light:focus, .landing-page .btn-axiom-purple-light.focus {
  color: #111111;
  background-color: rgb(200.8223684211, 190.7894736842, 242.9605263158);
  border-color: rgb(191.7631578947, 180.0526315789, 240.9473684211);
  box-shadow: 0 0 0 0.2rem rgba(196.35, 192.1, 214.2, 0.5);
}
.landing-page .btn-axiom-purple-light.disabled, .landing-page .btn-axiom-purple-light:disabled {
  color: #111111;
  background-color: #E4DFF9;
  border-color: #E4DFF9;
}
.landing-page .btn-axiom-purple-light:not(:disabled):not(.disabled):active, .landing-page .btn-axiom-purple-light:not(:disabled):not(.disabled).active, .show > .landing-page .btn-axiom-purple-light.dropdown-toggle {
  color: #111111;
  background-color: rgb(191.7631578947, 180.0526315789, 240.9473684211);
  border-color: rgb(182.7039473684, 169.3157894737, 238.9342105263);
}
.landing-page .btn-axiom-purple-light:not(:disabled):not(.disabled):active:focus, .landing-page .btn-axiom-purple-light:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-axiom-purple-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(196.35, 192.1, 214.2, 0.5);
}
.landing-page .btn-axiom-yellow {
  color: #111111;
  background-color: #FFC20E;
  border-color: #FFC20E;
}
.landing-page .btn-axiom-yellow:hover {
  color: #111111;
  background-color: rgb(230.75, 172.3443983402, 0);
  border-color: rgb(218, 162.8215767635, 0);
}
.landing-page .btn-axiom-yellow:focus, .landing-page .btn-axiom-yellow.focus {
  color: #111111;
  background-color: rgb(230.75, 172.3443983402, 0);
  border-color: rgb(218, 162.8215767635, 0);
  box-shadow: 0 0 0 0.2rem rgba(219.3, 167.45, 14.45, 0.5);
}
.landing-page .btn-axiom-yellow.disabled, .landing-page .btn-axiom-yellow:disabled {
  color: #111111;
  background-color: #FFC20E;
  border-color: #FFC20E;
}
.landing-page .btn-axiom-yellow:not(:disabled):not(.disabled):active, .landing-page .btn-axiom-yellow:not(:disabled):not(.disabled).active, .show > .landing-page .btn-axiom-yellow.dropdown-toggle {
  color: #111111;
  background-color: rgb(218, 162.8215767635, 0);
  border-color: rgb(205.25, 153.2987551867, 0);
}
.landing-page .btn-axiom-yellow:not(:disabled):not(.disabled):active:focus, .landing-page .btn-axiom-yellow:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-axiom-yellow.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(219.3, 167.45, 14.45, 0.5);
}
.landing-page .btn-gray-100 {
  color: #111111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.landing-page .btn-gray-100:hover {
  color: #111111;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}
.landing-page .btn-gray-100:focus, .landing-page .btn-gray-100.focus {
  color: #111111;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  box-shadow: 0 0 0 0.2rem rgba(213.35, 214.2, 215.05, 0.5);
}
.landing-page .btn-gray-100.disabled, .landing-page .btn-gray-100:disabled {
  color: #111111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.landing-page .btn-gray-100:not(:disabled):not(.disabled):active, .landing-page .btn-gray-100:not(:disabled):not(.disabled).active, .show > .landing-page .btn-gray-100.dropdown-toggle {
  color: #111111;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.landing-page .btn-gray-100:not(:disabled):not(.disabled):active:focus, .landing-page .btn-gray-100:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-gray-100.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(213.35, 214.2, 215.05, 0.5);
}
.landing-page .btn-gray-200 {
  color: #111111;
  background-color: #eeeeee;
  border-color: #eeeeee;
}
.landing-page .btn-gray-200:hover {
  color: #111111;
  background-color: rgb(218.875, 218.875, 218.875);
  border-color: rgb(212.5, 212.5, 212.5);
}
.landing-page .btn-gray-200:focus, .landing-page .btn-gray-200.focus {
  color: #111111;
  background-color: rgb(218.875, 218.875, 218.875);
  border-color: rgb(212.5, 212.5, 212.5);
  box-shadow: 0 0 0 0.2rem rgba(204.85, 204.85, 204.85, 0.5);
}
.landing-page .btn-gray-200.disabled, .landing-page .btn-gray-200:disabled {
  color: #111111;
  background-color: #eeeeee;
  border-color: #eeeeee;
}
.landing-page .btn-gray-200:not(:disabled):not(.disabled):active, .landing-page .btn-gray-200:not(:disabled):not(.disabled).active, .show > .landing-page .btn-gray-200.dropdown-toggle {
  color: #111111;
  background-color: rgb(212.5, 212.5, 212.5);
  border-color: rgb(206.125, 206.125, 206.125);
}
.landing-page .btn-gray-200:not(:disabled):not(.disabled):active:focus, .landing-page .btn-gray-200:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-gray-200.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(204.85, 204.85, 204.85, 0.5);
}
.landing-page .btn-gray-300 {
  color: #111111;
  background-color: #dddddd;
  border-color: #dddddd;
}
.landing-page .btn-gray-300:hover {
  color: #111111;
  background-color: rgb(201.875, 201.875, 201.875);
  border-color: rgb(195.5, 195.5, 195.5);
}
.landing-page .btn-gray-300:focus, .landing-page .btn-gray-300.focus {
  color: #111111;
  background-color: rgb(201.875, 201.875, 201.875);
  border-color: rgb(195.5, 195.5, 195.5);
  box-shadow: 0 0 0 0.2rem rgba(190.4, 190.4, 190.4, 0.5);
}
.landing-page .btn-gray-300.disabled, .landing-page .btn-gray-300:disabled {
  color: #111111;
  background-color: #dddddd;
  border-color: #dddddd;
}
.landing-page .btn-gray-300:not(:disabled):not(.disabled):active, .landing-page .btn-gray-300:not(:disabled):not(.disabled).active, .show > .landing-page .btn-gray-300.dropdown-toggle {
  color: #111111;
  background-color: rgb(195.5, 195.5, 195.5);
  border-color: rgb(189.125, 189.125, 189.125);
}
.landing-page .btn-gray-300:not(:disabled):not(.disabled):active:focus, .landing-page .btn-gray-300:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-gray-300.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(190.4, 190.4, 190.4, 0.5);
}
.landing-page .btn-gray-400 {
  color: #111111;
  background-color: #cccccc;
  border-color: #cccccc;
}
.landing-page .btn-gray-400:hover {
  color: #111111;
  background-color: rgb(184.875, 184.875, 184.875);
  border-color: rgb(178.5, 178.5, 178.5);
}
.landing-page .btn-gray-400:focus, .landing-page .btn-gray-400.focus {
  color: #111111;
  background-color: rgb(184.875, 184.875, 184.875);
  border-color: rgb(178.5, 178.5, 178.5);
  box-shadow: 0 0 0 0.2rem rgba(175.95, 175.95, 175.95, 0.5);
}
.landing-page .btn-gray-400.disabled, .landing-page .btn-gray-400:disabled {
  color: #111111;
  background-color: #cccccc;
  border-color: #cccccc;
}
.landing-page .btn-gray-400:not(:disabled):not(.disabled):active, .landing-page .btn-gray-400:not(:disabled):not(.disabled).active, .show > .landing-page .btn-gray-400.dropdown-toggle {
  color: #111111;
  background-color: rgb(178.5, 178.5, 178.5);
  border-color: rgb(172.125, 172.125, 172.125);
}
.landing-page .btn-gray-400:not(:disabled):not(.disabled):active:focus, .landing-page .btn-gray-400:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-gray-400.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(175.95, 175.95, 175.95, 0.5);
}
.landing-page .btn-gray-500 {
  color: #111111;
  background-color: #999999;
  border-color: #999999;
}
.landing-page .btn-gray-500:hover {
  color: #ffffff;
  background-color: rgb(133.875, 133.875, 133.875);
  border-color: rgb(127.5, 127.5, 127.5);
}
.landing-page .btn-gray-500:focus, .landing-page .btn-gray-500.focus {
  color: #ffffff;
  background-color: rgb(133.875, 133.875, 133.875);
  border-color: rgb(127.5, 127.5, 127.5);
  box-shadow: 0 0 0 0.2rem rgba(132.6, 132.6, 132.6, 0.5);
}
.landing-page .btn-gray-500.disabled, .landing-page .btn-gray-500:disabled {
  color: #111111;
  background-color: #999999;
  border-color: #999999;
}
.landing-page .btn-gray-500:not(:disabled):not(.disabled):active, .landing-page .btn-gray-500:not(:disabled):not(.disabled).active, .show > .landing-page .btn-gray-500.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(127.5, 127.5, 127.5);
  border-color: rgb(121.125, 121.125, 121.125);
}
.landing-page .btn-gray-500:not(:disabled):not(.disabled):active:focus, .landing-page .btn-gray-500:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-gray-500.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(132.6, 132.6, 132.6, 0.5);
}
.landing-page .btn-gray-600 {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.landing-page .btn-gray-600:hover {
  color: #ffffff;
  background-color: rgb(82.875, 82.875, 82.875);
  border-color: rgb(76.5, 76.5, 76.5);
}
.landing-page .btn-gray-600:focus, .landing-page .btn-gray-600.focus {
  color: #ffffff;
  background-color: rgb(82.875, 82.875, 82.875);
  border-color: rgb(76.5, 76.5, 76.5);
  box-shadow: 0 0 0 0.2rem rgba(124.95, 124.95, 124.95, 0.5);
}
.landing-page .btn-gray-600.disabled, .landing-page .btn-gray-600:disabled {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.landing-page .btn-gray-600:not(:disabled):not(.disabled):active, .landing-page .btn-gray-600:not(:disabled):not(.disabled).active, .show > .landing-page .btn-gray-600.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(76.5, 76.5, 76.5);
  border-color: rgb(70.125, 70.125, 70.125);
}
.landing-page .btn-gray-600:not(:disabled):not(.disabled):active:focus, .landing-page .btn-gray-600:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-gray-600.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(124.95, 124.95, 124.95, 0.5);
}
.landing-page .btn-gray-700 {
  color: #ffffff;
  background-color: #444444;
  border-color: #444444;
}
.landing-page .btn-gray-700:hover {
  color: #ffffff;
  background-color: rgb(48.875, 48.875, 48.875);
  border-color: rgb(42.5, 42.5, 42.5);
}
.landing-page .btn-gray-700:focus, .landing-page .btn-gray-700.focus {
  color: #ffffff;
  background-color: rgb(48.875, 48.875, 48.875);
  border-color: rgb(42.5, 42.5, 42.5);
  box-shadow: 0 0 0 0.2rem rgba(96.05, 96.05, 96.05, 0.5);
}
.landing-page .btn-gray-700.disabled, .landing-page .btn-gray-700:disabled {
  color: #ffffff;
  background-color: #444444;
  border-color: #444444;
}
.landing-page .btn-gray-700:not(:disabled):not(.disabled):active, .landing-page .btn-gray-700:not(:disabled):not(.disabled).active, .show > .landing-page .btn-gray-700.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(42.5, 42.5, 42.5);
  border-color: rgb(36.125, 36.125, 36.125);
}
.landing-page .btn-gray-700:not(:disabled):not(.disabled):active:focus, .landing-page .btn-gray-700:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-gray-700.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(96.05, 96.05, 96.05, 0.5);
}
.landing-page .btn-gray-800 {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.landing-page .btn-gray-800:hover {
  color: #ffffff;
  background-color: rgb(31.875, 31.875, 31.875);
  border-color: rgb(25.5, 25.5, 25.5);
}
.landing-page .btn-gray-800:focus, .landing-page .btn-gray-800.focus {
  color: #ffffff;
  background-color: rgb(31.875, 31.875, 31.875);
  border-color: rgb(25.5, 25.5, 25.5);
  box-shadow: 0 0 0 0.2rem rgba(81.6, 81.6, 81.6, 0.5);
}
.landing-page .btn-gray-800.disabled, .landing-page .btn-gray-800:disabled {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.landing-page .btn-gray-800:not(:disabled):not(.disabled):active, .landing-page .btn-gray-800:not(:disabled):not(.disabled).active, .show > .landing-page .btn-gray-800.dropdown-toggle {
  color: #ffffff;
  background-color: rgb(25.5, 25.5, 25.5);
  border-color: rgb(19.125, 19.125, 19.125);
}
.landing-page .btn-gray-800:not(:disabled):not(.disabled):active:focus, .landing-page .btn-gray-800:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-gray-800.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81.6, 81.6, 81.6, 0.5);
}
.landing-page .btn-gray-900 {
  color: #ffffff;
  background-color: #111111;
  border-color: #111111;
}
.landing-page .btn-gray-900:hover {
  color: #ffffff;
  background-color: black;
  border-color: black;
}
.landing-page .btn-gray-900:focus, .landing-page .btn-gray-900.focus {
  color: #ffffff;
  background-color: black;
  border-color: black;
  box-shadow: 0 0 0 0.2rem rgba(52.7, 52.7, 52.7, 0.5);
}
.landing-page .btn-gray-900.disabled, .landing-page .btn-gray-900:disabled {
  color: #ffffff;
  background-color: #111111;
  border-color: #111111;
}
.landing-page .btn-gray-900:not(:disabled):not(.disabled):active, .landing-page .btn-gray-900:not(:disabled):not(.disabled).active, .show > .landing-page .btn-gray-900.dropdown-toggle {
  color: #ffffff;
  background-color: black;
  border-color: black;
}
.landing-page .btn-gray-900:not(:disabled):not(.disabled):active:focus, .landing-page .btn-gray-900:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-gray-900.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52.7, 52.7, 52.7, 0.5);
}
.landing-page .btn-white {
  color: #111111;
  background-color: #ffffff;
  border-color: #ffffff;
}
.landing-page .btn-white:hover {
  color: #111111;
  background-color: rgb(235.875, 235.875, 235.875);
  border-color: rgb(229.5, 229.5, 229.5);
}
.landing-page .btn-white:focus, .landing-page .btn-white.focus {
  color: #111111;
  background-color: rgb(235.875, 235.875, 235.875);
  border-color: rgb(229.5, 229.5, 229.5);
  box-shadow: 0 0 0 0.2rem rgba(219.3, 219.3, 219.3, 0.5);
}
.landing-page .btn-white.disabled, .landing-page .btn-white:disabled {
  color: #111111;
  background-color: #ffffff;
  border-color: #ffffff;
}
.landing-page .btn-white:not(:disabled):not(.disabled):active, .landing-page .btn-white:not(:disabled):not(.disabled).active, .show > .landing-page .btn-white.dropdown-toggle {
  color: #111111;
  background-color: rgb(229.5, 229.5, 229.5);
  border-color: rgb(223.125, 223.125, 223.125);
}
.landing-page .btn-white:not(:disabled):not(.disabled):active:focus, .landing-page .btn-white:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(219.3, 219.3, 219.3, 0.5);
}
.landing-page .btn-outline-primary {
  color: #4C136D;
  border-color: #4C136D;
}
.landing-page .btn-outline-primary:hover {
  color: #ffffff;
  background-color: #4C136D;
  border-color: #4C136D;
}
.landing-page .btn-outline-primary:focus, .landing-page .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 19, 109, 0.5);
}
.landing-page .btn-outline-primary.disabled, .landing-page .btn-outline-primary:disabled {
  color: #4C136D;
  background-color: transparent;
}
.landing-page .btn-outline-primary:not(:disabled):not(.disabled):active, .landing-page .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #4C136D;
  border-color: #4C136D;
}
.landing-page .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 19, 109, 0.5);
}
.landing-page .btn-outline-secondary {
  color: #00B5EE;
  border-color: #00B5EE;
}
.landing-page .btn-outline-secondary:hover {
  color: #ffffff;
  background-color: #00B5EE;
  border-color: #00B5EE;
}
.landing-page .btn-outline-secondary:focus, .landing-page .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 181, 238, 0.5);
}
.landing-page .btn-outline-secondary.disabled, .landing-page .btn-outline-secondary:disabled {
  color: #00B5EE;
  background-color: transparent;
}
.landing-page .btn-outline-secondary:not(:disabled):not(.disabled):active, .landing-page .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-secondary.dropdown-toggle {
  color: #ffffff;
  background-color: #00B5EE;
  border-color: #00B5EE;
}
.landing-page .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 181, 238, 0.5);
}
.landing-page .btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.landing-page .btn-outline-success:hover {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.landing-page .btn-outline-success:focus, .landing-page .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.landing-page .btn-outline-success.disabled, .landing-page .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.landing-page .btn-outline-success:not(:disabled):not(.disabled):active, .landing-page .btn-outline-success:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-success.dropdown-toggle {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.landing-page .btn-outline-success:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.landing-page .btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.landing-page .btn-outline-info:hover {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.landing-page .btn-outline-info:focus, .landing-page .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.landing-page .btn-outline-info.disabled, .landing-page .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.landing-page .btn-outline-info:not(:disabled):not(.disabled):active, .landing-page .btn-outline-info:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-info.dropdown-toggle {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.landing-page .btn-outline-info:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.landing-page .btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.landing-page .btn-outline-warning:hover {
  color: #111111;
  background-color: #ffc107;
  border-color: #ffc107;
}
.landing-page .btn-outline-warning:focus, .landing-page .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.landing-page .btn-outline-warning.disabled, .landing-page .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.landing-page .btn-outline-warning:not(:disabled):not(.disabled):active, .landing-page .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-warning.dropdown-toggle {
  color: #111111;
  background-color: #ffc107;
  border-color: #ffc107;
}
.landing-page .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.landing-page .btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.landing-page .btn-outline-danger:hover {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.landing-page .btn-outline-danger:focus, .landing-page .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.landing-page .btn-outline-danger.disabled, .landing-page .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.landing-page .btn-outline-danger:not(:disabled):not(.disabled):active, .landing-page .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.landing-page .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.landing-page .btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.landing-page .btn-outline-light:hover {
  color: #111111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.landing-page .btn-outline-light:focus, .landing-page .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.landing-page .btn-outline-light.disabled, .landing-page .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.landing-page .btn-outline-light:not(:disabled):not(.disabled):active, .landing-page .btn-outline-light:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-light.dropdown-toggle {
  color: #111111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.landing-page .btn-outline-light:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.landing-page .btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
.landing-page .btn-outline-dark:hover {
  color: #ffffff;
  background-color: #212529;
  border-color: #212529;
}
.landing-page .btn-outline-dark:focus, .landing-page .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5);
}
.landing-page .btn-outline-dark.disabled, .landing-page .btn-outline-dark:disabled {
  color: #212529;
  background-color: transparent;
}
.landing-page .btn-outline-dark:not(:disabled):not(.disabled):active, .landing-page .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #212529;
  border-color: #212529;
}
.landing-page .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5);
}
.landing-page .btn-outline-axiom-magenta {
  color: #ED008B;
  border-color: #ED008B;
}
.landing-page .btn-outline-axiom-magenta:hover {
  color: #ffffff;
  background-color: #ED008B;
  border-color: #ED008B;
}
.landing-page .btn-outline-axiom-magenta:focus, .landing-page .btn-outline-axiom-magenta.focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 0, 139, 0.5);
}
.landing-page .btn-outline-axiom-magenta.disabled, .landing-page .btn-outline-axiom-magenta:disabled {
  color: #ED008B;
  background-color: transparent;
}
.landing-page .btn-outline-axiom-magenta:not(:disabled):not(.disabled):active, .landing-page .btn-outline-axiom-magenta:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-axiom-magenta.dropdown-toggle {
  color: #ffffff;
  background-color: #ED008B;
  border-color: #ED008B;
}
.landing-page .btn-outline-axiom-magenta:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-axiom-magenta:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-axiom-magenta.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 0, 139, 0.5);
}
.landing-page .btn-outline-axiom-purple {
  color: #4C136D;
  border-color: #4C136D;
}
.landing-page .btn-outline-axiom-purple:hover {
  color: #ffffff;
  background-color: #4C136D;
  border-color: #4C136D;
}
.landing-page .btn-outline-axiom-purple:focus, .landing-page .btn-outline-axiom-purple.focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 19, 109, 0.5);
}
.landing-page .btn-outline-axiom-purple.disabled, .landing-page .btn-outline-axiom-purple:disabled {
  color: #4C136D;
  background-color: transparent;
}
.landing-page .btn-outline-axiom-purple:not(:disabled):not(.disabled):active, .landing-page .btn-outline-axiom-purple:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-axiom-purple.dropdown-toggle {
  color: #ffffff;
  background-color: #4C136D;
  border-color: #4C136D;
}
.landing-page .btn-outline-axiom-purple:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-axiom-purple:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-axiom-purple.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 19, 109, 0.5);
}
.landing-page .btn-outline-axiom-cyan {
  color: #00B5EE;
  border-color: #00B5EE;
}
.landing-page .btn-outline-axiom-cyan:hover {
  color: #ffffff;
  background-color: #00B5EE;
  border-color: #00B5EE;
}
.landing-page .btn-outline-axiom-cyan:focus, .landing-page .btn-outline-axiom-cyan.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 181, 238, 0.5);
}
.landing-page .btn-outline-axiom-cyan.disabled, .landing-page .btn-outline-axiom-cyan:disabled {
  color: #00B5EE;
  background-color: transparent;
}
.landing-page .btn-outline-axiom-cyan:not(:disabled):not(.disabled):active, .landing-page .btn-outline-axiom-cyan:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-axiom-cyan.dropdown-toggle {
  color: #ffffff;
  background-color: #00B5EE;
  border-color: #00B5EE;
}
.landing-page .btn-outline-axiom-cyan:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-axiom-cyan:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-axiom-cyan.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 181, 238, 0.5);
}
.landing-page .btn-outline-axiom-purple-dark {
  color: #300F45;
  border-color: #300F45;
}
.landing-page .btn-outline-axiom-purple-dark:hover {
  color: #ffffff;
  background-color: #300F45;
  border-color: #300F45;
}
.landing-page .btn-outline-axiom-purple-dark:focus, .landing-page .btn-outline-axiom-purple-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(48, 15, 69, 0.5);
}
.landing-page .btn-outline-axiom-purple-dark.disabled, .landing-page .btn-outline-axiom-purple-dark:disabled {
  color: #300F45;
  background-color: transparent;
}
.landing-page .btn-outline-axiom-purple-dark:not(:disabled):not(.disabled):active, .landing-page .btn-outline-axiom-purple-dark:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-axiom-purple-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #300F45;
  border-color: #300F45;
}
.landing-page .btn-outline-axiom-purple-dark:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-axiom-purple-dark:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-axiom-purple-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(48, 15, 69, 0.5);
}
.landing-page .btn-outline-axiom-purple-light {
  color: #E4DFF9;
  border-color: #E4DFF9;
}
.landing-page .btn-outline-axiom-purple-light:hover {
  color: #111111;
  background-color: #E4DFF9;
  border-color: #E4DFF9;
}
.landing-page .btn-outline-axiom-purple-light:focus, .landing-page .btn-outline-axiom-purple-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(228, 223, 249, 0.5);
}
.landing-page .btn-outline-axiom-purple-light.disabled, .landing-page .btn-outline-axiom-purple-light:disabled {
  color: #E4DFF9;
  background-color: transparent;
}
.landing-page .btn-outline-axiom-purple-light:not(:disabled):not(.disabled):active, .landing-page .btn-outline-axiom-purple-light:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-axiom-purple-light.dropdown-toggle {
  color: #111111;
  background-color: #E4DFF9;
  border-color: #E4DFF9;
}
.landing-page .btn-outline-axiom-purple-light:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-axiom-purple-light:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-axiom-purple-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(228, 223, 249, 0.5);
}
.landing-page .btn-outline-axiom-yellow {
  color: #FFC20E;
  border-color: #FFC20E;
}
.landing-page .btn-outline-axiom-yellow:hover {
  color: #111111;
  background-color: #FFC20E;
  border-color: #FFC20E;
}
.landing-page .btn-outline-axiom-yellow:focus, .landing-page .btn-outline-axiom-yellow.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 194, 14, 0.5);
}
.landing-page .btn-outline-axiom-yellow.disabled, .landing-page .btn-outline-axiom-yellow:disabled {
  color: #FFC20E;
  background-color: transparent;
}
.landing-page .btn-outline-axiom-yellow:not(:disabled):not(.disabled):active, .landing-page .btn-outline-axiom-yellow:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-axiom-yellow.dropdown-toggle {
  color: #111111;
  background-color: #FFC20E;
  border-color: #FFC20E;
}
.landing-page .btn-outline-axiom-yellow:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-axiom-yellow:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-axiom-yellow.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 194, 14, 0.5);
}
.landing-page .btn-outline-gray-100 {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.landing-page .btn-outline-gray-100:hover {
  color: #111111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.landing-page .btn-outline-gray-100:focus, .landing-page .btn-outline-gray-100.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.landing-page .btn-outline-gray-100.disabled, .landing-page .btn-outline-gray-100:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.landing-page .btn-outline-gray-100:not(:disabled):not(.disabled):active, .landing-page .btn-outline-gray-100:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-gray-100.dropdown-toggle {
  color: #111111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.landing-page .btn-outline-gray-100:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-gray-100:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-gray-100.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.landing-page .btn-outline-gray-200 {
  color: #eeeeee;
  border-color: #eeeeee;
}
.landing-page .btn-outline-gray-200:hover {
  color: #111111;
  background-color: #eeeeee;
  border-color: #eeeeee;
}
.landing-page .btn-outline-gray-200:focus, .landing-page .btn-outline-gray-200.focus {
  box-shadow: 0 0 0 0.2rem rgba(238, 238, 238, 0.5);
}
.landing-page .btn-outline-gray-200.disabled, .landing-page .btn-outline-gray-200:disabled {
  color: #eeeeee;
  background-color: transparent;
}
.landing-page .btn-outline-gray-200:not(:disabled):not(.disabled):active, .landing-page .btn-outline-gray-200:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-gray-200.dropdown-toggle {
  color: #111111;
  background-color: #eeeeee;
  border-color: #eeeeee;
}
.landing-page .btn-outline-gray-200:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-gray-200:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-gray-200.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(238, 238, 238, 0.5);
}
.landing-page .btn-outline-gray-300 {
  color: #dddddd;
  border-color: #dddddd;
}
.landing-page .btn-outline-gray-300:hover {
  color: #111111;
  background-color: #dddddd;
  border-color: #dddddd;
}
.landing-page .btn-outline-gray-300:focus, .landing-page .btn-outline-gray-300.focus {
  box-shadow: 0 0 0 0.2rem rgba(221, 221, 221, 0.5);
}
.landing-page .btn-outline-gray-300.disabled, .landing-page .btn-outline-gray-300:disabled {
  color: #dddddd;
  background-color: transparent;
}
.landing-page .btn-outline-gray-300:not(:disabled):not(.disabled):active, .landing-page .btn-outline-gray-300:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-gray-300.dropdown-toggle {
  color: #111111;
  background-color: #dddddd;
  border-color: #dddddd;
}
.landing-page .btn-outline-gray-300:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-gray-300:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-gray-300.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221, 221, 221, 0.5);
}
.landing-page .btn-outline-gray-400 {
  color: #cccccc;
  border-color: #cccccc;
}
.landing-page .btn-outline-gray-400:hover {
  color: #111111;
  background-color: #cccccc;
  border-color: #cccccc;
}
.landing-page .btn-outline-gray-400:focus, .landing-page .btn-outline-gray-400.focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}
.landing-page .btn-outline-gray-400.disabled, .landing-page .btn-outline-gray-400:disabled {
  color: #cccccc;
  background-color: transparent;
}
.landing-page .btn-outline-gray-400:not(:disabled):not(.disabled):active, .landing-page .btn-outline-gray-400:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-gray-400.dropdown-toggle {
  color: #111111;
  background-color: #cccccc;
  border-color: #cccccc;
}
.landing-page .btn-outline-gray-400:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-gray-400:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-gray-400.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}
.landing-page .btn-outline-gray-500 {
  color: #999999;
  border-color: #999999;
}
.landing-page .btn-outline-gray-500:hover {
  color: #111111;
  background-color: #999999;
  border-color: #999999;
}
.landing-page .btn-outline-gray-500:focus, .landing-page .btn-outline-gray-500.focus {
  box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.5);
}
.landing-page .btn-outline-gray-500.disabled, .landing-page .btn-outline-gray-500:disabled {
  color: #999999;
  background-color: transparent;
}
.landing-page .btn-outline-gray-500:not(:disabled):not(.disabled):active, .landing-page .btn-outline-gray-500:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-gray-500.dropdown-toggle {
  color: #111111;
  background-color: #999999;
  border-color: #999999;
}
.landing-page .btn-outline-gray-500:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-gray-500:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-gray-500.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.5);
}
.landing-page .btn-outline-gray-600 {
  color: #666666;
  border-color: #666666;
}
.landing-page .btn-outline-gray-600:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.landing-page .btn-outline-gray-600:focus, .landing-page .btn-outline-gray-600.focus {
  box-shadow: 0 0 0 0.2rem rgba(102, 102, 102, 0.5);
}
.landing-page .btn-outline-gray-600.disabled, .landing-page .btn-outline-gray-600:disabled {
  color: #666666;
  background-color: transparent;
}
.landing-page .btn-outline-gray-600:not(:disabled):not(.disabled):active, .landing-page .btn-outline-gray-600:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-gray-600.dropdown-toggle {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.landing-page .btn-outline-gray-600:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-gray-600:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-gray-600.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(102, 102, 102, 0.5);
}
.landing-page .btn-outline-gray-700 {
  color: #444444;
  border-color: #444444;
}
.landing-page .btn-outline-gray-700:hover {
  color: #ffffff;
  background-color: #444444;
  border-color: #444444;
}
.landing-page .btn-outline-gray-700:focus, .landing-page .btn-outline-gray-700.focus {
  box-shadow: 0 0 0 0.2rem rgba(68, 68, 68, 0.5);
}
.landing-page .btn-outline-gray-700.disabled, .landing-page .btn-outline-gray-700:disabled {
  color: #444444;
  background-color: transparent;
}
.landing-page .btn-outline-gray-700:not(:disabled):not(.disabled):active, .landing-page .btn-outline-gray-700:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-gray-700.dropdown-toggle {
  color: #ffffff;
  background-color: #444444;
  border-color: #444444;
}
.landing-page .btn-outline-gray-700:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-gray-700:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-gray-700.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(68, 68, 68, 0.5);
}
.landing-page .btn-outline-gray-800 {
  color: #333333;
  border-color: #333333;
}
.landing-page .btn-outline-gray-800:hover {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.landing-page .btn-outline-gray-800:focus, .landing-page .btn-outline-gray-800.focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}
.landing-page .btn-outline-gray-800.disabled, .landing-page .btn-outline-gray-800:disabled {
  color: #333333;
  background-color: transparent;
}
.landing-page .btn-outline-gray-800:not(:disabled):not(.disabled):active, .landing-page .btn-outline-gray-800:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-gray-800.dropdown-toggle {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.landing-page .btn-outline-gray-800:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-gray-800:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-gray-800.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}
.landing-page .btn-outline-gray-900 {
  color: #111111;
  border-color: #111111;
}
.landing-page .btn-outline-gray-900:hover {
  color: #ffffff;
  background-color: #111111;
  border-color: #111111;
}
.landing-page .btn-outline-gray-900:focus, .landing-page .btn-outline-gray-900.focus {
  box-shadow: 0 0 0 0.2rem rgba(17, 17, 17, 0.5);
}
.landing-page .btn-outline-gray-900.disabled, .landing-page .btn-outline-gray-900:disabled {
  color: #111111;
  background-color: transparent;
}
.landing-page .btn-outline-gray-900:not(:disabled):not(.disabled):active, .landing-page .btn-outline-gray-900:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-gray-900.dropdown-toggle {
  color: #ffffff;
  background-color: #111111;
  border-color: #111111;
}
.landing-page .btn-outline-gray-900:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-gray-900:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-gray-900.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(17, 17, 17, 0.5);
}
.landing-page .btn-outline-white {
  color: #ffffff;
  border-color: #ffffff;
}
.landing-page .btn-outline-white:hover {
  color: #111111;
  background-color: #ffffff;
  border-color: #ffffff;
}
.landing-page .btn-outline-white:focus, .landing-page .btn-outline-white.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.landing-page .btn-outline-white.disabled, .landing-page .btn-outline-white:disabled {
  color: #ffffff;
  background-color: transparent;
}
.landing-page .btn-outline-white:not(:disabled):not(.disabled):active, .landing-page .btn-outline-white:not(:disabled):not(.disabled).active, .show > .landing-page .btn-outline-white.dropdown-toggle {
  color: #111111;
  background-color: #ffffff;
  border-color: #ffffff;
}
.landing-page .btn-outline-white:not(:disabled):not(.disabled):active:focus, .landing-page .btn-outline-white:not(:disabled):not(.disabled).active:focus, .show > .landing-page .btn-outline-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.landing-page .btn-link {
  font-weight: 400;
  color: #4C136D;
  text-decoration: none;
}
.landing-page .btn-link:hover {
  color: rgb(30.578125, 7.64453125, 43.85546875);
  text-decoration: underline;
}
.landing-page .btn-link:focus, .landing-page .btn-link.focus {
  text-decoration: underline;
}
.landing-page .btn-link:disabled, .landing-page .btn-link.disabled {
  color: #666666;
  pointer-events: none;
}
.landing-page .btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.landing-page .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.landing-page .btn-block {
  display: block;
  width: 100%;
}
.landing-page .btn-block + .btn-block {
  margin-top: 0.5rem;
}
.landing-page input[type=submit].btn-block,
.landing-page input[type=reset].btn-block,
.landing-page input[type=button].btn-block {
  width: 100%;
}
.landing-page .text-primary {
  color: #4C136D !important;
}
.landing-page .bg-primary {
  background-color: #4C136D !important;
}
.landing-page .border-primary {
  border-color: #4C136D !important;
}
.landing-page .text-secondary {
  color: #00B5EE !important;
}
.landing-page .bg-secondary {
  background-color: #00B5EE !important;
}
.landing-page .border-secondary {
  border-color: #00B5EE !important;
}
.landing-page .text-success {
  color: #28a745 !important;
}
.landing-page .bg-success {
  background-color: #28a745 !important;
}
.landing-page .border-success {
  border-color: #28a745 !important;
}
.landing-page .text-info {
  color: #17a2b8 !important;
}
.landing-page .bg-info {
  background-color: #17a2b8 !important;
}
.landing-page .border-info {
  border-color: #17a2b8 !important;
}
.landing-page .text-warning {
  color: #ffc107 !important;
}
.landing-page .bg-warning {
  background-color: #ffc107 !important;
}
.landing-page .border-warning {
  border-color: #ffc107 !important;
}
.landing-page .text-danger {
  color: #dc3545 !important;
}
.landing-page .bg-danger {
  background-color: #dc3545 !important;
}
.landing-page .border-danger {
  border-color: #dc3545 !important;
}
.landing-page .text-light {
  color: #f8f9fa !important;
}
.landing-page .bg-light {
  background-color: #f8f9fa !important;
}
.landing-page .border-light {
  border-color: #f8f9fa !important;
}
.landing-page .text-dark {
  color: #212529 !important;
}
.landing-page .bg-dark {
  background-color: #212529 !important;
}
.landing-page .border-dark {
  border-color: #212529 !important;
}
.landing-page .text-axiom-magenta {
  color: #ED008B !important;
}
.landing-page .bg-axiom-magenta {
  background-color: #ED008B !important;
}
.landing-page .border-axiom-magenta {
  border-color: #ED008B !important;
}
.landing-page .text-axiom-purple {
  color: #4C136D !important;
}
.landing-page .bg-axiom-purple {
  background-color: #4C136D !important;
}
.landing-page .border-axiom-purple {
  border-color: #4C136D !important;
}
.landing-page .text-axiom-cyan {
  color: #00B5EE !important;
}
.landing-page .bg-axiom-cyan {
  background-color: #00B5EE !important;
}
.landing-page .border-axiom-cyan {
  border-color: #00B5EE !important;
}
.landing-page .text-axiom-purple-dark {
  color: #300F45 !important;
}
.landing-page .bg-axiom-purple-dark {
  background-color: #300F45 !important;
}
.landing-page .border-axiom-purple-dark {
  border-color: #300F45 !important;
}
.landing-page .text-axiom-purple-light {
  color: #E4DFF9 !important;
}
.landing-page .bg-axiom-purple-light {
  background-color: #E4DFF9 !important;
}
.landing-page .border-axiom-purple-light {
  border-color: #E4DFF9 !important;
}
.landing-page .text-axiom-yellow {
  color: #FFC20E !important;
}
.landing-page .bg-axiom-yellow {
  background-color: #FFC20E !important;
}
.landing-page .border-axiom-yellow {
  border-color: #FFC20E !important;
}
.landing-page .text-gray-100 {
  color: #f8f9fa !important;
}
.landing-page .bg-gray-100 {
  background-color: #f8f9fa !important;
}
.landing-page .border-gray-100 {
  border-color: #f8f9fa !important;
}
.landing-page .text-gray-200 {
  color: #eeeeee !important;
}
.landing-page .bg-gray-200 {
  background-color: #eeeeee !important;
}
.landing-page .border-gray-200 {
  border-color: #eeeeee !important;
}
.landing-page .text-gray-300 {
  color: #dddddd !important;
}
.landing-page .bg-gray-300 {
  background-color: #dddddd !important;
}
.landing-page .border-gray-300 {
  border-color: #dddddd !important;
}
.landing-page .text-gray-400 {
  color: #cccccc !important;
}
.landing-page .bg-gray-400 {
  background-color: #cccccc !important;
}
.landing-page .border-gray-400 {
  border-color: #cccccc !important;
}
.landing-page .text-gray-500 {
  color: #999999 !important;
}
.landing-page .bg-gray-500 {
  background-color: #999999 !important;
}
.landing-page .border-gray-500 {
  border-color: #999999 !important;
}
.landing-page .text-gray-600 {
  color: #666666 !important;
}
.landing-page .bg-gray-600 {
  background-color: #666666 !important;
}
.landing-page .border-gray-600 {
  border-color: #666666 !important;
}
.landing-page .text-gray-700 {
  color: #444444 !important;
}
.landing-page .bg-gray-700 {
  background-color: #444444 !important;
}
.landing-page .border-gray-700 {
  border-color: #444444 !important;
}
.landing-page .text-gray-800 {
  color: #333333 !important;
}
.landing-page .bg-gray-800 {
  background-color: #333333 !important;
}
.landing-page .border-gray-800 {
  border-color: #333333 !important;
}
.landing-page .text-gray-900 {
  color: #111111 !important;
}
.landing-page .bg-gray-900 {
  background-color: #111111 !important;
}
.landing-page .border-gray-900 {
  border-color: #111111 !important;
}
.landing-page .text-white {
  color: #ffffff !important;
}
.landing-page .bg-white {
  background-color: #ffffff !important;
}
.landing-page .border-white {
  border-color: #ffffff !important;
}
.landing-page .link-primary {
  color: #4C136D;
  transition: color 0.3s ease;
}
.landing-page .link-primary:hover {
  color: rgb(45.71875, 11.4296875, 65.5703125);
}
.landing-page .link-secondary {
  color: #00B5EE;
  transition: color 0.3s ease;
}
.landing-page .link-secondary:hover {
  color: rgb(0, 142.2142857143, 187);
}
.landing-page .link-success {
  color: #28a745;
  transition: color 0.3s ease;
}
.landing-page .link-success:hover {
  color: rgb(30.1449275362, 125.8550724638, 52);
}
.landing-page .link-info {
  color: #17a2b8;
  transition: color 0.3s ease;
}
.landing-page .link-info:hover {
  color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.landing-page .link-warning {
  color: #ffc107;
  transition: color 0.3s ease;
}
.landing-page .link-warning:hover {
  color: rgb(211, 158.25, 0);
}
.landing-page .link-danger {
  color: #dc3545;
  transition: color 0.3s ease;
}
.landing-page .link-danger:hover {
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.landing-page .link-light {
  color: #f8f9fa;
  transition: color 0.3s ease;
}
.landing-page .link-light:hover {
  color: rgb(218.25, 223.5, 228.75);
}
.landing-page .link-dark {
  color: #212529;
  transition: color 0.3s ease;
}
.landing-page .link-dark:hover {
  color: rgb(10.2567567568, 11.5, 12.7432432432);
}
.landing-page .link-axiom-magenta {
  color: #ED008B;
  transition: color 0.3s ease;
}
.landing-page .link-axiom-magenta:hover {
  color: rgb(186, 0, 109.0886075949);
}
.landing-page .link-axiom-purple {
  color: #4C136D;
  transition: color 0.3s ease;
}
.landing-page .link-axiom-purple:hover {
  color: rgb(45.71875, 11.4296875, 65.5703125);
}
.landing-page .link-axiom-cyan {
  color: #00B5EE;
  transition: color 0.3s ease;
}
.landing-page .link-axiom-cyan:hover {
  color: rgb(0, 142.2142857143, 187);
}
.landing-page .link-axiom-purple-dark {
  color: #300F45;
  transition: color 0.3s ease;
}
.landing-page .link-axiom-purple-dark:hover {
  color: rgb(18.8571428571, 5.8928571429, 27.1071428571);
}
.landing-page .link-axiom-purple-light {
  color: #E4DFF9;
  transition: color 0.3s ease;
}
.landing-page .link-axiom-purple-light:hover {
  color: rgb(191.7631578947, 180.0526315789, 240.9473684211);
}
.landing-page .link-axiom-yellow {
  color: #FFC20E;
  transition: color 0.3s ease;
}
.landing-page .link-axiom-yellow:hover {
  color: rgb(218, 162.8215767635, 0);
}
.landing-page .link-gray-100 {
  color: #f8f9fa;
  transition: color 0.3s ease;
}
.landing-page .link-gray-100:hover {
  color: rgb(218.25, 223.5, 228.75);
}
.landing-page .link-gray-200 {
  color: #eeeeee;
  transition: color 0.3s ease;
}
.landing-page .link-gray-200:hover {
  color: rgb(212.5, 212.5, 212.5);
}
.landing-page .link-gray-300 {
  color: #dddddd;
  transition: color 0.3s ease;
}
.landing-page .link-gray-300:hover {
  color: rgb(195.5, 195.5, 195.5);
}
.landing-page .link-gray-400 {
  color: #cccccc;
  transition: color 0.3s ease;
}
.landing-page .link-gray-400:hover {
  color: rgb(178.5, 178.5, 178.5);
}
.landing-page .link-gray-500 {
  color: #999999;
  transition: color 0.3s ease;
}
.landing-page .link-gray-500:hover {
  color: rgb(127.5, 127.5, 127.5);
}
.landing-page .link-gray-600 {
  color: #666666;
  transition: color 0.3s ease;
}
.landing-page .link-gray-600:hover {
  color: rgb(76.5, 76.5, 76.5);
}
.landing-page .link-gray-700 {
  color: #444444;
  transition: color 0.3s ease;
}
.landing-page .link-gray-700:hover {
  color: rgb(42.5, 42.5, 42.5);
}
.landing-page .link-gray-800 {
  color: #333333;
  transition: color 0.3s ease;
}
.landing-page .link-gray-800:hover {
  color: rgb(25.5, 25.5, 25.5);
}
.landing-page .link-gray-900 {
  color: #111111;
  transition: color 0.3s ease;
}
.landing-page .link-gray-900:hover {
  color: black;
}
.landing-page .link-white {
  color: #ffffff;
  transition: color 0.3s ease;
}
.landing-page .link-white:hover {
  color: rgb(229.5, 229.5, 229.5);
}
.landing-page body, .landing-page p, .landing-page ul li {
  font-family: "Outfit", sans-serif !important;
}
.landing-page p {
  margin-bottom: 1rem !important;
}
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5,
.landing-page h6 {
  font-family: "Outfit", sans-serif !important;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
  margin: 0 0 5px 0;
  padding: 0;
  line-height: normal;
}
.landing-page h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 56px;
}
@media (max-width: 991px) {
  .landing-page h1 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .landing-page h1 {
    font-size: 32px;
  }
}
.landing-page h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 40px;
}
@media (max-width: 991px) {
  .landing-page h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .landing-page h2 {
    font-size: 26px;
  }
}
.landing-page h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 28px;
}
@media (max-width: 991px) {
  .landing-page h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .landing-page h3 {
    font-size: 20px;
  }
}
.landing-page h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 20px;
}
@media (max-width: 991px) {
  .landing-page h4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .landing-page h4 {
    font-size: 16px;
  }
}
.landing-page h5 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 18px;
}
@media (max-width: 991px) {
  .landing-page h5 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .landing-page h5 {
    font-size: 14px;
  }
}
.landing-page h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 14px;
}
@media (max-width: 991px) {
  .landing-page h6 {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .landing-page h6 {
    font-size: 12px;
  }
}
.landing-page .fs-xs {
  font-size: 0.75rem;
}
.landing-page .fs-sm {
  font-size: 0.875rem;
}
.landing-page .fs-md {
  font-size: 1rem;
}
.landing-page .fs-lg {
  font-size: 1.125rem;
}
.landing-page .fs-xl {
  font-size: 1.25rem;
}
.landing-page .fs-2xl {
  font-size: 1.5rem;
}
.landing-page .fs-3xl {
  font-size: 2rem;
}
.landing-page .fw-light {
  font-weight: 300;
}
.landing-page .fw-normal {
  font-weight: 400;
}
.landing-page .fw-medium {
  font-weight: 500;
}
.landing-page .fw-semibold {
  font-weight: 600;
}
.landing-page .fw-bold {
  font-weight: 700;
}
.landing-page .border {
  border: 1px solid #dee2e6;
}
.landing-page .border-0 {
  border: 0 !important;
}
.landing-page .border-1 {
  border-width: 1px !important;
}
.landing-page .border-2 {
  border-width: 2px !important;
}
.landing-page .border-3 {
  border-width: 3px !important;
}
.landing-page .border-4 {
  border-width: 4px !important;
}
.landing-page .border-5 {
  border-width: 5px !important;
}
.landing-page .rounded-sm {
  border-radius: 4px;
}
.landing-page .rounded-md {
  border-radius: 8px;
}
.landing-page .rounded-lg {
  border-radius: 12px;
}
.landing-page .rounded-xl {
  border-radius: 16px;
}
.landing-page .rounded-2xl {
  border-radius: 20px;
}
.landing-page .rounded-3xl {
  border-radius: 24px;
}
.landing-page .rounded-round {
  border-radius: 50px;
}
.landing-page .rounded-pill {
  border-radius: 999px;
}
.landing-page .rounded-circle {
  border-radius: 50%;
}
.landing-page .rounded-0 {
  border-radius: 0;
}
.landing-page .shadow-none {
  box-shadow: none;
}
.landing-page .shadow-xs {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.landing-page .shadow-sm {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.landing-page .shadow-md {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.landing-page .shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.landing-page .shadow-xl {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}
.landing-page a:hover, .landing-page a:focus {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}
.landing-page .bg-dark {
  background: radial-gradient(circle at center, rgba(118, 43, 180, 0.25) 0%, rgba(118, 43, 180, 0.12) 25%, rgba(118, 43, 180, 0) 55%), linear-gradient(180deg, #2b0645 0%, #220336 55%, #1a022a 100%) !important;
}
.landing-page section {
  width: 100% !important;
  margin: 0;
  padding: 3rem 0;
  background: linear-gradient(to bottom, #F8F8F9, #ffffff) !important;
  /*
  background: linear-gradient(to bottom, #F8F8F9, #ffffff);
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;      
  */
}
.landing-page .container-fluid {
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}
.landing-page .container {
  width: 100% !important;
  max-width: 1200px !important;
  background: none !important;
  display: flex;
  flex-direction: column;
  margin: 0 auto !important;
  padding: 1rem !important;
}
@media (max-width: 991px) {
  .landing-page .container {
    /*
    padding-right: 20px !important;
    padding-left: 20px !important;
    */
    padding: 0 !important;
    margin: 0 !important;
  }
}
@media (max-width: 767px) {
  .landing-page .container {
    /*
    padding-right: 16px !important;
    padding-left: 16px !important;
    */
    padding: 0 !important;
    margin: 0 !important;
  }
}
.landing-page .btn {
  border-radius: 0px;
  padding: 0.675rem 1.5rem;
  width: -moz-available;
  width: stretch;
}
.landing-page .btn:hover {
  text-decoration: none !important;
}
.landing-page .btn.btn-axiom-magenta:hover {
  color: white !important;
}
.landing-page .btn.btn-outline-axiom-purple:hover,
.landing-page .btn.btn-outline-primary:hover {
  color: white !important;
}
.landing-page ul {
  margin: 0;
  padding: 0;
}
.landing-page ul li {
  margin: 0;
  padding: 0;
  list-style: inside;
}
@media (max-width: 767px) {
  .landing-page ul li {
    width: max-content;
    margin: auto;
  }
}
.landing-page ul.check-list {
  margin: 0;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.landing-page ul.check-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.landing-page ul.check-list li::before {
  content: "\f633"; /* bi-check */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}
.landing-page ul.check-list.custom-icon li {
  text-align: left;
}
@media (max-width: 767px) {
  .landing-page ul.check-list.custom-icon li {
    text-align: center !important;
  }
}
.landing-page ul.check-list.custom-icon li::before {
  content: url("https://website.workroomapp.com/api/v1/uploads/gallery/2026-02-13t01-38-30-041z-icon-check-magenta.png") !important;
  transform: scale(0.2);
  font-family: "bootstrap-icons";
  left: -40px !important;
  top: -40px !important;
}
@media (max-width: 767px) {
  .landing-page .icon-box {
    text-align: center;
  }
}
.landing-page .icon-box .icon {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
}
@media (max-width: 767px) {
  .landing-page .icon-box .icon {
    margin: auto;
  }
}
.landing-page .icon-box .icon--sm {
  font-size: 20px;
  width: 32px;
  height: 32px;
}
.landing-page .icon-box .icon--md {
  font-size: 28px;
  width: 48px;
  height: 48px;
}
.landing-page .icon-box .icon--lg {
  font-size: 36px;
  width: 64px;
  height: 64px;
  padding: 0.5rem;
}
.landing-page .icon-box .icon--xl {
  font-size: 48px;
  width: 80px;
  height: 80px;
  padding: 0.5rem;
}
.landing-page .icon-box .icon--2xl {
  font-size: 64px;
  width: 120px;
  height: 120px;
  padding: 0.5rem;
}
.landing-page .icon-box .icon--primary {
  background: #4C136D;
}
.landing-page .icon-box .icon--light {
  background: #f8f9fa;
}
.landing-page .icon-box .icon--dark {
  background: #212529;
}
.landing-page .icon-box .icon--transparent {
  background: rgba(255, 255, 255, 0.07);
}
.landing-page .icon-box .icon--axiom-magenta {
  background: #ED008B !important;
}
.landing-page .features {
  color: #ffffff;
}
.landing-page .feature-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0rem 1rem;
  height: 100%;
}
.landing-page .feature-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.landing-page .row > div:last-child .feature-item::after {
  display: none;
}
.landing-page .feature-item {
  /*
  &:hover {

      transform: translateY(-6px);

      .feature-item__icon {

          background: rgba($primary,.20);

          color: $warning;

      }

  } 
  */
}
.landing-page .feature-item__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 42px;
  color: #4C136D;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}
.landing-page .feature-item__title {
  margin: 0;
  font-size: small;
  font-weight: 500;
  line-height: normal;
  color: #ffffff;
}
@media (max-width: 767px) {
  .landing-page .feature-item .feature-item {
    padding: 1.5rem 0.5rem;
  }
  .landing-page .feature-item .feature-item::after {
    display: none;
  }
  .landing-page .feature-item .feature-item__icon {
    width: 56px;
    height: 56px;
    font-size: 32px;
    margin-bottom: 1rem;
  }
  .landing-page .feature-item .feature-item__title {
    font-size: 0.95rem;
  }
}
.landing-page .features.axiom-print-benefits .feature-item .icon-box img {
  height: 45px;
  width: auto;
}
.landing-page .features.axiom-print-benefits .feature-item .feature-item__title {
  color: #000;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .landing-page .features.axiom-print-benefits .feature-item {
    margin-bottom: 1rem;
  }
}
.landing-page .hero {
  padding: 100px 0;
  background: radial-gradient(circle at center, rgba(118, 43, 180, 0.25) 0%, rgba(118, 43, 180, 0.12) 25%, rgba(118, 43, 180, 0) 55%), linear-gradient(180deg, #2b0645 0%, #220336 55%, #1a022a 100%) !important;
  color: #ffffff;
}
.landing-page .hero__content {
  max-width: 520px;
}
.landing-page .hero__eyebrow {
  color: #ffc107;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem !important;
}
.landing-page .hero__title {
  margin-bottom: 0;
  line-height: normal;
  color: #ffffff;
}
.landing-page .hero__description {
  margin-bottom: 1rem !important;
}
.landing-page .hero__notice {
  background: rgba(237, 0, 139, 0.1);
  padding: 0.8rem 0.8rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.landing-page .hero__notice .bi {
  color: #ED008B;
  font-size: 2rem;
  border-radius: 16px;
  background: #ffffff;
  padding: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-page .hero__notice .title {
  margin: 0;
  padding: 0;
}
.landing-page .hero__notice p {
  font-size: small;
  margin: 0 !important;
  padding: 0 !important;
}
.landing-page .hero__actions {
  display: flex;
  gap: 1rem !important;
}
.landing-page .hero__checklist {
  display: flex;
  gap: 1rem;
}
.landing-page .hero__checklist li {
  color: #444444;
}
.landing-page .hero__checklist li::marker {
  color: #ED008B;
}
.landing-page .hero__image {
  text-align: center;
}
.landing-page .hero__image img {
  width: 100%;
}
@media (max-width: 767px) {
  .landing-page .hero {
    text-align: center;
  }
  .landing-page .hero .row {
    display: flex;
    flex-direction: column-reverse;
  }
  .landing-page .hero__content {
    padding: 1rem;
    width: 90%;
  }
  .landing-page .hero__actions {
    justify-content: center;
  }
}
.landing-page .hero--home {
  background: url("https://axiomprint.s3.us-west-1.amazonaws.com/AxiomAssets/landing-pages/2026/labels-stickers/2026-07-23T19-51-14-482Z-banner-bg.png") !important;
  background-size: cover !important;
}
.landing-page .hero--reseller-program {
  background: white !important;
  padding: 3rem 0 !important;
}
@media (max-width: 767px) {
  .landing-page .hero--reseller-program {
    padding: 0 0 3rem 0 !important;
  }
}
.landing-page .hero--reseller-program .hero__eyebrow {
  background: rgba(237, 0, 139, 0.1);
  padding: 7px 1rem;
  border-radius: 50px;
  color: #ED008B;
}
.landing-page .hero--reseller-program .hero__title {
  color: #4C136D;
  font-size: 40px;
}
.landing-page .hero--reseller-program .hero__description {
  color: #666666;
  border-radius: 4px;
  font-weight: 500;
  line-height: 1.5rem;
}
.landing-page .hero--reseller-program .hero__notice {
  background: rgba(237, 0, 139, 0.1);
}
.landing-page .hero--back-to-school {
  background-image: url("https://axiomprint.s3.us-west-1.amazonaws.com/AxiomAssets/landing-pages/2026/back-to-school/banner/2026-08-05T22-48-15-938Z-banner-bg-back-to-school.png") !important;
  background-size: cover !important;
  padding: 0rem 0 !important;
}
.landing-page .hero--back-to-school .container {
  background-image: url("https://axiomprint.s3.us-west-1.amazonaws.com/AxiomAssets/landing-pages/2026/back-to-school/banner/2026-08-05T22-48-15-415Z-banner-back-to-school-product.png") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position-y: center;
  background-position-x: calc(100% + 100px) !important;
}
@media (max-width: 767px) {
  .landing-page .hero--back-to-school .container {
    background-image: none !important;
  }
}
@media (max-width: 767px) {
  .landing-page .hero--back-to-school {
    padding: 0 0 3rem 0 !important;
  }
}
.landing-page .hero--back-to-school .hero__eyebrow {
  background: rgba(237, 0, 139, 0.1);
  padding: 7px 1rem;
  border-radius: 50px;
  color: #ED008B;
}
.landing-page .hero--back-to-school .hero__title {
  color: #ffffff;
  font-size: 40px;
}
.landing-page .hero--back-to-school .hero__description {
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  font-size: medium;
  line-height: normal !important;
}
.landing-page .hero--back-to-school .hero__notice {
  background: rgba(255, 255, 255, 0.95);
}
.landing-page .hero--back-to-school .hero__image {
  display: none;
}
@media (max-width: 991px) {
  .landing-page .hero--back-to-school .hero__image {
    display: block;
  }
}
@media (max-width: 767px) {
  .landing-page .hero--back-to-school .hero__image {
    display: block;
  }
}
.landing-page .section-heading {
  margin-bottom: 0rem;
}
.landing-page .section-heading__eyebrow {
  color: #ED008B;
  text-transform: uppercase;
  font-weight: 700;
}
.landing-page .section-heading__title {
  margin: 10px 0;
}
@media (max-width: 991px) {
  .landing-page .section-heading {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .landing-page .section-heading {
    padding: 1rem;
    text-align: center;
  }
}
.landing-page .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /*
  &__image {

      display: block;

      overflow: hidden;

      img {

          width: 100%;

          transition: .3s;

      }

      &:hover img {

          transform: scale(1.05);

      }

  }
  */
}
.landing-page .product-card a .img-wrapper {
  position: relative;
  overflow: hidden;
}
.landing-page .product-card a .img-wrapper img {
  display: block;
  width: 100%;
  aspect-ratio: 0/1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s ease;
}
.landing-page .product-card a .img-wrapper img.height-400 {
  height: 400px !important;
}
.landing-page .product-card a .img-wrapper:hover img {
  transform: scale(1.13);
}
.landing-page .product-card a .img-wrapper .zoom {
  opacity: 0;
  position: absolute;
  inset: 0;
  font-size: 2rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
  align-items: end;
}
.landing-page .product-card a .img-wrapper .zoom button {
  background: #300B45;
  border: none;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 1rem;
}
.landing-page .product-card a .img-wrapper:hover > .zoom {
  opacity: 1;
  transition: 200ms ease-in-out;
}
.landing-page .product-card__body {
  padding: 0;
  margin: 0;
}
.landing-page .product-card__title {
  font-weight: 600;
  margin-bottom: 5px;
}
.landing-page .product-card__description {
  margin: 0 !important;
  margin-bottom: 5px !important;
}
.landing-page .product-card__link {
  font-size: 14px;
}
.landing-page .product-card__pricing {
  font-family: "Outfit", sans-serif !important;
  margin-top: 10px;
  border: solid 1px #dddddd !important;
  text-align: center;
  padding: 10px 1rem;
}
.landing-page .product-card__pricing .price-original .price {
  font-size: 18px;
  color: #666666;
  font-weight: 500;
  text-decoration: line-through !important;
  margin-right: 5px;
}
.landing-page .product-card__pricing .price-original span.discount {
  font-size: 14px !important;
  font-weight: 600 !important;
  border: solid 1px #4C136D !important;
  padding: 3px 8px;
  border: solid 1px #ED008B !important;
  border-radius: 50px;
  color: #ED008B;
  background-color: rgba(237, 0, 139, 0.15);
  text-transform: uppercase;
}
.landing-page .product-card__pricing .price-discounted {
  color: #666666;
}
.landing-page .product-card__pricing .price-discounted .price {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: black;
}
.landing-page .product-list {
  margin-top: 0rem;
}
.landing-page .product-list__header {
  margin-bottom: 0rem;
}
.landing-page .product-list__title {
  line-height: normal;
  font-weight: 600;
}
.landing-page .product-list__title span {
  color: #999999;
}
@media (max-width: 767px) {
  .landing-page .product-list {
    padding: 1rem;
  }
}
.landing-page .pricing {
  font-family: "Outfit", sans-serif !important;
}
@media (max-width: 767px) {
  .landing-page .pricing {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .landing-page .pricing .container .row .col-lg-4 {
    padding: 2rem !important;
    margin-bottom: 0rem;
  }
}
.landing-page .pricing .pricing-card {
  border: solid 1px #dddddd;
  border-radius: 16px;
  padding: 2rem;
  padding-top: 3rem;
  transition: 0.3s;
}
.landing-page .pricing .pricing-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}
.landing-page .pricing .pricing-card__badge {
  background-color: #ED008B;
  color: white;
  border-radius: 50px;
  width: fit-content;
  padding: 5px 1rem;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .landing-page .pricing .pricing-card__badge {
    top: 15px;
  }
}
.landing-page .pricing .pricing-card__title {
  font-size: 25px;
}
.landing-page .pricing .pricing-card__subtitle {
  color: #999999;
}
.landing-page .pricing .pricing-card__percent {
  font-family: "Outfit", sans-serif;
  font-size: xx-large;
  font-weight: bold !important;
  color: #ED008B;
}
.landing-page .pricing .pricing-card__text {
  font-size: medium;
}
.landing-page .pricing .pricing-card__volume {
  padding: 10px 1rem;
  background-color: #eeeeee;
  border-radius: 50px;
  font-size: small;
  width: fit-content;
}
@media (max-width: 767px) {
  .landing-page .pricing .pricing-card__volume {
    margin: auto;
  }
}
.landing-page .pricing .pricing-card__divider {
  margin: 1.5rem 0 2rem 0;
  height: 1px;
  background-color: #eeeeee;
}
.landing-page .pricing .pricing-card__footer {
  margin-top: 2rem;
}
.landing-page .pricing .pricing-card.pricing-card--featured {
  border: solid 2px #ED008B !important;
}
.landing-page .pricing .pricing-card.pricing-card--featured .pricing-card__volume {
  background: rgba(237, 0, 139, 0.08);
  color: #ED008B;
  font-weight: 600;
}
@media (max-width: 767px) {
  .landing-page .feature-grid {
    padding: 1rem;
  }
}
.landing-page .feature-grid .row .col-lg-4 {
  padding: 0;
}
.landing-page .feature-grid__wrapper {
  border: 1px solid #dddddd;
  overflow: hidden;
}
.landing-page .feature-grid__item {
  padding: 50px 36px;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.landing-page .feature-grid__number {
  display: block;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: rgba(237, 0, 139, 0.25);
}
.landing-page .feature-grid__title {
  margin-bottom: 12px;
  color: #ED008B;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

/*# sourceMappingURL=landing-page-uiux-kits.css.map */
