@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A1A1A;
  line-height: 1.6;
  overflow-x: hidden;
  background: #0D0D0D;
}
body.no_scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
}

p {
  font-size: 16px;
  line-height: 1.75;
}

::selection {
  background: #D4842A;
  color: #FFFFFF;
}

input[type=text], input, input[type=search], input[type=email], input[type=tel], input[type=submit], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

input[type=radio] {
  -webkit-appearance: radio;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4842A;
  margin-bottom: 16px;
  display: block;
}
.eyebrow.accent {
  color: #2C5F8A;
}

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

.section-pad {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-pad {
    padding: 70px 0;
  }
}

.copy_content {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}
.copy_content p {
  margin-bottom: 14px;
}
.copy_content p:last-child {
  margin-bottom: 0;
}
.copy_content a {
  color: #2C5F8A;
  text-decoration: underline;
}
.copy_content.on_dark {
  color: rgba(255, 255, 255, 0.6);
}
.copy_content.on_dark a {
  color: #D4842A;
}

.main-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .main-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 470px) {
  .main-wrap {
    padding: 0 13px;
  }
}
@media (max-width: 380px) {
  .main-wrap {
    padding: 0 9px;
  }
}

.main-wrap-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .main-wrap-narrow {
    padding: 0 24px;
  }
}
@media (max-width: 470px) {
  .main-wrap-narrow {
    padding: 0 13px;
  }
}
@media (max-width: 380px) {
  .main-wrap-narrow {
    padding: 0 9px;
  }
}

.main-wrap-wide {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .main-wrap-wide {
    padding: 0 24px;
  }
}
@media (max-width: 470px) {
  .main-wrap-wide {
    padding: 0 13px;
  }
}
@media (max-width: 380px) {
  .main-wrap-wide {
    padding: 0 9px;
  }
}

/*
    SASS File for Gravity Forms CSS Override
    Wycliffe — dark form variant scoped to .form_box (Sec 9 CTA on home page)
*/
.form_box {
  color-scheme: dark;
}
.form_box .gform_wrapper {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
.form_box .gform_wrapper .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.form_box .gform_wrapper .gfield {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
.form_box .gform_wrapper .gfield_label,
.form_box .gform_wrapper .gform-field-label,
.form_box .gform_wrapper legend.gfield_label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.form_box .gform_wrapper .gfield_label .gfield_required,
.form_box .gform_wrapper .gform-field-label .gfield_required,
.form_box .gform_wrapper legend.gfield_label .gfield_required {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 2px;
}
.form_box .gform_wrapper .gfield_required_text,
.form_box .gform_wrapper .gfield_required-text {
  display: none !important;
}
.form_box .gform_wrapper input[type=text],
.form_box .gform_wrapper input[type=email],
.form_box .gform_wrapper input[type=tel],
.form_box .gform_wrapper input[type=url],
.form_box .gform_wrapper input[type=number],
.form_box .gform_wrapper select,
.form_box .gform_wrapper textarea {
  width: 100%;
  padding: 14px 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 4px;
  font-size: 15px !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: #FFFFFF !important;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.form_box .gform_wrapper input[type=text]::placeholder,
.form_box .gform_wrapper input[type=email]::placeholder,
.form_box .gform_wrapper input[type=tel]::placeholder,
.form_box .gform_wrapper input[type=url]::placeholder,
.form_box .gform_wrapper input[type=number]::placeholder,
.form_box .gform_wrapper select::placeholder,
.form_box .gform_wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form_box .gform_wrapper input[type=text]:focus,
.form_box .gform_wrapper input[type=email]:focus,
.form_box .gform_wrapper input[type=tel]:focus,
.form_box .gform_wrapper input[type=url]:focus,
.form_box .gform_wrapper input[type=number]:focus,
.form_box .gform_wrapper select:focus,
.form_box .gform_wrapper textarea:focus {
  outline: none;
  border-color: #D4842A !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}
.form_box .gform_wrapper .ginput_container_select {
  position: relative;
}
.form_box .gform_wrapper .wyc_select_chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}
.form_box .gform_wrapper .wyc_select_chevron img {
  width: 12px;
  height: auto;
  object-fit: contain;
  display: block;
}
.form_box .gform_wrapper select {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  line-height: 1.4 !important;
  padding: 8px 44px 8px 16px !important;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color-scheme: dark;
  accent-color: #D4842A;
  color: rgba(255, 255, 255, 0.4) !important;
}
.form_box .gform_wrapper select:has(option:not([value=""]):checked) {
  color: #FFFFFF !important;
}
.form_box .gform_wrapper select option {
  background-color: #1A1A1A;
  color: #FFFFFF;
}
.form_box .gform_wrapper textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}
.form_box .gform_wrapper .gfield_required {
  color: rgba(255, 255, 255, 0.5) !important;
}
.form_box .gform_wrapper .gfield_description {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin-top: 6px;
}
.form_box .gform_wrapper .gfield_error input,
.form_box .gform_wrapper .gfield_error select,
.form_box .gform_wrapper .gfield_error textarea {
  border-color: #d6453d !important;
  background: rgba(214, 69, 61, 0.08) !important;
}
.form_box .gform_wrapper .gfield_validation_message,
.form_box .gform_wrapper .validation_message {
  color: #f08680;
  font-size: 12px;
  margin-top: 6px;
}
.form_box .gform_wrapper .gform_validation_errors {
  background: rgba(214, 69, 61, 0.12);
  border: 1px solid rgba(214, 69, 61, 0.4);
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 18px;
  color: #f08680;
}
.form_box .gform_wrapper .gform_validation_errors h2 {
  color: #f08680;
  font-size: 14px;
  margin: 0;
}
.form_box .gform_wrapper .gform_footer,
.form_box .gform_wrapper .gform_page_footer {
  padding: 24px 0 0 !important;
  margin: 0 !important;
}
.form_box .gform_wrapper .gform_footer input[type=submit],
.form_box .gform_wrapper .gform_footer button[type=submit],
.form_box .gform_wrapper .gform_footer .gform_button,
.form_box .gform_wrapper .gform_page_footer input[type=submit],
.form_box .gform_wrapper .gform_page_footer button[type=submit],
.form_box .gform_wrapper .gform_page_footer .gform_button {
  display: block !important;
  width: 100% !important;
  padding: 18px 40px !important;
  margin: 0 !important;
  background: #D4842A !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  text-align: center !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s ease;
}
.form_box .gform_wrapper .gform_footer input[type=submit]:hover, .form_box .gform_wrapper .gform_footer input[type=submit]:focus, .form_box .gform_wrapper .gform_footer input[type=submit]:focus-visible, .form_box .gform_wrapper .gform_footer input[type=submit]:active,
.form_box .gform_wrapper .gform_footer button[type=submit]:hover,
.form_box .gform_wrapper .gform_footer button[type=submit]:focus,
.form_box .gform_wrapper .gform_footer button[type=submit]:focus-visible,
.form_box .gform_wrapper .gform_footer button[type=submit]:active,
.form_box .gform_wrapper .gform_footer .gform_button:hover,
.form_box .gform_wrapper .gform_footer .gform_button:focus,
.form_box .gform_wrapper .gform_footer .gform_button:focus-visible,
.form_box .gform_wrapper .gform_footer .gform_button:active,
.form_box .gform_wrapper .gform_page_footer input[type=submit]:hover,
.form_box .gform_wrapper .gform_page_footer input[type=submit]:focus,
.form_box .gform_wrapper .gform_page_footer input[type=submit]:focus-visible,
.form_box .gform_wrapper .gform_page_footer input[type=submit]:active,
.form_box .gform_wrapper .gform_page_footer button[type=submit]:hover,
.form_box .gform_wrapper .gform_page_footer button[type=submit]:focus,
.form_box .gform_wrapper .gform_page_footer button[type=submit]:focus-visible,
.form_box .gform_wrapper .gform_page_footer button[type=submit]:active,
.form_box .gform_wrapper .gform_page_footer .gform_button:hover,
.form_box .gform_wrapper .gform_page_footer .gform_button:focus,
.form_box .gform_wrapper .gform_page_footer .gform_button:focus-visible,
.form_box .gform_wrapper .gform_page_footer .gform_button:active {
  background: #B8701F !important;
  color: #FFFFFF !important;
  outline: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
.form_box .gform_wrapper .gform_footer input[type=submit]:hover, .form_box .gform_wrapper .gform_footer input[type=submit]:focus-visible,
.form_box .gform_wrapper .gform_footer button[type=submit]:hover,
.form_box .gform_wrapper .gform_footer button[type=submit]:focus-visible,
.form_box .gform_wrapper .gform_footer .gform_button:hover,
.form_box .gform_wrapper .gform_footer .gform_button:focus-visible,
.form_box .gform_wrapper .gform_page_footer input[type=submit]:hover,
.form_box .gform_wrapper .gform_page_footer input[type=submit]:focus-visible,
.form_box .gform_wrapper .gform_page_footer button[type=submit]:hover,
.form_box .gform_wrapper .gform_page_footer button[type=submit]:focus-visible,
.form_box .gform_wrapper .gform_page_footer .gform_button:hover,
.form_box .gform_wrapper .gform_page_footer .gform_button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 132, 42, 0.3);
}
.form_box .gform_wrapper .gform_footer .gform_ajax_spinner,
.form_box .gform_wrapper .gform_page_footer .gform_ajax_spinner {
  width: 18px !important;
  height: 18px !important;
  margin-left: 12px;
  vertical-align: middle;
  /* Converts the default grey spinner image to brand amber #D4842A */
  filter: brightness(0) saturate(100%) invert(58%) sepia(78%) saturate(469%) hue-rotate(354deg) brightness(91%) contrast(91%);
}
.form_box .gform_wrapper .gform_confirmation_message {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  padding: 20px 0;
}
.form_box .gform_wrapper .gform_ajax_spinner {
  margin-left: 12px;
}

.select2-results__options, .select2-selection--single .select2-selection__rendered {
  font-size: 17px;
}

.select2-selection--single .select2-selection__rendered {
  padding: 10px !important;
}

.select2 {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0 !important;
  right: 15px !important;
  height: 100% !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: red;
  color: #fff;
}

.select2-container--default .select2-selection--single {
  border-radius: 0 !important;
}

.select2-selection .select2-selection__rendered {
  color: #7a7a7a !important;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-in-bottom {
  -webkit-animation: slide-in-bottom cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
  animation: slide-in-bottom cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.fade-in {
  -webkit-animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
  animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
}

.slide-in-top {
  -webkit-animation: slide-in-top 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.animate-half {
  animation-delay: 0.5s;
}

.animate-first {
  animation-delay: 1s;
}

.animate-first-half {
  animation-delay: 1.5s;
}

.animate-second {
  animation-delay: 2s;
}

.animate-second-half {
  animation-delay: 2.5s;
}

.animate-third {
  animation-delay: 3s;
}

.animate-third-half {
  animation-delay: 3.5s;
}

.animate-fourth {
  animation-delay: 4s;
}

.animate-fourth-half {
  animation-delay: 4.5s;
}

.animate-fifth {
  animation-delay: 5s;
}

.animate-fifth-half {
  animation-delay: 5.5s;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-5-13 11:49:36
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
.c_button {
  display: inline-block;
  padding: 18px 40px;
  border: none;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s ease;
}
.c_button:hover, .c_button:focus, .c_button:active {
  text-decoration: none;
}
.c_button.sm {
  padding: 12px 24px;
  font-size: 13px;
}
.c_button.amber {
  background: #D4842A;
  color: #FFFFFF;
}
.c_button.amber:hover {
  background: #B8701F;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 132, 42, 0.3);
}
.c_button.white {
  background: #FFFFFF;
  color: #1A1A1A;
}
.c_button.white:hover {
  background: #F5F3F0;
  transform: translateY(-2px);
}
.c_button.ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
.c_button.ghost:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}
.c_button.accent {
  background: #2C5F8A;
  color: #FFFFFF;
}
.c_button.accent:hover {
  background: #1E4A6E;
  transform: translateY(-2px);
}

.c_link {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #2C5F8A;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.c_link:hover, .c_link:focus, .c_link:active {
  color: #2C5F8A;
  text-decoration: none;
  gap: 14px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease;
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  max-width: 100%;
  transition: padding 0.4s ease;
}
@media (max-width: 992px) {
  .header .header_inner {
    padding: 18px 24px;
  }
}
@media (max-width: 470px) {
  .header .header_inner {
    padding: 16px 13px;
  }
}
@media (max-width: 380px) {
  .header .header_inner {
    padding: 14px 9px;
  }
}
.header .site_logo {
  display: inline-flex;
  align-items: center;
}
.header .site_logo img {
  height: 67px;
  width: auto;
  transition: height 0.35s ease;
}
@media (max-width: 992px) {
  .header .site_logo img {
    height: 48px;
  }
}
.header .site_logo .logo_dark {
  display: none;
}
.header .header_nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .header .header_nav {
    display: none;
  }
}
.header .header_nav .menu {
  display: flex;
  list-style: none;
  gap: 36px;
  padding: 0;
  margin: 0;
}
.header .header_nav .menu li a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.header .header_nav .menu li a:hover {
  opacity: 1;
}
.header .header_right {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 400px) {
  .header .header_right .c_button {
    display: none;
  }
}
.header .header_right .header_phone {
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  opacity: 0.85;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header .header_right .header_phone:hover, .header .header_right .header_phone:focus {
  opacity: 1;
  text-decoration: none;
}
@media (max-width: 576px) {
  .header .header_right .header_phone {
    display: none;
  }
}
.header .header_right .header_burger {
  display: none;
  background: transparent;
  border: 0;
  outline: none;
  padding: 6px 0 6px 6px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.header .header_right .header_burger:focus, .header .header_right .header_burger:focus-visible, .header .header_right .header_burger:active {
  outline: none;
  box-shadow: none;
}
.header .header_right .header_burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  margin: 5px 0;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .header .header_right .header_burger {
    display: inline-block;
  }
}
.header.active_header {
  background: #0D0D0D;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.header.active_header .header_inner {
  padding: 14px 48px;
}
@media (max-width: 992px) {
  .header.active_header .header_inner {
    padding: 12px 24px;
  }
}
@media (max-width: 470px) {
  .header.active_header .header_inner {
    padding: 12px 13px;
  }
}
@media (max-width: 380px) {
  .header.active_header .header_inner {
    padding: 10px 9px;
  }
}
.header.active_header .site_logo img {
  height: 54px;
}
@media (max-width: 992px) {
  .header.active_header .site_logo img {
    height: 43px;
  }
}
.header .mobile_panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0D0D0D;
  padding: 32px 24px;
}
.header .mobile_panel .mobile_nav .menu {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.header .mobile_panel .mobile_nav .menu li {
  margin-bottom: 16px;
}
.header .mobile_panel .mobile_nav .menu li a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.header .mobile_panel .mobile_cta {
  display: none;
  margin-bottom: 24px;
}
.header .mobile_panel .mobile_cta .c_button {
  width: 100%;
}
@media (max-width: 400px) {
  .header .mobile_panel .mobile_cta {
    display: block;
  }
}
.header .mobile_panel .mobile_contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
}
.header .mobile_panel .mobile_contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}
.header.menu_open .mobile_panel {
  display: block;
}
.header.menu_open .header_burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header.menu_open .header_burger span:nth-child(2) {
  opacity: 0;
}
.header.menu_open .header_burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body:not(.home) .header:not(.active_header) {
  background: #0D0D0D;
}

.site_footer {
  background: #0D0D0D;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.4);
}
.site_footer .footer_inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .site_footer .footer_inner {
    padding: 0 24px;
  }
}
@media (max-width: 470px) {
  .site_footer .footer_inner {
    padding: 0 13px;
  }
}
@media (max-width: 380px) {
  .site_footer .footer_inner {
    padding: 0 9px;
  }
}
.site_footer .footer_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) {
  .site_footer .footer_row {
    flex-direction: column;
    text-align: center;
  }
}
.site_footer .footer_info {
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .site_footer .footer_info {
    font-size: 13px;
    line-height: 1.7;
  }
}
.site_footer .footer_info strong {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", sans-serif;
}
.site_footer .footer_info a {
  color: inherit;
  white-space: nowrap;
}
.site_footer .footer_info a:hover {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .site_footer .footer_info .footer_address {
    display: inline-block;
    max-width: 240px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
}
@media (max-width: 470px) {
  .site_footer .footer_info .footer_address {
    max-width: 220px;
    margin-bottom: 14px;
  }
}
.site_footer .footer_links .footer_menu {
  display: flex;
  gap: 24px;
  font-size: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 380px) {
  .site_footer .footer_links .footer_menu {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
}
.site_footer .footer_links .footer_menu a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}
.site_footer .footer_links .footer_menu a:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.site_footer .footer_links .footer_menu li.current-menu-item a,
.site_footer .footer_links .footer_menu li.current_page_item a,
.site_footer .footer_links .footer_menu li.current-menu-ancestor a {
  color: #D4842A;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.site_footer .footer_bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .site_footer .footer_bottom {
    flex-direction: column;
    text-align: center;
  }
}
.site_footer .footer_bottom p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
}
.site_footer .footer_bottom a {
  color: rgba(255, 255, 255, 0.6);
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.site_footer .footer_bottom a:hover, .site_footer .footer_bottom a:focus {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.mobile_call_bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #D4842A;
  padding: 14px 20px;
  text-align: center;
  font-variant-emoji: text;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  pointer-events: none;
}
.mobile_call_bar.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile_call_bar a {
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-variant-emoji: text;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
  line-height: 1.3;
}
@media (max-width: 380px) {
  .mobile_call_bar a {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}
.mobile_call_bar a img.emoji,
.mobile_call_bar a img.wp-smiley {
  display: none !important;
}
.mobile_call_bar a:hover, .mobile_call_bar a:focus {
  text-decoration: none;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .mobile_call_bar {
    display: block;
  }
  .mobile_call_bar + body {
    padding-bottom: 56px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 56px;
  }
}
/*
    SASS File for Banners Only
*/
section.banner-general.banner-container {
  height: 450px;
  transition: 0.3s;
}
section.banner-general.banner-container .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
section.banner-general.banner-container .overlay .text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 35%;
}
section.banner-general.banner-container .overlay .text-container .title {
  color: white;
}

.home_page.sec_1 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0D0D0D;
  overflow: hidden;
}
@media (max-width: 768px), (max-height: 800px) {
  .home_page.sec_1 {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
  }
}
@media (max-width: 470px) {
  .home_page.sec_1 {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
.home_page.sec_1 .hero_slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home_page.sec_1 .hero_slides .hero_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.home_page.sec_1 .hero_slides .hero_slide.active {
  opacity: 1;
}
.home_page.sec_1 .hero_slides .hero_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.home_page.sec_1 .hero_gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.65) 55%, rgba(13, 13, 13, 0.25) 100%);
}
.home_page.sec_1 .hero_content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 48px 0;
}
@media (max-width: 768px) {
  .home_page.sec_1 .hero_content {
    padding: 0 24px;
    max-width: 100%;
  }
}
@media (max-width: 470px) {
  .home_page.sec_1 .hero_content {
    padding: 0 13px;
  }
}
@media (max-width: 380px) {
  .home_page.sec_1 .hero_content {
    padding: 0 9px;
  }
}
.home_page.sec_1 .hero_badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 3px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .home_page.sec_1 .hero_badge {
    font-size: 10px;
    padding: 6px 14px;
  }
}
.home_page.sec_1 h1 {
  font-size: 64px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.home_page.sec_1 h1 .hero_eyebrow {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .home_page.sec_1 h1 {
    font-size: 42px;
  }
  .home_page.sec_1 h1 .hero_eyebrow {
    font-size: 14px;
    letter-spacing: 1px;
  }
}
@media (max-width: 420px) {
  .home_page.sec_1 h1 {
    font-size: 34px;
  }
}
.home_page.sec_1 .hero_sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 44px;
  line-height: 1.75;
  max-width: 580px;
}
.home_page.sec_1 .hero_sub p {
  margin: 0 0 12px;
}
.home_page.sec_1 .hero_sub p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .home_page.sec_1 .hero_sub {
    font-size: 16px;
  }
}
.home_page.sec_1 .hero_ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .home_page.sec_1 .hero_ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .home_page.sec_1 .hero_ctas .c_button {
    width: 100%;
  }
}
.home_page.sec_1 .hero_contact_line {
  margin-top: 36px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}
.home_page.sec_1 .hero_contact_line a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
}
.home_page.sec_1 .hero_contact_line a:hover {
  color: #FFFFFF;
}
.home_page.sec_1 .hero_scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  justify-content: center;
}
.home_page.sec_1 .hero_scroll::after {
  content: "";
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollDot 2s infinite;
}
@media (max-width: 768px), (max-height: 800px) {
  .home_page.sec_1 .hero_scroll {
    width: 22px;
    height: 36px;
    bottom: 22px;
    border-radius: 11px;
    border-width: 1.5px;
  }
  .home_page.sec_1 .hero_scroll::after {
    width: 3px;
    height: 7px;
    margin-top: 6px;
  }
}
@media (max-width: 470px) {
  .home_page.sec_1 .hero_scroll {
    width: 20px;
    height: 32px;
    bottom: 16px;
  }
}
.home_page.sec_2 {
  background: #1A1A1A;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0;
}
.home_page.sec_2 .trust_row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .home_page.sec_2 .trust_row {
    gap: 28px;
  }
}
.home_page.sec_2 .trust_item {
  text-align: center;
  color: #FFFFFF;
}
.home_page.sec_2 .trust_number {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #D4842A;
  line-height: 1;
}
@media (max-width: 768px) {
  .home_page.sec_2 .trust_number {
    font-size: 28px;
  }
}
.home_page.sec_2 .trust_desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.home_page.sec_2 .trust_divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .home_page.sec_2 .trust_divider {
    display: none;
  }
}
.home_page.sec_3 {
  background: #FFFFFF;
}
.home_page.sec_3 .service_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 480px;
}
.home_page.sec_3 .service_row:nth-child(even) .service_image {
  order: 2;
}
.home_page.sec_3 .service_row:nth-child(even) .service_text {
  order: 1;
  background: #F5F3F0;
}
@media (max-width: 1024px) {
  .home_page.sec_3 .service_row {
    grid-template-columns: 1fr;
    height: auto;
  }
  .home_page.sec_3 .service_row:nth-child(even) .service_image {
    order: 0;
  }
  .home_page.sec_3 .service_row:nth-child(even) .service_text {
    order: 0;
  }
}
.home_page.sec_3 .service_image {
  overflow: hidden;
  position: relative;
  height: 480px;
}
.home_page.sec_3 .service_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home_page.sec_3 .service_image .service_image_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}
@media (max-width: 1024px) {
  .home_page.sec_3 .service_image {
    height: 320px;
  }
}
.home_page.sec_3 .service_row:hover .service_image img {
  transform: scale(1.03);
}
.home_page.sec_3 .service_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  background: #FFFFFF;
}
@media (max-width: 1024px) {
  .home_page.sec_3 .service_text {
    padding: 48px 40px;
  }
}
@media (max-width: 768px) {
  .home_page.sec_3 .service_text {
    padding: 36px 24px;
  }
}
.home_page.sec_3 .service_text .eyebrow {
  color: #2C5F8A;
}
.home_page.sec_3 .service_text h3 {
  font-size: 32px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .home_page.sec_3 .service_text h3 {
    font-size: 26px;
  }
}
.home_page.sec_3 .service_text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.75;
}
.home_page.sec_3 .service_text .includes {
  font-size: 14px;
  color: #8C8C8C;
  margin-bottom: 28px;
}
.home_page.sec_3 .service_text .includes strong {
  color: #1A1A1A;
}
.home_page.sec_4 {
  background: #0D0D0D;
  color: #FFFFFF;
  padding: 100px 0;
  overflow: hidden;
}
.home_page.sec_4 .why_header {
  text-align: center;
  margin-bottom: 64px;
}
.home_page.sec_4 .why_header h2 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .home_page.sec_4 .why_header h2 {
    font-size: 32px;
  }
}
.home_page.sec_4 .why_header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.75;
}
.home_page.sec_4 .why_blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .home_page.sec_4 .why_blocks {
    grid-template-columns: 1fr;
  }
}
.home_page.sec_4 .why_block {
  padding: 44px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.home_page.sec_4 .why_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #D4842A;
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.home_page.sec_4 .why_block:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}
.home_page.sec_4 .why_block:hover::before {
  transform: scaleX(1);
}
.home_page.sec_4 .why_block .why_num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 16px;
  right: 24px;
}
.home_page.sec_4 .why_block h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}
.home_page.sec_4 .why_block p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.home_page.sec_5 {
  background: #FFFFFF;
  padding: 100px 0;
}
.home_page.sec_5 .gallery_header {
  text-align: center;
  margin-bottom: 48px;
}
.home_page.sec_5 .gallery_header h2 {
  font-size: 44px;
  font-weight: 900;
  color: #1A1A1A;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .home_page.sec_5 .gallery_header h2 {
    font-size: 32px;
  }
}
.home_page.sec_5 .gallery_header p {
  font-size: 17px;
  color: #8C8C8C;
}
.home_page.sec_5 .gallery_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 1024px) {
  .home_page.sec_5 .gallery_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .home_page.sec_5 .gallery_grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
}
.home_page.sec_5 .gallery_grid .g_item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  height: 260px;
}
@media (max-width: 1024px) {
  .home_page.sec_5 .gallery_grid .g_item {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .home_page.sec_5 .gallery_grid .g_item {
    height: 180px;
  }
}
.home_page.sec_5 .gallery_grid .g_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home_page.sec_5 .gallery_grid .g_item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0);
  transition: background 0.3s;
}
.home_page.sec_5 .gallery_grid .g_item:hover img {
  transform: scale(1.06);
}
.home_page.sec_5 .gallery_grid .g_item:hover::after {
  background: rgba(13, 13, 13, 0.15);
}
.home_page.sec_5 .gallery_cta {
  text-align: center;
  margin-top: 48px;
}
.home_page.sec_6 {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 100px 0;
}
.home_page.sec_6 .test_header {
  text-align: center;
  margin-bottom: 56px;
}
.home_page.sec_6 .test_header h2 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .home_page.sec_6 .test_header h2 {
    font-size: 32px;
  }
}
.home_page.sec_6 .test_carousel {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home_page.sec_6 .test_carousel {
    margin: 0 -10px;
  }
}
.home_page.sec_6 .test_track {
  display: flex;
  transition: transform 0.5s ease;
}
.home_page.sec_6 .test_slide {
  min-width: 100%;
  padding: 0 20px;
}
.home_page.sec_6 .test_card {
  text-align: center;
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}
@media (max-width: 768px) {
  .home_page.sec_6 .test_card {
    padding: 32px 20px;
  }
}
.home_page.sec_6 .test_stars {
  color: #D4842A;
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.home_page.sec_6 .test_stars .empty {
  color: rgba(255, 255, 255, 0.18);
}
.home_page.sec_6 .test_quote {
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .home_page.sec_6 .test_quote {
    font-size: 17px;
  }
}
.home_page.sec_6 .test_author {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.home_page.sec_6 .test_dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.home_page.sec_6 .test_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}
.home_page.sec_6 .test_dot.active {
  background: #D4842A;
  transform: scale(1.2);
}
.home_page.sec_6 .test_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
  border: none;
}
.home_page.sec_6 .test_nav:hover {
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .home_page.sec_6 .test_nav {
    display: none;
  }
}
.home_page.sec_6 .test_prev {
  left: -56px;
}
.home_page.sec_6 .test_next {
  right: -56px;
}
@media (max-width: 1024px) {
  .home_page.sec_6 .test_prev {
    left: 0;
  }
  .home_page.sec_6 .test_next {
    right: 0;
  }
}
.home_page.sec_6 .test_badge {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}
.home_page.sec_6 .test_badge strong {
  color: #D4842A;
}
.home_page.sec_7 {
  background: #F5F3F0;
  padding: 100px 0;
}
.home_page.sec_7 .faq_header {
  text-align: center;
  margin-bottom: 48px;
}
.home_page.sec_7 .faq_header h2 {
  font-size: 44px;
  font-weight: 900;
  color: #1A1A1A;
}
@media (max-width: 768px) {
  .home_page.sec_7 .faq_header h2 {
    font-size: 32px;
  }
}
.home_page.sec_7 .faq_list {
  max-width: 780px;
  margin: 0 auto;
}
.home_page.sec_7 .faq_item {
  border-bottom: 1px solid #ddd;
}
.home_page.sec_7 .faq_item.open .faq_toggle {
  background: #2C5F8A;
  color: #FFFFFF;
  border-color: #2C5F8A;
  transform: rotate(45deg);
}
.home_page.sec_7 .faq_q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #1A1A1A;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease;
}
.home_page.sec_7 .faq_q:hover, .home_page.sec_7 .faq_q:focus, .home_page.sec_7 .faq_q:focus-visible, .home_page.sec_7 .faq_q:active {
  color: #2C5F8A;
  outline: none;
  box-shadow: none;
}
.home_page.sec_7 .faq_toggle {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 4px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 20px;
  color: #8C8C8C;
  border: 1px solid #ddd;
}
.home_page.sec_7 .faq_a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.home_page.sec_7 .faq_a .faq_a_inner {
  padding: 0 0 28px;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}
.home_page.sec_8 {
  background: #0D0D0D;
  color: #FFFFFF;
  padding: 80px 0;
}
.home_page.sec_8 .area_inner {
  text-align: center;
}
.home_page.sec_8 .area_inner h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}
.home_page.sec_8 .area_inner .area_sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  margin-bottom: 32px;
}
.home_page.sec_8 .area_pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .home_page.sec_8 .area_pills {
    gap: 6px;
  }
}
.home_page.sec_8 .area_pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.home_page.sec_8 .area_pill:hover {
  background: #2C5F8A;
  border-color: #2C5F8A;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .home_page.sec_8 .area_pill {
    padding: 6px 14px;
    font-size: 13px;
  }
}
.home_page.sec_9 {
  background: #FFFFFF;
  padding: 100px 0;
}
.home_page.sec_9 .cta_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 1024px) {
  .home_page.sec_9 .cta_wrapper {
    grid-template-columns: 1fr;
  }
}
.home_page.sec_9 .cta_left {
  padding-top: 16px;
  position: sticky;
  top: 40px;
  align-self: start;
}
@media (max-width: 1024px) {
  .home_page.sec_9 .cta_left {
    position: static;
  }
}
.home_page.sec_9 .cta_left h2 {
  font-size: 44px;
  font-weight: 900;
  color: #1A1A1A;
  margin-bottom: 20px;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .home_page.sec_9 .cta_left h2 {
    font-size: 32px;
  }
}
.home_page.sec_9 .cta_left p {
  font-size: 17px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.75;
}
.home_page.sec_9 .cta_left .cta_phone {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .home_page.sec_9 .cta_left .cta_phone {
    font-size: 26px;
  }
}
.home_page.sec_9 .cta_left .cta_phone a {
  color: #1A1A1A;
  white-space: nowrap;
}
.home_page.sec_9 .cta_left .cta_phone a:hover {
  color: #2C5F8A;
}
.home_page.sec_9 .cta_left .cta_sub {
  font-size: 15px;
  color: #8C8C8C;
  margin-bottom: 20px;
}
.home_page.sec_9 .cta_left .cta_email {
  font-size: 15px;
  color: #8C8C8C;
  margin-bottom: 32px;
}
.home_page.sec_9 .cta_left .cta_email a {
  color: #2C5F8A;
  text-decoration: underline;
}
.home_page.sec_9 .cta_left .cta_trust_line {
  font-size: 13px;
  color: #bbb;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.home_page.sec_9 .form_box {
  background: #1A1A1A;
  padding: 48px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .home_page.sec_9 .form_box {
    padding: 32px 24px;
  }
}
.home_page.sec_9 .form_box h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.thank_you_page.sec_1 {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D0D0D;
  overflow: hidden;
  padding: 160px 0 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .thank_you_page.sec_1 {
    min-height: auto;
    padding: 130px 0 70px;
  }
}
.thank_you_page.sec_1 .media_wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.thank_you_page.sec_1 .media_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.thank_you_page.sec_1 .gradient_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.45) 0%, rgba(13, 13, 13, 0.75) 100%);
}
.thank_you_page.sec_1 .hero_content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 32px;
}
.thank_you_page.sec_1 .hero_content .check_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 132, 42, 0.18);
  border: 2px solid #D4842A;
  margin-bottom: 24px;
  color: #FFFFFF;
}
.thank_you_page.sec_1 .hero_content .check_icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #FFFFFF !important;
  stroke-width: 3;
}
.thank_you_page.sec_1 .hero_content .check_icon svg * {
  stroke: #FFFFFF !important;
}
.thank_you_page.sec_1 .hero_content .eyebrow {
  color: #D4842A;
}
.thank_you_page.sec_1 .hero_content h1 {
  font-size: 56px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .thank_you_page.sec_1 .hero_content h1 {
    font-size: 38px;
  }
}
.thank_you_page.sec_1 .hero_content .copy_content {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 40px;
}
.thank_you_page.sec_1 .hero_content .copy_content p {
  margin-bottom: 14px;
}
.thank_you_page.sec_1 .hero_content .thank_buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.thank_you_page.sec_1 .hero_content .next_steps {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.thank_you_page.sec_1 .hero_content .next_steps h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4842A;
  margin-bottom: 24px;
  text-align: center;
}
.thank_you_page.sec_1 .hero_content .next_steps ol {
  list-style: none;
  padding: 0;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .thank_you_page.sec_1 .hero_content .next_steps ol {
    grid-template-columns: 1fr;
  }
}
.thank_you_page.sec_1 .hero_content .next_steps ol li {
  counter-increment: step;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}
.thank_you_page.sec_1 .hero_content .next_steps ol li::before {
  content: counter(step);
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #D4842A;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.thank_you_page.sec_1 .hero_content .next_steps ol li strong {
  display: block;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.thank_you_page.sec_1 .hero_content .next_steps ol li span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

.policy_page {
  background: #FFFFFF;
  color: #000;
}
.policy_page.sec_1 {
  text-align: center;
  padding: 207px 0 27px;
  background: #FFFFFF;
}
@media (max-width: 1410px) {
  .policy_page.sec_1 {
    padding: 190px 0 25px;
  }
}
@media (max-width: 1280px) {
  .policy_page.sec_1 {
    padding: 167px 0 22px;
  }
}
@media (max-width: 992px) {
  .policy_page.sec_1 {
    padding: 150px 0 19px;
  }
}
@media (max-width: 768px) {
  .policy_page.sec_1 {
    padding: 138px 0 16px;
  }
}
@media (max-width: 470px) {
  .policy_page.sec_1 {
    padding: 127px 0 14px;
  }
}
@media (max-width: 380px) {
  .policy_page.sec_1 {
    padding: 115px 0 12px;
  }
}
.policy_page.sec_1 h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #000;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}
@media (max-width: 1280px) {
  .policy_page.sec_1 h1 {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .policy_page.sec_1 h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .policy_page.sec_1 h1 {
    font-size: 34px;
    margin-bottom: 9px;
  }
}
@media (max-width: 470px) {
  .policy_page.sec_1 h1 {
    font-size: 28px;
    margin-bottom: 7px;
  }
}
.policy_page.sec_1 .intro_copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  color: #000;
}
@media (max-width: 768px) {
  .policy_page.sec_1 .intro_copy {
    font-size: 15px;
  }
}
.policy_page.sec_2 {
  padding: 27px 0 110px;
  background: #FFFFFF;
}
@media (max-width: 1410px) {
  .policy_page.sec_2 {
    padding: 25px 0 95px;
  }
}
@media (max-width: 1280px) {
  .policy_page.sec_2 {
    padding: 22px 0 80px;
  }
}
@media (max-width: 992px) {
  .policy_page.sec_2 {
    padding: 19px 0 70px;
  }
}
@media (max-width: 768px) {
  .policy_page.sec_2 {
    padding: 16px 0 60px;
  }
}
@media (max-width: 470px) {
  .policy_page.sec_2 {
    padding: 14px 0 50px;
  }
}
@media (max-width: 380px) {
  .policy_page.sec_2 {
    padding: 12px 0 45px;
  }
}
.policy_page.sec_2 .pg_content {
  max-width: 900px;
  margin: 0 auto;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
}
.policy_page.sec_2 .pg_content h1, .policy_page.sec_2 .pg_content h2, .policy_page.sec_2 .pg_content h3, .policy_page.sec_2 .pg_content h4, .policy_page.sec_2 .pg_content h5, .policy_page.sec_2 .pg_content h6 {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 14px;
}
@media (max-width: 1280px) {
  .policy_page.sec_2 .pg_content h1, .policy_page.sec_2 .pg_content h2, .policy_page.sec_2 .pg_content h3, .policy_page.sec_2 .pg_content h4, .policy_page.sec_2 .pg_content h5, .policy_page.sec_2 .pg_content h6 {
    margin-top: 42px;
  }
}
@media (max-width: 992px) {
  .policy_page.sec_2 .pg_content h1, .policy_page.sec_2 .pg_content h2, .policy_page.sec_2 .pg_content h3, .policy_page.sec_2 .pg_content h4, .policy_page.sec_2 .pg_content h5, .policy_page.sec_2 .pg_content h6 {
    margin-top: 36px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .policy_page.sec_2 .pg_content h1, .policy_page.sec_2 .pg_content h2, .policy_page.sec_2 .pg_content h3, .policy_page.sec_2 .pg_content h4, .policy_page.sec_2 .pg_content h5, .policy_page.sec_2 .pg_content h6 {
    margin-top: 32px;
    margin-bottom: 10px;
  }
}
@media (max-width: 470px) {
  .policy_page.sec_2 .pg_content h1, .policy_page.sec_2 .pg_content h2, .policy_page.sec_2 .pg_content h3, .policy_page.sec_2 .pg_content h4, .policy_page.sec_2 .pg_content h5, .policy_page.sec_2 .pg_content h6 {
    margin-top: 28px;
  }
}
.policy_page.sec_2 .pg_content h1:first-child, .policy_page.sec_2 .pg_content h2:first-child, .policy_page.sec_2 .pg_content h3:first-child, .policy_page.sec_2 .pg_content h4:first-child, .policy_page.sec_2 .pg_content h5:first-child, .policy_page.sec_2 .pg_content h6:first-child {
  margin-top: 0;
}
.policy_page.sec_2 .pg_content h2 {
  font-size: 28px;
}
@media (max-width: 1280px) {
  .policy_page.sec_2 .pg_content h2 {
    font-size: 25px;
  }
}
@media (max-width: 992px) {
  .policy_page.sec_2 .pg_content h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .policy_page.sec_2 .pg_content h2 {
    font-size: 20px;
  }
}
@media (max-width: 470px) {
  .policy_page.sec_2 .pg_content h2 {
    font-size: 18px;
  }
}
.policy_page.sec_2 .pg_content h3 {
  font-size: 22px;
}
@media (max-width: 1280px) {
  .policy_page.sec_2 .pg_content h3 {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .policy_page.sec_2 .pg_content h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .policy_page.sec_2 .pg_content h3 {
    font-size: 17px;
  }
}
@media (max-width: 470px) {
  .policy_page.sec_2 .pg_content h3 {
    font-size: 16px;
  }
}
.policy_page.sec_2 .pg_content h2 + h3 {
  margin-top: 18px;
}
.policy_page.sec_2 .pg_content p {
  margin-bottom: 1.1em;
}
.policy_page.sec_2 .pg_content p:last-child {
  margin-bottom: 0;
}
.policy_page.sec_2 .pg_content a {
  color: #2C5F8A;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.3s ease;
}
.policy_page.sec_2 .pg_content a:hover {
  color: #D4842A;
}
.policy_page.sec_2 .pg_content ul, .policy_page.sec_2 .pg_content ol {
  padding-left: 22px;
  margin-bottom: 1.1em;
}
.policy_page.sec_2 .pg_content ul li, .policy_page.sec_2 .pg_content ol li {
  margin-bottom: 0.55em;
  line-height: 1.7;
}
.policy_page.sec_2 .pg_content strong {
  color: #000;
  font-weight: 600;
}
.policy_page.sec_2 .return_home_wrap {
  margin-top: 70px;
  text-align: center;
}
@media (max-width: 992px) {
  .policy_page.sec_2 .return_home_wrap {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .policy_page.sec_2 .return_home_wrap {
    margin-top: 50px;
  }
}
@media (max-width: 470px) {
  .policy_page.sec_2 .return_home_wrap {
    margin-top: 40px;
  }
}

.page_not_found {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D0D0D;
  color: #FFFFFF;
  padding: 140px 0 100px;
  overflow: hidden;
  text-align: center;
}
.page_not_found .error_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 460px;
  color: rgba(255, 255, 255, 0.03);
  line-height: 0.8;
  letter-spacing: -20px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .page_not_found .error_bg {
    font-size: 220px;
  }
}
.page_not_found .content_area {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 32px;
}
.page_not_found .error_svg {
  display: inline-block;
  margin-bottom: 40px;
  width: 320px;
  max-width: 80vw;
  height: auto;
}
.page_not_found .error_svg .crack {
  animation: errorCrack 3s ease-in-out infinite;
  transform-origin: center;
}
.page_not_found .error_svg .cone {
  animation: errorBob 2.4s ease-in-out infinite;
  transform-origin: bottom center;
}
.page_not_found .eyebrow {
  color: #D4842A;
}
.page_not_found h1 {
  font-size: 56px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .page_not_found h1 {
    font-size: 38px;
  }
}
.page_not_found p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 36px;
  line-height: 1.75;
}
.page_not_found .error_buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.page_not_found .copy_content p:last-child {
  margin-bottom: 0;
}

@keyframes errorCrack {
  0%, 100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}
@keyframes errorBob {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}

/*# sourceMappingURL=main.css.map */
