@charset "UTF-8";
:root {
  --primary: #002446;
  --secondary: #1B1788;
  --button-primary: #FFEB01;
  --secondary-light: #00007C;
  --headings: #0A3956;
  --tertiary: #8890A7;
  --accent: #0A3956;
  --background: #F5F5F5;
  --text: #505050;
  --highlight: #F2E2E2;
  --black: #1E1E1E;
  --white: #FFFFFF;
  --teal: #3E908A;
  --light-green: #D0EBE9;
  --dark-green: #194C47;
  --top-bar: #0A3956;
  --grey: #F2F2F2;
}

/* Typography */
body,
html,
input,
select,
option,
label,
textarea,
li,
p,
span,
a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: var(--text);
}

body p {
  line-height: 1.5;
  font-size: 18px;
}
body p:not(:last-of-type) {
  margin-bottom: 1rem;
}
body p:last-of-type {
  margin-bottom: 0;
}
body strong {
  font-weight: 700;
}
body .hero_heading {
  font-family: "Karla";
  font-weight: 500;
  font-size: 5rem;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  body .hero_heading {
    font-size: 4rem !important;
  }
}
@media (max-width: 500px) {
  body .hero_heading {
    font-size: 3rem !important;
  }
}
body h1 {
  font-family: "Karla";
  font-weight: bold;
  font-size: 5rem;
  color: var(--headings);
  margin: 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -2px;
}
@media (max-width: 1024px) {
  body h1 {
    font-size: 4rem !important;
  }
}
@media (max-width: 500px) {
  body h1 {
    font-size: 3rem !important;
  }
}
body h2 {
  font-family: "Karla";
  font-weight: bold;
  font-size: 5rem;
  color: var(--headings);
  margin: 2.5rem 0;
  line-height: 1.2;
  letter-spacing: -2px;
}
@media (max-width: 1024px) {
  body h2 {
    font-size: 3rem !important;
  }
}
body h3 {
  font-family: "Karla";
  font-weight: bold;
  font-size: 5rem;
  color: var(--headings);
  margin: 1rem 0;
  line-height: 1.2;
  letter-spacing: -2px;
}
@media (max-width: 1024px) {
  body h3 {
    font-size: 4rem !important;
  }
}
@media (max-width: 500px) {
  body h3 {
    font-size: 3rem !important;
  }
}
body h4 {
  font-family: "Karla";
  font-weight: bold;
  font-size: 2.4rem;
  color: var(--headings);
  margin: 1.5rem 0;
  line-height: 1;
  letter-spacing: -2px;
}
@media (max-width: 1024px) {
  body h4 {
    font-size: 2rem !important;
  }
}
body h5 {
  font-family: "Karla";
  font-weight: 600;
  font-size: 2rem;
  color: var(--headings);
  margin: 1.5rem 0;
  line-height: 1;
}
@media (max-width: 1024px) {
  body h5 {
    font-size: 1.6rem !important;
  }
}
body h6 {
  font-family: "Karla";
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--headings);
  margin: 1.5rem 0;
  line-height: 1;
}
@media (max-width: 991px) {
  body h6 {
    font-size: 1.4rem !important;
  }
}
body button,
body input[type=submit] {
  font-family: "Inter", sans-serif;
}
body a {
  color: var(--accent);
  text-decoration: underline;
}

/* Button styles */
.btn_primary {
  color: #0A3956;
  background: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border: solid 1px #fff;
  border-radius: 500px;
  cursor: pointer;
  min-width: 200px;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease;
  gap: 10px;
}
@media (max-width: 768px) {
  .btn_primary {
    height: 48px !important;
    font-size: 14px !important;
  }
}
.btn_primary span {
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .btn_primary span {
    font-size: 14px !important;
  }
}
@media (max-width: 767px) {
  .btn_primary svg {
    width: 30px;
  }
}
.btn_primary:hover {
  background-color: var(--primary);
  color: #fff;
}
.btn_primary:hover span {
  color: #fff;
}

.btn_secondary {
  color: #fff;
  background: #0A3956;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 500px;
  cursor: pointer;
  min-width: 200px;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease;
  gap: 10px;
}
@media (max-width: 768px) {
  .btn_secondary {
    height: 48px !important;
    font-size: 14px !important;
  }
}
.btn_secondary span {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  color: #fff;
}
@media (max-width: 767px) {
  .btn_secondary span {
    font-size: 14px !important;
  }
}
@media (max-width: 767px) {
  .btn_secondary svg {
    width: 30px;
  }
}
.btn_secondary:hover {
  background-color: var(--secondary);
  color: #fff;
}
.btn_secondary:hover span {
  color: #fff;
}

.btn_wrapper {
  display: flex;
}

.header_cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_cta a {
  color: #fff;
  height: 50px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border: solid 1px #fff;
  border-radius: 500px;
  cursor: pointer;
  width: 180px;
}
.header_cta a:hover {
  background-color: #fff;
  color: var(--primary);
}

.btn_normal {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #0A3956;
  text-decoration: none;
}
.btn_normal span.button_label {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  transition: color 0.3s ease;
  text-transform: uppercase;
  color: #0A3956;
}
.btn_normal .arrow_right {
  margin-left: 10px;
}

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

@media (max-width: 400px) {
  body a.button.button-primary {
    font-size: 12px !important;
  }
}
body a.button.button-primary:hover {
  background-color: var(--primary) !important;
}

body .gform_button.button:hover {
  background-color: var(--primary) !important;
}

.button_wrapper a.button.button-primary {
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 500px) {
  .services_ips .button.button-primary {
    font-size: 18px !important;
  }
}

button:hover svg circle {
  fill: #B9B9B9 !important;
}

html {
  scroll-behavior: smooth;
}

/* Container styles */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1440px;
}
@media (max-width: 500px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.container_small {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 500px) {
  .container_small {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Section styles */
main.page_wrapper > section {
  width: 100%;
  position: relative;
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f6f6f6;
}

::-webkit-scrollbar-thumb {
  background: #5a5a5a;
}

::-webkit-scrollbar-thumb:hover {
  background: #2a2a33;
}

/* Yoast breadcrumbs */
p#breadcrumbs {
  width: 100%;
  margin: 0 0 5rem;
}
p#breadcrumbs > span {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1.2rem !important;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--background);
}
p#breadcrumbs > span a {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--background);
  margin-right: 1rem;
  transition: all 0.3s ease;
}
p#breadcrumbs > span a:hover {
  color: var(--secondary);
}
p#breadcrumbs > span span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
p#breadcrumbs > span span:not(:first-of-type) {
  margin-left: 1rem;
}
p#breadcrumbs > span span.breadcrumb_last {
  color: var(--secondary) !important;
}

/* Slick styles */
@media (min-width: 992px) {
  .slick-slide {
    margin: 0 1rem;
  }
}
/* For using pagination dots */
.slick-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 5rem 0 0;
}
.slick-dots > li {
  font-size: 0;
  margin: 0 1rem;
}
.slick-dots > li.slick-active button {
  background: var(--primary);
}
.slick-dots > li > button {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0;
  border: none;
  border-radius: 50%;
  outline: 0;
  cursor: pointer;
}

/* Call to action buttons */
.call_to_action_buttons {
  width: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .call_to_action_buttons {
    flex-direction: row;
  }
  .call_to_action_buttons > a:not(:last-child) {
    margin-right: 2rem;
  }
}
@media (max-width: 991px) {
  .call_to_action_buttons {
    flex-direction: column;
  }
  .call_to_action_buttons > a {
    width: 100%;
  }
  .call_to_action_buttons > a:not(:last-child) {
    margin-bottom: 2rem;
  }
}

/* Tablepress */
table.tablepress {
  width: 100%;
  margin: 5rem 0 0;
}
@media (max-width: 991px) {
  table.tablepress {
    display: block;
    overflow-y: hidden;
  }
}
table.tablepress thead tr th {
  font-size: 1.6rem;
  font-weight: 400;
  background: var(--primary) !important;
  color: var(--white);
  padding: 2rem;
}
table.tablepress tbody tr td {
  font-size: 1.6rem;
  font-weight: 400;
  background: #EEEEEE !important;
  padding: 2rem;
}

/* 404 Section */
.section_404 {
  background: #4E0038;
  margin-top: 10.5rem;
}
.section_404 .container {
  position: relative;
  z-index: 2;
  padding-top: 20rem;
  padding-bottom: 20rem;
}
.section_404 .container .section_inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
.section_404 .container .section_inner .left_side {
  width: 58%;
}
.section_404 .container .section_inner .right_side {
  width: 38%;
  display: flex;
  flex-direction: column;
}
.section_404 .container .section_inner .right_side > p {
  color: #FFF;
  font-family: Verdana;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
}
.section_404 .container .section_inner .right_side .content {
  margin-top: auto;
}
.section_404 .container .section_inner .right_side .content p {
  color: #FFF;
  font-family: Verdana;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 105%; /* 25.2px */
  margin: 0 0 3rem;
}
.section_404 .bg_pattern {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
.section_404 .bg_pattern svg {
  width: 32%;
}
.section_404 .bg_pattern svg circle {
  width: 100%;
  fill: #5a0041;
}

/* Sitewide resets */
html, body {
  font-size: 62.5%;
}

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

html {
  min-width: 100%;
  box-sizing: border-box;
}

body {
  min-width: 100%;
  line-height: 1;
  overflow-x: hidden;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

nav ul, nav ol {
  list-style-type: none !important;
  padding-left: 0 !important;
}

ul, ol {
  padding-left: 2rem;
}
ul li, ol li {
  line-height: 1.5;
}
ul li:not(:last-of-type), ol li:not(:last-of-type) {
  margin-bottom: 1rem;
}

ul {
  list-style-type: disc !important;
}

ol {
  list-style-type: decimal !important;
}

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

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote {
  background-clip: padding-box;
  border-radius: 5px;
  margin: 22px;
  padding: 0;
  background-color: var(--primary);
  position: relative;
}
blockquote:before {
  border-right: 20px solid transparent !important;
  border-top: 20px solid;
  content: "";
  height: 0;
  left: 4.5em;
  position: absolute;
  top: 100%;
  border-top-color: var(--primary);
  width: 0;
}
blockquote p {
  padding: 1rem;
  color: var(--background) !important;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 19px;
  font-style: italic;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus {
  outline: none;
}

button:focus, button:active {
  outline: none !important;
}

a,
a:active,
a:hover {
  outline: 0;
}

::-moz-selection {
  background: var(--primary);
  color: var(--background);
}

::selection {
  background: var(--primary);
  color: var(--background);
}

::-moz-selection {
  background: var(--primary);
  color: var(--background);
}

main + p {
  margin: 0;
  font-size: 0;
}

header#masthead {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  overflow: visible;
}
header#masthead .header_cta a:before {
  content: unset !important;
}
header#masthead .container {
  position: relative;
  z-index: 1;
}
header#masthead .top_bar {
  background: transparent;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease;
}
header#masthead .top_bar .top_bar_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  padding-top: 3rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  gap: 16px;
}
@media (max-width: 991px) {
  header#masthead .top_bar .top_bar_inner {
    padding-top: 20px;
    padding-bottom: 16px;
    gap: 12px;
  }
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search {
  display: none;
  position: relative;
}
@media (max-width: 991px) {
  header#masthead .top_bar .top_bar_inner .top_bar_mobile_search {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    background: var(--white);
    border-radius: 999px;
    height: 37px;
    padding: 0 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  }
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-height: 60vh;
  overflow-y: auto;
  z-index: 9999;
  display: none;
  color: #0A3956;
  text-align: left;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-results-list {
  padding: 8px 0;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-result-item:hover, header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-result-item:focus {
  background: #F5F6F8;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-result-thumb,
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-result-thumb-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  flex: 0 0 40px;
  -o-object-fit: cover;
     object-fit: cover;
  background: #F2F2F2;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-result-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-loading,
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-no-results,
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-error {
  padding: 14px;
  font-size: 13px;
  color: #4D4D4D;
  text-align: center;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-results-footer {
  border-top: 1px solid #E5E5E5;
  padding: 10px 14px;
  text-align: center;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_results .search-results-footer .search-view-all {
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary);
  text-decoration: underline;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  padding: 0;
  margin-right: 10px;
  cursor: pointer;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_btn svg {
  width: 17px;
  height: 17px;
  display: block;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_input {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  color: #0A3956;
  font-size: 12px;
  font-family: inherit;
  padding: 0;
  min-width: 0;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_input::-moz-placeholder {
  color: #939393;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_input::placeholder {
  color: #939393;
}
header#masthead .top_bar .top_bar_inner .top_bar_mobile_search .top_bar_mobile_search_input:focus {
  outline: none;
}
header#masthead .top_bar .top_bar_inner .left_side {
  flex: 0 0 auto;
}
header#masthead .top_bar .top_bar_inner .left_side .top_bar_phone {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
header#masthead .top_bar .top_bar_inner .left_side .top_bar_phone:hover {
  opacity: 0.8;
}
header#masthead .top_bar .top_bar_inner .left_side .top_bar_phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  header#masthead .top_bar .top_bar_inner .left_side .top_bar_phone svg {
    width: 26px;
    height: 26px;
  }
}
header#masthead .top_bar .top_bar_inner .left_side .top_bar_phone .top_bar_phone_number {
  font-size: 18px;
  font-weight: normal;
  color: var(--white);
}
@media (max-width: 991px) {
  header#masthead .top_bar .top_bar_inner .left_side .top_bar_phone .top_bar_phone_number {
    display: none;
  }
}
header#masthead .top_bar .top_bar_inner .right_side {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 991px) {
  header#masthead .top_bar .top_bar_inner .right_side {
    display: none;
  }
}
header#masthead .top_bar .top_bar_inner .right_side .header_link {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
header#masthead .top_bar .top_bar_inner .right_side .header_link:hover {
  color: #FFEB01;
}
header#masthead .top_bar .top_bar_inner .right_side .separator {
  color: var(--white);
  font-size: 12px;
}
header#masthead .section_inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: visible;
  position: relative;
}
header#masthead .section_inner .left_side {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 991px) {
  header#masthead .section_inner .left_side {
    left: 25px;
  }
}
@media (max-width: 400px) {
  header#masthead .section_inner .left_side {
    left: 14px;
  }
}
header#masthead .section_inner .left_side a.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
header#masthead .section_inner .left_side a.logo span {
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
}
@media (max-width: 767px) {
  header#masthead .section_inner .left_side a.logo span {
    font-size: 3rem;
  }
}
header#masthead .section_inner .left_side a.logo img {
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  header#masthead .section_inner .left_side a.logo img {
    width: 230px !important;
  }
}
header#masthead .section_inner .middle {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}
header#masthead .section_inner .right_side {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: visible;
  position: relative;
}
@media (max-width: 991px) {
  header#masthead .section_inner .right_side {
    gap: 10px;
  }
}
header#masthead .section_inner .right_side .header_search_wrapper {
  position: relative;
  display: none;
  overflow: visible;
  z-index: 10000;
}
@media (min-width: 992px) {
  header#masthead .section_inner .right_side .header_search_wrapper {
    display: block;
  }
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_form {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 0;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
  header#masthead .section_inner .right_side .header_search_wrapper .header_search_form {
    width: 350px;
  }
}
@media (max-width: 1100px) {
  header#masthead .section_inner .right_side .header_search_wrapper .header_search_form {
    width: 300px;
  }
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_icon svg {
  width: 17px;
  height: 17px;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_input {
  background: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 20px 14px 50px;
  color: #333;
  font-size: 14px;
  width: 100%;
  transition: all 0.3s ease;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_input::-moz-placeholder {
  color: #999;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_input::placeholder {
  color: #999;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_input:focus {
  outline: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-height: 500px;
  overflow-y: auto;
  z-index: 9999 !important;
  display: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 8px;
  min-width: 280px;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-results-list {
  padding: 8px 0;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-result-item:hover {
  background: #f5f5f5;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-result-item .search-result-thumb {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-result-item .search-result-thumb-placeholder {
  width: 50px;
  height: 50px;
  background: #e0e0e0;
  border-radius: 4px;
  flex-shrink: 0;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-result-item .search-result-content {
  flex: 1;
  min-width: 0;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-result-item .search-result-content .search-result-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
  overflow: hidden;
  font-family: inherit;
  line-height: 1.4;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-results-footer {
  border-top: 1px solid #e0e0e0;
  padding: 12px 16px;
  text-align: center;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-results-footer .search-view-all {
  color: #0A3956;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-results-footer .search-view-all:hover {
  text-decoration: underline;
}
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-loading,
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-no-results,
header#masthead .section_inner .right_side .header_search_wrapper .header_search_results .search-error {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}
header#masthead .nav_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #062233;
  opacity: 0;
  z-index: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  backdrop-filter: blur(12.1px);
  -webkit-backdrop-filter: blur(12.1px);
}
header#masthead .nav_bg.active {
  opacity: 0.8;
  visibility: visible;
}

.sticky_header {
  background-color: #002446;
}
.sticky_header .top_bar {
  background-color: #002446 !important;
}

footer#footer {
  width: 100%;
  background: #002446;
  padding: 8rem 0;
  padding-bottom: 0rem !important;
  overflow: hidden;
}
@media (max-width: 500px) {
  footer#footer {
    padding: 4rem 0;
  }
}
footer#footer .footer_top {
  display: flex;
  margin-bottom: 4rem;
  gap: 60px;
}
@media (max-width: 1024px) {
  footer#footer .footer_top {
    flex-direction: column;
    gap: 60px;
  }
}
footer#footer .footer_top .logo {
  width: 100%;
  max-width: 155px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 2rem;
}
@media (max-width: 500px) {
  footer#footer .footer_top .logo {
    max-width: 100px;
  }
}
footer#footer .footer_top .footer_content p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 20px;
  margin-bottom: 2rem;
}
footer#footer .footer_top .rto_number {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 20px;
  text-transform: uppercase;
}
footer#footer .footer_top .left_side {
  width: 30%;
}
@media (max-width: 991px) {
  footer#footer .footer_top .left_side {
    width: 100%;
  }
}
footer#footer .footer_top .left_side ul.contact_outer {
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-top: 3rem;
}
footer#footer .footer_top .left_side ul.contact_outer li {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer#footer .footer_top .left_side ul.contact_outer li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease, fill 0.3s ease;
  margin-bottom: 1rem;
}
footer#footer .footer_top .left_side ul.contact_outer li a span {
  transition: color 0.3s ease;
  word-break: break-all;
}
footer#footer .footer_top .left_side ul.contact_outer li a svg {
  transition: fill 0.3s ease;
}
footer#footer .footer_top .left_side ul.contact_outer li a:hover span {
  color: var(--secondary);
}
footer#footer .footer_top .left_side ul.contact_outer li a:hover svg path {
  fill: var(--secondary) !important;
}
footer#footer .footer_top .left_side ul.contact_outer li a:hover svg path.stroke {
  stroke: var(--secondary) !important;
}
footer#footer .footer_top .left_side ul.contact_outer li a:hover svg circle {
  stroke: var(--secondary);
}
footer#footer .footer_top .left_side ul.contact_outer li:not(:last-child) {
  margin-bottom: 1rem;
}
footer#footer .footer_top .left_side ul.contact_outer li span {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 20px;
}
footer#footer .footer_top .left_side ul.contact_outer li svg {
  margin-right: 1rem;
}
footer#footer .footer_top .right_side {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 70%;
}
@media (max-width: 1024px) {
  footer#footer .footer_top .right_side {
    width: 100%;
  }
}
footer#footer .footer_top .right_side .columns_outer {
  width: 100%;
  display: flex;
  gap: 10rem;
}
@media (max-width: 991px) {
  footer#footer .footer_top .right_side .columns_outer {
    flex-wrap: wrap;
    gap: 3rem;
  }
}
@media (max-width: 500px) {
  footer#footer .footer_top .right_side .columns_outer {
    flex-direction: column;
  }
}
footer#footer .footer_top .right_side .get_in_touch {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer#footer .footer_top .right_side .get_in_touch a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
footer#footer .footer_top .right_side .get_in_touch a span:first-child {
  margin-right: 10px;
}
footer#footer .footer_top .right_side .get_in_touch a span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
footer#footer .footer_top .right_side .get_in_touch a p {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
footer#footer .footer_top .right_side .get_in_touch a p br {
  display: none;
}
@media (max-width: 991px) {
  footer#footer .footer_top .right_side .column {
    width: 45%;
    margin-bottom: 3rem;
  }
  footer#footer .footer_top .right_side .column:last-child {
    width: 100%;
    margin-bottom: 0;
  }
}
footer#footer .footer_top .right_side .column .col_header {
  font-family: "Karla";
  font-size: 18px;
  line-height: 17px;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3rem;
}
footer#footer .footer_top .right_side .column ul {
  list-style-type: none;
  padding-left: 0;
}
footer#footer .footer_top .right_side .column ul.contact_outer li {
  display: flex;
  flex-direction: row;
}
footer#footer .footer_top .right_side .column ul.contact_outer li svg {
  width: 2.4rem;
  height: 2.4rem;
}
footer#footer .footer_top .right_side .column ul.contact_outer li span {
  display: block;
  margin-left: 1rem;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 20px;
  word-break: break-all;
}
footer#footer .footer_top .right_side .column ul li {
  list-style-type: none;
}
footer#footer .footer_top .right_side .column ul li a {
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer#footer .footer_top .right_side .column ul li a:hover {
  color: var(--secondary);
}
footer#footer .footer_top .right_side .column .contact {
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer#footer .footer_top .right_side .column .contact:not(:last-child) {
  margin-bottom: 1rem;
}
footer#footer .footer_top .right_side .column .contact .icon {
  width: 4rem;
  height: 4rem;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 1rem;
}
footer#footer .footer_top .right_side .column .contact .icon svg {
  width: 2rem;
  height: auto;
}
footer#footer .footer_top .right_side .column .contact span {
  color: #676767;
  font-family: Verdana;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
footer#footer .footer_bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #1B1788;
  height: 51px;
  text-transform: uppercase;
}
footer#footer .footer_bottom .footer_bottom_inner {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
footer#footer .footer_bottom p {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

nav.main_navigation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
nav.main_navigation.active {
  background: var(--primary);
}
nav.main_navigation .current_page_item > a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  pointer-events: none;
  margin-top: 27px;
}
nav.main_navigation .current-menu-item > a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  pointer-events: none;
  margin-top: 27px;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  nav.main_navigation > .nav_buttons.nav_buttons_mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  nav.main_navigation > .nav_buttons.nav_buttons_mobile {
    padding: 3rem 3rem 0;
  }
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button {
  cursor: pointer;
  border-radius: 10rem;
  background: var(--secondary) !important;
  border-color: var(--secondary) !important;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button.create-account-button:hover {
  opacity: 0.5 !important;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button.trigger_logout_popup:hover, nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button.button-white:hover {
  background: var(--secondary) !important;
  border-color: var(--secondary) !important;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button span {
  text-transform: none !important;
}
@media (max-width: 991px) {
  nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button {
    border: none;
    height: 5rem;
  }
}
@media (min-width: 992px) {
  nav.main_navigation {
    height: 100%;
  }
  nav.main_navigation > div {
    height: 100%;
  }
  nav.main_navigation > div ul.main_navigation_inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  nav.main_navigation > div ul.main_navigation_inner .mega ul.sub-menu {
    right: 0;
  }
  nav.main_navigation > div ul.main_navigation_inner .mega ul.sub-menu::before {
    left: 360px;
  }
  nav.main_navigation > div ul.main_navigation_inner .mega:hover > ul {
    display: flex !important;
  }
  nav.main_navigation > div ul.main_navigation_inner .mega .parent_mega {
    border-right: 1px solid #D1D1D1;
    padding-right: 2.2rem;
    padding-left: 2.2rem;
  }
  nav.main_navigation > div ul.main_navigation_inner .mega .parent_mega:first-child {
    padding-left: 0;
  }
  nav.main_navigation > div ul.main_navigation_inner .mega .parent_mega:last-child {
    border-right: none;
  }
  nav.main_navigation > div ul.main_navigation_inner .mega .parent_mega > a {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 1.2rem;
    display: block;
    text-transform: uppercase;
    color: #fff;
  }
  nav.main_navigation > div ul.main_navigation_inner .mega .parent_mega > a::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0035 3.40804L1.41153 12L0 10.5885L8.59096 1.99651H1.01922V0H12V10.9808H10.0035V3.40804Z' fill='%23F64A22'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  nav.main_navigation > div ul.main_navigation_inner > li.menu-item-has-children > a {
    position: relative;
  }
  nav.main_navigation > div ul.main_navigation_inner > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 7px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  nav.main_navigation > div ul.main_navigation_inner > li {
    margin-right: 7rem;
    margin-bottom: 0;
    height: 100%;
    position: relative;
  }
}
@media (min-width: 992px) and (max-width: 1224px) {
  nav.main_navigation > div ul.main_navigation_inner > li {
    margin-right: 1rem;
  }
}
@media (min-width: 992px) {
  nav.main_navigation > div ul.main_navigation_inner > li > a {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > a:hover {
    color: #FFEB01;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul {
    display: none;
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 2rem !important;
    border-radius: 10px;
    min-width: 230px;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 20px;
    width: 24px;
    height: 12px;
    pointer-events: none;
    z-index: 2;
    background: transparent;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #fff;
    box-shadow: 0 2px 6px rgba(40, 48, 63, 0.08);
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul:has(> li:nth-child(5)) {
    min-width: 46rem;
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul:has(> li:nth-child(5)) > li {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    display: block;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul li:not(:last-child) {
    margin-bottom: 0;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul li.current-menu-item > a, nav.main_navigation > div ul.main_navigation_inner > li > ul li.current-menu-parent > a {
    color: var(--secondary);
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul li a {
    font-size: 1.6rem;
    color: var(--primary);
    justify-content: flex-start !important;
    transition: color 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    display: block;
    margin-bottom: 10px !important;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul li a:hover {
    color: var(--secondary);
  }
  nav.main_navigation > div ul.main_navigation_inner > li.current-menu-item > a, nav.main_navigation > div ul.main_navigation_inner > li.current-menu-parent > a {
    font-weight: 700;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  nav.main_navigation > div ul.main_navigation_inner > li.contact-us-button {
    margin-left: 12rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 992px) {
  nav.main_navigation > div ul.main_navigation_inner > li.contact-us-button > a {
    background: var(--white);
    color: var(--primary);
    height: auto;
    width: auto;
    display: inline-block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    text-align: center;
    border-radius: 500px;
    padding: 1.4rem 2.4rem;
    font-family: "Inter", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    transition: all 0.5s ease;
    border: 2px solid transparent;
  }
  nav.main_navigation > div ul.main_navigation_inner > li:hover > ul {
    display: block !important;
  }
  nav.main_navigation .search_form, nav.main_navigation .social_media_icons {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  nav.main_navigation {
    display: none;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    overflow-y: auto;
  }
  nav.main_navigation.active {
    display: flex;
  }
  nav.main_navigation > div {
    width: 100%;
  }
  nav.main_navigation > div > ul {
    width: 100%;
    display: flex;
    list-style-type: none;
    flex-direction: column !important;
    padding: 10rem 3rem 2rem !important;
    margin-top: 4rem;
  }
  nav.main_navigation > div > ul > li {
    width: 100%;
    margin-bottom: 2rem !important;
  }
  nav.main_navigation > div > ul > li:last-child {
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--background);
  }
  nav.main_navigation > div > ul > li.menu-item-has-children > a {
    position: relative;
  }
  nav.main_navigation > div > ul > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 0.5rem;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' %3E%3Cpath fill='%23fff' d='M12 15.586L7.707 11.293a1 1 0 00-1.414 1.414l5 5a1 1 0 001.414 0l5-5a1 1 0 00-1.414-1.414L12 15.586z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }
  nav.main_navigation > div > ul > li.current-menu-item > a, nav.main_navigation > div > ul > li.current-menu-parent > a {
    color: var(--secondary);
  }
  nav.main_navigation > div > ul > li > a {
    width: 100%;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--background);
    align-items: center !important;
    justify-content: space-between !important;
  }
  nav.main_navigation > div > ul > li:hover > ul {
    display: flex;
  }
  nav.main_navigation > div > ul > li > ul {
    display: none;
    width: 100%;
    list-style-type: none;
    flex-direction: column !important;
    padding: 0;
    margin-top: 3rem;
  }
  nav.main_navigation > div > ul > li > ul > li {
    width: 100%;
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 1024px) and (min-width: 1200px) {
  nav.main_navigation > div > ul > li > ul > li {
    margin-right: 3rem;
  }
}
@media (max-width: 1024px) and (min-width: 992px) and (max-width: 1199px) {
  nav.main_navigation > div > ul > li > ul > li {
    margin-right: 1rem;
  }
}
@media (max-width: 1024px) {
  nav.main_navigation > div > ul > li > ul > li.current-menu-item > a, nav.main_navigation > div > ul > li > ul > li.current-menu-parent > a {
    color: var(--secondary);
  }
  nav.main_navigation > div > ul > li > ul > li > a {
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: none;
    color: var(--background);
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 767px) {
  body nav.main_navigation .parent_mega > a {
    font-size: 2rem !important;
    text-decoration: underline !important;
  }
}
@media (max-width: 767px) {
  body nav.main_navigation .sub-menu .menu-item a {
    color: white !important;
  }
}

/* ─────────────────────────────────────────────────────────────────
 * Dropdown colour swap when the header is in sticky state.
 * Header: transparent over hero (default) → solid #002446 (sticky).
 * Dropdown follows: white bg + blue text (default) → blue bg + white
 * text (sticky) so it matches the banner the dropdown sits below.
 * ───────────────────────────────────────────────────────────────── */
@media (min-width: 992px) {
  .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul {
    background: var(--primary);
  }
  .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul::before {
    background: var(--primary);
  }
  .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul li a {
    color: #fff;
  }
  .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul li a:hover, .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul li a:focus-visible {
    color: #FFEB01;
  }
  .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul li.current-menu-item > a, .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul li.current-menu-parent > a {
    color: #FFEB01;
  }
}

/* ─────────────────────────────────────────────────────────────────
 * Blog archive — index.php (also covers category, tag, search)
 * Layout follows Figma node 132:185.
 * ───────────────────────────────────────────────────────────────── */
.blog_archive {
  background: #fff;
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.blog_archive_hero {
  position: relative;
  overflow: hidden;
  padding: 22rem 0 8rem;
  color: #fff;
  isolation: isolate;
  background: var(--primary, #002446);
}
@media (max-width: 991px) {
  .blog_archive_hero {
    padding: 16rem 0 6rem;
  }
}
@media (max-width: 600px) {
  .blog_archive_hero {
    padding: 13rem 0 5rem;
  }
}
.blog_archive_hero > .container {
  position: relative;
  z-index: 2;
}

.blog_archive_hero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.blog_archive_hero_bg img, .blog_archive_hero_bg .blog_archive_hero_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.blog_archive_hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.blog_archive_hero_title {
  font-family: "Karla", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.35rem;
  color: #fff;
  margin: 0;
}
@media (max-width: 991px) {
  .blog_archive_hero_title {
    font-size: 5rem;
    letter-spacing: -0.25rem;
  }
}
@media (max-width: 600px) {
  .blog_archive_hero_title {
    font-size: 3.6rem;
    letter-spacing: -0.18rem;
  }
}

/* ─── Body ──────────────────────────────────────────────────────── */
.blog_archive_body {
  padding: 8rem 0 12rem;
}
@media (max-width: 991px) {
  .blog_archive_body {
    padding: 5rem 0 8rem;
  }
}

.blog_archive_grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}
@media (max-width: 991px) {
  .blog_archive_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (max-width: 600px) {
  .blog_archive_grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.blog_archive_grid_item {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

/* ─── Card ──────────────────────────────────────────────────────── */
.blog_archive_card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #F5F6F8;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.blog_archive_card:hover {
  box-shadow: 0 1.2rem 2.8rem rgba(0, 36, 70, 0.12);
  transform: translateY(-2px);
}
.blog_archive_card:hover .blog_archive_card_image img {
  transform: scale(1.04);
}

.blog_archive_card_image_link {
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--primary);
  text-decoration: none;
}

.blog_archive_card_image {
  aspect-ratio: 416/260;
  width: 100%;
  overflow: hidden;
}
.blog_archive_card_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.blog_archive_card_image_placeholder {
  width: 100%;
  height: 100%;
  background: var(--primary);
}

.blog_archive_card_body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2.4rem 3rem 3rem;
}
@media (max-width: 991px) {
  .blog_archive_card_body {
    padding: 2.4rem 2.4rem 2.4rem;
  }
}

.blog_archive_card_meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.4rem;
}

.blog_archive_card_meta_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.6rem;
  flex-shrink: 0;
}
.blog_archive_card_meta_icon svg {
  width: 100%;
  height: 100%;
}
.blog_archive_card_meta_icon svg path {
  fill: var(--secondary);
}

.blog_archive_card_date {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  color: #3F3F3F;
}

.blog_archive_card_divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 36, 70, 0.18);
  border: 0;
  margin: 0 0 2rem;
}

.blog_archive_card_title {
  font-family: "Karla", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.1rem;
  color: #002446;
  margin: 0 0 1.6rem;
}
.blog_archive_card_title a {
  color: #002446;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog_archive_card_title a:hover, .blog_archive_card_title a:focus-visible {
  color: var(--secondary);
}

.blog_archive_card_excerpt {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3F3F3F;
  margin: 0 0 2.4rem;
  flex: 1;
}

.blog_archive_card_more {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  margin-top: 2rem;
  align-self: flex-start;
  transition: color 0.3s ease;
}
.blog_archive_card_more:hover, .blog_archive_card_more:focus-visible {
  color: var(--primary);
}

.blog_archive_card_more_label {
  color: inherit;
  font: inherit;
}

.blog_archive_card_more_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  flex-shrink: 0;
}
.blog_archive_card_more_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Pagination ───────────────────────────────────────────────── */
.blog_archive_pagination {
  margin-top: 6rem;
}
@media (max-width: 991px) {
  .blog_archive_pagination {
    margin-top: 4rem;
  }
}
.blog_archive_pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.blog_archive_pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 0 1.4rem;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(0, 36, 70, 0.2);
  border-radius: 4rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.blog_archive_pagination .page-numbers:hover, .blog_archive_pagination .page-numbers:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.blog_archive_pagination .page-numbers.current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  cursor: default;
}
.blog_archive_pagination .page-numbers.dots {
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: default;
}
.blog_archive_pagination .page-numbers.dots:hover {
  background: transparent;
  color: var(--text);
}

/* ─── Empty state ──────────────────────────────────────────────── */
.blog_archive_empty {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  text-align: center;
  padding: 6rem 0;
  margin: 0;
}

.single_wrapper .blog_single_header {
  background: #10102E;
  background: linear-gradient(180deg, rgb(16, 16, 46) 0%, rgb(0, 0, 141) 73%);
  padding-top: 20rem;
}
.single_wrapper .blog_single_header .blog_single_header_inner {
  display: flex;
  flex-direction: column;
}
.single_wrapper .blog_single_header .blog_single_header_inner h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 580px;
}
.single_wrapper .blog_single_header .blog_single_header_inner p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.single_wrapper .blog_single_header .blog_single_header_inner .date {
  display: flex;
  align-items: center;
}
.single_wrapper .blog_single_header .blog_single_header_inner .date_text span {
  color: #fff;
  margin-left: 1rem;
}
.single_wrapper .blog_single_header .blog_single_header_inner .blog_meta {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.single_wrapper .blog_single_header .blog_single_header_inner .blog_meta .author {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
.single_wrapper .blog_single_header .blog_single_header_inner .blog_meta .author .author_name span {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-left: 1rem;
}
.single_wrapper .blog_single_header .featured_image {
  border-radius: 10px;
  overflow: hidden;
  height: 500px;
  margin-top: 4rem;
  margin-bottom: -26rem;
}
.single_wrapper .blog_single_header .featured_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_wrapper .main_section {
  padding-top: 30rem;
  padding-bottom: 10rem;
}
.single_wrapper .main_section .share_post {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  width: 15%;
}
.single_wrapper .main_section .share_post span {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  display: block;
}
.single_wrapper .main_section .share_post a {
  text-decoration: none;
}
.single_wrapper .main_section h2 {
  font-size: 30px;
}
.single_wrapper .main_section .button_wrapper {
  margin-top: 2rem;
  display: flex;
}
.single_wrapper .main_section .share_post_btn {
  text-decoration: none;
  min-width: 183px;
  height: 49px;
  border: 1px solid #00007C;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-top: 2rem;
  cursor: pointer;
  background: transparent;
}
.single_wrapper .main_section .share_post_btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.single_wrapper .main_section .share_post_btn:hover .share_post_text {
  color: var(--white);
}
.single_wrapper .main_section .share_post_btn .share_post_icon {
  margin-right: 1rem;
}
.single_wrapper .main_section .share_post_btn .share_post_text {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: bold;
}
.single_wrapper .main_section .section_inner {
  display: flex;
  align-items: flex-start;
  gap: 7rem;
}
.single_wrapper .main_section .section_inner .section_main_content {
  width: 70%;
}
.single_wrapper .main_section .section_inner .banner_right_wrapper {
  width: 356px;
  display: flex;
  align-items: flex-end;
}
.single_wrapper .main_section .section_inner .banner_right_wrapper .banner_right {
  width: 100%;
  background: linear-gradient(90deg, #000043 0%, #00007C 100%);
  border-radius: 10px;
  position: relative;
}
.single_wrapper .main_section .section_inner .banner_right_wrapper .banner_right .title {
  padding: 2rem;
}
.single_wrapper .main_section .section_inner .banner_right_wrapper .banner_right .title h3 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}
.single_wrapper .main_section .section_inner .banner_right_wrapper .banner_right .title p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
}
.single_wrapper .main_section .section_inner .banner_right_wrapper .banner_right .blog_banner_img {
  position: relative;
  right: 0;
  bottom: 0;
}
.single_wrapper .main_section .section_inner .banner_right_wrapper .banner_right .button_wrapper {
  position: absolute;
  bottom: 30px;
  left: 12px;
}
.single_wrapper .main_section .section_inner .banner_right_wrapper .banner_right .button_wrapper a.button.button-primary {
  color: var(--white) !important;
  background: var(--secondary) !important;
  font-weight: bold;
  font-size: 14px;
  border-color: transparent;
}
.single_wrapper .main_section .section_inner .banner_right_wrapper .banner_right .button_wrapper a.button.button-primary .phone_icon {
  margin-right: 1rem;
}
.single_wrapper .main_section .section_inner .banner_right_wrapper .banner_right .button_wrapper a.button.button-primary span {
  color: var(--white) !important;
}
.single_wrapper .related_posts {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: linear-gradient(107.02deg, #F2F2F2 13.65%, #FFFFFF 72.75%);
  position: relative;
  z-index: 1;
}
.single_wrapper .related_posts .title_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
.single_wrapper .related_posts .title_wrapper span {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
}
.single_wrapper .related_posts .title_wrapper p {
  font-size: 120px;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(106deg, #C4C4C4 85%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.single_wrapper .related_posts .related_posts_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.single_wrapper .related_posts .related_posts_wrapper .blog_post_single:hover .right_side_post {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}
.single_wrapper .related_posts .related_posts_wrapper .blog_post_single:hover .right_side_post .blog_card_title h3 {
  color: #fff;
}
.single_wrapper .related_posts .related_posts_wrapper .blog_post_single:hover .right_side_post .date_text span {
  color: #fff !important;
}
.single_wrapper .related_posts .related_posts_wrapper .blog_post_single:hover .right_side_post .excerpt p {
  color: #fff !important;
}
.single_wrapper .related_posts .related_posts_wrapper .blog_post_single:hover .right_side_post .btn_wrapper a {
  background: #fff !important;
  color: var(--secondary) !important;
}
.single_wrapper .related_posts .related_posts_wrapper .left_side_post {
  width: 100%;
  position: relative;
}
.single_wrapper .related_posts .related_posts_wrapper .left_side_post .blog_card_image {
  position: relative;
  height: 250px;
  display: block;
}
.single_wrapper .related_posts .related_posts_wrapper .left_side_post .blog_card_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_wrapper .related_posts .related_posts_wrapper .left_side_post .post-categories {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.single_wrapper .related_posts .related_posts_wrapper .left_side_post .post-categories .category {
  color: #fff;
  font-size: 1.5rem;
  background: var(--secondary);
  padding: 1rem 3rem;
  display: block;
}
.single_wrapper .related_posts .related_posts_wrapper .right_side_post {
  width: 100%;
  background: #FAFAFA;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #C5C5C5;
  transition: background 0.3s ease;
  min-height: 390px;
}
.single_wrapper .related_posts .related_posts_wrapper .right_side_post a {
  text-decoration: none;
}
.single_wrapper .related_posts .related_posts_wrapper .right_side_post .date {
  display: flex;
  align-items: center;
}
.single_wrapper .related_posts .related_posts_wrapper .right_side_post .date_text span {
  color: var(--primary);
  margin-left: 1rem;
  transition: color 0.3s ease;
}
.single_wrapper .related_posts .related_posts_wrapper .right_side_post h3 {
  color: var(--primary);
  padding-bottom: 0rem;
  line-height: 1.4;
  font-size: 2.5rem;
  font-weight: bold;
  transition: color 0.3s ease;
}
.single_wrapper .related_posts .related_posts_wrapper .right_side_post .excerpt {
  margin-bottom: 2rem;
}
.single_wrapper .related_posts .related_posts_wrapper .right_side_post .excerpt p {
  color: var(--primary);
  transition: color 0.3s ease;
}
.single_wrapper .related_posts .related_posts_wrapper .right_side_post .btn_wrapper {
  display: flex;
}
.single_wrapper .related_posts .related_posts_wrapper .right_side_post .btn_wrapper a {
  padding: 0rem 5rem;
}
.single_wrapper .related_posts .related_posts_wrapper .right_side_post .btn_wrapper a:hover {
  background: var(--secondary);
}

.single_product {
  background: #fff;
}

.single_product_hero {
  padding: 18rem 0 6rem;
}
@media (max-width: 991px) {
  .single_product_hero {
    padding: 13rem 0 4rem;
  }
}

/* ─── Header overrides — grey scheme on single product pages only ─────
 * The fixed site header defaults to white text on a transparent/dark
 * background. Per Figma 134:1446, on /products/<slug> the top bar text,
 * separators, divider line, and main nav links are mid-grey #3f3f3f
 * with a #d9d9d9 underline. Scope strictly via body.single-products so
 * other templates are untouched. */
body.single-products {
  /* Dual CTA banner sits between related products and footer — push the
   * footer down a bit so the banner has room to breathe. */
}
body.single-products > main.single_product > .dual_cta_banner {
  margin-bottom: 8rem;
}
@media (max-width: 991px) {
  body.single-products > main.single_product > .dual_cta_banner {
    margin-bottom: 5rem;
  }
}
body.single-products {
  /* Sticky header sits white on product pages — Figma 134:1446 */
}
body.single-products header#masthead.sticky_header,
body.single-products header#masthead.sticky_header .top_bar {
  background-color: #fff !important;
}
body.single-products header#masthead .top_bar .top_bar_inner {
  border-bottom-color: #d9d9d9;
}
body.single-products header#masthead .top_bar .left_side .top_bar_phone,
body.single-products header#masthead .top_bar .left_side .top_bar_phone .top_bar_phone_number {
  color: #3f3f3f;
}
body.single-products header#masthead .top_bar .left_side .top_bar_phone svg path {
  fill: #3f3f3f;
}
body.single-products header#masthead .top_bar .right_side .header_link {
  color: #3f3f3f;
}
body.single-products header#masthead .top_bar .right_side .header_link:hover {
  color: var(--secondary, #1B1788);
}
body.single-products header#masthead .top_bar .right_side .separator {
  color: #d9d9d9;
}
body.single-products header#masthead nav.main_navigation ul.main_navigation_inner > li > a {
  color: #3f3f3f;
}
body.single-products header#masthead nav.main_navigation ul.main_navigation_inner > li > a:hover {
  color: var(--secondary, #1B1788);
}
body.single-products {
  /* Search input — grey pill per Figma 134:1506 */
}
body.single-products header#masthead .header_search_wrapper .header_search_form {
  background: #F2F2F2;
  border: 1px solid #3F3F3F;
  box-shadow: none;
}
body.single-products header#masthead .header_search_wrapper .header_search_input {
  background: #F2F2F2;
  color: #3f3f3f;
}
body.single-products header#masthead .header_search_wrapper .header_search_input::-moz-placeholder {
  color: #939393;
}
body.single-products header#masthead .header_search_wrapper .header_search_input::placeholder {
  color: #939393;
}
body.single-products header#masthead .header_search_wrapper .header_search_icon svg path {
  fill: #3f3f3f;
}
body.single-products {
  /* Single product uses a white header (not the dark-blue brand header).
   * The .nav_bg dropdown overlay is meant to dim a hero image so the
   * dropdown stands out — on a white header it just makes the page look
   * muddy when a menu opens. Hide it on this template only. */
}
body.single-products .nav_bg,
body.single-products .nav_bg.active {
  display: none !important;
}
body.single-products {
  /* Sticky header on /products/<slug>/ stays white (rule above). The
   * default sticky-state dropdown is dark-blue + white text, which clashes
   * against the white sticky header. Force the dropdown to keep its
   * default colour scheme (white bg + blue text) even when sticky. */
}
body.single-products .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul {
  background: #fff;
}
body.single-products .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul::before {
  background: #fff;
}
body.single-products .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul li a {
  color: var(--primary);
}
body.single-products .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul li a:hover, body.single-products .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul li a:focus-visible {
  color: var(--secondary);
}
body.single-products .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul li.current-menu-item > a, body.single-products .sticky_header nav.main_navigation > div ul.main_navigation_inner > li > ul li.current-menu-parent > a {
  color: var(--secondary);
}

.single_product_hero_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8rem;
  align-items: start;
}
@media (max-width: 991px) {
  .single_product_hero_grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* ─── Gallery (left column) ─────────────────────────────────────────── */
.single_product_gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.single_product_gallery_main {
  background: #f5f6f8;
  aspect-ratio: 6/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem;
}
@media (max-width: 600px) {
  .single_product_gallery_main {
    padding: 2rem;
  }
}
.single_product_gallery_main img, .single_product_gallery_main .single_product_gallery_image {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
}

.single_product_gallery_placeholder {
  width: 100%;
  height: 100%;
  background: #f5f6f8;
}

.single_product_gallery_thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 600px) {
  .single_product_gallery_thumbs {
    gap: 1rem;
  }
}

.single_product_gallery_thumb {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  aspect-ratio: 1.23/1; /* matches Figma 188×153 ratio */
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.single_product_gallery_thumb:hover, .single_product_gallery_thumb.is_active {
  border-color: var(--secondary, #1B1788);
}
.single_product_gallery_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ─── Content (right column) ────────────────────────────────────────── */
.single_product_content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 2rem;
}

.single_product_eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--secondary, #1B1788);
  margin: 0;
  letter-spacing: 0.02em;
}

.single_product_title {
  font-family: "Karla", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.25rem;
  color: var(--primary, #002446);
  margin: 0;
}
@media (max-width: 1200px) {
  .single_product_title {
    font-size: 4rem;
    letter-spacing: -0.2rem;
  }
}
@media (max-width: 600px) {
  .single_product_title {
    font-size: 3rem;
    letter-spacing: -0.15rem;
  }
}

.single_product_short_description {
  font-family: "Karla", sans-serif;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
  color: #3F3F3F;
  margin: 0 0 1.6rem;
}
@media (max-width: 600px) {
  .single_product_short_description {
    font-size: 1.7rem;
    letter-spacing: -0.05rem;
  }
}

/* ─── Accordions (Features / Specifications) ───────────────────────── */
.single_product_accordion {
  border-top: 1px solid #d9d9d9;
  padding: 1.6rem 0;
}
.single_product_accordion[open] {
  padding-bottom: 2rem;
}
.single_product_accordion:last-of-type {
  border-bottom: 1px solid #d9d9d9;
}

.single_product_accordion_summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-family: "Karla", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.09rem;
  color: var(--primary, #002446);
  padding: 1.4rem 0;
}
.single_product_accordion_summary::-webkit-details-marker {
  display: none;
}

.single_product_accordion_icon {
  width: 1.4rem;
  height: 1.4rem;
  position: relative;
  flex-shrink: 0;
}
.single_product_accordion_icon::before, .single_product_accordion_icon::after {
  content: "";
  position: absolute;
  background: var(--primary, #002446);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.single_product_accordion_icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.single_product_accordion_icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.single_product_accordion[open] .single_product_accordion_icon::after {
  opacity: 0;
}

.single_product_features_list,
.single_product_spec_list {
  list-style: disc;
  padding-left: 2.5rem;
  margin: 1.2rem 0 0;
  font-family: "Karla", sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #3F3F3F;
}
.single_product_features_list li,
.single_product_spec_list li {
  margin: 0.4rem 0;
}

.single_product_spec_label {
  font-weight: 700;
  color: var(--secondary, #1B1788);
  margin-right: 0.4rem;
}

.single_product_spec_value {
  font-weight: 300;
  color: #3F3F3F;
}

/* ─── CTAs ──────────────────────────────────────────────────────────── */
.single_product_ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2rem;
}

.single_product_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 23rem;
  min-height: 6rem;
  padding: 1.6rem 3.2rem;
  background: var(--button-primary, #FFEB01);
  color: var(--secondary, #1B1788);
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 500px;
  transition: background 0.2s ease, color 0.2s ease;
}
.single_product_cta:hover, .single_product_cta:focus-visible {
  background: var(--primary, #002446);
  color: #fff;
}
@media (max-width: 600px) {
  .single_product_cta {
    flex: 1 1 100%;
    min-width: 0;
  }
}

/* ─── Related products grid ─────────────────────────────────────────── */
.single_product_related {
  padding: 6rem 0 8rem;
}
@media (max-width: 991px) {
  .single_product_related {
    padding: 4rem 0 6rem;
  }
}

.single_product_related_title {
  font-family: "Karla", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.25rem;
  color: var(--primary, #002446);
  text-align: center;
  margin: 0 0 4rem;
}
@media (max-width: 600px) {
  .single_product_related_title {
    font-size: 3rem;
    letter-spacing: -0.15rem;
  }
}

.single_product_related_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 1200px) {
  .single_product_related_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .single_product_related_grid {
    grid-template-columns: 1fr;
  }
}

.single_product_related_item {
  display: flex;
  flex-direction: column;
  background: #f5f6f8;
  border-radius: 0;
  overflow: hidden;
}

.single_product_related_image_link {
  display: block;
  text-decoration: none;
}

.single_product_related_image {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 2rem;
}
.single_product_related_image img {
  max-width: 70%;
  height: auto;
  mix-blend-mode: multiply;
}

.single_product_related_name {
  font-family: "Karla", sans-serif;
  font-size: 2rem !important;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.1rem;
  color: var(--primary, #002446);
  text-align: center;
  margin: 0 2rem 2rem;
}
@media (max-width: 991px) {
  .single_product_related_name {
    font-size: 1.8rem !important;
  }
}
.single_product_related_name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.single_product_related_name a:hover, .single_product_related_name a:focus-visible {
  color: var(--secondary, #1B1788);
}
.single_product_related_name {
  flex: 1;
}

.single_product_related_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--button-primary, #FFEB01);
  color: var(--secondary, #1B1788);
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.4rem 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.single_product_related_btn:hover, .single_product_related_btn:focus-visible {
  background: var(--primary, #002446);
  color: #fff;
}

/* ───────────────────────────────────────────────────────────────────
 * Product Category archive — taxonomy-product-category.php
 * Layout matches Figma 134:1378.
 * ─────────────────────────────────────────────────────────────────── */
.product_archive {
  background: #fff;
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.product_archive_hero {
  position: relative;
  overflow: hidden;
  padding: 22rem 0 8rem;
  color: #fff;
  text-align: center;
  isolation: isolate;
  background: var(--primary, #002446);
}
@media (max-width: 991px) {
  .product_archive_hero {
    padding: 16rem 0 6rem;
  }
}
.product_archive_hero > .container {
  position: relative;
  z-index: 2;
}

.product_archive_hero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.product_archive_hero_bg img, .product_archive_hero_bg .product_archive_hero_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.product_archive_hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.product_archive_hero_title {
  font-family: "Karla", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.35rem;
  color: #fff;
  margin: 0 0 2rem;
}
@media (max-width: 991px) {
  .product_archive_hero_title {
    font-size: 5rem;
    letter-spacing: -0.25rem;
  }
}
@media (max-width: 600px) {
  .product_archive_hero_title {
    font-size: 3.6rem;
    letter-spacing: -0.18rem;
  }
}

.product_archive_hero_description {
  max-width: 88rem;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  line-height: 1.55;
  color: #fff;
}
.product_archive_hero_description p {
  color: #fff !important; /* override aggressive global p rules */
  margin: 0 0 1rem;
  padding: 0;
  text-align: center;
}
.product_archive_hero_description p:last-child {
  margin-bottom: 0;
}

/* ─── Body ──────────────────────────────────────────────────────── */
.product_archive_body {
  padding: 6rem 0 10rem;
}
@media (max-width: 991px) {
  .product_archive_body {
    padding: 4rem 0 8rem;
  }
}

/* ─── Toolbar (count + sort) ────────────────────────────────────── */
.product_archive_toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.product_archive_count {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  color: #3f3f3f;
  margin: 0;
}

.product_archive_sort {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.product_archive_sort_label {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #3f3f3f;
}

.product_archive_sort_select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border: 1px solid var(--secondary, #1B1788);
  border-radius: 500px;
  padding: 1rem 4rem 1rem 2rem;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #3f3f3f;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%231B1788' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  background-size: 10px 7px;
}
.product_archive_sort_select:focus-visible {
  outline: 2px solid var(--secondary, #1B1788);
  outline-offset: 2px;
}

/* ─── Layout (sidebar + grid) ───────────────────────────────────── */
.product_archive_layout {
  display: grid;
  grid-template-columns: 28rem minmax(0, 1fr);
  gap: 6rem;
  align-items: start;
}
@media (max-width: 991px) {
  .product_archive_layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── Sidebar filters ───────────────────────────────────────────── */
.product_archive_filters {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.product_archive_filter_group {
  border: 0;
  margin: 0;
  padding: 0;
}

.product_archive_filter_heading {
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  color: #3f3f3f;
  margin: 0;
  padding: 0.4rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* Hide native marker — Chrome/Edge */
}
.product_archive_filter_heading::-webkit-details-marker {
  display: none;
}
.product_archive_filter_heading::after {
  content: "";
  flex: 0 0 auto;
  width: 1.5rem;
  height: 0.9rem;
  background-color: #3f3f3f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='15' height='9' viewBox='0 0 15 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.199705 7.91019C-0.0665683 7.64633 -0.0665683 7.21851 0.199705 6.95464L7.0179 0.197891C7.28417 -0.0659835 7.71581 -0.0659835 7.98208 0.197891L14.8003 6.95464C15.0666 7.21851 15.0666 7.64633 14.8003 7.91019C14.534 8.17406 14.1023 8.17406 13.8361 7.91019L7.49999 1.63123L1.16389 7.91019C0.897616 8.17406 0.465979 8.17406 0.199705 7.91019Z'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg width='15' height='9' viewBox='0 0 15 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.199705 7.91019C-0.0665683 7.64633 -0.0665683 7.21851 0.199705 6.95464L7.0179 0.197891C7.28417 -0.0659835 7.71581 -0.0659835 7.98208 0.197891L14.8003 6.95464C15.0666 7.21851 15.0666 7.64633 14.8003 7.91019C14.534 8.17406 14.1023 8.17406 13.8361 7.91019L7.49999 1.63123L1.16389 7.91019C0.897616 8.17406 0.465979 8.17406 0.199705 7.91019Z'/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.product_archive_filter_heading:hover {
  color: var(--secondary, #1B1788);
}
.product_archive_filter_heading:hover::after {
  background-color: var(--secondary, #1B1788);
}

/* SVG points up natively. Open = up (collapse hint). Closed = flipped to point down. */
.product_archive_filter_group:not([open]) > .product_archive_filter_heading::after {
  transform: rotate(180deg);
}

.product_archive_filter_body {
  padding-top: 2rem;
}

.product_archive_filter_subheading {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #3f3f3f;
  margin: 0 0 1.2rem;
}

.product_archive_filter_list {
  list-style: none !important; /* override aggressive _reset.scss `ul { list-style-type: disc !important }` */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product_archive_filter_item {
  margin: 0;
}

.product_archive_filter_label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  color: #3f3f3f;
  line-height: 1.5;
  padding: 0.6rem 0;
}
.product_archive_filter_label:hover .product_archive_filter_text {
  color: var(--secondary, #1B1788);
}

.product_archive_filter_checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #a7a7a7;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s ease;
}
.product_archive_filter_checkbox:hover:not(:disabled) {
  border-color: var(--secondary, #1B1788);
}
.product_archive_filter_checkbox:checked {
  border-color: var(--secondary, #1B1788);
  background: #fff;
}
.product_archive_filter_checkbox:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L5 9L13 1' stroke='%231B1788' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.product_archive_filter_checkbox:disabled {
  cursor: not-allowed;
}

.product_archive_filter_text {
  transition: color 0.15s ease;
}

/* ─── Grid + cards ──────────────────────────────────────────────── */
.product_archive_grid_wrapper {
  min-width: 0;
}

.product_archive_grid {
  list-style: none !important; /* override _reset.scss `ul { list-style-type: disc !important }` */
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 1100px) {
  .product_archive_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .product_archive_grid {
    grid-template-columns: 1fr;
  }
}

.product_archive_card {
  display: flex;
  flex-direction: column;
  background: #f5f6f8;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.product_archive_card[hidden] {
  display: none;
}
.product_archive_card:hover {
  transform: translateY(-2px);
}

.product_archive_card_image_link {
  display: block;
  text-decoration: none;
}

.product_archive_card_image {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 2rem;
}
.product_archive_card_image img {
  max-width: 70%;
  height: auto;
  mix-blend-mode: multiply;
}

.product_archive_card_title {
  font-family: "Karla", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.1rem;
  color: var(--primary, #002446);
  text-align: center;
  margin: 0 2rem 2rem;
  flex: 1;
}
.product_archive_card_title a {
  color: inherit;
  text-decoration: none;
}
.product_archive_card_title a:hover {
  color: var(--secondary, #1B1788);
}

.product_archive_card_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--button-primary, #FFEB01);
  color: var(--secondary, #1B1788);
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.4rem 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.product_archive_card_btn:hover, .product_archive_card_btn:focus-visible {
  background: var(--primary, #002446);
  color: #fff;
}

.product_archive_empty {
  grid-column: 1/-1;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  color: #3f3f3f;
  padding: 4rem 0;
  margin: 0;
}

/* ─── Load more button ──────────────────────────────────────────── */
.product_archive_load_more_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.product_archive_load_more {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.6rem;
  min-width: 24rem;
  padding: 1.6rem 3.2rem;
  background: var(--button-primary, #FFEB01);
  color: var(--secondary, #1B1788);
  border: 2px solid var(--button-primary, #FFEB01);
  border-radius: 500px;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.product_archive_load_more:hover, .product_archive_load_more:focus-visible {
  background: var(--primary, #002446);
  color: #fff;
  border-color: var(--primary, #002446);
}
.product_archive_load_more[hidden] {
  display: none;
}

/* Push the footer down past the dual CTA on archive pages too */
body.tax-product-category > main.product_archive ~ .dual_cta_banner,
body.tax-product-category > main.product_archive > .dual_cta_banner,
body.post-type-archive-products > main.product_archive > .dual_cta_banner {
  margin-bottom: 8rem;
}
@media (max-width: 991px) {
  body.tax-product-category > main.product_archive ~ .dual_cta_banner,
  body.tax-product-category > main.product_archive > .dual_cta_banner,
  body.post-type-archive-products > main.product_archive > .dual_cta_banner {
    margin-bottom: 5rem;
  }
}

/* ─── /products/ archive only — left-aligned hero ─────────────────
 * Category archives stay centered; the all-products archive sits
 * left-aligned so the page reads like a brand banner rather than
 * a single-category landing.
 * ───────────────────────────────────────────────────────────────── */
body.post-type-archive-products .product_archive_hero {
  text-align: left;
}
body.post-type-archive-products .product_archive_hero_title,
body.post-type-archive-products .product_archive_hero_description {
  text-align: left;
}
body.post-type-archive-products .product_archive_hero_description {
  margin-left: 0;
  margin-right: 0;
}
body.post-type-archive-products .product_archive_hero_description p {
  text-align: left !important;
}

/* ─────────────────────────────────────────────────────────────────
 * 404 page — wp-content/themes/hbsme/404.php
 * Layout follows Figma node 92:2.
 * ───────────────────────────────────────────────────────────────── */
.page_404 {
  background: var(--secondary, #1B1788);
}

.page_404_hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100vh - 28rem);
  padding: 18rem 0 12rem;
  color: #fff;
  background: var(--secondary, #1B1788);
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .page_404_hero {
    padding: 14rem 0 10rem;
    min-height: 70vh;
  }
}
@media (max-width: 600px) {
  .page_404_hero {
    padding: 12rem 0 8rem;
  }
}
.page_404_hero > .container {
  position: relative;
  z-index: 2;
}

.page_404_hero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page_404_hero_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.page_404_hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(27, 23, 136, 0.5) 0%, rgba(2, 46, 88, 0.6) 100%);
  pointer-events: none;
}

.page_404_inner {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}

.page_404_icon {
  display: inline-block;
  margin: 0 0 4rem;
  width: 8.8rem;
  height: 8.8rem;
  line-height: 0;
}
@media (max-width: 600px) {
  .page_404_icon {
    width: 6.4rem;
    height: 6.4rem;
    margin-bottom: 2.4rem;
  }
}
.page_404_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page_404_title {
  font-family: "Karla", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.35rem;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 3rem;
}
@media (max-width: 991px) {
  .page_404_title {
    font-size: 5rem;
    letter-spacing: -0.25rem;
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 600px) {
  .page_404_title {
    font-size: 3.6rem;
    letter-spacing: -0.18rem;
  }
}

.page_404_description {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  margin: 0 auto;
  max-width: 64rem;
}
@media (max-width: 991px) {
  .page_404_description {
    font-size: 1.4rem;
  }
}

.page_404_link {
  color: #FFEB01;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  transition: color 0.3s ease;
}
.page_404_link:hover, .page_404_link:focus-visible {
  color: #fff;
}
