:root {
  --lightest_grey: #f8f8f8;
}
* {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.2rem;
  font-style: normal;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.top_bar {
  top: 0;
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1rem;
  z-index: 2000;
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.nav_toggle {
  display: none;
}
.hamburger {
  display: none;
}
.nav_backdrop {
  display: none;
}
.nav_login_item {
  display: none;
}
.top_bar.with_shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.top_bar * {
  font-family: inherit;
  font-weight: 400;
}
.sub_top_bar {
  position: sticky;
  top: 4rem;
  width: 100%;
  height: 1rem;
  background-color: #235789;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.phone_pill,
.quote_button {
  background-color: #161925;
  color: #ffffff;
  border-radius: 0.4rem;
  padding: 0.5rem 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.phone_pill {
  user-select: none;
  background-color: transparent;
  color: #235789;
}
.logo {
  font-weight: 600;
  font-size: 1.2rem;
}
.logo img {
  position: absolute;
  top: 1rem;
  height: 4rem;
  left: 15rem;
  z-index: 2000;
  object-fit: contain;
  border: 0.8rem solid white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.nav_buttons ul {
  display: flex;
  gap: 0;
  justify-content: space-between;
  border-radius: 0.5rem;
  list-style: none;
}
.nav_button a {
  text-decoration: none;
  color: #161925;
  font-weight: 700;
  display: block;
  margin: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  transition: background 0.2s ease;
}
.nav_button a:hover {
  background-color: #235789;
  color: white;
  cursor: pointer;
}
.fullpage_image {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}
body::before {
  content: "";
  position: relative;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #ffffff);
  z-index: -1;
  pointer-events: none;
}
.hero_block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: calc(100% - 6rem);
  margin: 4rem auto 0 auto;
}
.hero_tagline_box {
  box-sizing: border-box;
  padding: 2rem 3rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.hero_tagline {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #235789;
}
.hero_sub_tagline {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #161925;
}
.customer_logo_bar {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 2rem 0;
  padding: 0.5rem 0;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.customer_logo_track {
  display: flex;
  align-items: center;
  gap: 10rem;
  width: max-content;
  animation: customer_logo_scroll 80s linear infinite;
}
.customer_logo_track img {
  height: 5rem;
  width: auto;
  margin: 1rem 0;
  flex-shrink: 0;
}
@keyframes customer_logo_scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.request_quote_button {
  align-self: flex-end;
  margin-top: 4rem;
  padding: 1.25rem 3rem;
  background-color: #161925;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease;
}
.request_quote_button:hover {
  background-color: #235789;
}
.blue_bar {
  width: 100%;
  height: 0.8rem;
  background-color: #235789;
  margin-top: 4rem;
  margin-bottom: 0;
}
.content_start {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  background: linear-gradient(135deg, #EAF2F5 0%, #F7F9FA 50%, #F2F4F6 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: "Lora", serif;
}
.grid {
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  outline: 1px solid #d9d9d9;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.our_story {
  max-width: min(60rem, calc(100% - 6rem));
  box-sizing: border-box;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
}
.our_story + .our_story {
  margin-top: 2rem;
}
.our_story_heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #235789;
  margin-bottom: 1.5rem;
  text-align: left;
}
.our_story_body {
  font-family: "Lora", serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #161925;
  text-align: left;
}
.hero_image {
  width: 90%;
  overflow: hidden;
  margin: -2rem auto 0 auto;
}
.hero_image img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.margin_container {
  margin: 0 3rem;
}
.split_container {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 1rem;
}
.margin_container > .split_container:first-child {
  margin-top: 2rem;
}

.grid_container {
  flex: 0 0 calc(60% - 0.5rem);
  column-count: 2;
  column-gap: 1rem;
  column-fill: balance;
}

.description_pane {
  flex: 0 0 calc(40% - 0.5rem);
  position: sticky;
  top: 5rem;
}

.description_box {
  padding: 1.5rem;
  min-height: 8rem;
}

.description_title {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: #235789;
  color: #ffffff;
  border-radius: 0.4rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  margin-bottom: 1rem;
}

.description_body {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: #161925;
}

@media (max-width: 1000px) {
  .split_container {
    flex-direction: column;
  }
  .grid_container,
  .description_pane,
  .registration_form {
    flex: 0 0 auto;
    width: 100%;
  }
  .description_pane {
    order: -1;
    position: sticky;
    top: 4rem;
    z-index: 900;
    background: transparent;
  }
  .registration_form ~ .description_pane {
    order: 0;
    position: static;
    top: auto;
    z-index: auto;
  }
  .grid_container {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .grid_container {
    column-count: 1;
  }
}

.grid_item {
  break-inside: avoid;
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  box-sizing: border-box;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    outline-color 0.15s ease,
    box-shadow 0.15s ease;
}

.grid_item.category p strong:first-child {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: #235789;
}

.grid_item.highlighted {
  border-color: #235789;
  outline-color: #235789;
  box-shadow: 0 0 0 1px #235789;
}
.search_bar {
  margin: 2rem 1rem 0 1rem;
}
.search_input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  font-family: "Lora", serif;
  font-size: 1.1rem;
  border: 1px solid #d0dae3;
  border-radius: 0.5rem;
  background-color: #ffffff;
  outline: none;
}
.search_input:focus {
  border-color: #235789;
}
.topic_list {
  list-style: none;
  padding: 0.5rem 0 0 0;
  margin: 0;
}
.topic_list li {
  padding: 0.25rem 0.4rem;
  font-family: "Lora", serif;
  font-size: 1rem;
  color: #161925;
  border-radius: 0.25rem;
  cursor: pointer;
}
.topic_list li.highlighted {
  font-weight: 700;
  color: #235789;
}
.topic_list li strong {
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
}
.no_results {
  font-family: "Lora", serif;
  font-style: italic;
  color: #6b7280;
  padding: 1rem;
}
.login_container {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 4rem 3rem;
}
.login_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 24rem;
  padding: 2.5rem;
  box-sizing: border-box;
}
.login_input {
  box-sizing: border-box;
  min-width: 0;
}
.login_title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #235789;
  text-align: center;
  margin-bottom: 0.5rem;
}
.login_label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #161925;
}
.login_input {
  padding: 0.75rem 1rem;
  font-family: "Lora", serif;
  font-size: 1.1rem;
  border: 1px solid #d0dae3;
  border-radius: 0.5rem;
  background-color: #ffffff;
  outline: none;
}
.login_input:focus {
  border-color: #235789;
}
textarea.login_input {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.5;
}
.login_submit {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  background-color: #235789;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.login_submit:hover {
  background-color: #161925;
}
.login_button {
  background-color: #161925;
  color: #ffffff;
  border-radius: 0.4rem;
  padding: 0.5rem 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.login_button:hover {
  background-color: #235789;
}
.registration_form {
  flex: 0 0 calc(60% - 0.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2.5rem;
  box-sizing: border-box;
  align-content: start;
}
.registration_title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #235789;
  text-align: center;
  margin-bottom: 0.5rem;
}
.registration_form .login_input {
  width: 100%;
  box-sizing: border-box;
}
.recaptcha_wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}
.description_pane {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.step_list {
  cursor: default;
  margin-bottom: 0;
}
.step_list p strong:first-child {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: #235789;
}
.site_footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  background-color: #161925;
  color: #ffffff;
  padding: 3rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 450;
}
.site_footer * {
  font-family: inherit;
}
.footer_inner {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer_address {
  font-style: normal;
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.6;
  color: #ffffff;
}
.footer_copyright {
  font-size: 0.95rem;
  font-weight: 450;
  color: #d9d9d9;
  border-top: 1px solid #2f3340;
  padding-top: 1.25rem;
  width: 100%;
}

@media (max-width: 1100px) {
  .top_bar {
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
    min-height: 3.6rem;
    box-sizing: border-box;
  }
  .phone_pill {
    display: none;
  }
  .logo img {
    height: 2.4rem;
    top: 0.4rem;
    left: 50%;
    transform: translateX(-70%);
    border-width: 0.3rem;
  }
  .top_bar > .login_button {
    display: none;
  }
  nav.topbar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .hamburger {
    display: block;
    position: relative;
    width: 2rem;
    height: 1.6rem;
    cursor: pointer;
    z-index: 2100;
  }
  .hamburger span {
    display: block;
    position: absolute;
    left: 0;
    height: 5px;
    width: 100%;
    background: #161925;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
    transform-origin: center;
  }
  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: calc(50% - 2.5px); }
  .hamburger span:nth-child(3) { top: calc(100% - 5px); }
  .nav_toggle:checked ~ .hamburger span:nth-child(1) {
    top: calc(50% - 2.5px);
    transform: rotate(45deg);
  }
  .nav_toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav_toggle:checked ~ .hamburger span:nth-child(3) {
    top: calc(50% - 2.5px);
    transform: rotate(-45deg);
  }
  .nav_backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(22, 25, 37, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1400;
  }
  .nav_toggle:checked ~ .nav_backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .nav_buttons {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 78%;
    max-width: 20rem;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
    padding: 5rem 1.25rem 1.5rem;
    transition: transform 0.3s ease;
    z-index: 1500;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .nav_toggle:checked ~ .nav_buttons {
    transform: translateX(0);
  }
  .nav_buttons ul {
    flex-direction: column;
    gap: 0.25rem;
    align-items: stretch;
    height: 100%;
    padding: 0;
  }
  .nav_button a {
    margin: 0;
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
  }
  .nav_login_item {
    display: block;
    margin-top: auto;
  }
  .nav_login_item a {
    background-color: #161925;
    color: #ffffff;
    text-align: center;
  }
  .nav_login_item a:hover {
    background-color: #235789;
    color: #ffffff;
  }
  .hero_block {
    width: auto;
    margin: 2rem 3rem 0 3rem;
  }
  .hero_tagline_box {
    padding: 1.5rem 1.25rem;
  }
  .hero_tagline {
    font-size: 2.2rem;
    line-height: 1.15;
  }
  .hero_sub_tagline {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
  .customer_logo_bar {
    margin: 1.25rem 0;
    padding: 0.35rem 0;
  }
  .customer_logo_track {
    gap: 6rem;
  }
  .customer_logo_track img {
    height: 3.5rem;
    margin: 0.65rem 0;
  }
  .blue_bar {
    margin-top: 2.5rem;
    height: 0.5rem;
  }
  .content_start {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .our_story {
    padding: 1.5rem 1.25rem;
    margin: 0 0.75rem;
  }
  .our_story_heading {
    font-size: 1.9rem;
    text-align: center;
  }
  .our_story_body {
    font-size: 1rem;
    line-height: 1.6;
  }
  .margin_container {
    margin: 0 0.5rem;
  }
  .split_container {
    margin: 0.5rem 0;
  }
  .margin_container > .split_container:first-child {
    margin-top: 1.25rem;
  }
  .search_bar {
    margin: 1.25rem 0.5rem 0;
  }
  .search_input {
    font-size: 1rem;
    padding: 0.65rem 0.85rem;
  }
  .description_pane {
    top: 4.6rem;
  }
  .description_box {
    padding: 1.25rem;
  }
  .description_title {
    white-space: normal;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    font-size: 1rem;
    padding: 0.4rem 0.75rem;
    line-height: 1.3;
  }
  .description_body {
    font-size: 1rem;
  }
  .sub_top_bar {
    top: 3.6rem;
  }
  .site_footer {
    padding: 2rem 1rem;
  }
  .footer_address {
    font-size: 0.95rem;
  }
  .footer_copyright {
    font-size: 0.85rem;
  }
  .login_container {
    padding: 2rem 0.75rem;
  }
  .login_grid {
    padding: 1.5rem 1.1rem;
    max-width: 100%;
  }
  .login_input {
    font-size: 1rem;
    padding: 0.65rem 0.85rem;
  }
  .login_title {
    font-size: 1.6rem;
  }
  .registration_form {
    padding: 1.5rem 1.1rem;
    flex: 0 0 auto;
    width: 100%;
  }
  .registration_title {
    font-size: 1.6rem;
  }
}
