/*******************************************************************************************
GENERAL - Top-level styling
*******************************************************************************************/
:root {
  font-size: 17px;

  /* Brand Colors */
  --dtl-navy: #0D1233;
  --dtl-white: #FFFFFF;
  --dtl-yellow: #FFF100;
  --dtl-sky: #BDCDEB;
  --dtl-soft-yellow: #FFF991;
  --dtl-grey: #B9B9B9;
  --dtl-light: #EDF1F5;
  --dtl-charcoal: #3A3A3C;

  /* Semantic tokens */
  --color-bg: var(--dtl-white);
  --color-surface-alt: var(--dtl-grey);
  --color-text: var(--dtl-navy);
  --color-text-strong: var(--dtl-navy);
  --color-text-muted: var(--dtl-charcoal);
  --color-primary: var(--dtl-navy);
  --color-accent: var(--dtl-yellow);

  /* Legacy mappings for compatibility */
  --form-color: var(--dtl-charcoal);

  /* Layout */
  --gutter-size: 30px;

  /* Aileron Alternative */
  --font-display: "Montserrat", sans-serif;
  /* Myrid Semi-Extended Alternative */
  --font-body: "Source Sans 3", sans-serif;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  display: block !important;
  line-height: 1.6;
  color: var(--color-text);
  font-size: 1.0rem;
  font-family: var(--font-body);
  margin: 0;
}

.banner {
  height: 225px;
  position: relative;
}

.banner,
.banner-xl {
  margin-top: 65px;
}

.banner-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.banner>.row {
  height: 100%;
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  float: none;
}

.banner-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0;
}

.padded-content,
.main-inner {
  padding: 35px 0;
}

@media screen and (min-width: 1025px) {

  .padded-content,
  .main-inner {
    padding: 55px 0;
  }

  .banner {
    height: 350px;
  }

  .banner,
  .banner-xl {
    margin-top: 90px;
  }

  .banner-title {
    font-size: 3.4rem;
  }
}



.fas,
.fab {
  font-family: 'Font Awesome 6 Pro';
}

*:focus {
  outline: auto;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

/* GENERAL > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 30px;
  color: var(--color-text-strong);
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 4.2857rem
}

h2 {
  font-size: 1.9rem
}

h3 {
  font-size: 1.6rem
}

h4 {
  font-size: 1.2rem;
}

h5,
h6 {
  font-size: 1.1rem
}

p {
  margin: 0 0 30px;
  font-size: 1rem;
  color: var(--color-text);
  font-family: var(--font-body);
}

/* GENERAL > Lists */

ol,
ul {
  margin: 0 0 35px 0;
  padding: 0;
  list-style-position: inside;
}

ol {
  list-style-position: outside;
  padding-left: 20px;
}

.content ul,
.lp-content ul {
  list-style: none;
}

ul.has-before li,
.content ol ul li,
.content li,
.lp-content ol ul li,
.lp-content li {
  font-size: 1rem;
  padding: 0 0 0 20px;
  position: relative;
}

.content ol li,
.lp-content ol li {
  padding-left: 0;
}

.content ul li::before,
ul.has-before li::before,
.lp-content ul li::before {
  position: absolute;
  left: 0;
  content: "\f105";
  color: var(--color-accent);
}

ul.has-before li::before,
.content ul li::before,
.sidebar section ul li::before,
.lp-content ul li::before {
  font-family: "Font Awesome 6 Pro";
}

.content ul ul,
.content ol ol,
.content ol ul,
.lp-content ul ul,
.lp-content ol ol,
.lp-content ol ul {
  margin-left: 20px;
}


hr {
  background: var(--color-primary);
  width: 20%;
  height: 5px;
  display: block;
  border: none;
  margin: 40px 0;
}

figure {
  margin: 0;
}

address {
  font-style: normal;
}

/* GENERAL > Links and Buttons */
a {
  color: var(--color-primary);
  text-decoration: underline;
}

a:hover,
a:focus {
  color: var(--color-text-strong);
  text-decoration: none;
}

a.no-underline {
  text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
  text-decoration: underline;
}

a,
button,
.button {
  -webkit-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
  -o-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
  transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button {
  font-family: var(--font-display);
  font-size: 1.0rem;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  margin: 0;
  border-radius: 0;
  padding: 12px 25px;
  text-align: center;
  display: inline-block;
  color: var(--dtl-navy);
  font-weight: 700;
  background-color: var(--color-accent);
  text-decoration: none;
}

button:active,
.button:active {
  transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  background-color: var(--color-primary);
  color: var(--dtl-white);
}

/* GENERAL > Form and Inputs */
input,
select,
textarea {
  color: var(--dtl-white);
  border: 1px solid var(--dtl-white);
  border-radius: 3px;
  background: none;
  font-size: 0.9rem;
  line-height: 1.0;
  font-family: var(--font-body);
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  width: 100%;
  padding: 0 15px;
  height: 45px;
}

input[type="radio"] {
  width: 20px;
  margin-right: 5px;
}

input::placeholder,
textarea::placeholder {
  color: var(--dtl-white);
}

form .radio-flex label {
  margin-right: 15px;
}

.sidebar input,
.sidebar textarea {
  background-color: var(--color-surface-alt);
}

textarea {
  resize: none;
  min-height: 90px;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.2;
}

form legend,
form label,
form p {
  font-size: 0.9rem;
}

.gform_wrapper label {
  border: none !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

legend,
label {
  color: var(--color-surface-alt);
}

fieldset {
  padding: 0;
  border: none;
  margin: 0;
}

label {
  position: absolute;
  top: 9px;
  left: 0;
  padding-left: 10px;
  pointer-events: none;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

input:focus:not([type='checkbox'])~label,
textarea:focus~label,
input.active~label,
textarea.active~label,
select.active~label,
input:not(:placeholder-shown)~label,
textarea:not(:placeholder-shown)~label {
  padding-left: 0;
  line-height: 0;
  display: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--dtl-white);
}

.form-input-group,
.gfield {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 11px;
  text-align: left;
}

.ginput_counter {
  display: none;
}

.form-input-group.button-container {
  margin-bottom: 0;
}

input.has-error {
  border: 1px solid #ff0000 !important;
  -webkit-box-shadow: 0 0 2px #ff0000 !important;
  box-shadow: 0 0 2px #ff0000 !important;
}

p.error-text {
  color: #ff0000;
  margin: 0;
  font-size: 0.7rem;
  -webkit-animation: fadeIn 125ms both;
  animation: fadeIn 125ms both;
}

.grecaptcha-badge {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

select::-ms-expand {
  display: none;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper:after {
  content: "\f0dc";
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 45px;
  line-height: 45px;
  color: var(--color-primary);
  pointer-events: none;
  -webkit-transition: all 200ms ease-out;
  -moz-transition: all 200ms ease-out;
  -ms-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.select-wrapper.active:after {
  background: var(--color-primary);
  color: var(--dtl-white);
}

/* GENERAL > Skip To Content */
#skiptocontent {
  padding: 6px;
  z-index: 10;
  position: fixed;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
  opacity: 0;
  background-color: var(--color-primary);
  color: var(--dtl-white);
  border-radius: 0 0 8px 0;
  -webkit-transition: all 200ms ease-out;
  -moz-transition: all 200ms ease-out;
  -ms-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

#skiptocontent:focus {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

@media only screen and (max-width: 640px) {
  #skiptocontent {
    display: none !important;
  }
}

/* GENERAL > Layout */

.columns,
.column {
  float: left;
  padding: 0 30px;
  width: 100%;
}

.full-width {
  width: 100%;
}

.sidebar {
  clear: both;
  float: none;
}

.small-12 {
  width: 100%;
}

.small-11 {
  width: 91.67%;
}

.small-10 {
  width: 83.34%;
}

.small-9 {
  width: 75%;
}

.small-8 {
  width: 66.67%;
}

.small-7 {
  width: 58.34%;
}

.small-6 {
  width: 50%;
}

.small-5 {
  width: 41.66%;
}

.small-4 {
  width: 33.33%;
}

.small-3 {
  width: 25%;
}

.small-2 {
  width: 16.66%;
}

.small-1 {
  width: 8.33%;
}

@media (min-width: 768px) {
  .medium-12 {
    width: 100%;
  }

  .medium-11 {
    width: 91.67%;
  }

  .medium-10 {
    width: 83.34%;
  }

  .medium-9 {
    width: 75%;
  }

  .medium-8 {
    width: 66.67%;
  }

  .medium-7 {
    width: 58.33%;
  }

  .medium-6 {
    width: 50%;
  }

  .medium-5 {
    width: 41.67%;
  }

  .medium-4 {
    width: 33.33%;
  }

  .medium-3 {
    width: 25%;
  }

  .medium-2 {
    width: 16.66%;
  }

  .medium-1 {
    width: 8.33%;
  }

  .hide-for-medium {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .large-12 {
    width: 100%;
  }

  .large-11 {
    width: 91.67%;
  }

  .large-10 {
    width: 83.34%;
  }

  .large-9 {
    width: 75%;
  }

  .large-8 {
    width: 66.67%;
  }

  .large-7 {
    width: 58.33%;
  }

  .large-6 {
    width: 50%;
  }

  .large-5 {
    width: 41.67%;
  }

  .large-4 {
    width: 33.33%;
  }

  .large-3 {
    width: 25%;
  }

  .large-2 {
    width: 16.66%;
  }

  .large-1 {
    width: 8.33%;
  }

  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0px),
screen and (min-width: 768px) {
  .show-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px),
screen and (min-width: 1025px) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .show-for-large {
    display: none !important;
  }
}

/* GENERAL > Utility Classes */

.no-border-radius {
  border-radius: 0;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.height-auto {
  height: auto;
}

.max-width-100 {
  max-width: 100%;
}

.lazy-img {
  height: auto;
  max-width: 100%;
}

.lazy-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.no-repeat {
  background-repeat: no-repeat;
}

.background-cover {
  background-position: cover;
}

.italic {
  font-style: italic;
}

.row,
.row-736,
.row-820 {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.row-736 {
  max-width: 736px;
}

.row-820 {
  max-width: 820px;
}

.row:after {
  clear: both;
}

.row:after,
.row:before {
  display: table;
  content: ' ';
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1;
}

@media screen and (min-width: 768px) {
  .row-extra-narrow {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1025px) {
  .row-narrow {
    width: 70%;
    margin: 0 auto;
  }

  .row-extra-narrow {
    width: 55%;
  }
}

.no-float {
  float: none;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0;
}

.no-min-height {
  min-height: 0;
}

.center,
.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.hide {
  display: none;
}

.visually-hidden {
  border: none !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.flex-container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.flex-align-vertical {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-align-horizontal {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  text-align: center;
}

.buttons-container>* {
  margin-right: 1%;
}

.buttons-container>*:last-child {
  margin-right: 0;
}

.small-text {
  font-size: 0.9rem;
}

.add-margin-top {
  margin-top: 40px;
}

.small-margin-left {
  margin-left: 8px;
}

.small-margin-right {
  margin-right: 8px;
}

.opacity0 {
  opacity: 0;
}

.opacity1 {
  opacity: 1 !important;
}

.background-cover {
  background-size: cover;
  background-repeat: no-repeat;
}

.background-transparent {
  background: transparent;
}

.light-text h1,
.light-text h2,
.light-text h3,
.light-text p,
.light-text span,
.light-text li {
  color: var(--dtl-white);
}

/* ───────────────────────── Header / nav ───────────────────────── */
.site-header {
  /* position: absolute; */
  left: 7px;
  top: 21px;
  width: 1253px;
  height: 130px;
  z-index: 20;
}

.logo {
  /* position: absolute; */
  left: 0;
  top: 0;
  width: 242px;
  height: 84px;
  object-fit: contain;
  object-position: left center;
}

.header-utility {
  /* position: absolute; */
  top: 13px;
  right: 232px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--dtl-yellow);
  white-space: nowrap;
}

.header-utility .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--dtl-yellow);
}

/* .scrolled .header-utility .dot {
  background-color: var(--dtl-navy);
} */

.phone-btn {
  /* position: absolute; */
  right: 0;
  top: 0;
  width: 200px;
  height: 45px;
  border-radius: 5px;
  background-color: var(--dtl-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--dtl-navy);
  font-family: var(--font-display);
  text-decoration: none;
  white-space: nowrap;
}

.phone-btn span {
  font-size: 20px !important;
}

.phone-btn:hover,
.phone-btn:focus {
  background-color: var(--dtl-white);
  color: var(--dtl-navy);
}

/* .scrolled .phone-btn:hover,
.scrolled .phone-btn:focus {
  background-color: var(--dtl-navy);
} */

/* .scrolled .phone-btn:hover span,
.scrolled .phone-btn:focus span,
.scrolled .phone-btn:hover i,
.scrolled .phone-btn:focus i {
  color: var(--dtl-white);
} */

.phone-btn .fa-phone {
  font-size: 15px;
  transform: rotate(45deg);
}

.main-nav {
  /* position: absolute; */
  right: 0;
  top: 63px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav>li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--dtl-white);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--dtl-yellow);
  text-decoration: underline;
}

.main-nav>li:not(:first-child)::before {
  content: "";
  width: 0;
  height: 16px;
  border-left: 2px solid var(--dtl-yellow);
  flex: 0 0 auto;
}

.scrolled .main-nav>li:not(:first-child)::before {
  border-left: 2px solid var(--dtl-yellow);
}

@media screen and (min-width: 1281px) {

  .main-nav,
  .main-nav>li {
    gap: 8px;
  }

  .main-nav a {
    font-size: 16px;
  }
}

@media screen and (min-width: 1400px) {

  .main-nav,
  .main-nav>li {
    gap: 14px;
  }

  .main-nav a {
    font-size: 18px;
  }
}

/* MENUS > Mobile Menu */
#mobile-navigation {
  z-index: 100;
  position: fixed;
  top: 0;
  background-color: var(--color-primary);
  overflow: auto;
}

#mobile-navigation.active {
  -webkit-animation: fadeInRight 400ms cubic-bezier(0.87, 0, 0.13, 1);
  animation: fadeInRight 400ms cubic-bezier(0.87, 0, 0.13, 1);
  display: block;
}

#mobile-navigation {
  width: 100%;
  height: 100vh;
}

.mobile-navigation-top-inner {
  align-items: center;
  padding: 12px;
  background: var(--color-primary);
  display: none;
}

.mobile-navigation-top-inner img {
  max-width: 70%;
  height: auto;
}

#mobile-navigation.active .mobile-navigation-top-inner {
  display: flex !important;
}

#mobile-navigation a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  font-size: 1.2rem;
  color: white;
  padding: 8px var(--gutter-size);
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
  color: var(--color-primary);
  background: var(--dtl-white);
}

#mobile-navigation ul {
  margin: 0;
}

#mobile-navigation ul li {
  padding: 0;
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--dtl-light);
}

.mobile-menu-accordion #mobile-navigation .sub-menu li {
  border-bottom: none;
}

.mobile-menu-accordion #mobile-navigation .sub-menu a {
  padding-left: calc(var(--gutter-size) * 1.5);
}

#mobile-navigation ul li:last-of-type {
  border: none;
}

#mobile-navigation ul li::before {
  display: none;
}

#mobile-navigation .sub-menu {
  margin: 0;
  background-color: var(--color-primary);
  z-index: 1;
  overflow: auto;
  display: none;
  width: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#mobile-navigation ul li.sub-menu-open>.sub-menu {
  display: block;
}

#mobile-navigation .menu-item-has-children>a::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
}

#mobile-navigation .sub-menu-open.menu-item-has-children>a::after {
  content: "\f0d8";
}

.mobile-navigation-close {
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  margin-left: auto;
  background-color: var(--dtl-yellow);
  color: var(--color-primary);
  font-size: 1.3rem;
}

.mobile-navigation-close:focus,
.mobile-navigation-close:hover {
  color: var(--color-accent);
}

.mobile-navigation-previous {
  margin-bottom: 10px;
  border: none !important;
}

@media screen and (min-width: 1025px) {
  #mobile-navigation {
    display: none;
  }

  .mobile-navigation-top-inner {
    display: none;
  }
}

/* MENUS > Mobile Menu Paged */
.mobile-menu-paged #mobile-navigation .sub-menu {
  height: 100vh;
}

.mobile-menu-paged #mobile-navigation .menu-item-has-children>a::after {
  content: "\f105";
}

.mobile-menu-paged #mobile-navigation a {
  padding-left: var(--gutter-size);
}

.mobile-menu-paged #mobile-navigation ul li.sub-menu-open>.sub-menu {
  -webkit-animation: fadeInRight 300ms ease-out;
  animation: fadeInRight 300ms ease-out;
}

.mobile-menu-paged #mobile-navigation .sub-menu {
  position: fixed;
  top: 0;
}

/* MENUS > Mobile Menu */
#mobile-navigation {
  display: none;
}

.header-mobile-inner {
  display: flex;
  min-height: 70px;
}

.header-mobile-buttons {
  display: flex;
  margin-left: 4%;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-right: calc(var(--gutter-size) * 0.5);
}

.header-mobile-buttons a,
.header-mobile-buttons button {
  display: flex;
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  flex: 1;
  max-width: 40px;
  width: 40px;
  height: 40px;
}

.header-mobile-buttons a:first-child,
.header-mobile-buttons button:first-child {
  margin-right: 5px;
}

@media screen and (min-width: 1025px) {
  .header-mobile {
    display: none;
  }
}

/*******************************************************************************************
HEADER
*******************************************************************************************/

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  padding: 20px 0;
  left: 0;
}

body.scrolled .header {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.22);
  background-color: var(--dtl-navy);
}

body.search-open .header {
  position: relative;
}

.header>.row {
  height: 100%;
}

.header a {
  text-decoration: none;
}

.header-desktop {
  display: none;
}

@media screen and (min-width: 1025px) {
  .header-mobile {
    display: none;
  }

  .header-desktop {
    display: block;
  }

  .header-logo {
    padding: 8px 0;
  }
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  margin: 0 auto;
  display: block;
  height: auto;
  padding: 5px 0;
  max-width: 100%;
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
  margin: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-navigation-menu li {
  display: block;
  position: relative;
  padding: 0;
}

.main-navigation-menu>li {
  padding: 0 18px 18px 0;
  margin-right: 18px;
}

.main-navigation-menu>li:after {
  height: 14px;
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 2px;
  background: var(--color-surface-alt);
}

.main-navigation-menu>li:last-of-type {
  margin-right: 0;
}

.main-navigation-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  width: 200px;
  margin: 0;
}

#mega-menu.mega-menu-open,
.main-navigation-menu>a:hover+.sub-menu,
.main-navigation-menu>a:focus+.sub-menu,
.main-navigation-menu>li.active>.sub-menu {
  display: block;
  -webkit-animation: menuSlideDown 200ms both;
  animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover>a {
  color: var(--color-text-strong);
}

.main-navigation-menu>li>a {
  text-transform: uppercase;
  display: block;
  height: 100%;
  color: var(--color-primary);
  line-height: 1.0;
}

@media screen and (min-width: 1200px) {
  .main-navigation-menu>li {
    padding-right: 25px;
    margin-right: 22px;
  }
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li {
  position: relative;
  background-color: var(--color-primary);
}

#mega-menu li a,
#desktop-navigation .sub-menu li a {
  color: var(--dtl-white);
  font-size: 0.9rem;
  display: block;
  padding: 12px;
  line-height: 1.0;
}

#mega-menu a:hover,
#mega-menu a:focus,
#desktop-navigation .sub-menu a:hover,
#desktop-navigation .sub-menu a:focus {
  background: var(--color-accent);
  color: var(--dtl-navy);
}

#desktop-navigation .sub-menu .menu-item-has-children>a:after {
  content: "\f0da";
  font-family: 'Font Awesome 6 Pro';
  position: absolute;
  right: 10px;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
  position: absolute;
  left: 100%;
  top: 0;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active>.sub-menu {
  display: block;
  -webkit-animation: menuSlideRight 200ms both;
  animation: menuSlideRight 200ms both;
}


/*******************************************************************************************
FOOTER - Footer styles shared between modules
*******************************************************************************************/

footer {
  min-height: 520px;
  background: var(--dtl-charcoal);
  padding: 100px 0 0;
}

@media screen and (min-width:1025px) {
  footer {
    padding: 100px 0 0;
  }
}

footer .columns {
  width: 100%;
}

footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}

footer .footer-right {
  text-align: center;
  width: 100%;
}

.footer-right iframe {
  max-width: 100%;
}

@media screen and (min-width:1025px) {
  footer .footer-top {
    flex-direction: row;
  }
}

footer .footer-left {
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  footer .footer-left {
    margin-right: 110px;
  }
}

footer .footer-left h2,
footer .footer-left p,
footer .footer-phone a {
  color: var(--dtl-white);
  text-decoration: none;
}

footer .footer-top .footer-phone a:hover,
footer .footer-phone a:focus {
  color: var(--dtl-white);
}

footer .footer-left h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: .6px;
  line-height: 35px;
}

@media screen and (min-width: 1025px) {
  footer .footer-left h2 {
    font-size: 36px;
    letter-spacing: .72px;
    line-height: 45px;
    margin-bottom: 20px;
  }
}

footer .footer-top .footer-phone {
  font-weight: 700;
  font-size: 1.667rem;
  color: var(--color-accent);
}

.footer-phone-label {
  display: none;
}

@media screen and (min-width: 580px) {
  .footer-phone-label {
    display: inline;
  }
}

footer .footer-top .footer-phone a {
  color: var(--color-accent);
}

footer .footer-top .footer-phone a:hover,
footer .footer-top .footer-phone a:focus {
  color: var(--dtl-white);
  text-decoration: underline;
}

.footer-bottom p {
  text-align: center;
  color: var(--dtl-white);
  font-size: 14px;
}

.social-icons {
  margin: 15px 0;
}

.social-icons a {
  color: var(--dtl-white);
  font-size: 1.5rem;
  margin: 0 10px;
}


/* HOME HERO AND/OR SLIDER */
.home-hero-height-sync {
  height: 400px;
}

.home-hero {
  margin-top: 80px;
}

.home-hero,
.home-hero-inner {
  position: relative;
}

.home-hero-image-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.home-hero-image-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: 50%;
}

.home-hero-form {
  display: none;
}

.home-hero-form-row {
  display: flex;
  justify-content: flex-end;
}

.home-hero-content h1 {
  font-size: 1.6rem;
  color: var(--dtl-white);
}

.home-hero-content p {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 0;
}

.home-hero-form .contact-form-heading {
  color: var(--color-accent);
  font-size: 1.6667rem;
  font-weight: 700;
  padding: 40px 0 0;
  margin-bottom: 5px;
}

.home-hero-form .contact-form-heading,
.contact-form-subheading {
  text-align: center;
}

.contact-form-subheading {
  font-size: .8889rem;
  color: var(--dtl-white);
  margin-bottom: 17px;
}

.form-container {
  padding: 0 32px 40px;
}

.home-hero-form-container,
.home-hero-form-inner,
.home-hero-form-container .row,
.home-hero-form-container .columns {
  height: 100%;
}

.home-hero-form-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-hero-form-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media screen and (min-width: 640px) {

  .home-hero-height-sync,
  .home-hero {
    height: 600px;
  }
}

@media screen and (min-width: 768px) {
  .home-hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.1;
  }
}

@media screen and (min-width: 1025px) {
  .home-hero {
    margin-top: 90px;
  }

  .home-hero-inner {
    display: block;
  }

  .home-hero-height-sync {
    height: 560px;
  }

  .home-hero-form {
    display: block;
  }

  .home-hero-form-inner {
    align-items: center;
    justify-content: space-between;
  }

  .home-hero-form .contact-form-heading {
    /* font-size: 1.3333rem; */
    font-size: 1.2rem;
  }

  .home-hero-form form button {
    width: 100%;
  }

  .home-hero-form {
    padding: 0;
    background: var(--form-color);
  }

  .home-hero .home-hero-form {
    max-width: 360px;
  }

  .home-hero-content {
    max-width: 450px;
  }

  .home-hero-content p {
    background-color: var(--color-text);
    padding: 20px;
    font-size: 1.2rem;
    line-height: 30px;
  }
}

@media screen and (min-width: 1281px) {

  .home-hero-height-sync,
  .home-hero {
    height: 600px;
  }
}

/* Hero Banner */

.lp-hero {
  --lp-hero-form-dip: 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--dtl-navy);
}

.lp-hero-photo {
  position: absolute;
  inset: 0;
  display: block;
}

.lp-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  object-position: center bottom;
}

/* .lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(13, 18, 51, 0.78) 0%, rgba(13, 18, 51, 0.52) 38%, rgba(13, 18, 51, 0.97) 100%);
} */

.lp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 180px 20px 48px;
}

.lp-hero-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--dtl-white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.lp-hero-subbox {
  background-color: var(--dtl-navy);
  margin-bottom: 24px;
  padding: 20px 30px;
}

.lp-hero-subbox p,
.lp-hero-subbox li {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--dtl-yellow);
  margin: 0 0 20px;
}

.lp-hero-subbox ul:last-child,
.lp-hero-subbox ol:last-child,
.lp-hero-subbox p:last-child {
  margin-bottom: 0;
}

.lp-hero-subbox li {
  padding: 0;
  margin: 0;
}

.lp-hero-form .form-container {
  background-color: var(--dtl-yellow);
  border-radius: 5px;
  /* padding: 28px 24px 32px; */
  padding: 40px;
}

.lp-hero-form .contact-form-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7647rem;
  text-align: center;
  color: var(--dtl-navy);
  margin-bottom: 6px;
}

.lp-hero-form .contact-form-subheading {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--dtl-navy);
  margin-bottom: 18px;
  text-wrap: pretty;
}

.lp-hero-form input,
.lp-hero-form textarea {
  color: var(--dtl-navy);
  border: none;
  border-bottom: 1px solid var(--dtl-navy);
  border-radius: 0;
  background: transparent;
  padding: 0 0 6px;
}

.lp-hero-form input::placeholder,
.lp-hero-form textarea::placeholder {
  color: var(--dtl-navy);
  opacity: 1;
}

.lp-hero-form button,
.lp-hero-form input[type="submit"] {
  width: 100%;
  background-color: var(--dtl-navy);
  color: var(--dtl-yellow);
  border: none;
  border-radius: 5px;
  line-height: 1;
  padding: 0;
  height: 60px;
}

.lp-hero-form button:hover,
.lp-hero-form button:focus-visible,
.lp-hero-form input[type="submit"]:hover,
.lp-hero-form input[type="submit"]:focus-visible {
  background-color: var(--dtl-charcoal);
  color: var(--dtl-yellow);
}

@media screen and (min-width: 768px) {
  .lp-hero-heading {
    font-size: 3rem;
  }

  .lp-hero-subbox p {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1025px) {
  .lp-hero {
    overflow: visible;
    margin-bottom: var(--lp-hero-form-dip);
  }

  .lp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 376px;
    gap: 48px;
    align-items: start;
    padding: 180px 20px 72px;
    padding: 180px 20px 0;
    min-height: 560px;
  }

  .lp-hero-heading {
    grid-column: 1;
    align-self: start;
    max-width: 662px;
    font-size: 3.4375rem;
    line-height: 1.15;
    margin-top: 40px;
  }

  .lp-hero-subbox {
    grid-column: 1;
    grid-row: 2;
    max-width: 642px;
    align-self: start;
  }

  .lp-hero-form {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    position: relative;
    z-index: 3;
    margin-bottom: calc(-1 * var(--lp-hero-form-dip));
  }
}

/* Stats */

.stats {
  padding-top: 30px;
  overflow: hidden;
}

.stats-holder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.single-stats {
  display: grid;
  grid-template-columns: 37fr 63fr;
  grid-template-columns: auto 1fr;
}

.stats-info {
  background-color: var(--dtl-yellow);
  padding: 13px 25px;
  line-height: 21px;
  color: #0D1233;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.34px;
  text-transform: uppercase;
  border-radius: 0 5px 5px 0;
}

.stats-info p {
  margin-bottom: 0;
}

.stats-number {
  justify-content: center;
  background-color: var(--color-primary);
  position: relative;
  width: 130px;
  border-radius: 5px 0 0 5px;
}

.stats-number::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--color-primary);
  height: 12px;
  width: 12px;
}

.stats-number h3 {
  color: var(--dtl-white);
  margin-bottom: 0;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;

  color: var(--dtl-yellow);
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 900;
  line-height: 28.56px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

@media screen and (min-width: 980px) {
  .stats-number h3 {
    font-size: 1.3333rem;
  }
}

.stats-number,
.stats-info {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .stats-info {
    padding: 20px 25px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1025px) {
  .stats {
    padding-top: 40px;
  }

  .stats-holder {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 40px;
  }

  .stats-info {
    padding: 13px 25px;
  }

  .stats-number h3 {
    font-size: 1.4rem;
  }

  .stats-number {
    width: 116px;
  }

}

@media screen and (min-width: 1281px) {
  .stats {
    padding-top: 33px;
  }
}

/*******************************************************************************************
MODULES - General module styling; see separate stylesheets for individual modules
*******************************************************************************************/
.module-header-b-lower {
  background: var(--color-primary);
}

.module-header-b-lower-inner {
  padding: 0 15px;
}

.module-header-b .main-navigation-menu>li {
  padding: 15px 0;
  margin-right: 0;
}

.module-header-b .main-navigation-menu>li:after {
  display: none;
}

.module-header-b .main-navigation-menu>li>a {
  color: var(--dtl-white);
}

.module-header-b .main-navigation-menu a:focus,
.module-header-b .main-navigation-menu a:hover,
.module-header-b .main-navigation-menu li:hover>a {
  color: var(--color-accent);
}

.module-header-b #desktop-navigation .sub-menu li {
  background: var(--dtl-charcoal);
}

.module-header-b #mega-menu a:hover,
.module-header-b #mega-menu a:focus,
.module-header-b #desktop-navigation .sub-menu a:hover,
.module-header-b #desktop-navigation .sub-menu a:focus {
  background: var(--color-accent);
  color: var(--dtl-navy);
}

.module-header-b-upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  height: 80px;
}

.module-header-b-phone {
  font-size: 2.2222rem;
  background: var(--color-primary);
  color: var(--dtl-white);
  font-size: 1rem;
  height: 45px;
  width: 45px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-header-b-phone span {
  display: none;
  -webkit-transition: color 200ms ease-out;
  -moz-transition: color 200ms ease-out;
  -ms-transition: color 200ms ease-out;
  -o-transition: color 200ms ease-out;
  transition: color 200ms ease-out;
}

.module-header-b-phone:hover span,
.module-header-b-phone:focus span {
  color: var(--color-accent);
  text-decoration: underline;
}

.module-contact-block-a {
  padding-top: 30px;
}

.module-contact-block-a-info {
  background: var(--dtl-sky);
  padding: 40px 20px;
}

.module-header-b-upper-side {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.module-header-b-upper-side a,
.module-header-b-upper-side span {
  font-weight: 700;
}

.module-header-b-upper-side span {
  color: var(--dtl-yellow);
  display: none;
  font-size: 1.1rem;
  text-transform: uppercase
}

.module-header-b-upper-side a span {
  color: var(--dtl-navy);
}

/* .scrolled .module-header-b-upper-side span {
  color: var(--dtl-navy);
} */

.module-header-b-upper-side .button {
  padding: 12px 16px;
  font-size: 1rem;
}

@media screen and (min-width: 500px) {
  .header-logo img {
    height: auto;
  }

  .module-contact-block-a-info {
    padding: 50px;
  }
}

@media screen and (max-width: 620px) {
  .header-logo img {
    max-width: 230px;
  }
}


@media screen and (min-width: 1025px) {
  .module-header-b-phone {
    margin-right: 20px;
    display: inline-block;
    height: auto;
    width: auto;
    background: none;
    color: var(--color-primary);
    font-size: 2.2222rem;
  }

  .module-header-b-phone span {
    font-size: 2.2222rem;
    display: inline-block;
  }

  .module-header-b-upper-side span {
    display: inline-block;
  }

  .module-header-b-upper {
    height: 90px;
  }
}

/*******************************************************************************************
PRINT - Specific styles for when pages are printed
*******************************************************************************************/
@media print {
  .header {
    top: 0;
    border: none;
    height: auto;
  }
}



/*VIDEO SECTION*/

.lp-content-block h2 {
  text-align: center;
}

.lp-content-block .column {
  margin: 30px auto;
}

@media screen and (min-width: 1025px) {
  .lp-content-block .column {
    margin: 50px auto;
  }
}

.lp-content-block-inner {
  margin: 0 auto;
}

.lp-content-block-inner p:last-of-type {
  margin-bottom: 0;
}


.lp-content-block-inner img {
  max-width: 100%;
  margin-bottom: 30px;
  height: auto;
}

.lp-content-block .button {
  background: var(--color-accent);
  color: var(--dtl-navy);
}

.lp-content-block .button:hover,
.lp-content-block .button:focus {
  background: var(--color-primary);
  color: var(--dtl-white);
}

/*BADGES*/

.module-badges-b-grid {
  display: none;
}

.module-badges-b-slider {
  margin: 50px auto 25px;
}

.module-badges-b-slide {
  text-align: center;
}

.module-badges-b-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
}

.module-badges-b-swiper {
  padding-bottom: 10px;
}

.module-badges-b-swiper .swiper-wrapper {
  align-items: center;
}

.module-badges-b-prev,
.module-badges-b-next {
  color: var(--color-primary);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--dtl-sky) !important;
}

@media screen and (min-width: 1025px) {
  .module-badges-b-grid {
    display: block;
  }

  .module-badges-b-slider {
    display: none;
  }

  .module-badges-b-inner {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(0, max-content));
    justify-content: space-between;
    align-items: center;
    margin: 75px auto 30px;
    gap: 25px 35px;
  }

  .module-badges-b-single {
    text-align: center;
  }

  .module-badges-b-single img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
  }
}

/* Questions */

.questions {
  background-color: var(--dtl-sky);
  padding: 94px 0;
}

.questions-single {
  display: grid;
  gap: 36px;
  text-align: center;
}

.questions-single h3 {
  font-size: 30px;
  line-height: 37px;
  margin-bottom: 15px;
}

@media screen and (min-width: 1025px) {
  .questions-single h3 {
    font-size: 36px;
    line-height: 44px;
  }
}

.questions .answer {
  margin-bottom: 0;
}

.questions i {
  color: var(--color-primary);
  font-size: 2rem;
}

@media screen and (min-width: 1025px) {
  .questions-single {
    display: grid;
    grid-template-columns: fit-content(36px) 1fr;
    gap: 36px;
    text-align: left;
  }
}

/* Attorneys */
.attorneys {
  text-align: center;
  margin: 0 auto 60px;
}

.attorneys .flex-container.single-attorneys {
  flex-direction: column;
  gap: 23px;
}

.attorneys h2 {
  font-size: 2.0rem;
  margin-bottom: 40px;
}

.flex-container.atty-buttons {
  justify-content: center;
  margin: 34px auto;
  display: none;
  gap: 15px;
}

.single-attorney img {
  max-width: 100%;
}

.single-attorney h3 {
  margin-bottom: 0;
}

.atty-button {
  border-radius: 0%;
  width: 313px;
  height: 70;
  padding: 25px;
}

@media screen and (min-width: 1025px) {
  .attorneys {
    margin: 30px 0;
  }

  .flex-container.atty-buttons {
    justify-content: center;
    margin: 34px auto;
    display: flex;
  }

  .attorneys .flex-container.single-attorneys {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1281px) {
  .single-attorney {
    width: calc(25% - 32px)
  }

}


/*FOOTER*/

.footer-address p {
  margin-top: 20px;
  font-size: 22px;
  letter-spacing: .33px;
  line-height: 30px;
}

.footer-address p:first-of-type {
  margin-bottom: 0px;
}

.footer-address p:nth-of-type(2) {
  margin-top: 0px;
}

@media screen and (min-width: 1025px) {
  .footer-address p {
    font-size: 24px;
    letter-spacing: .36px;
    line-height: 35px;
  }
}

.disclaimer-text {
  display: none;
  color: var(--dtl-white);
  font-size: 13px;
  letter-spacing: .195px;
  line-height: 22px;
  margin: 25px 0;
}

.disclaimer-text a {
  color: white;
}

.disclaimer-text a:hover,
.disclaimer-text a:focus {
  color: var(--color-accent);
}

.disclaimer-text-mobile {
  display: block;
  color: var(--dtl-white);
  font-size: 13px;
  letter-spacing: .195px;
  line-height: 22px;
  margin-top: 50px;
}


@media screen and (min-width: 1025px) {
  .disclaimer-text {
    display: block;
  }

  .disclaimer-text-mobile {
    display: none;
  }
}

.footer-form {
  display: block !important;
  padding: 0;
  background: var(--form-color);
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.footer-form .form-container {
  padding-left: 0;
  padding-right: 0;
}

.footer-form .contact-form-heading {
  color: var(--color-accent);
  font-size: 1.6667rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-form .form-input-group.button-container {
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .footer-form {
    margin-left: auto;
  }
}


/* FEATURES > YouTube Player */
.youtube-player {
  position: relative;
  padding-bottom: 56.23%;
  /* Use 75% for 4:3 videos */
  height: 0;
  max-width: 100%;
  background: #000;
  margin: 20px 0 50px;
}

.youtube-player-inner {
  width: 100%;
  height: 100%;
  content: "";
  overflow: hidden;
  position: absolute;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}

.youtube-player-inner:after,
.videos-single:after {
  content: "\f144";
  font-family: 'Font Awesome 6 Pro';
  font-size: 3.5rem;
  opacity: 0.8;
  display: inline-block;
  margin: 0 auto;
  -webkit-transition: all 150ms ease-out;
  -moz-transition: all 150ms ease-out;
  -ms-transition: all 150ms ease-out;
  -o-transition: all 150ms ease-out;
  transition: all 150ms ease-out;
  color: var(--color-accent);
  pointer-events: none;
  z-index: 1;
}

.youtube-player-inner:hover:after,
.youtube-player-inner:focus:after,
.videos-single:hover:after,
.videos-single:focus:after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  color: var(--dtl-white);
  opacity: 1;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent;
}

/*******************************************************************************************
CTA BUTTON MOBILE
*******************************************************************************************/

.cta-button-mobile {
  position: sticky;
  top: 120px;
  z-index: 2;
}

/*******************************************************************************************
BUTTON ROW SECTION
*******************************************************************************************/

.lp-buttons {
  padding: 20px 0 60px;
}

.lp-buttons-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-buttons-row .button {
  font-size: 1.15rem;
  padding: 18px 30px;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 640px) {
  .lp-buttons-row {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .lp-buttons-row .button {
    flex: 1 1 0;
  }
}

/*******************************************************************************************
YOUTUBE PLAYER
*******************************************************************************************/

.youtube-player img {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  -webkit-transition: all 200ms ease-out;
  -moz-transition: all 200ms ease-out;
  -ms-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

/*******************************************************************************************
DARK FOOTER (.dark-section) - "You're Safe With Drake"
*******************************************************************************************/

.dark-section {
  position: relative;
  padding: 50px 20px 30px;
  background-color: var(--dtl-navy);
  background-image: linear-gradient(rgba(13, 18, 51, 0.35), rgba(13, 18, 51, 0.35));
  background-size: cover;
  background-position: center bottom;
  overflow: hidden;
}

.dark-section-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.dark-heading {
  margin: 0 0 27px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dtl-white);
}

.dark-heading h2 br {
  display: none;
}

.dark-heading .hl,
.dark-heading span {
  color: var(--dtl-yellow);
}

.toll-free {
  position: relative;
  width: 100%;
  text-align: right;
}

.toll-rule {
  display: block;
  /* width: 90px; */
  width: 100vw;
  height: 4px;
  /* margin: 24px 0 14px; */
  margin-right: 25px;
  background-color: var(--dtl-yellow);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.toll-free a {
  display: inline-flex;
  align-items: center;
  -webkit-box-pack: end;
  justify-content: flex-end;
  gap: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dtl-yellow);
  text-decoration: none;
  position: relative;
}

.toll-free a:hover {
  text-decoration: underline;
}

.toll-free .fas {
  font-size: 1.3rem;
}

.dark-body {
  margin: 50px 0 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.dark-section-form {
  width: 100%;
}

.dark-section-form .form-container {
  padding: 28px 28px 32px;
  border-radius: 5px;
  background-color: var(--dtl-yellow);
}

.dark-section-form .contact-form-heading {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  text-align: center;
  color: var(--dtl-navy);
}

.dark-section-form .gfield label,
.dark-section-form .gform_wrapper label {
  color: var(--dtl-navy);
}

.dark-section-form input[type="text"],
.dark-section-form input[type="email"],
.dark-section-form input[type="tel"],
.dark-section-form textarea {
  border: none;
  border-bottom: 1px solid var(--dtl-navy);
  background: transparent;
  color: var(--dtl-navy);
  border-radius: 0;
}

.dark-section-form input::placeholder,
.dark-section-form textarea::placeholder {
  color: var(--dtl-navy);
  opacity: 1;
}

.dark-section-form button,
.dark-section-form input[type="submit"] {
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: var(--dtl-navy);
  color: var(--dtl-yellow);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  height: 60px;
}

.dark-section-form button:hover,
.dark-section-form button:focus-visible,
.dark-section-form input[type="submit"]:hover,
.dark-section-form input[type="submit"]:focus-visible {
  background-color: var(--dtl-charcoal);
  color: var(--dtl-yellow);
}

.dark-copyright {
  margin: 36px 0 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--dtl-white);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.dark-copyright a {
  color: var(--dtl-white);
}

@media screen and (min-width: 768px) {
  .dark-section {
    padding: 70px 40px 36px;
  }

  .dark-heading {
    font-size: 2.6rem;
  }

  .toll-free a {
    font-size: 1.6rem;
  }

  .dark-heading h2 br {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .dark-section {
    padding: 90px 60px 40px;
  }

  .dark-section-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
  }

  .dark-section-content {
    flex: 1 1 0;
    max-width: 560px;
    max-width: 685px;
  }

  .dark-heading {
    font-size: 3.2rem;
  }

  .dark-section-form {
    flex: 0 0 376px;
    max-width: 376px;
  }

  .dark-copyright {
    text-align: left;
  }
}

/* ── Founder Content Section ── */
.lp-founder-content {
  position: relative;
  padding: 60px 20px 48px;
  /* background-color: var(--dtl-white); */
  overflow: hidden;
}

.lp-founder-content-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.lp-founder-item h3 {
  color: var(--dtl-navy);
  margin-bottom: 12px;
  font-weight: 900;
}

.lp-founder-item p {
  color: var(--dtl-navy);
  line-height: 1.6;
}

.lp-founder-divider {
  margin: 24px 0;
  height: 2px;
  background: none;
  width: 100%;
  background-color: var(--dtl-grey);
}

.lp-founder-card {
  position: relative;
  border-radius: 5px;
  /* overflow: hidden; */
  background-color: var(--dtl-navy);
  min-height: 320px;
}

.lp-founder-card::before {
  content: '';
  height: 97px;
  position: absolute;
  left: -33px;
  width: 100vw;
  background-color: var(--color-accent);
  top: 40px;
  z-index: 0;
}



.lp-founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
}

.lp-founder-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 48%, rgba(13, 18, 51, 0.9) 100%);
}

.lp-founder-card-info {
  position: absolute;
  bottom: 28px;
  left: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-founder-card-title {
  color: var(--dtl-white);
  font-style: italic;
  font-size: 1.1rem;
}

.lp-founder-card-name {
  color: var(--dtl-yellow);
  font-weight: 700;
  font-size: 1rem;
}

.lp-founder-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-founder-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 5px;
  font-size: 18px;
  font-family: var(--font-display);
  background-color: var(--dtl-navy);
  color: var(--dtl-yellow);
  text-decoration: none;
  font-weight: 900;
  transition: background-color 0.2s ease;
}

.lp-founder-cta-btn:hover,
.lp-founder-cta-btn:focus-visible {
  background-color: var(--dtl-charcoal);
  color: var(--dtl-yellow);
}

@media (min-width: 768px) {
  .lp-founder-cta-row {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .lp-founder-cta-btn {
    width: calc((100% - (40px * 2)) / 3);
  }
}

@media (min-width: 1025px) {
  .lp-founder-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100px;
    width: 54px;
    height: 97px;
    background-color: var(--dtl-yellow);
    /* z-index: -1; */
  }

  .lp-founder-content::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, #fff 0%, transparent 100%);
  }

  .lp-founder-divider {
    margin: 24px 0 43px;
  }

  .lp-founder-content-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .lp-founder-flow {
    flex: 0 0 57%;
  }

  .lp-founder-card {
    /* flex: 0 0 38%; */
    min-height: 600px;
  }
}

/* ── Victim Band ── */
.lp-victim-section {
  position: relative;
  padding: 48px 20px 0;
  /* overflow: hidden; */
  /* background-color: var(--dtl-white); */
}

.on-top {
  position: relative;
  z-index: 1;
}

.lp-victim-bg {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  object-fit: cover;
  /* height: 100%; */
  /* object-fit: cover; */
  /* object-position: center top; */
  z-index: 0;
}

.lp-victim-tab {
  position: absolute;
  height: 95px;
  background-color: var(--dtl-yellow);
}

.lp-victim-tab-left {
  left: 0;
  top: 100px;
  width: 54px;
  /* z-index: -1; */
}

.lp-victim-tab-mid {
  display: none;
  /* z-index: -1; */
}

.lp-victim-tab-right {
  right: 0;
  top: 100px;
  width: 54px;
  /* z-index: -1; */
}

.lp-victim-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-victim-photo {
  width: 100%;
  /* aspect-ratio: 1 / 1; */
  border-radius: 5px;
  overflow: hidden;
}

.lp-victim-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.lp-victim-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 50px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--dtl-navy);
}

.lp-victim-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--dtl-navy);
  margin-top: 24px;
}

@media (min-width: 1025px) {
  .lp-victim-section {
    padding: 60px 20px 48px;
  }

  .lp-victim-tab-left {
    top: 120px;
    /* width: 150px; */
    width: 47vw;
  }

  .lp-victim-tab-mid {
    display: block;
    top: 120px;
    left: 41%;
    width: 100px;
  }

  .lp-victim-tab-right {
    top: 120px;
    width: 90px;
  }

  .lp-victim-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .lp-victim-photo {
    flex: 0 0 42%;
    aspect-ratio: auto;
    /* height: 480px; */
  }

  .lp-victim-text {
    flex: 1;
    padding-top: 8px;
  }
}