/*
 * Stylesheet : Archangel - Great Southern Publishers, Inc.
 * Created    : Feb 2025
 * -----------------------------------------------------------------------------------
 */
@import url('https://use.typekit.net/wdj5tjo.css');
@import url('../fonts/BankGothicBT.css');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
:root {
  --archangel-black: #000;
  --archangel-white: #fff;
  --archangel-white-rgb: 255, 255, 255;
  --archangel-black-rgb: 0, 0, 0;
  --archangel-body-color-rgb: 255, 255, 255;
  --archangel-body-bg-rgb: 0, 0, 0;
  --archangel-font-sans-serif: 'aktiv-grotesk', sans-serif;
  --archangel-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  --archangel-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --archangel-body-font-family: aktiv-grotesk, sans-serif;
  --archangel-body-font-size: 1rem;
  --archangel-body-font-weight: 400;
  --archangel-body-line-height: 1.42;
  --archangel-body-color: #fff;
  --archangel-body-bg: #000;
  --archangel-border-width: 1px;
  --archangel-border-style: solid;
  --archangel-border-color: #dee2e6;
  --archangel-border-color-translucent: rgba(0, 0, 0, 0.175);
  --archangel-border-radius: 0.375rem;
  --archangel-border-radius-sm: 0.25rem;
  --archangel-border-radius-lg: 0.5rem;
  --archangel-border-radius-xl: 1rem;
  --archangel-border-radius-2xl: 2rem;
  --archangel-border-radius-pill: 50rem;
  --archangel-link-color: #fff;
  --archangel-link-hover-color: #cccccc;
  --archangel-code-color: #d63384;
  --archangel-highlight-bg: #fff3cd;
}

:root {
  --archangel-root-font-size: 16px;
  --archangel-page-max-width: 100%;
  --archangel-container-gutter-x: 44px;
  --archangel-container-offset-x: var(--archangel-container-gutter-x);
  --archangel-container-max-width: calc(
    var(--archangel-page-max-width) - var(--archangel-container-gutter-x)
  );
  --archangel-container-max-width: 64.58rem;
}
@media (min-width: 1280px) {
  :root {
    --archangel-container-max-width: 1240px;
    --archangel-container-offset-x: calc(
      var(--archangel-page-max-width) - var(--archangel-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  :root {
    --archangel-container-max-width: 1550px;
  }
}
@media (min-width: 1280px) {
  :root {
    --archangel-root-font-size: 19.2px;
    --archangel-container-gutter-x: 3.33rem;
    --archangel-page-max-width: 1600px;
  }
}
@media (min-width: 1600px) {
  :root {
    --archangel-root-font-size: 24px;
    --archangel-page-max-width: 1920px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--archangel-body-font-family);
  font-size: var(--archangel-body-font-size);
  font-weight: var(--archangel-body-font-weight);
  line-height: var(--archangel-body-line-height);
  color: var(--archangel-body-color);
  text-align: var(--archangel-body-text-align);
  background-color: var(--archangel-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

h6,
h5,
h4,
h3,
h2,
h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: 'Bank Gothic', serif;
  font-weight: 300;
  line-height: 0.72;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.42rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1.42rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1.42rem;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: var(--archangel-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--archangel-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--archangel-link-hover-color);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--archangel-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--archangel-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--archangel-body-bg);
  background-color: var(--archangel-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role='button'] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type='date']):not([type='datetime-local']):not([type='month']):not(
    [type='week']
  ):not([type='time'])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inherit {
  display: inherit !important;
}

.d-reset {
  display: initial !important;
}

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

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

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

.text-justify {
  text-align: justify !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.normal-case {
  text-transform: none !important;
}

.italic {
  font-style: italic !important;
}

.not-italic {
  font-style: normal !important;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-extrabold {
  font-weight: 800 !important;
}

.font-base {
  font-family: 'aktiv-grotesk', sans-serif !important;
}

.font-thin {
  font-family: 'aktiv-grotesk-thin', sans-serif !important;
}

.font-head {
  font-family: 'Bank Gothic', serif !important;
}

.font-extended {
  font-family: 'aktiv-grotesk-extended', sans-serif !important;
}

.font-condensed {
  font-family: 'aktiv-grotesk-condensed', sans-serif !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

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

.mt-auto {
  margin-top: auto !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

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

.mb-auto {
  margin-bottom: auto !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

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

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

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

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

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

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

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

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

.pt-0 {
  padding-top: 0 !important;
}

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

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

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

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

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

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

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

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

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

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-inherit {
    display: inherit !important;
  }
  .d-sm-reset {
    display: initial !important;
  }
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-justify {
    text-align: justify !important;
  }
  .font-sm-base {
    font-family: 'aktiv-grotesk', sans-serif !important;
  }
  .font-sm-thin {
    font-family: 'aktiv-grotesk-thin', sans-serif !important;
  }
  .font-sm-head {
    font-family: 'Bank Gothic', serif !important;
  }
  .font-sm-extended {
    font-family: 'aktiv-grotesk-extended', sans-serif !important;
  }
  .font-sm-condensed {
    font-family: 'aktiv-grotesk-condensed', sans-serif !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mr-sm-3 {
    margin-right: 1rem !important;
  }
  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mr-sm-5 {
    margin-right: 3rem !important;
  }
  .mr-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ml-sm-3 {
    margin-left: 1rem !important;
  }
  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ml-sm-5 {
    margin-left: 3rem !important;
  }
  .ml-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pr-sm-3 {
    padding-right: 1rem !important;
  }
  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pr-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }
  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }
  .pl-sm-3 {
    padding-left: 1rem !important;
  }
  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }
  .pl-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-inherit {
    display: inherit !important;
  }
  .d-md-reset {
    display: initial !important;
  }
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-justify {
    text-align: justify !important;
  }
  .font-md-base {
    font-family: 'aktiv-grotesk', sans-serif !important;
  }
  .font-md-thin {
    font-family: 'aktiv-grotesk-thin', sans-serif !important;
  }
  .font-md-head {
    font-family: 'Bank Gothic', serif !important;
  }
  .font-md-extended {
    font-family: 'aktiv-grotesk-extended', sans-serif !important;
  }
  .font-md-condensed {
    font-family: 'aktiv-grotesk-condensed', sans-serif !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .mr-md-1 {
    margin-right: 0.25rem !important;
  }
  .mr-md-2 {
    margin-right: 0.5rem !important;
  }
  .mr-md-3 {
    margin-right: 1rem !important;
  }
  .mr-md-4 {
    margin-right: 1.5rem !important;
  }
  .mr-md-5 {
    margin-right: 3rem !important;
  }
  .mr-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .ml-md-1 {
    margin-left: 0.25rem !important;
  }
  .ml-md-2 {
    margin-left: 0.5rem !important;
  }
  .ml-md-3 {
    margin-left: 1rem !important;
  }
  .ml-md-4 {
    margin-left: 1.5rem !important;
  }
  .ml-md-5 {
    margin-left: 3rem !important;
  }
  .ml-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .pr-md-1 {
    padding-right: 0.25rem !important;
  }
  .pr-md-2 {
    padding-right: 0.5rem !important;
  }
  .pr-md-3 {
    padding-right: 1rem !important;
  }
  .pr-md-4 {
    padding-right: 1.5rem !important;
  }
  .pr-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .pl-md-1 {
    padding-left: 0.25rem !important;
  }
  .pl-md-2 {
    padding-left: 0.5rem !important;
  }
  .pl-md-3 {
    padding-left: 1rem !important;
  }
  .pl-md-4 {
    padding-left: 1.5rem !important;
  }
  .pl-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-inherit {
    display: inherit !important;
  }
  .d-lg-reset {
    display: initial !important;
  }
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-justify {
    text-align: justify !important;
  }
  .font-lg-base {
    font-family: 'aktiv-grotesk', sans-serif !important;
  }
  .font-lg-thin {
    font-family: 'aktiv-grotesk-thin', sans-serif !important;
  }
  .font-lg-head {
    font-family: 'Bank Gothic', serif !important;
  }
  .font-lg-extended {
    font-family: 'aktiv-grotesk-extended', sans-serif !important;
  }
  .font-lg-condensed {
    font-family: 'aktiv-grotesk-condensed', sans-serif !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mr-lg-3 {
    margin-right: 1rem !important;
  }
  .mr-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mr-lg-5 {
    margin-right: 3rem !important;
  }
  .mr-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ml-lg-3 {
    margin-left: 1rem !important;
  }
  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ml-lg-5 {
    margin-left: 3rem !important;
  }
  .ml-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pr-lg-3 {
    padding-right: 1rem !important;
  }
  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pr-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }
  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }
  .pl-lg-3 {
    padding-left: 1rem !important;
  }
  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }
  .pl-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1280px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-inherit {
    display: inherit !important;
  }
  .d-xl-reset {
    display: initial !important;
  }
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .text-xl-justify {
    text-align: justify !important;
  }
  .font-xl-base {
    font-family: 'aktiv-grotesk', sans-serif !important;
  }
  .font-xl-thin {
    font-family: 'aktiv-grotesk-thin', sans-serif !important;
  }
  .font-xl-head {
    font-family: 'Bank Gothic', serif !important;
  }
  .font-xl-extended {
    font-family: 'aktiv-grotesk-extended', sans-serif !important;
  }
  .font-xl-condensed {
    font-family: 'aktiv-grotesk-condensed', sans-serif !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  .mr-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xl-3 {
    margin-right: 1rem !important;
  }
  .mr-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mr-xl-5 {
    margin-right: 3rem !important;
  }
  .mr-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  .ml-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xl-3 {
    margin-left: 1rem !important;
  }
  .ml-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ml-xl-5 {
    margin-left: 3rem !important;
  }
  .ml-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  .pr-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xl-3 {
    padding-right: 1rem !important;
  }
  .pr-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pr-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  .pl-xl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xl-3 {
    padding-left: 1rem !important;
  }
  .pl-xl-4 {
    padding-left: 1.5rem !important;
  }
  .pl-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1600px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-inherit {
    display: inherit !important;
  }
  .d-xxl-reset {
    display: initial !important;
  }
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
  .text-xxl-justify {
    text-align: justify !important;
  }
  .font-xxl-base {
    font-family: 'aktiv-grotesk', sans-serif !important;
  }
  .font-xxl-thin {
    font-family: 'aktiv-grotesk-thin', sans-serif !important;
  }
  .font-xxl-head {
    font-family: 'Bank Gothic', serif !important;
  }
  .font-xxl-extended {
    font-family: 'aktiv-grotesk-extended', sans-serif !important;
  }
  .font-xxl-condensed {
    font-family: 'aktiv-grotesk-condensed', sans-serif !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-0 {
    margin-right: 0 !important;
  }
  .mr-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xxl-3 {
    margin-right: 1rem !important;
  }
  .mr-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mr-xxl-5 {
    margin-right: 3rem !important;
  }
  .mr-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-0 {
    margin-left: 0 !important;
  }
  .ml-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1rem !important;
  }
  .ml-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ml-xxl-5 {
    margin-left: 3rem !important;
  }
  .ml-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-0 {
    padding-right: 0 !important;
  }
  .pr-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xxl-3 {
    padding-right: 1rem !important;
  }
  .pr-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pr-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-0 {
    padding-left: 0 !important;
  }
  .pl-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xxl-3 {
    padding-left: 1rem !important;
  }
  .pl-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .pl-xxl-5 {
    padding-left: 3rem !important;
  }
}
html {
  font-size: var(--archangel-root-font-size);
}

.site {
  overflow: clip;
  position: relative;
}

.clearfix::before,
.clearfix::after {
  content: '';
  display: table;
}
.clearfix::after {
  clear: both;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container,
.container-fluid {
  --archangel-gutter-x: var(--archangel-container-gutter-x);
  --archangel-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--archangel-gutter-x) * 0.5);
  padding-left: calc(var(--archangel-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.container {
  max-width: calc(
    var(--archangel-container-max-width) + var(--archangel-container-gutter-x)
  );
}

.submenu,
.menu {
  padding-left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu {
  display: flex;
}
.menu a {
  display: block;
  text-decoration: none;
  color: inherit;
}

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

@media (min-width: 1280px) {
  .site-header {
    height: 4.08rem;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .site-header .inner {
    display: flex;
    height: 100%;
  }
  .site-header .site-logo {
    flex-shrink: 0;
    width: 15.3645833333%;
    min-width: 10.42rem;
    padding-right: 0.42rem;
  }
  .site-header .site-menu {
    flex-grow: 1;
  }
}

@media (max-width: 1279.98px) {
  .site-logo {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding-bottom: 30px;
    position: relative;
  }
  .site-logo::before {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    padding-top: 5%;
  }
  .site-logo::after {
    content: '';
    display: block;
    width: 83.25%;
    aspect-ratio: 33/11;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, 0);
    filter: blur(25px);
    position: absolute;
    left: 50%;
    top: 33px;
  }
  .site-logo a {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    aspect-ratio: 800/278;
    position: relative;
    z-index: 1;
  }
  .site-logo a::before {
    content: '';
    flex-shrink: 0;
    width: 107.5%;
    aspect-ratio: 430/131;
    background: url('../images/logo-mobile.png') center/contain no-repeat;
  }
}
@media only screen and (max-width: 1279.98px) and (-webkit-min-device-pixel-ratio: 2),
  only screen and (max-width: 1279.98px) and (min-resolution: 192dpi),
  only screen and (max-width: 1279.98px) and (min-resolution: 2dppx) {
  .site-logo a::before {
    background-image: url('../images/logo-mobile@2x.png');
  }
}
@media (max-width: 1279.98px) {
  .site-logo a::after {
    content: '';
    flex-shrink: 0;
    width: 93.75%;
    aspect-ratio: 375/79;
    background: url('../images/logo-author-mobile.png') center/contain no-repeat;
    transform: translate(-50%, 35%);
    position: absolute;
    left: 50%;
    bottom: 0;
  }
}
@media only screen and (max-width: 1279.98px) and (-webkit-min-device-pixel-ratio: 2),
  only screen and (max-width: 1279.98px) and (min-resolution: 192dpi),
  only screen and (max-width: 1279.98px) and (min-resolution: 2dppx) {
  .site-logo a::after {
    background-image: url('../images/logo-author-mobile@2x.png');
  }
}
@media (min-width: 1280px) {
  .site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: transparent;
  }
  .site-logo a {
    width: 8.33rem;
    padding-top: 2.92rem;
    background-color: red;
    background: url('../images/logo-sm.png') center/cover no-repeat;
  }
}
@media only screen and (min-width: 1280px) and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-width: 1280px) and (min-resolution: 192dpi),
  only screen and (min-width: 1280px) and (min-resolution: 2dppx) {
  .site-logo a {
    background-image: url('../images/logo-sm@2x.png');
  }
}
.site-logo span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-menu {
  padding-bottom: 20px;
  font-size: 26px;
  letter-spacing: -0.02em;
  text-align: center;
  display: flex;
  flex-direction: column;
  background-color: #000;
}
@media (max-width: 1279.98px) {
  .site-menu {
    position: relative;
  }
  .site-menu::before {
    content: '';
    height: 62px;
    background: linear-gradient(to bottom, rgba(2, 0, 0, 0), #020000);
    position: absolute;
    inset: auto 0 100%;
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .site-menu {
    padding-bottom: 10px;
  }
}
@media (min-width: 1280px) {
  .site-menu {
    padding-bottom: 0;
    background-color: transparent;
  }
}
.site-menu .menu {
  display: contents;
}
.site-menu .menu > li > a {
  padding: 15px 8.75%;
}
.site-menu .menu > li + li {
  margin-top: 1px;
  position: relative;
}
.site-menu .menu > li + li::before {
  content: '';
  height: 1px;
  border-top: 1px dotted #6ec0f3;
  position: absolute;
  bottom: 100%;
  left: 8.75%;
  right: 8.75%;
}
.site-menu .menu > li.current > a {
  font-weight: 700;
}
.site-menu .menu > li:hover > a,
.site-menu .menu > li.current > a {
  background-color: #434343;
}
.site-menu .menu .book-preview {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  font-weight: 400 !important;
  line-height: 1.15;
}
.site-menu .menu .book-preview::before {
  content: '';
  width: 63px;
  height: 50px;
  background-color: #f5ac02;
  -webkit-mask: url('../images/icon-book.svg') center/contain no-repeat;
  mask: url('../images/icon-book.svg') center/contain no-repeat;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .site-menu .menu .book-preview::before {
    width: 38px;
    height: 30px;
  }
}
@media (min-width: 1280px) {
  .site-menu .menu .book-preview::before {
    width: 1.96rem;
    height: 1.54rem;
  }
}
.site-menu .menu .book-preview strong {
  color: #f5ac02;
  display: block;
}
@media (min-width: 1280px) {
  .site-menu .menu .book-preview strong {
    display: initial;
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .site-menu {
    padding-top: 5px;
    font-size: 1rem;
  }
  .site-menu .menu {
    display: flex;
    margin-bottom: 10px;
    padding-right: calc(var(--archangel-container-gutter-x) * 0.5);
    padding-left: calc(var(--archangel-container-gutter-x) * 0.5);
  }
  .site-menu .menu > li {
    flex-grow: 1;
  }
  .site-menu .menu > li + li::before {
    height: auto;
    width: 1px;
    border-top: 0;
    border-left: 1px dotted #6ec0f3;
    inset: 15% 0;
  }
  .site-menu .menu > li > a {
    height: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .site-menu {
    flex-direction: row;
    font-size: 0.92rem;
  }
  .site-menu .menu {
    display: flex;
    flex-grow: 1;
    background-color: #000;
  }
  .site-menu .menu > li {
    flex-grow: 1;
  }
  .site-menu .menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
  }
  .site-menu .menu > li + li {
    margin: 0;
    position: relative;
  }
  .site-menu .menu > li + li::before {
    content: '';
    width: 2px;
    height: 1.67rem;
    border: 0;
    background: linear-gradient(to bottom, #066897 50%, transparent 50%)
      center/2px 4px;
    position: absolute;
    top: calc(50% - 0.835rem);
    left: -1px;
  }
}
.site-menu .publisher {
  display: flex;
  align-items: center;
  gap: 0.17rem 0.75em;
  margin: 5px auto;
  font-size: 14px;
  font-family: 'Fjalla One', serif;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none !important;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .site-menu .publisher {
    font-size: 12px;
  }
}
@media (min-width: 1280px) {
  .site-menu .publisher {
    align-self: center;
    flex-direction: column;
    max-width: 5rem;
    margin: 0 0.83rem 0.33rem;
    font-size: 0.5rem;
    text-align: center;
  }
}
.site-menu .publisher::before {
  content: '';
  flex-shrink: 0;
  width: 48px;
  aspect-ratio: 1;
  background-color: #fff;
  -webkit-mask: url('../images/great-southern-publishers-logo.svg')
    center/contain no-repeat;
  mask: url('../images/great-southern-publishers-logo.svg') center/contain
    no-repeat;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .site-menu .publisher::before {
    width: 41px;
  }
}
@media (min-width: 1280px) {
  .site-menu .publisher::before {
    width: 1.75rem;
    background-color: #066897;
  }
}

.vid-bg {
  background-color: transparent !important;
  position: relative;
}
.vid-bg::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  z-index: -8;
  background: linear-gradient(
    to bottom,
    rgba(64, 30, 17, 0.25),
    rgba(64, 30, 17, 0.5) 24.03%,
    #2c0c00 69%,
    #000
  ) !important;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .vid-bg::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0) 65px,
        rgba(0, 0, 0, 0)
      ),
      linear-gradient(to bottom, rgba(64, 30, 17, 0.75), #401e11 135px, #000) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}
.vid-bg .content-section {
  background-color: transparent !important;
}

.site-content {
  position: relative;
}
.site-content img {
  max-width: 100%;
}
.site-content a {
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
  overflow-wrap: break-word;
}
.site-content a > * {
  text-decoration: inherit;
}
.site-content .page-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.21rem solid #fff;
}
.site-content .page-title {
  font-size: 50px;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1280px) {
  .site-content .page-title {
    font-size: 2.5rem;
  }
}
.site-content .preorder-button {
  display: inline-block;
  width: 13.25rem;
  padding: 0.42rem;
  font-size: 1.5rem;
  line-height: 1.14;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  color: #fff !important;
  background-color: #aa5c16;
  border: 0.13rem solid #fff;
  border-radius: 0.63rem;
  box-shadow: 0 0 0.63rem rgba(0, 0, 0, 0.7);
}
.site-content .content-section {
  background-color: #000;
}
.site-content .content-section.first-section {
  padding-top: 1rem;
}
@media (min-width: 1280px) {
  .site-content .content-section.first-section {
    padding-top: 4.17rem;
  }
}
.site-content .content-section.cta-section {
  background: #000 url('../images/book-bg.png') center no-repeat;
  background-size: 710px auto;
}
@media (min-width: 1280px) {
  .site-content .content-section.cta-section {
    background-size: 29.58rem auto;
  }
}
.site-content .content-section .cta-wrapper {
  padding-top: 2.08rem;
  padding-bottom: 2.08rem;
  border-top: 0.17rem solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-content .content-section .cta-wrapper .book-area {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29.58rem;
  margin: auto;
  position: relative;
  z-index: 1;
}
.site-content .content-section .cta-wrapper .book-area::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 198px;
  aspect-ratio: 198/307;
  background: url('../images/book.png') center/contain no-repeat;
}
@media (min-width: 1280px) {
  .site-content .content-section .cta-wrapper .book-area::before {
    width: 8.25rem;
  }
}
.site-content .content-section .cta-wrapper .button {
  display: block;
  width: 235px;
  padding: 12px;
  font-size: 24px;
  line-height: 1.25;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  color: #fff !important;
  background-color: #aa5c16;
  border: 3px solid #fff;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 66px;
}
@media (min-width: 1280px) {
  .site-content .content-section .cta-wrapper .button {
    width: 9.79rem;
    padding: 0.5rem;
    font-size: 1rem;
    border-width: 0.13rem;
    border-radius: 0.63rem;
    bottom: 2.75rem;
    box-shadow: 0 0 0.63rem rgba(0, 0, 0, 0.7);
  }
}

.site-footer {
  padding-top: 10px;
  padding-bottom: 12px;
  font-size: 12px;
  text-align: center;
  background-color: #532a0b;
  position: relative;
  z-index: 1;
}
@media (min-width: 1280px) {
  .site-footer {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.83rem;
  }
}
.site-footer .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px 2.08rem;
}
@media (max-width: 767.98px) {
  .site-footer .inner {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .site-footer .inner::before {
    content: '';
    display: block;
    background: linear-gradient(
        to right,
        #000,
        rgba(0, 0, 0, 0) 19.8958333333%,
        rgba(0, 0, 0, 0) 80.1041666667%,
        #000
      )
      center top/80rem;
    position: absolute;
    inset: 0;
    z-index: -1;
  }
}
.site-footer .inner > * {
  margin: 0;
}
@media (max-width: 767.98px) {
  .site-footer .copyright {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
  }
}
.site-footer .copyright > * {
  display: inline-block;
}
.site-footer .powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
}
.site-footer .powered a {
  flex-shrink: 0;
  width: 173px;
  height: 0;
  padding-top: 36px;
  background: url('../images/365dtm-logo.png') center/contain no-repeat;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .site-footer .powered a {
    width: 10.38rem;
    padding-top: 2.17rem;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .site-footer .powered a {
    background-image: url('../images/365dtm-logo@2x.png');
  }
}

.site-bg {
  position: absolute;
  inset: 0 0 auto;
  z-index: -9;
}
@media (max-width: 1279.98px) {
  .site-bg {
    height: auto !important;
    max-height: 700px;
    margin: 0 auto;
  }
  .site-bg > video {
    height: 100% !important;
  }
}
@media (max-width: 767.98px) {
  .site-bg {
    aspect-ratio: 40/25;
    left: -42.5%;
    right: -22.5%;
    top: -0.1%;
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .site-bg {
    aspect-ratio: 40/22;
    left: -15%;
    right: -7%;
  }
}
@media (min-width: 768px) {
  .site-bg::before {
    content: '';
    display: block;
    background: linear-gradient(
        to right,
        #000,
        rgba(0, 0, 0, 0) 19.8958333333%,
        rgba(0, 0, 0, 0) 80.1041666667%,
        #000
      )
      center top/80rem;
    position: absolute;
    inset: 0;
  }
}
.site-bg > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}

@media (min-width: 1280px) {
  .page-author .vid-bg::before {
    background: linear-gradient(
      to bottom,
      rgba(64, 30, 17, 0.25),
      rgba(64, 30, 17, 0.5) 24%,
      #2c0c00 69%,
      black
    ) !important;
  }
}
.page-author .site-content {
  --archangel-container-max-width: 64.58rem;
}
@media (min-width: 1280px) {
  .page-author .site-content {
    --archangel-container-max-width: 1240px;
    --archangel-container-offset-x: calc(
      var(--archangel-page-max-width) - var(--archangel-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-author .site-content {
    --archangel-container-max-width: 1550px;
  }
}
.page-author .content-section {
  position: relative;
}
.page-author .page-head {
  margin-bottom: 1rem;
}
.page-author .page-title {
  font-weight: 300;
}
.page-author .first-row {
  position: relative;
}
@media (min-width: 1280px) {
  .page-author .first-row {
    display: flex;
    justify-content: space-between;
  }
  .page-author .first-row .author-photo-wrapper {
    height: 1px;
    flex-shrink: 0;
    order: 99;
  }
  .page-author .first-row .lead {
    flex-basis: 40.83rem;
  }
  .page-author .first-row .lead p {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-author .first-row .author-photo-wrapper {
    float: right;
    width: 50%;
    margin-right: -8%;
  }
  .page-author .first-row .author-photo-wrapper img {
    margin-top: -4%;
  }
}
.page-author .second-row {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 1280px) {
  .page-author .second-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.83rem;
  }
  .page-author .second-row .col {
    flex-basis: 19.58rem;
  }
  .page-author .second-row .col:first-child {
    flex-basis: 19.08rem;
  }
  .page-author .second-row .col:last-child {
    padding-top: 30.6451612903%;
  }
  .page-author .second-row p {
    margin-bottom: 1.42em;
  }
}
.page-author .second-row .text-lg {
  font-size: 1.2em;
}
.page-author .lead {
  font-family: 'aktiv-grotesk-thin', sans-serif;
  font-size: 1.42rem;
  line-height: 1.29;
}
.page-author .lead p {
  margin-bottom: 1rem;
}
.page-author .author-photo {
  width: 320px;
  margin: -3rem auto 0;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-author .author-photo {
    width: auto;
  }
}
@media (min-width: 1280px) {
  .page-author .author-photo {
    width: 27.25rem;
    margin-top: -5.38rem;
    margin-right: -4.38rem;
    z-index: 0;
  }
}
.page-author .author-photo img {
  position: relative;
  left: -2.5%;
}
@media (min-width: 768px) {
  .page-author .author-photo img {
    left: auto;
  }
}
.page-author .author-photo .bg {
  aspect-ratio: 484/564;
  -webkit-mask: linear-gradient(to right, transparent 28.5%, black 28.5%)
    right/13%;
  mask: linear-gradient(to right, transparent 28.5%, black 28.5%) right/13%;
  position: absolute;
  left: 10%;
  right: 10%;
  top: calc(2rem + 20px);
  z-index: -1;
}
@media (min-width: 768px) {
  .page-author .author-photo .bg {
    left: 9.9388379205%;
    right: 16.0550458716%;
  }
}
@media (min-width: 1280px) {
  .page-author .author-photo .bg {
    top: 20.6422018349%;
  }
}
.page-author .author-photo .bg::before {
  content: '';
  position: absolute;
  background: linear-gradient(180deg, #aa5c16 0%, rgba(170, 92, 22, 0) 100%);
  inset: 0;
}
.page-author .first-section {
  padding-bottom: 1rem;
}
@media (min-width: 1280px) {
  .page-author .first-section {
    padding-bottom: 2.08rem;
  }
}
.page-author .cv-section {
  padding-bottom: 2.71rem;
}
.page-author .cv-section .inner {
  background-color: #542a04;
  border-radius: 0.83rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-author .cv-section .inner {
    display: flex;
  }
}
.page-author .cv-section .inner > * {
  padding: 1.25rem 1.67rem 1.67rem;
}
.page-author .cv-section .inner > * > *:last-child {
  margin-bottom: 0;
}
.page-author .cv-section .inner .left-col {
  flex-basis: 23.13rem;
  background-color: #8a4303;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-author .cv-section .inner .left-col {
    min-width: 300px;
    padding-top: 1.04rem;
    padding-bottom: 1.46rem;
  }
}
@media (min-width: 1280px) {
  .page-author .cv-section .inner .left-col {
    padding-left: 2.08rem;
    padding-right: 3.33rem;
  }
}
.page-author .cv-section .inner .section-title {
  font-size: 1.67rem;
  letter-spacing: -0.02em;
}
.page-author .cv-section .inner .left-col {
  flex-grow: 1;
  align-self: center;
}
.page-author .cv-section .inner .buttons {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.83rem 1.25rem;
}
.page-author .cv-section .inner .buttons a {
  display: block;
  padding: 0.42rem;
  min-width: 11.67rem;
  font-size: 1.08rem;
  line-height: 1.62;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  color: #fff !important;
  background: #8a4303;
  border: 0.08rem solid #b49874;
  border-radius: 0.83rem;
}
.page-author .site-bg > video {
  height: 150%;
}

@media (min-width: 1280px) {
  .page-preview-preorder .vid-bg::before {
    background: linear-gradient(
      180deg,
      rgba(64, 30, 17, 0),
      rgba(64, 30, 17, 0.4) 25.5%,
      rgba(44, 12, 0, 0.8) 69%,
      rgba(0, 0, 0, 0.8)
    ) !important;
  }
}
.page-preview-preorder .first-section {
  --archangel-container-max-width: 64.58rem;
}
@media (min-width: 1280px) {
  .page-preview-preorder .first-section {
    --archangel-container-max-width: 1240px;
    --archangel-container-offset-x: calc(
      var(--archangel-page-max-width) - var(--archangel-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-preview-preorder .first-section {
    --archangel-container-max-width: 1550px;
  }
}
@media (max-width: 1279.98px) {
  .page-preview-preorder .first-section {
    padding-top: 285px !important;
    padding-bottom: 45px;
    background-color: #000 !important;
  }
  .page-preview-preorder .first-section::before {
    content: '';
    display: block;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000),
      url('../images/world-map.jpg') !important;
    background-position: bottom, center !important;
    background-size: 100% 16.67rem, cover !important;
    background-repeat: no-repeat !important;
    opacity: 0.5;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .page-preview-preorder .first-section .inner {
    padding: 38px;
    padding-top: 160px;
    text-align: center;
    background-color: rgba(2, 0, 0, 0.8);
    position: relative;
  }
  .page-preview-preorder .first-section .inner::before {
    content: '';
    border: 1px solid #9c5900;
    position: absolute;
    inset: 8px;
  }
  .page-preview-preorder .first-section .inner > * {
    position: relative;
  }
  .page-preview-preorder .first-section .inner > img {
    width: 263px;
    max-width: none;
    transform: translate(-48%, 0);
    position: absolute;
    top: -260px;
    left: 50%;
  }
  .page-preview-preorder .first-section .inner .page-title {
    margin-bottom: 15px;
  }
  .page-preview-preorder .first-section .inner .lead {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (min-width: 1280px) {
  .page-preview-preorder .first-section .inner {
    position: relative;
    padding-top: 3.75rem;
    padding-bottom: 7.5rem;
  }
  .page-preview-preorder .first-section .inner > * {
    padding-left: 30.3870967742%;
  }
  .page-preview-preorder .first-section .inner > img {
    width: 22.7741935484%;
    padding: 0;
    position: absolute;
    top: -1.25rem;
    left: 2.9032258065%;
    z-index: 2;
  }
  .page-preview-preorder .first-section .page-title {
    text-align: left;
    padding-bottom: 1.46rem;
    border-bottom: 0.17rem solid #fff;
    margin-bottom: 0.83rem;
  }
  .page-preview-preorder .first-section .lead {
    max-width: 38.54rem;
    font-family: 'aktiv-grotesk-extended', sans-serif;
    font-weight: 300;
    font-size: 1.13rem;
    line-height: 1.37;
  }
}
.page-preview-preorder .preview-section {
  --archangel-container-max-width: 80rem;
  padding-bottom: 35px;
  background: #221b15 url('../images/bg-preview.jpg') center/cover no-repeat;
}
@media (min-width: 1280px) {
  .page-preview-preorder .preview-section {
    --archangel-container-max-width: 1536px;
    --archangel-container-offset-x: calc(
      var(--archangel-page-max-width) - var(--archangel-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-preview-preorder .preview-section {
    --archangel-container-max-width: 1920px;
  }
}
@media (min-width: 1280px) {
  .page-preview-preorder .preview-section {
    padding-top: 1.67rem;
    padding-bottom: 1.67rem;
  }
}
@media (max-width: 1279.98px) {
  .page-preview-preorder .preview-section {
    position: relative;
    z-index: 1;
  }
  .page-preview-preorder .preview-section::before {
    content: '';
    display: block;
    height: 180px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
    position: absolute;
    inset: 0;
    top: auto;
    z-index: -1;
  }
}
.page-preview-preorder .preview-section .section-title {
  margin-bottom: 1.67rem;
  font-size: 50px;
  letter-spacing: -0.02em;
  text-align: center;
}
@media (min-width: 1280px) {
  .page-preview-preorder .preview-section .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 1279.98px) {
  .page-preview-preorder .preview-section .section-title {
    margin-left: calc(var(--archangel-container-gutter-x) * -0.5);
    margin-right: calc(var(--archangel-container-gutter-x) * -0.5);
    margin-bottom: 30px;
    padding-left: calc(var(--archangel-container-gutter-x) * 0.5);
    padding-right: calc(var(--archangel-container-gutter-x) * 0.5);
    padding-bottom: 25px;
    background-color: #000;
  }
}
.page-preview-preorder .preview-section .section-title strong {
  font-size: 52px;
  font-weight: 800;
  font-family: 'aktiv-grotesk', sans-serif;
}
@media (max-width: 1279.98px) {
  .page-preview-preorder .preview-section .section-title strong {
    display: block;
  }
}
@media (min-width: 1280px) {
  .page-preview-preorder .preview-section .section-title strong {
    font-size: 1.88rem;
  }
}
.page-preview-preorder .preview-section .review-button {
  display: block;
  width: 195px;
  aspect-ratio: 195/60;
  background: url('../images/review-button.png') center/cover no-repeat;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .page-preview-preorder .preview-section .review-button {
    background-image: url('../images/review-button@2x.png');
  }
}
@media (max-width: 1279.98px) {
  .page-preview-preorder .preview-section .review-button {
    margin: 35px auto 0;
  }
}
@media (min-width: 1280px) {
  .page-preview-preorder .preview-section .review-button {
    float: right;
    width: 8.13rem;
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
  }
}
.page-preview-preorder .preview-section .review-button > * {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.page-preview-preorder .preview-section .flip-book-wrapper {
  height: calc(100vh - 3rem);
  min-height: 400px;
  position: relative;
}
.page-preview-preorder .preview-section .flip-book-container {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  text-align: center;
}

.previecontainer {
  text-align: center;
}

.previecontainer img {
  width: 25%;
}

@media (max-width: 789px) {
  .previecontainer img {
    width: 75%;
  }
}

@media (min-width: 1280px) {
  .page-photo .vid-bg::before {
    background: linear-gradient(
      to bottom,
      rgba(64, 30, 17, 0.4),
      rgba(64, 30, 17, 0.56) 13.5%,
      rgba(44, 12, 0, 0.8) 69%,
      rgba(0, 0, 0, 0.8)
    ) !important;
  }
}
.page-photo .site-content {
  --archangel-container-max-width: 64.58rem;
}
@media (min-width: 1280px) {
  .page-photo .site-content {
    --archangel-container-max-width: 1240px;
    --archangel-container-offset-x: calc(
      var(--archangel-page-max-width) - var(--archangel-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-photo .site-content {
    --archangel-container-max-width: 1550px;
  }
}
.page-photo .content-section {
  position: relative;
}
.page-photo .page-head {
  margin-bottom: 1rem;
}
.page-photo .lead {
  max-width: 58.96rem;
  margin: auto;
  font-family: 'aktiv-grotesk-extended', sans-serif;
  font-weight: 300;
  font-size: 1.13rem;
  line-height: 1.41;
  text-align: center;
}
.page-photo .first-section {
  padding-bottom: 0.42rem;
}
.page-photo .photo-section {
  padding-bottom: 0.5rem;
}
.page-photo .photo-section .photo-area {
  background-color: #050000;
  box-shadow: 0 0 1.25rem #000;
}
@media (min-width: 768px) {
  .page-photo .photo-section .photo-area {
    display: flex;
  }
  .page-photo .photo-section .photo-area > * {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
.page-photo .photo-section figure {
  flex-basis: 51.1612903226%;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.page-photo .photo-section figure figcaption {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 2.08rem;
  font-family: 'aktiv-grotesk-thin', sans-serif;
}
.page-photo .photo-section figure figcaption h5 {
  font-family: 'aktiv-grotesk', sans-serif;
  font-size: 1.33rem;
  font-weight: 700;
  line-height: 1.06;
}
.page-photo .photo-section figure figcaption p {
  margin-bottom: 0;
}
.page-photo .photo-section .small-photos {
  flex-basis: 48.8387096774%;
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page-photo .photo-section .small-photos > li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-photo .cta-section .cta-wrapper {
  border-top: 0 !important;
}

@media (min-width: 1280px) {
  .page-characters .vid-bg::before {
    background: linear-gradient(
      to bottom,
      rgba(64, 30, 17, 0.4),
      rgba(64, 30, 17, 0.56) 13.5%,
      rgba(44, 12, 0, 0.8) 69%,
      rgba(0, 0, 0, 0.8)
    ) !important;
  }
}
.page-characters .content-section {
  position: relative;
}
.page-characters .content-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-family: 'aktiv-grotesk-thin', sans-serif;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .page-characters .content-section .row + .row {
    margin-top: 0.42rem;
    padding-top: 1.67rem;
    border-top: 1px dashed #fff;
  }
  .page-characters .content-section .row > * {
    flex: 0 0 30.21rem;
    max-width: 48%;
  }
}
.page-characters .first-section {
  padding-bottom: 1rem;
}
.page-characters .subtitle {
  margin-bottom: 0.5rem;
  font-family: 'aktiv-grotesk', sans-serif;
  font-size: 1.33rem;
  font-weight: 700;
  line-height: 1.06;
}
.page-characters .lead {
  max-width: 58.96rem;
  margin: auto;
  font-family: 'aktiv-grotesk-extended', sans-serif;
  font-weight: 300;
  font-size: 1.13rem;
  line-height: 1.41;
  text-align: center;
}
.page-characters .lead > *:last-child {
  margin-bottom: 0.5rem;
}
.page-characters .bottom-section {
  padding-top: 2.71rem;
  padding-bottom: 1rem;
}
.page-characters .image-section {
  background-color: transparent !important;
  position: relative;
}
.page-characters .image-section .parallax-window {
  aspect-ratio: 1920/594;
  background-color: transparent !important;
  position: relative;
}
.page-characters .image-section .image-area {
  height: 250px;
}
.page-characters .image-section img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

@media (min-width: 1280px) {
  .page-faqs .vid-bg::before {
    background: linear-gradient(
      to bottom,
      rgba(64, 30, 17, 0.4),
      rgba(64, 30, 17, 0.56) 13.5%,
      rgba(44, 12, 0, 0.8) 69%,
      rgba(0, 0, 0, 0.8)
    ) !important;
  }
}
.page-faqs .content-section {
  position: relative;
}
.page-faqs .content-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-family: 'aktiv-grotesk-thin', sans-serif;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .page-faqs .content-section .row > * {
    flex: 0 0 30.21rem;
    max-width: 48%;
  }
}
.page-faqs .first-section {
  padding-bottom: 1rem;
}
.page-faqs .subtitle {
  margin-bottom: 0.75rem;
  font-family: 'aktiv-grotesk', sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  line-height: 1.29;
}
.page-faqs .lead {
  max-width: 58.96rem;
  margin: auto;
  font-family: 'aktiv-grotesk-extended', sans-serif;
  font-weight: 300;
  font-size: 1.13rem;
  line-height: 1.41;
}
.page-faqs .lead > *:last-child {
  margin-bottom: 0.5rem;
}
.page-faqs .bottom-section-wrapper {
  background: #000;
}
.page-faqs .bottom-section {
  padding-top: 2.71rem;
  padding-bottom: 1rem;
}
.page-faqs .image-section {
  background-color: transparent !important;
  position: relative;
}
.page-faqs .image-section .parallax-window {
  aspect-ratio: 1920/594;
  background-color: transparent !important;
  position: relative;
}
.page-faqs .image-section .image-area {
  height: 250px;
}
.page-faqs .image-section img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.page-home .like-site-bg video {
  display: none !important;
}
@media (max-width: 1279.98px) {
  .page-home .like-site-bg {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .page-home .like-site-bg::before {
    content: '';
    background-color: rgba(245, 124, 2, 0.5);
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .page-home .like-site-bg video {
    display: block !important;
    width: 120%;
    height: 120%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    inset: -10%;
    z-index: -2;
  }
}
@media (max-width: 1279.98px) {
  .page-home .site-header .inner {
    background: url('../images/cover.png');
    background-position: 50% 105px;
    background-size: 640px auto;
    background-repeat: no-repeat;
  }
  .page-home .site-header .inner::before {
    content: '';
    display: block;
    width: 256px;
    aspect-ratio: 256/233;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, 0);
    filter: blur(25px);
    position: absolute;
    top: 33px;
    left: 50%;
    z-index: -1;
  }
  .page-home .site-header .inner::after {
    content: '';
    display: block;
    width: 100px;
    aspect-ratio: 1;
    background: linear-gradient(
      209.4deg,
      #935500 15.57%,
      #ffb143 29.45%,
      #ffc676 41.97%,
      #fff4e5 48.4%,
      #ffc26d 58.9%,
      #ffb143 69.73%,
      #935500 83.27%
    );
    -webkit-mask: url("data:image/svg+xml,%3csvg viewBox='0 0 328 328' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='164' cy='164' r='159' stroke-width='10' stroke='black' fill='none' /%3e%3c/svg%3e")
      center/cover no-repeat;
    mask: url("data:image/svg+xml,%3csvg viewBox='0 0 328 328' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='164' cy='164' r='159' stroke-width='10' stroke='black' fill='none' /%3e%3c/svg%3e")
      center/cover no-repeat;
    border-radius: 50%;
    transform: translate(-50%, 0);
    position: absolute;
    top: 120px;
    left: 50%;
    z-index: -1;
  }
  .page-home .site-header .site-logo {
    padding-bottom: 20px;
  }
  .page-home .site-header .site-logo a {
    aspect-ratio: 80/62;
  }
  .page-home .site-header .site-menu::before {
    height: 96px;
  }
}
@media (min-width: 1280px) {
  .page-home .site-header {
    height: 0;
  }
  .page-home .site-header .inner {
    display: contents;
  }
  .page-home .site-header .site-logo {
    width: auto;
    padding: 0;
    position: absolute;
    top: 0.42rem;
    left: 18.2291666667%;
    right: 18.2291666667%;
  }
  .page-home .site-header .site-logo a {
    width: 40.38rem;
    padding-top: 12.29rem;
    background-image: url('../images/site-logo-home.png');
  }
  .page-home .site-header .site-menu {
    width: 8.75rem;
    font-size: 1rem;
    text-align: right;
    line-height: 1.25;
    position: absolute;
    top: 15rem;
    left: 4.1666666667%;
    z-index: 3;
  }
  .page-home .site-header .site-menu::before {
    content: '';
    width: 16.83rem;
    aspect-ratio: 404/466;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    filter: blur(2.08rem);
    position: absolute;
    top: -4.17rem;
    right: -2.5rem;
    z-index: -1;
  }
  .page-home .site-header .site-menu .publisher {
    width: 7.5rem;
    max-width: none;
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.05em;
    position: absolute;
    bottom: calc(100% + 2.92rem);
    right: 0;
  }
  .page-home .site-header .site-menu .publisher::before {
    width: 7.42rem;
    margin-bottom: 0.21rem;
    background-color: #fff;
    -webkit-mask-image: url('../images/great-southern-publishers-logo.svg');
    mask-image: url('../images/great-southern-publishers-logo.svg');
  }
  .page-home .site-header .site-menu .menu {
    display: block;
    background-color: transparent;
    margin-top: -1.04rem;
  }
  .page-home .site-header .site-menu .menu a {
    display: block;
    padding: 1rem 0;
    background-color: transparent !important;
  }
  .page-home .site-header .site-menu .menu > li + li {
    border-top: 1px dashed #6ec0f3;
  }
  .page-home .site-header .site-menu .menu > li + li::before {
    display: none;
  }
  .page-home .site-header .site-menu .menu .book-preview {
    padding-left: 2.08rem;
    line-height: inherit;
    position: relative;
  }
  .page-home .site-header .site-menu .menu .book-preview::before {
    display: block;
    width: 1.96rem;
    position: absolute;
    top: 0.92rem;
    left: 0;
  }
}
.page-home .content-header {
  --archangel-container-max-width: 70.83rem;
}
@media (min-width: 1280px) {
  .page-home .content-header {
    --archangel-container-max-width: 1360px;
    --archangel-container-offset-x: calc(
      var(--archangel-page-max-width) - var(--archangel-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-home .content-header {
    --archangel-container-max-width: 1700px;
  }
}
@media (min-width: 1280px) {
  .page-home .content-header::before {
    height: 9.04rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000) !important;
    top: auto;
    z-index: -4;
  }
  .page-home .content-header::after {
    content: '';
    display: block;
    width: 32rem;
    aspect-ratio: 768/648;
    transform: translate(-50%, 0);
    background-color: #fff;
    border-radius: 50%;
    filter: blur(4.17rem);
    position: absolute;
    top: 4.38rem;
    left: 50%;
    z-index: -7;
  }
}
@media (max-width: 1279.98px) {
  .page-home .content-header .inner {
    background: #7a3e01;
    margin-left: calc(var(--archangel-container-gutter-x) * -0.5);
    margin-right: calc(var(--archangel-container-gutter-x) * -0.5);
    padding: 17px;
  }
}
@media (min-width: 1280px) {
  .page-home .content-header .inner {
    min-height: 37.5rem;
    position: relative;
  }
  .page-home .content-header .inner::before {
    content: '';
    display: block;
    background: url('../images/cover.png') bottom center no-repeat;
    background-size: auto 100%;
    position: absolute;
    inset: 0;
    top: 16%;
    bottom: -14%;
    z-index: -5;
  }
  .page-home .content-header .inner::after {
    content: '';
    display: block;
    width: 13.67rem;
    margin: 0 -6.835rem;
    aspect-ratio: 1;
    background: linear-gradient(
      209.4deg,
      #935500 15.57%,
      #ffb143 29.45%,
      #ffc676 41.97%,
      #fff4e5 48.4%,
      #ffc26d 58.9%,
      #ffb143 69.73%,
      #935500 83.27%
    );
    -webkit-mask: url("data:image/svg+xml,%3csvg viewBox='0 0 328 328' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='164' cy='164' r='159' stroke-width='10' stroke='black' fill='none' /%3e%3c/svg%3e")
      center/cover no-repeat;
    mask: url("data:image/svg+xml,%3csvg viewBox='0 0 328 328' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='164' cy='164' r='159' stroke-width='10' stroke='black' fill='none' /%3e%3c/svg%3e")
      center/cover no-repeat;
    position: absolute;
    bottom: 16.25rem;
    left: 50%;
    z-index: -6;
  }
}
.page-home .content-header .author-name {
  display: none;
  margin: 0;
  font-size: 3.75rem;
  line-height: 0.59;
  letter-spacing: -0.02em;
  text-align: center;
  filter: drop-shadow(0 0 0.63rem #000);
  position: absolute;
  left: 4.1666666667%;
  right: 4.1666666667%;
  bottom: 1.25rem;
}
@media (min-width: 1280px) {
  .page-home .content-header .author-name {
    display: block;
  }
}
@media (max-width: 1279.98px) {
  .page-home .content-header .excerpt {
    max-width: 960px;
    margin: auto;
    padding: 25px 18px;
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: -0.02em;
    background-color: rgba(0, 0, 0, 0.7);
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .content-header .excerpt {
    padding-left: 4%;
    padding-right: 4%;
  }
}
.page-home .content-header .excerpt > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 1280px) {
  .page-home .content-header .excerpt {
    width: 13.33rem;
    padding: 1.25rem 1.04rem;
    border: 1px solid #fff;
    border-left-width: 0;
    border-radius: 0 0.83rem 0.83rem 0;
    font-size: 1.13rem;
    line-height: 1.33;
    letter-spacing: -0.02em;
    position: absolute;
    top: 13.54rem;
    right: 0;
  }
  .page-home .content-header .excerpt::before {
    content: '';
    width: 16.83rem;
    aspect-ratio: 404/466;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    filter: blur(2.08rem);
    position: absolute;
    top: -2.92rem;
    left: -1.46rem;
    z-index: -1;
  }
  .page-home .content-header .excerpt > *:last-child {
    margin-bottom: 0.33rem;
  }
}
.page-home .content-section {
  position: relative;
}
@media (min-width: 1280px) {
  .page-home .content-section::before {
    content: '';
    display: block;
    background: linear-gradient(
        to right,
        #000,
        rgba(0, 0, 0, 0) 19.8958333333%,
        rgba(0, 0, 0, 0) 80.1041666667%,
        #000
      )
      center top/80rem;
    position: absolute;
    inset: 0;
    z-index: 4;
  }
}
.page-home .not-desktop-wrapper {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5) 75%,
      black 80%
    ),
    url('../images/world-map.jpg');
  background-position: center, 52% 0;
  background-size: cover, auto 80%;
  background-repeat: no-repeat;
}
@media (max-width: 1279.98px) {
  .page-home .not-desktop-wrapper > * {
    background: transparent !important;
  }
}
@media (min-width: 1280px) {
  .page-home .not-desktop-wrapper {
    display: contents;
  }
}
.page-home .top-section {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.02em;
  padding-top: 35px;
}
@media (min-width: 1280px) {
  .page-home .top-section {
    padding-top: 1.46rem;
    padding-bottom: 1.67rem;
    font-family: 'aktiv-grotesk-extended', sans-serif;
    font-size: 1.13rem;
    line-height: 1.41;
    font-weight: 300;
    background-color: #000;
  }
}
.page-home .top-section::before {
  z-index: 3;
}
.page-home .top-section .lead {
  padding: 0 4%;
}
@media (min-width: 1280px) {
  .page-home .top-section .lead {
    max-width: 58.33rem;
    margin: auto;
    padding: 0;
    position: relative;
    z-index: 3;
  }
  .page-home .top-section .lead > *:last-child {
    margin-bottom: 0.42rem;
  }
}
.page-home .synopsis-section {
  --archangel-container-max-width: 80rem;
  font-size: 0.83rem;
  line-height: 1.5;
  background: url('../images/world-map.jpg') center/cover no-repeat;
}
@media (min-width: 1280px) {
  .page-home .synopsis-section {
    --archangel-container-max-width: 1536px;
    --archangel-container-offset-x: calc(
      var(--archangel-page-max-width) - var(--archangel-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-home .synopsis-section {
    --archangel-container-max-width: 1920px;
  }
}
@media (min-width: 1280px) {
  .page-home .synopsis-section {
    padding-bottom: 0.42rem;
  }
  .page-home .synopsis-section::after {
    content: '';
    display: block;
    height: 0.42rem;
    background-color: #be6f00;
    position: absolute;
    inset: 0;
    top: auto;
    z-index: 1;
  }
}
@media (max-width: 1279.98px) {
  .page-home .synopsis-section .inner {
    display: flex;
    flex-direction: column;
  }
  .page-home .synopsis-section .section-title {
    font-size: 50px;
    line-height: 0.72;
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  .page-home .synopsis-section .ftext1-wrapper {
    width: 100%;
    max-width: 800px;
    margin: auto;
    margin-bottom: 25px;
    padding: 25px 40px;
    background: rgba(2, 0, 0, 0.8);
    position: relative;
  }
  .page-home .synopsis-section .ftext1-wrapper::before {
    content: '';
    border: 1px solid #9c5900;
    position: absolute;
    inset: 8px;
  }
  .page-home .synopsis-section .ftext1 {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-home .synopsis-section .ftext1 > *:last-child {
    margin-bottom: 0;
  }
  .page-home .synopsis-section .ftext2-wrapper {
    background: #7a3e01;
    margin-left: calc(var(--archangel-container-gutter-x) * -0.5);
    margin-right: calc(var(--archangel-container-gutter-x) * -0.5);
    padding: 17px;
  }
  .page-home .synopsis-section .ftext2 {
    max-width: 960px;
    margin: auto;
    padding: 25px 18px;
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: -0.02em;
    background-color: rgba(0, 0, 0, 0.7);
  }
}
@media (max-width: 1279.98px) and (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .synopsis-section .ftext2 {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media (max-width: 1279.98px) {
  .page-home .synopsis-section .ftext2 > *:last-child {
    margin-bottom: 0;
  }
  .page-home .synopsis-section .ornaments {
    padding-top: 15px;
    padding-bottom: 295px;
    position: relative;
  }
}
@media (max-width: 1279.98px) and (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .synopsis-section .ornaments {
    padding-bottom: 275px;
  }
}
@media (max-width: 1279.98px) {
  .page-home .synopsis-section .photo {
    width: 340px;
    margin: auto;
    padding: 15px;
    background-color: #fff9f9;
    transform: rotate(-5.16deg);
    box-shadow: 0 0 40px rgba(34, 21, 1, 0.8);
    position: relative;
    left: -1%;
  }
}
@media (max-width: 1279.98px) and (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .synopsis-section .photo {
    left: -4%;
  }
}
@media (max-width: 1279.98px) {
  .page-home .synopsis-section .bullets {
    width: 226px;
    aspect-ratio: 340/186;
    background: url('../images/bullets.png') center/contain no-repeat;
    transform: translate(-67%, 0);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
    position: absolute;
    top: 190px;
    left: 50%;
  }
}
@media (max-width: 1279.98px) and (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .synopsis-section .bullets {
    transform: translate(-80%, 0);
  }
}
@media (max-width: 1279.98px) {
  .page-home .synopsis-section .firearm {
    width: 936px;
    aspect-ratio: 1802/736;
    margin: auto;
    background: url('../images/ak47.png') center/contain no-repeat;
    transform: rotate(-23.03deg);
    filter: drop-shadow(20px 20px 5px rgba(0, 0, 0, 0.7));
    position: absolute;
    bottom: -15px;
    left: calc(50% - 415px);
    z-index: 1;
  }
}
@media (max-width: 1279.98px) and (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .synopsis-section .firearm {
    transform: translate(-45%) rotate(-16deg);
    bottom: -30px;
    left: 50%;
  }
}
@media (min-width: 1280px) {
  .page-home .synopsis-section .inner {
    padding-top: 32.79rem;
    position: relative;
  }
  .page-home .synopsis-section .section-title {
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-size: 2.5rem;
    line-height: 0.5;
    letter-spacing: -0.02em;
    white-space: nowrap;
    position: absolute !important;
    bottom: 100%;
  }
  .page-home .synopsis-section .floating-text {
    max-width: 21.67rem;
    position: absolute;
  }
  .page-home .synopsis-section .floating-text::before {
    content: '';
    position: absolute;
    background: rgba(58, 31, 6, 0.4);
    border-radius: 0.83rem;
    inset: -0.63rem -1.25rem;
    filter: blur(0.42rem);
    z-index: 2;
  }
  .page-home .synopsis-section .floating-text > * {
    position: relative;
    z-index: 6;
  }
  .page-home .synopsis-section .floating-text > *:last-child {
    margin-bottom: 0.21rem;
  }
  .page-home .synopsis-section .floating-text.ftext1 {
    left: 15.83rem;
    top: 3.33rem;
  }
  .page-home .synopsis-section .floating-text.ftext2 {
    right: 0;
    top: 18.33rem;
  }
  .page-home .synopsis-section .target {
    width: 33.75rem;
    aspect-ratio: 810/793;
    background: url('../images/target.png') center/contain no-repeat;
    position: absolute;
    top: 11.04rem;
    left: calc(100% - 33.75rem);
    z-index: 1;
  }
  .page-home .synopsis-section .pins {
    width: 37.5rem;
    aspect-ratio: 900/278;
    background: url('../images/pins.png') center/contain no-repeat;
    position: absolute;
    transform: translate(-16.25rem, 0);
    top: 8.08rem;
    left: 50%;
    z-index: 2;
  }
  .page-home .synopsis-section .photo {
    width: 18.33rem;
    padding: 0.63rem;
    background-color: #fff;
    box-shadow: 0 0 1.67rem rgba(34, 21, 1, 0.8);
    transform: rotate(-8.43deg);
    position: absolute;
    top: 0.21rem;
    right: calc(100% - 13.54rem);
    z-index: 2;
  }
  .page-home .synopsis-section .binoculars {
    width: 24.79rem;
    aspect-ratio: 595/524;
    background: url('../images/binoculars.png') center/contain no-repeat;
    filter: drop-shadow(0 1.25rem 0.31rem rgba(47, 21, 5, 0.6));
    position: absolute;
    top: -3.75rem;
    left: calc(100% - 18.13rem);
    z-index: 2;
  }
  .page-home .synopsis-section .bullets {
    width: 14.17rem;
    aspect-ratio: 340/186;
    background: url('../images/bullets.png') center/contain no-repeat;
    filter: drop-shadow(0 0 0.42rem rgba(0, 0, 0, 0.8));
    position: absolute;
    top: 10.63rem;
    right: calc(100% - 8.33rem);
    z-index: 2;
  }
  .page-home .synopsis-section .firearm {
    width: 75.08rem;
    aspect-ratio: 1802/736;
    background: url('../images/ak47.png') center/contain no-repeat;
    filter: drop-shadow(0.83rem 0.83rem 0.21rem rgba(0, 0, 0, 0.7));
    transform: rotate(16.5deg);
    position: absolute;
    top: 14.17rem;
    right: calc(100% - 58.33rem);
    z-index: 3;
  }
}
.page-home .author-section {
  padding-bottom: 1rem;
  line-height: 1.5;
  background: #000 url('../images/night.jpg') 22.5% 0 no-repeat;
  background-size: 1050px auto;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .author-section {
    background-size: 1300px auto;
    background-position: 25% -160px;
  }
}
@media (min-width: 1280px) {
  .page-home .author-section {
    padding-bottom: 0.83rem;
    background-position: 50% -10.21rem;
    background-size: 80rem auto;
    font-size: 0.83rem;
  }
}
.page-home .author-section::after {
  content: '';
  display: block;
  height: 52px;
  background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0));
  position: absolute;
  inset: 0;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .author-section::after {
    height: 20px;
  }
}
@media (min-width: 1280px) {
  .page-home .author-section::after {
    height: 0.67rem;
    background: linear-gradient(
      to bottom,
      rgba(0, 8, 14, 0.8),
      rgba(1, 48, 84, 0)
    );
  }
}
.page-home .author-section .inner {
  padding-top: 430px;
  position: relative;
  z-index: 4;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .author-section .inner {
    padding-top: 350px;
  }
}
@media (min-width: 1280px) {
  .page-home .author-section .inner {
    padding-top: 21.25rem;
  }
}
.page-home .author-section .section-title {
  margin: 0;
  padding-bottom: 25px;
  font-weight: 500;
  font-size: 50px;
  line-height: 0.72;
  letter-spacing: -0.02em;
  text-align: center;
  border-bottom: 1px solid #fff;
}
@media (min-width: 1280px) {
  .page-home .author-section .section-title {
    font-size: 2.5rem;
    line-height: 0.5;
    font-weight: 300;
    text-align: left;
    padding-bottom: 0.83rem;
    border-bottom-width: 0.21rem;
  }
}
@media (min-width: 1280px) {
  .page-home .author-section .section-content {
    padding-top: 1.25rem;
    display: flex;
    gap: 2.5rem;
  }
}
.page-home .author-section .author-photo-wrapper {
  width: 270px;
  margin: 18px auto 55px;
  flex-shrink: 0;
  order: 99;
  position: relative;
  z-index: 1;
}
@media (min-width: 1280px) {
  .page-home .author-section .author-photo-wrapper {
    width: 20.17rem;
  }
}
.page-home .author-section .author-photo-wrapper .author-photo {
  filter: drop-shadow(30px 40px 5px rgba(0, 0, 0, 0.5));
}
@media (min-width: 1280px) {
  .page-home .author-section .author-photo-wrapper .author-photo {
    filter: drop-shadow(1.25rem 1.67rem 0.21rem rgba(0, 0, 0, 0.5));
  }
}
.page-home .author-section .author-photo-wrapper .author-photo img {
  width: 320px;
  max-width: none;
  position: absolute;
  top: -48px;
  left: -34px;
}
@media (min-width: 1280px) {
  .page-home .author-section .author-photo-wrapper .author-photo img {
    width: auto;
    max-width: calc(100% + 3.75rem);
    top: -7.5rem;
    left: -2.75rem;
    right: -1rem;
  }
}
.page-home .author-section .author-photo-wrapper .bg {
  aspect-ratio: 27/29;
  -webkit-mask: linear-gradient(to right, transparent 28.5%, black 28.5%)
    right/13%;
  mask: linear-gradient(to right, transparent 28.5%, black 28.5%) right/13%;
  position: relative;
  z-index: -1;
}
@media (min-width: 1280px) {
  .page-home .author-section .author-photo-wrapper .bg {
    aspect-ratio: 484/519;
  }
}
.page-home .author-section .author-photo-wrapper .bg::before {
  content: '';
  position: absolute;
  background: linear-gradient(180deg, #01477f 0%, rgba(1, 71, 127, 0) 100%);
  inset: 0;
}
.page-home .author-section .section-text {
  flex-grow: 1;
}
@media (max-width: 1279.98px) {
  .page-home .author-section .lead {
    max-width: 700px;
    margin: auto;
    font-size: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .page-home .author-section .lead p {
    margin-bottom: 28px;
  }
  .page-home .author-section .lead strong {
    font-size: 32px;
    display: block;
  }
  .page-home .author-section .lead + * {
    padding-top: 32px;
    border-top: 1px solid #fff;
  }
}
@media (min-width: 1280px) {
  .page-home .author-section .lead {
    font-family: 'aktiv-grotesk-thin', sans-serif;
    font-size: 1.42rem;
    line-height: 1.29;
  }
  .page-home .author-section .lead p {
    margin-bottom: 1rem;
  }
  .page-home .author-section .lead strong {
    font-family: 'aktiv-grotesk', sans-serif;
    font-weight: 800;
  }
}
@media (min-width: 1280px) {
  .page-home .author-section .row {
    display: flex;
    justify-content: space-between;
  }
  .page-home .author-section .row .col {
    flex: 0 0 19.08rem;
  }
}
.page-home .cta-section {
  --archangel-container-max-width: 66.67rem;
  background: #60310f url('../images/home-cta-bg.jpg') center/cover no-repeat !important;
  z-index: 1;
}
@media (min-width: 1280px) {
  .page-home .cta-section {
    --archangel-container-max-width: 1280px;
    --archangel-container-offset-x: calc(
      var(--archangel-page-max-width) - var(--archangel-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-home .cta-section {
    --archangel-container-max-width: 1600px;
  }
}
@media (max-width: 1279.98px) {
  .page-home .cta-section::before {
    content: '';
    display: block;
    width: 820px;
    height: 545px;
    margin: 0 -475px;
    background: url('../images/fire.png') center top/100% 100% no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
  }
  .page-home .cta-section::after {
    content: '';
    display: block;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #020000),
      linear-gradient(
        to right,
        #020000 5%,
        rgba(0, 0, 0, 0) 25%,
        rgba(0, 0, 0, 0) 75%,
        #020000 95%
      );
    background-position: center bottom, center;
    background-size: 100% 275px, 900px 100%;
    background-repeat: repeat-x;
    position: absolute;
    inset: 0;
    top: -70px;
  }
}
@media (min-width: 1280px) {
  .page-home .cta-section::after {
    content: '';
    display: block;
    height: 0.42rem;
    background-color: #004373;
    position: absolute;
    inset: 0;
    z-index: 4;
  }
}
.page-home .cta-section .cta-wrapper {
  border-top: 0;
}
@media (max-width: 1279.98px) {
  .page-home .cta-section .cta-wrapper {
    padding-top: 95px;
    padding-bottom: 35px;
  }
}
@media (min-width: 1280px) {
  .page-home .cta-section .cta-wrapper {
    padding-top: 3.96rem;
    padding-bottom: 3.96rem;
  }
  .page-home .cta-section .cta-wrapper::before {
    content: '';
    display: block;
    background: url('../images/fire.png') center top/63.83rem auto no-repeat;
    position: absolute;
    inset: 0;
    left: -0.5%;
  }
  .page-home .cta-section .cta-wrapper::after {
    content: '';
    display: block;
    background-image: linear-gradient(to bottom, rgba(70, 33, 5, 0), #170900),
      linear-gradient(to top, rgba(70, 33, 5, 0), #170900);
    background-size: 100% 8.08rem, 100% 4.88rem;
    background-position: bottom, top;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0;
    z-index: 2;
  }
}
.page-home .cta-section .book-area {
  flex-direction: column;
}
@media (min-width: 1280px) {
  .page-home .cta-section .book-area {
    z-index: 4 !important;
  }
}
.page-home .cta-section .book-area::before {
  width: 309px !important;
  aspect-ratio: 309/434 !important;
  background-size: 100% 100% !important;
}
@media (min-width: 1280px) {
  .page-home .cta-section .book-area::before {
    width: 22rem !important;
  }
}
.page-home .cta-section .book-area::after {
  content: '';
  width: 362px;
  aspect-ratio: 362/273;
  margin: 0 -181px;
  background-image: radial-gradient(
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8) 181px,
      transparent 181px
    ),
    radial-gradient(#000, #000 181px, transparent 181px);
  background-size: 100%, 100% 42px;
  background-position: center, center 225px;
  background-position: center, center calc(100% - 10px);
  background-repeat: no-repeat;
  filter: blur(75px);
  position: absolute;
  left: 50%;
  top: 120px;
  z-index: -1;
}
@media (min-width: 1280px) {
  .page-home .cta-section .book-area::after {
    width: 25.83rem;
    margin: 0 -12.915rem;
    background-image: radial-gradient(
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.8) 12.915rem,
        transparent 12.915rem
      ),
      radial-gradient(#000, #000 12.915rem, transparent 12.915rem);
    background-size: 100%, 100% 2.96rem;
    background-position: center, center 15.96rem;
    background-position: center, center calc(100% - 0.54rem);
    top: 8.13rem;
  }
}
.page-home .cta-section .book-area .button {
  width: 240px;
  margin-top: 25px;
  font-size: 26px;
  line-height: 1;
  position: relative;
  inset: auto;
}
.page-home .cta-section .book-area .button span {
  display: inline-block;
}
@media (min-width: 1280px) {
  .page-home .cta-section .book-area .button {
    width: 17.08rem;
    margin-top: 1.67rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 1279.98px) {
  .page-home .cta-section .backgrounds {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
}
@media (max-width: 1279.98px) and (min-width: 768px) {
  .page-home .cta-section .backgrounds {
    top: 40px;
  }
}
@media (max-width: 1279.98px) {
  .page-home .cta-section .backgrounds::before,
  .page-home .cta-section .backgrounds::after {
    content: '';
    display: block;
    position: absolute;
    aspect-ratio: 1010/741;
    background: url('../images/fern.png') center/contain no-repeat;
    z-index: 1;
  }
  .page-home .cta-section .backgrounds::before {
    height: 180px;
    transform: scaleX(-1);
    top: 120px;
    right: 67.5%;
  }
  .page-home .cta-section .backgrounds::after {
    height: 265px;
    top: 65px;
    left: 66.25%;
  }
}
@media (min-width: 1280px) {
  .page-home .cta-section .backgrounds {
    position: absolute;
    inset: 0;
    top: 0.42rem;
  }
  .page-home .cta-section .backgrounds::before,
  .page-home .cta-section .backgrounds::after {
    content: '';
    display: block;
    position: absolute;
    aspect-ratio: 1010/741;
    background: url('../images/fern.png') center/contain no-repeat;
    z-index: 1;
  }
  .page-home .cta-section .backgrounds::before {
    height: 28.96rem;
    transform: scaleX(-1);
    bottom: -8.13rem;
    right: calc(50% + 15.21rem);
  }
  .page-home .cta-section .backgrounds::after {
    height: 28.96rem;
    bottom: -7.71rem;
    left: calc(50% + 16.25rem);
  }
}
.page-home .cta-section .backgrounds .grass {
  width: 308px;
  aspect-ratio: 790/732;
  background: url('../images/grass-hut.png') center/contain no-repeat;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.6));
  position: absolute;
  top: -70px;
  left: 62.5%;
}
@media (min-width: 1280px) {
  .page-home .cta-section .backgrounds .grass {
    width: 30.63rem;
    filter: drop-shadow(0 0 1.25rem rgba(0, 0, 0, 0.6));
    top: 7.92rem;
    left: calc(50% + 15.83rem);
  }
}
.page-home .cta-section .backgrounds .shield {
  width: 195px;
  aspect-ratio: 630/1052;
  background: url('../images/african-tribal-shield.png') center/100% 100%
    no-repeat;
  transform: rotate(-12.73deg);
  filter: drop-shadow(0 0 75px rgba(0, 0, 0, 0.6));
  position: absolute;
  top: -55px;
  right: 70%;
}
@media (min-width: 1280px) {
  .page-home .cta-section .backgrounds .shield {
    width: 25rem;
    filter: drop-shadow(0 0 3.13rem rgba(0, 0, 0, 0.6));
    top: 0;
    right: calc(50% + 490px);
  }
}
.page-home .site-footer {
  margin-top: -1px;
}
@media (min-width: 1280px) {
  .page-home .site-bg {
    left: -1%;
  }
  .page-home .site-bg::before,
  .page-home .site-bg::after {
    display: none;
  }
  .page-home .site-bg > video {
    height: 120%;
  }
}

.skye-text {
  font-family: 'Bree Serif';
}

.photo-column {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  list-style-type: none;
}




@media (max-width: 789px) {
  .photo-column li {
    width: 100%;
   
  }
  .photo-column {
    display: contents;
    text-align: center;
  }
}