@charset "UTF-8";
header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #0e436f;
  width: 100%;
  position: relative;
}
header nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: clamp(1300px, 90vw, 1716px);
  margin: 0 auto;
  padding: 1rem 2rem;
  z-index: 2;
  background-color: transparent;
}
header nav .logo-container img,
header nav .logo-container svg {
  width: 11rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
header nav .logo-container img:hover,
header nav .logo-container svg:hover {
  opacity: 0.6;
}
header nav .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
header nav .hamburger:focus {
  outline: none;
}
header nav .hamburger .hamburger-line {
  width: 2rem;
  height: 0.25rem;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-origin: 1px;
}
header nav .hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg);
}
header nav .hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
header nav .hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg);
}
header nav .nav-links-container ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}
header nav .nav-links-container li {
  list-style: none;
  white-space: nowrap;
  position: relative;
}
header nav .nav-links-container li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}
header nav .nav-links-container li.dropdown:hover .dropdown-menu::after {
  top: -6px;
  opacity: 1;
}
header nav .nav-links-container li.dropdown .dropdown-menu {
  position: absolute;
  display: block;
  top: 100%;
  right: 50%;
  transform: translateX(50%) translateY(-10px);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 5px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.65);
  padding: 0;
  margin-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
header nav .nav-links-container li.dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
  background: transparent;
}
header nav .nav-links-container li.dropdown .dropdown-menu::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: top 0.2s ease, opacity 0.2s ease;
}
header nav .nav-links-container li.dropdown .dropdown-menu li {
  padding: 0;
}
header nav .nav-links-container li.dropdown .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header nav .nav-links-container li.dropdown .dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.2rem;
  color: #222222;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
  text-decoration: none;
}
header nav .nav-links-container li.dropdown .dropdown-menu li a:hover {
  background-color: rgba(14, 67, 111, 0.05);
  opacity: 1;
}
header nav .nav-links-container li a {
  text-decoration: none;
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
header nav .nav-links-container li a:not(.primary-button):hover {
  opacity: 0.6;
}
header nav .nav-links-container li a:hover {
  text-decoration: none;
}
@media (max-width: 1000px) {
  header nav .hamburger {
    display: flex;
  }
  header nav .nav-links-container {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    width: 100vw;
    background-color: #0e436f;
    padding: 5rem 2rem 2rem 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header nav .nav-links-container.active {
    right: 0;
  }
  header nav .nav-links-container ul {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 0;
  }
  header nav .nav-links-container ul li a {
    font-size: 1.125rem;
  }
  header nav .nav-links-container ul li.dropdown {
    text-align: center;
  }
  header nav .nav-links-container ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  header nav .nav-links-container ul li.dropdown .dropdown-menu {
    position: static;
    display: none;
    background-color: transparent;
    box-shadow: none;
    padding: 1rem 0 0 0;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  header nav .nav-links-container ul li.dropdown .dropdown-menu::before, header nav .nav-links-container ul li.dropdown .dropdown-menu::after {
    display: none;
  }
  header nav .nav-links-container ul li.dropdown .dropdown-menu li:not(:last-child) {
    border-bottom: none;
  }
  header nav .nav-links-container ul li.dropdown .dropdown-menu li a {
    color: white;
    font-size: 1rem;
    padding: 0.8rem 1rem;
    text-align: center;
  }
  header nav .nav-links-container ul li.dropdown .dropdown-menu li a:hover {
    background-color: transparent;
  }
  header nav .nav-links-container ul li.dropdown.active .dropdown-menu {
    display: block;
  }
  header nav .nav-links-container ul li.dropdown .dropdown-toggle::after {
    content: " ▼";
    font-size: 0.75rem;
  }
  header nav .nav-links-container ul li.dropdown.active .dropdown-toggle::after {
    content: " ▲";
  }
}
header .hero-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  header .hero-image {
    object-position: 55% center;
  }
}
header .title-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  padding-top: 1rem;
  padding-bottom: 2rem;
  gap: 2rem;
}
header .title-container h1 {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 1.38px 1.38px rgba(0, 0, 0, 0.25);
}

footer {
  background-color: #f9f9f9;
  color: black;
  padding: 2rem;
  padding-top: 6.25rem;
  text-align: center;
  width: 100%;
}
footer .footer-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: clamp(840px, 70vw, 1230px);
  gap: clamp(5rem, 7vw, 8rem) clamp(2rem, 3vw, 4rem);
  margin: 0 auto;
  margin-bottom: 6rem;
  flex-wrap: wrap;
}
footer .footer-container .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 15rem;
}
footer .footer-container .logo img {
  width: clamp(130px, 10vw, 150px);
}
footer .footer-container .footer-links {
  flex: 1 1 35rem;
  display: flex;
  justify-content: center;
}
footer .footer-container .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: clamp(1.5rem, 4vw, 3rem) clamp(2rem, 3vw, 4rem);
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(4, auto);
}
@media (max-width: 900px) {
  footer .footer-container .footer-links ul {
    grid-template-columns: repeat(3, auto);
  }
}
@media (max-width: 650px) {
  footer .footer-container .footer-links ul {
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 450px) {
  footer .footer-container .footer-links ul {
    grid-template-columns: 1fr;
  }
}
footer .footer-container .footer-links ul li {
  text-align: left;
}
footer .footer-container .footer-links ul li a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
  font-weight: 300;
  display: block;
  white-space: nowrap;
  overflow-wrap: break-word;
}
@media (max-width: 450px) {
  footer .footer-container .footer-links ul li a {
    white-space: normal;
  }
}
footer .footer-container .footer-links ul li a:hover {
  text-decoration: underline;
}
footer .footer-container .address {
  min-width: 15rem;
}
footer .footer-container .address p {
  font-size: 1.125rem;
  font-weight: 300;
  margin: 0;
  line-height: 2.2;
}
footer .footer-container .address p a {
  text-decoration: none;
  color: #2d64b9;
  font-size: 1.5rem;
  font-weight: 400;
}
footer .footer-container .address p a:hover {
  text-decoration: underline;
}
footer .copyright {
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}
footer .social-media {
  margin-bottom: 1rem;
}
footer .social-media a {
  cursor: pointer;
}
footer .social-media a img {
  width: clamp(30px, 5vw, 45px);
}

.primary-button {
  background-color: #2d64b9;
  color: white;
  border-radius: 7px;
  font-size: 1.0625rem;
  font-weight: 500;
  border: none;
  padding: 0.7rem 1.7rem;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-wrap: nowrap;
  transition: background-color 0.2s ease;
}
.primary-button.small {
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
}
.primary-button.large {
  font-size: 1.375rem;
  font-weight: 500;
  padding: 0.9rem 1.8rem;
}
.primary-button.orange {
  background-color: #d4a017;
}
.primary-button:hover {
  background-color: #25549c;
}
.primary-button.orange:hover {
  background-color: #bf8f12;
}
.primary-button.gray {
  background-color: #6c757d;
}
.primary-button.gray:hover {
  background-color: #5a6268;
}
.primary-button.text-only {
  background-color: transparent;
  color: #2d64b9;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
}
.primary-button.text-only:hover {
  text-decoration: underline;
}

section.section-one {
  padding-top: 3.125rem;
}
section.section-one .section-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}
section.section-one .section-content h2 {
  text-align: left;
}
section.section-one .section-content .content-container {
  flex: 1 1 30rem;
}
section.section-one .section-content .calculator {
  background-color: white;
  padding: 2rem 3rem;
  border-radius: 5px;
  box-shadow: 0 0 8px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}
section.section-one .section-content .calculator p {
  margin: 0;
}
section.section-one .section-content .calculator .primary-input label {
  font-size: 1.0625rem;
  font-weight: 500;
}
section.section-one .section-content .calculator .primary-input input {
  font-weight: 400;
}
section.section-one .section-content .calculator .title {
  font-size: 1.5rem;
  font-weight: 400;
}
section.section-one .section-content .calculator .result-label {
  font-size: 1.25rem;
  font-weight: 500;
  color: #2563eb;
  margin-bottom: -0.7rem;
}
section.section-one .section-content .calculator .result-value {
  font-size: 3.125rem;
  font-weight: 600;
  color: #404040;
  line-height: 1.5;
}

.section-two .tiles,
.section-three .tiles {
  padding: 3.125rem 0;
}

.section-four .section-content h2 {
  margin-bottom: 6.25rem;
}
.section-four .section-content .understanding-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  gap: clamp(1.5rem, 2vw, 2rem);
  flex-wrap: wrap;
}
.section-four .section-content .understanding-container .understanding-item {
  flex: 1 1 30rem;
  max-width: 35rem;
  background-color: white;
  padding: 0;
  border-radius: 10px;
  border: 1px solid #dedede;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.section-four .section-content .understanding-container .understanding-item img {
  width: calc(100% + 2px);
  height: 15rem;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: -1px;
}
.section-four .section-content .understanding-container .understanding-item .step-number {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #222222;
  padding: 0 2rem;
  margin: 0;
  margin-top: 1.875rem;
}
.section-four .section-content .understanding-container .understanding-item h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #222222;
  padding: 0 2rem;
  margin: 0;
  margin-bottom: 0.625rem;
}
.section-four .section-content .understanding-container .understanding-item .understanding-text {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #222222;
  padding: 0 2rem;
  margin: 0;
  line-height: 2;
}
.section-four .section-content .understanding-container .understanding-item .tldr {
  padding: 0 2rem;
  margin: 1.875rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.8rem;
}
.section-four .section-content .understanding-container .understanding-item .tldr .tldr-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
}
.section-four .section-content .understanding-container .understanding-item .tldr .tldr-item img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}
.section-four .section-content .understanding-container .understanding-item .tldr .tldr-item p {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #222222;
  margin: 0;
  line-height: 1.3;
}

.section-five .section-content h2 {
  margin-bottom: 3.125rem;
}
.section-five .section-content .why-choose-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 3.125rem;
}
.section-five .section-content .why-choose-content .text-content {
  flex: 1 1 30rem;
}
.section-five .section-content .why-choose-content .text-content p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.section-five .section-content .why-choose-content .text-content p:last-child {
  margin-bottom: 0;
}
.section-five .section-content .why-choose-content .image-content {
  flex: 1 1 20rem;
  max-width: 40rem;
}
.section-five .section-content .why-choose-content .image-content img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.section-five .section-content .mission-statement {
  background-color: rgba(14, 67, 111, 0.05);
  padding: 1.875rem;
}
.section-five .section-content .mission-statement p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}
.section-five .section-content .testimonials-carousel {
  margin-top: 6.25rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.section-five .section-content .testimonials-carousel .carousel-arrow {
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-five .section-content .testimonials-carousel .carousel-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-five .section-content .testimonials-carousel .carousel-arrow .carousel-arrow-hover {
  display: none;
}
.section-five .section-content .testimonials-carousel .carousel-arrow:hover .carousel-arrow-hover {
  display: block;
}
.section-five .section-content .testimonials-carousel .carousel-arrow:hover img {
  display: none;
}
.section-five .section-content .testimonials-carousel .carousel-arrow.carousel-arrow-right img {
  transform: rotate(180deg);
}
.section-five .section-content .testimonials-carousel .testimonials-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.section-five .section-content .testimonials-carousel .testimonials-container .testimonials-wrapper {
  display: flex;
  gap: 2rem;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  padding: 0 1rem;
  padding-bottom: 1rem;
}
.section-five .section-content .testimonials-carousel .testimonials-container .testimonials-wrapper.transitioning {
  opacity: 0;
  transform: translateX(20px);
}
.section-five .section-content .testimonials-carousel .testimonials-container .testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 7px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  flex: 1;
  min-width: 0;
  min-height: 16rem;
  display: none;
  flex-direction: column;
}
.section-five .section-content .testimonials-carousel .testimonials-container .testimonial-card.active {
  display: flex;
}
.section-five .section-content .testimonials-carousel .testimonials-container .testimonial-card h4 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #222222;
  margin: 0 0 0.5rem 0;
  text-align: left;
}
.section-five .section-content .testimonials-carousel .testimonials-container .testimonial-card .stars {
  color: #fbbf24;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.section-five .section-content .testimonials-carousel .testimonials-container .testimonial-card p {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #222222;
  line-height: 1.8;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 769px) {
  .section-five .section-content .testimonials-carousel .testimonials-container .testimonials-wrapper {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .section-five .section-content .testimonials-carousel .testimonials-container .testimonials-wrapper {
    gap: 0;
  }
}
@media (max-width: 768px) {
  .section-five .section-content .testimonials-carousel {
    gap: 0;
  }
  .section-five .section-content .testimonials-carousel .carousel-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.section-six .section-content h2 {
  margin-bottom: 3.125rem;
}

.primary-input {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.primary-input label {
  font-size: 1.1875rem;
  font-weight: 400;
  color: #1f2937;
}
.primary-input label .required-marker {
  color: #ff0000;
  margin-left: 0.35rem;
}
.primary-input input,
.primary-input select {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #1f2937;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: none;
  background-color: white;
  transition: border-color 0.3s ease;
  line-height: 1.4;
}
.primary-input input::placeholder,
.primary-input select::placeholder {
  color: #a2a2a2;
}
.primary-input input:focus,
.primary-input select:focus {
  border-color: #2d64b9;
}
.primary-input input.invalid,
.primary-input select.invalid {
  border-color: #ff0000;
}
.primary-input select {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #a2a2a2;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: none;
  background-color: white;
  transition: border-color 0.3s ease;
  line-height: 1.4;
}
.primary-input select:focus {
  border-color: #2d64b9;
}
.primary-input select:has(option:checked:not([disabled])) {
  color: #1f2937;
}
.primary-input textarea {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #1f2937;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: none;
  resize: vertical;
}
.primary-input .input-error-message {
  color: #ff0000;
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 0;
}
.primary-input.checkbox {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.primary-input.checkbox input {
  height: 1.4rem;
  width: 1.4rem;
}
.primary-input.checkbox label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  cursor: pointer;
  flex: 1;
}
.primary-input.checkbox label .option-title {
  font-size: 1.1875rem;
  font-weight: 400;
  color: #1f2937;
}
.primary-input.checkbox label .option-title .price {
  color: #2d64b9;
}
.primary-input.checkbox label .option-details {
  margin: 0rem 0 0 1.5rem;
  padding: 0;
  list-style: disc;
}
.primary-input.checkbox label .option-details li {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #6d6d6d;
  line-height: 1.4;
  margin-bottom: 0.1rem;
}
.primary-input.checkbox label .option-details li a {
  color: #2d64b9;
  text-decoration: underline;
}
.primary-input.checkbox label .option-details li a:hover {
  color: #25549c;
}

.get-started-section-one .tiles,
.get-started-section-two .tiles {
  padding: 3.125rem 0;
}
.get-started-section-one .get-started-container,
.get-started-section-two .get-started-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  gap: clamp(1.5rem, 2vw, 2rem);
  flex-wrap: wrap;
}
.get-started-section-one .get-started-container .get-started-tile,
.get-started-section-two .get-started-container .get-started-tile {
  flex: 1 1 25rem;
  max-width: 35rem;
  background-color: white;
  padding: 0;
  border-radius: 10px;
  border: 1px solid #dedede;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.get-started-section-one .get-started-container .get-started-tile img,
.get-started-section-two .get-started-container .get-started-tile img {
  width: calc(100% + 2px);
  height: 15rem;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: -1px;
}
.get-started-section-one .get-started-container .get-started-tile h3,
.get-started-section-two .get-started-container .get-started-tile h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222222;
  margin: 1.875rem 0;
  margin-bottom: 0.625rem;
  text-align: center;
}
.get-started-section-one .get-started-container .get-started-tile .get-started-text,
.get-started-section-two .get-started-container .get-started-tile .get-started-text {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #222222;
  padding: 0 1.875rem;
  margin: 0;
  line-height: 2;
  text-align: center;
  flex: 1;
}
.get-started-section-one .get-started-container .get-started-tile .get-started-text strong,
.get-started-section-two .get-started-container .get-started-tile .get-started-text strong {
  font-weight: 600;
}
.get-started-section-one .get-started-container .get-started-tile .primary-button,
.get-started-section-two .get-started-container .get-started-tile .primary-button {
  margin: 1.875rem;
  text-align: center;
}

.faqs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3.125rem;
}
.faqs h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222222;
  margin: 0;
  margin-bottom: 1.875rem;
}

.licensing-section .section-content .tiles .tile {
  flex: 1 1 17rem;
  max-width: 17rem;
}

section .section-content .collapsible {
  margin-bottom: 1.875rem;
  background-color: #ececec;
  border-radius: 5px;
  padding: 0.9375rem 2.5rem;
}
section .section-content .collapsible .header {
  cursor: pointer;
  position: relative;
}
section .section-content .collapsible .header h6 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #222222;
  margin: 0;
  padding-right: 1rem;
}
section .section-content .collapsible .header:after {
  content: "+";
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 0.2rem;
  transition: transform 0.2s linear;
}
section .section-content .collapsible .content {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s linear, padding-top 0.3s linear;
  padding-top: 0;
}
section .section-content .collapsible .content ul li {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}
section .section-content .collapsible .content p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}
section .section-content .collapsible .content strong,
section .section-content .collapsible .content b {
  font-weight: 600;
}
section .section-content .collapsible .content table {
  background-color: rgba(255, 255, 255, 0.3);
  border-collapse: collapse;
}
section .section-content .collapsible .content table td,
section .section-content .collapsible .content table th {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.625rem;
}
section .section-content .collapsible.collapsible-open .header:after {
  content: "-";
  transition: transform 0.2s linear;
}
section .section-content .collapsible.collapsible-open .content {
  padding-top: 0.9375rem;
}

.popup_menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  vertical-align: middle;
  margin-left: 0.25rem;
}
.popup_menu img {
  width: 1.25rem;
  height: 1.25rem;
  transition: opacity 0.2s ease;
}
.popup_menu img:hover {
  opacity: 0.7;
}
.popup_menu .tip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  margin-bottom: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1000;
}
.popup_menu .tip .tooltip_content {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  border-radius: 5px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.65);
  padding: 1rem 1.2rem;
  min-width: 280px;
  max-width: 400px;
  color: #222222;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}
.popup_menu .tip .tooltip_content strong {
  font-weight: 500;
}
.popup_menu .tip .tooltip_content u {
  text-decoration: underline;
}
.popup_menu .tip::before {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
  background: transparent;
}
.popup_menu .tip::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: bottom 0.2s ease, opacity 0.2s ease;
}
.popup_menu:hover .tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.popup_menu:hover .tip::after {
  bottom: -6px;
  opacity: 1;
}
@media (max-width: 768px) {
  .popup_menu .tip {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 10000;
  }
  .popup_menu .tip .tooltip_content {
    max-width: calc(100vw - 3rem);
    min-width: calc(100vw - 3rem);
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .popup_menu .tip::before, .popup_menu .tip::after {
    display: none;
  }
  .popup_menu.active .tip {
    opacity: 1;
    visibility: visible;
  }
  .popup_menu:hover:not(.active) .tip {
    opacity: 0;
    visibility: hidden;
  }
  .popup_menu:hover .tip {
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .tooltip-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
  }
  .tooltip-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
}
.about-us-section .section-content .about-us-content {
  margin-top: 2rem;
}
.about-us-section .section-content .office-image {
  float: right;
  margin: 0 0 1rem 1.5rem;
  max-width: 400px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .about-us-section .section-content .office-image {
    max-width: 100%;
    float: none;
    margin: 0 0 1rem 0;
  }
}
.about-us-section .section-content .mission-statement {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.about-us-section .section-content .mission-statement img {
  width: 260px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.about-us-section .section-content .mission-statement .mission-statement-text {
  flex: 1;
}
.about-us-section .section-content .mission-statement .mission-statement-text p {
  margin: 0;
  background: #ececec;
  font-size: 1.0625rem;
  padding: 1rem;
}
@media (max-width: 768px) {
  .about-us-section .section-content .mission-statement {
    flex-direction: column;
    gap: 1rem;
  }
  .about-us-section .section-content .mission-statement img {
    width: 100%;
    max-width: 400px;
    order: 2;
  }
  .about-us-section .section-content .mission-statement .mission-statement-text {
    width: 100%;
  }
}

.testimonies {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonies div {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #ececec;
  border-radius: 7px;
  padding: 0.9375rem;
}
.testimonies div .text {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #222222;
  line-height: 1.8;
  margin: 0;
}
.testimonies div .signature {
  font-size: 1rem;
  font-weight: 300;
  color: #222222;
  line-height: 1.8;
  margin: 0;
}

.contact-information .section-content h3 {
  margin-top: 3.125rem;
}

.asset-portal-section .button-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.article-image-container {
  text-align: center;
  margin: 1.875rem 0;
}
.article-image-container img {
  max-width: 100%;
  height: auto;
}
.article-image-container .image-caption {
  font-style: italic;
  color: #6d6d6d;
  margin-top: 0.625rem;
}

.recent-posts {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 1.5rem;
  margin-bottom: 3.125rem;
  flex-wrap: wrap;
}
.recent-posts .post {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 15rem;
  max-width: 23rem;
  background-color: #ececec;
}
.recent-posts .post img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.recent-posts .post .post-content {
  padding: 1.5625rem 0.9375rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.recent-posts .post .post-content .post-date {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #222222;
  margin: 0;
}
.recent-posts .post .post-content h5 {
  font-size: 1.375rem;
  font-weight: 400;
  color: #222222;
  margin: 0;
  margin-bottom: 0.625rem;
  line-height: 1.8;
}
.recent-posts .post .post-content .post-excerpt {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #222222;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* number of lines */
  overflow: hidden;
}
.recent-posts .post .post-content .button-container {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: flex-end;
  margin-top: 1.5625rem;
  flex: 1;
}
.recent-posts .post .post-content .button-container .primary-button {
  margin: 0;
  width: 100%;
  text-align: center;
}

[v-cloak] {
  display: none;
}

section .section-content .primary-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: clamp(450px, 70vw, 650px);
  background-color: white;
  padding: 3.125rem 3.75rem;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  justify-content: stretch;
}
section .section-content .primary-form h3 {
  font-size: 1.875rem;
  font-weight: 500;
  color: #222222;
  margin: 0;
  text-align: left;
  flex: 1 1 100%;
}
section .section-content .primary-form .primary-input {
  flex: 1 1 100%;
}
section .section-content .primary-form .primary-input.third {
  flex: 1 1 30%;
}
section .section-content .primary-form .primary-input.quarter {
  flex: 1 1 21%;
}
section .section-content .primary-form .primary-input.half {
  flex: 1 1 45%;
}
section .section-content .primary-form .primary-input.two-thirds {
  flex: 1 1 60%;
}
section .section-content .primary-form .primary-input input:not([type=checkbox]),
section .section-content .primary-form .primary-input textarea,
section .section-content .primary-form .primary-input select {
  width: 100%;
}
section .section-content .primary-form .error-message {
  font-size: 1rem;
  font-weight: 400;
  color: #ff0000;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
}
section .section-content .primary-form .primary-button {
  flex: 1 1 100%;
  padding: 1rem 1.7rem;
}
section .section-content .primary-form .line {
  flex: 1 1 100%;
  margin: 0;
}
section .section-content .primary-form .line hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0;
}
section .section-content .primary-form .info-block {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  background-color: #ebedf4;
  padding: 1.25rem;
  border-radius: 7px;
  flex: 1 1 100%;
}
section .section-content .primary-form .info-block.yellow {
  background-color: #f9f4e3;
}
section .section-content .primary-form .info-block.green {
  background-color: #f1f7e8;
}
section .section-content .primary-form .info-block img {
  width: 3rem;
  margin-top: 0.5rem;
}
section .section-content .primary-form .info-block p {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #222222;
  margin: 0;
  line-height: 1.8;
  padding: 0;
  padding-right: 0.5rem;
}
section .section-content .primary-form .bottom-tagline {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  margin: 0;
  line-height: 1.5;
  padding: 0;
  text-align: center;
  width: 100%;
}
section .section-content .primary-form .bottom-assurances {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
}
section .section-content .primary-form .bottom-assurances .assurance {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  align-items: center;
}
section .section-content .primary-form .bottom-assurances .assurance .img-container img {
  object-fit: contain;
}
section .section-content .primary-form .bottom-assurances .assurance .text-container p {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6d6d6d;
  margin: 0;
  line-height: 1.5;
}
section .section-content .primary-form .order-summary {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid #bdbdbd;
  flex: 1 1 100%;
}
section .section-content .primary-form .order-summary .header {
  font-size: 1.1875rem;
  font-weight: 400;
  color: #222222;
  margin: 0;
  line-height: 1.5;
  padding: 0.625rem 0.9375rem;
  background-color: #eeeeee;
  width: 100%;
}
section .section-content .primary-form .order-summary .items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  padding: 0.9375rem;
}
section .section-content .primary-form .order-summary .items .item {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
section .section-content .primary-form .order-summary .items .item .item-name {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #222222;
  margin: 0;
  line-height: 1.5;
  padding: 0;
}
section .section-content .primary-form .order-summary .items .item .item-price {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #222222;
  margin: 0;
  line-height: 1.5;
  padding: 0;
}
section .section-content .primary-form .order-summary .total {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: stretch;
  justify-content: space-between;
  margin: 0 0.9375rem;
  padding: 0.9375rem 0;
  border-top: 1px solid #bdbdbd;
}
section .section-content .primary-form .order-summary .total .total-label {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #222222;
  margin: 0;
  line-height: 1.5;
  padding: 0;
}
section .section-content .primary-form .order-summary .total .total-price {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #222222;
  margin: 0;
  line-height: 1.5;
  padding: 0;
}

section {
  position: relative;
}
section .step-indicator {
  position: sticky;
  top: -5rem;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  height: 0;
}
section .step-indicator .step-indicator-sticky-wrapper {
  position: absolute;
  top: 12rem;
  left: calc((100vw - clamp(450px, 70vw, 650px)) / 2 / 2);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
section .step-indicator .step-indicator-sticky-wrapper .step-icon {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
}
section .step-indicator .step-indicator-sticky-wrapper .step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section .step-indicator .step-indicator-sticky-wrapper .step-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0;
}
section .step-indicator .step-indicator-sticky-wrapper .step-item:not(.first-step)::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: -1rem;
  width: 4px;
  height: 2.4rem;
  background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
  background-size: 4px 4px;
}
section .step-indicator .step-indicator-sticky-wrapper .step-item .step-number {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background-color: #cbcbd1;
  color: #eae9ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
section .step-indicator .step-indicator-sticky-wrapper .step-item .step-label {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.3;
  transition: all 0.3s ease;
}
section .step-indicator .step-indicator-sticky-wrapper .step-item.active .step-number {
  background-color: #337661;
}
section .step-indicator .step-indicator-sticky-wrapper .step-item.active .step-label {
  color: #222222;
}
section .step-indicator .step-indicator-sticky-wrapper .step-item.completed .step-number {
  background-color: #cbcbd1;
}
section .step-indicator .step-indicator-sticky-wrapper .step-item.completed .step-label {
  color: #9ca3af;
}
@media (max-width: 1200px) {
  section .step-indicator {
    display: none;
  }
}

@media (max-width: 790px) {
  section .section-content .primary-form {
    padding: 1.875rem 1.875rem;
  }
}
@media (max-width: 740px) {
  section .section-content .primary-form .primary-input.third,
  section .section-content .primary-form .primary-input.quarter,
  section .section-content .primary-form .primary-input.half,
  section .section-content .primary-form .primary-input.two-thirds {
    flex: 1 1 100%;
  }
}
@media (max-width: 700px) {
  section .section-content .primary-form {
    padding: 1.875rem 0.9375rem;
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
section .section-content .primary-form.form-llc .primary-input .llc-name-input-container {
  width: 100%;
  position: relative;
}
section .section-content .primary-form.form-llc .primary-input .llc-name-input-container input {
  padding-right: 11rem;
}
section .section-content .primary-form.form-llc .primary-input .llc-name-input-container .primary-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.7rem 1rem;
}
section .section-content .primary-form.form-llc .expedite-notice {
  font-size: 1rem;
  font-weight: 400;
  color: #6d6d6d;
  margin: 0;
  line-height: 1.5;
  padding: 0;
}
section .section-content .primary-form.form-llc .member-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1 1 100%;
}
section .section-content .primary-form.form-llc .member-buttons .primary-button {
  flex: 1 1 45%;
}
section .section-content .primary-form.form-llc .important-notice {
  font-size: 1rem;
  font-weight: 400;
  color: #2d64b9;
  margin: 0;
  line-height: 1.5;
  padding: 0;
}

section .section-content .primary-form.form-vehicle .static-field {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #222222;
  padding: 0.75rem 0;
}
section .section-content .primary-form.form-vehicle .primary-input.radio-group .radio-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
section .section-content .primary-form.form-vehicle .primary-input.radio-group .radio-options span {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}
section .section-content .primary-form.form-vehicle .primary-input.radio-group .radio-options span input[type=radio] {
  width: auto;
  margin: 0;
}
section .section-content .primary-form.form-vehicle .primary-input.radio-group .radio-options span label {
  font-size: 1rem;
  font-weight: 400;
  color: #222222;
  margin: 0;
  cursor: pointer;
}
section .section-content .primary-form.form-vehicle .primary-input.radio-group .radio-options span .other-option-field {
  margin-left: 0.5rem;
  max-width: 150px;
}
section .section-content .primary-form.form-vehicle .primary-input.indent {
  margin-left: 2rem;
}
section .section-content .primary-form.form-vehicle .info-block.alert {
  background-color: rgba(45, 100, 185, 0.08);
  border-left: 4px solid #2d64b9;
}
section .section-content .primary-form.form-vehicle .info-block.alert p {
  font-size: 1rem;
  font-weight: 400;
  color: #222222;
}
section .section-content .primary-form.form-vehicle .expedite-notice,
section .section-content .primary-form.form-vehicle .temp-plate-notice,
section .section-content .primary-form.form-vehicle .mailing-notice {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #6d6d6d;
  font-style: italic;
  margin: 0;
  line-height: 1.5;
  padding: 0;
  flex: 1 1 100%;
}
section .section-content .primary-form.form-vehicle .temp-plate-notice {
  color: #eb9002;
}
section .section-content .primary-form.form-vehicle .order-summary .notice {
  padding: 0.9375rem;
  background-color: #ebedf4;
}
section .section-content .primary-form.form-vehicle .order-summary .notice .notice-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6d6d6d;
  font-style: italic;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}
section .section-content .primary-form.form-vehicle .order-summary .notice .notice-text:last-child {
  margin-bottom: 0;
}
section .section-content .primary-form.form-vehicle .order-summary .notice .notice-text strong {
  font-weight: 500;
}

@media (max-width: 740px) {
  section .section-content .primary-form.form-vehicle .primary-input.radio-group .radio-options {
    flex-direction: column;
    align-items: flex-start;
  }
}
.form-request-oa .expedite-notice {
  padding: 1.25rem;
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 7px;
  margin-bottom: 1rem;
}
.form-request-oa .expedite-notice p {
  font-size: 1rem;
  font-weight: 300;
  color: #856404;
  margin: 0;
  line-height: 1.6;
}
.form-request-oa .expedite-notice p strong {
  font-weight: 500;
}

.form-request-ein .expedite-notice {
  padding: 1.25rem;
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 7px;
  margin-bottom: 1rem;
}
.form-request-ein .expedite-notice p {
  font-size: 1rem;
  font-weight: 300;
  color: #856404;
  margin: 0;
  line-height: 1.6;
}
.form-request-ein .expedite-notice p strong {
  font-weight: 500;
}

.form-close-llc .option-info {
  padding: 1.25rem;
  background-color: #f5f5f5;
  border-radius: 7px;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
}
.form-close-llc .option-info strong {
  font-weight: 500;
}

section .section-content .form-transfer-ownership .llc-name-display {
  font-size: 1.125rem;
  font-weight: 500;
  color: #222222;
  padding: 1rem;
  background-color: #ebedf4;
  border-radius: 7px;
}
section .section-content .form-transfer-ownership .member-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1 1 100%;
}
section .section-content .form-transfer-ownership .member-buttons .primary-button {
  flex: 1 1 45%;
}

.form-duplicate-title .llc-name-display {
  font-size: 1.125rem;
  font-weight: 500;
  color: #222222;
  padding: 1rem;
  background-color: #ebedf4;
  border-radius: 7px;
}
.form-duplicate-title .service-options {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-duplicate-title .service-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #ebedf4;
  border-radius: 7px;
}
.form-duplicate-title .service-row .service-checkbox {
  flex: 1 1 100%;
}
.form-duplicate-title .service-row .primary-input.checkbox {
  margin-bottom: 0;
}
.form-duplicate-title .shipping-suboptions {
  flex: 1 1 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  padding-left: 2rem;
}
.form-duplicate-title .shipping-suboptions .primary-input.checkbox {
  flex: 0 1 auto;
  margin-bottom: 0;
}

section .section-content .primary-form.form-add-member .llc-name-display {
  font-size: 1.125rem;
  font-weight: 500;
  color: #222222;
  padding: 1rem;
  background-color: #ebedf4;
  border-radius: 7px;
}
section .section-content .primary-form.form-add-member .member-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1 1 100%;
}
section .section-content .primary-form.form-add-member .member-buttons .primary-button {
  flex: 1 1 45%;
}
section .section-content .primary-form.form-add-member .info-note {
  flex: 1 1 100%;
  padding: 1rem 1.5rem;
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 7px;
  margin-bottom: 1rem;
}
section .section-content .primary-form.form-add-member .info-note p {
  font-size: 1rem;
  font-weight: 300;
  color: #856404;
  margin: 0;
  line-height: 1.6;
}
section .section-content .primary-form.form-add-member .info-note p strong {
  font-weight: 500;
}
section .section-content .primary-form.form-add-member .expedite-notice {
  padding: 1.25rem;
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 7px;
  margin-bottom: 1rem;
}
section .section-content .primary-form.form-add-member .expedite-notice p {
  font-size: 1rem;
  font-weight: 300;
  color: #856404;
  margin: 0;
  line-height: 1.6;
}
section .section-content .primary-form.form-add-member .expedite-notice p strong {
  font-weight: 500;
}

@media (max-width: 740px) {
  section .section-content .primary-form.form-add-member .member-buttons .primary-button {
    flex: 1 1 100%;
  }
}
section .section-content .primary-form.terms-view .terms-content {
  flex: 1 1 100%;
  padding: 1.25rem;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  margin-bottom: 1.25rem;
  max-height: 500px;
  overflow-y: auto;
}
section .section-content .primary-form.terms-view .terms-content p {
  font-size: 1rem;
  font-weight: 300;
  color: #222222;
  line-height: 1.6;
  margin-bottom: 1rem;
}
section .section-content .primary-form.terms-view .terms-content p.terms-section-header {
  font-size: 1.1875rem;
  font-weight: 500;
  color: #2d64b9;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
section .section-content .primary-form.terms-view .terms-content p.terms-section-header:first-child {
  margin-top: 0;
}
section .section-content .primary-form.terms-view .terms-content b {
  font-weight: 500;
}
section .section-content .primary-form.terms-view .terms-actions {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section .section-content .primary-form.terms-view .terms-actions .button-group {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: stretch;
  justify-content: space-between;
}
section .section-content .primary-form.terms-view .terms-actions .button-group .primary-button {
  flex: 1 1 23%;
}
section .section-content .primary-form.terms-view .terms-actions .button-group .primary-button:last-child {
  flex: 1 1 69%;
}
section .section-content .primary-form.terms-view .terms-actions .button-group .primary-button span {
  text-wrap: wrap;
}
section .section-content .primary-form.terms-view .terms-actions .button-group .primary-button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

section .section-content .primary-form.llc-lookup .llc-options-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}
section .section-content .primary-form.llc-lookup .llc-options-list .llc-option-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.8rem 1.2rem;
  width: 100%;
  cursor: pointer;
}
section .section-content .primary-form.llc-lookup .llc-options-list .llc-option-item p {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
  color: #222222;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
section .section-content .primary-form.llc-lookup .llc-options-list .llc-option-item .img-container {
  width: 1.65rem;
  height: 1.65rem;
}
section .section-content .primary-form.llc-lookup .llc-options-list .llc-option-item .img-container img {
  width: 100%;
  height: 100%;
}
section .section-content .primary-form.llc-lookup .llc-options-list .llc-option-item .img-container #radio-checked {
  display: none;
}
section .section-content .primary-form.llc-lookup .llc-options-list .llc-option-item.selected {
  border-color: #2d64b9;
}
section .section-content .primary-form.llc-lookup .llc-options-list .llc-option-item.selected #radio-unchecked {
  display: none;
}
section .section-content .primary-form.llc-lookup .llc-options-list .llc-option-item.selected #radio-checked {
  display: block;
}
section .section-content .primary-form.llc-lookup .primary-button.search-again-link {
  margin-top: -1rem;
}

section.submitted-content .section-content ul {
  line-height: 2;
}
section.submitted-content .section-content ul li {
  font-size: 1rem;
  font-weight: 300;
}
section.submitted-content .section-content ul li strong,
section.submitted-content .section-content ul li b {
  font-weight: 600;
}

* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  outline: none;
}

html {
  font-size: clamp(14px, 1vw, 16px);
}

a:not(.primary-button) {
  color: #2d64b9;
  text-decoration: none;
}
a:not(.primary-button):hover {
  text-decoration: underline;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

section {
  padding: 6.25rem 1.875rem;
}
section:first-of-type {
  padding-top: 3.125rem;
}
section.accent-section {
  background-color: rgba(14, 67, 111, 0.05);
}
section.accent-yellows-section {
  background-color: rgba(212, 160, 23, 0.05);
}
section .section-content {
  max-width: clamp(840px, 70vw, 1230px);
  margin: 0 auto;
}
section .section-content h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.875rem;
  font-family: "Roboto Serif", serif;
  color: #222222;
  margin: 0;
  margin-bottom: 0.625rem;
  text-align: center;
}
section .section-content h4 {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1.875rem;
  color: #222222;
  margin: 0;
  text-align: center;
  margin-bottom: 3.125rem;
}
section .section-content p {
  font-size: 1.0625rem;
  font-weight: 400;
  margin-bottom: 1.875rem;
  color: rgba(0, 0, 0, 0.8);
  line-height: 2;
}
section .section-content .foot-note {
  font-size: 0.9375rem;
  font-weight: 300;
  margin-bottom: 1.875rem;
  color: #6d6d6d;
}
section .section-content .foot-note strong {
  font-weight: 600;
}
section .section-content > ul, section .section-content > ol {
  line-height: 2;
}
section .section-content > ul li, section .section-content > ol li {
  font-size: 1rem;
  font-weight: 300;
}
section .section-content > ul li strong,
section .section-content > ul li b, section .section-content > ol li strong,
section .section-content > ol li b {
  font-weight: 600;
}
section .section-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.875rem;
}
section .section-content table th,
section .section-content table td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.625rem;
}
@media only screen and (max-width: 420px) {
  section .section-content table {
    margin-left: -1rem;
    margin-right: -1rem;
    width: unset;
  }
}
section .section-content .tiles {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: clamp(5rem, 9vw, 8rem) clamp(2.5rem, 3vw, 4rem);
  flex-wrap: wrap;
}
section .section-content .tiles .tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex: 1 1 15rem;
  max-width: 16rem;
  text-decoration: none;
}
section .section-content .tiles .tile.clickable:hover h3 {
  text-decoration: underline;
}
section .section-content .tiles .tile .img-container {
  width: 4.5rem;
  height: 3.3rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
section .section-content .tiles .tile .img-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
section .section-content .tiles .tile h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
  color: #222222;
  padding-top: 1.875rem;
  padding-bottom: 0.9375rem;
  margin: 0;
}
section .section-content .tiles .tile p {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #222222;
  margin: 0;
  text-align: center;
}
section .section-content .tiles .tile.car .img-container {
  width: 4rem;
}
section .section-content .tiles .tile.plane .img-container {
  width: 5.2rem;
}
section .section-content .tiles .tile.how-it-works-2 .img-container {
  width: 5.5rem;
}

.footer-banner {
  width: 100%;
  height: clamp(13rem, 20vw, 45rem);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-banner .footer-banner-text {
  z-index: 1;
  text-align: center;
  margin-bottom: 4rem;
}
.footer-banner .footer-banner-text p {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 2rem;
}
.footer-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.disclaimer-paragraph {
  font-size: 0.875rem;
  margin-bottom: 2rem;
  font-style: italic;
}

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