:root {
  --midnight-blue: #282c52;
  --black: #121212;
  --dark-gray: #353640;
  --blue-green: #598da5;
  --primary-3: #ffc776;
  --white-smoke-2: #edf1f4;
  --feint-gray: #f8f8f8;
  --white: white;
  --dim-grey: #62636b;
  --primary-2: #068466;
  --primary: #005450;
  --gainsboro: #e6e6e6;
  --navajo-white: #fbcf77;
  --navajo-white-2: #fbce77;
  --light-gray: #ebebec;
  --white-smoke: #f8f8f8;
  --gradient-1: #fdeac3;
  --gradient-2: #f3f3f3;
  --warning: #d3ad62;
}

body {
  color: var(--midnight-blue);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 24px;
  font-family: DM Serif, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

h2 {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 24px;
  font-family: DM Sans, sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 18px;
  font-family: DM Sans, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.125;
}

h4 {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 18px;
  font-family: DM Sans, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 32px;
}

h5 {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 16px;
  font-family: DM Sans, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 36px;
}

h6 {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 30px;
}

p {
  color: var(--dark-gray);
  margin-bottom: 24px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

a {
  color: var(--blue-green);
  font-weight: 500;
  text-decoration: none;
}

ul {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 18px;
  line-height: 1.6;
}

ol {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 1.125rem;
  line-height: 1.6;
}

li {
  font-size: 1.125rem;
  font-weight: 400;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.container {
  z-index: 3;
  width: 100%;
  max-width: 1330px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
  position: relative;
}

.container.top-20 {
  margin-top: 20px;
}

.container.hnw {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container.noad {
  padding-left: 0;
  padding-right: 0;
}

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

.container.large {
  max-width: 1330px;
}

.container.grid-search {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container.flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.container.article {
  max-width: 940px;
}

.container.cornered {
  background-color: var(--midnight-blue);
  border-radius: 2rem;
  max-width: 1024px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.container.custom-pad {
  padding-left: 24px;
  padding-right: 24px;
}

.text-small {
  font-size: 14px;
}

.text-small.text-spacer {
  color: #000754;
}

.text-small.testimonial-author {
  margin-top: 8px;
}

.text-small.safe {
  margin-bottom: 0;
  font-weight: 400;
}

.bg-primary {
  background-color: var(--primary);
  color: #fff;
}

.button {
  border: 2px solid var(--blue-green);
  background-color: var(--blue-green);
  color: var(--white);
  text-align: center;
  border-radius: 4px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: opacity .2s, color .2s, border-color .2s, background-color .2s;
  box-shadow: 0 0 5px #0000004d;
}

.button:hover {
  opacity: .75;
}

.button.button-round {
  border-color: var(--navajo-white);
  background-color: var(--navajo-white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
}

.button.button-small {
  padding: 4px 16px;
  font-size: 14px;
}

.button.button-small.button-white {
  color: #000754;
  border-color: #000754;
}

.button.button-outline {
  border-color: var(--primary);
  color: var(--primary);
  background-color: #0000;
}

.button.button-outline:hover {
  background-color: var(--primary);
  opacity: 1;
  color: #fff;
}

.button.button-outline.button-white {
  color: var(--feint-gray);
  background-color: #0000;
  border-color: #ffffff40;
}

.button.button-outline.button-white:hover {
  color: var(--primary);
  background-color: #fff;
}

.button.button-outline.button-white.navbar-button {
  opacity: .5;
  color: #fff;
  border-style: solid;
  font-size: 18px;
  font-weight: 400;
}

.button.button-outline.button-white.navbar-button:hover {
  background-color: var(--navajo-white);
  color: #000754;
}

.button.button-outline.button-white.navbar-button.right {
  margin-right: 18px;
}

.button.button-outline.button-white.navbar-button.right:hover {
  opacity: 1;
}

.button.button-outline.button-white.navbar-button.phone {
  background-image: url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/65376278e815083e6c86f4f0_94-943942_593-transparent-background-phone-icon-white.webp");
  background-position: 20px;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-left: 57px;
}

.button.button-outline.button-white.navbar-button.phone:hover {
  opacity: 1;
}

.button.button-white {
  color: var(--dark-gray);
  background-color: #fff;
  border-color: #fff;
}

.button.navbar-button {
  color: #fff;
  background-color: #000754;
  border-color: #000754;
  padding-top: 12px;
  font-size: 17px;
  font-weight: 500;
}

.button.navbar-button.right {
  margin-right: 10px;
}

.button.navbar-button.phone {
  background-image: url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/65376278e815083e6c86f4f0_94-943942_593-transparent-background-phone-icon-white.webp");
  background-position: 20px;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-left: 54px;
}

.button.navbar-button.phone.fl {
  color: var(--midnight-blue);
  background-color: #fff;
  background-image: url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/65376278e815083e6c86f4c1_ph-01.webp");
  border-style: solid;
}

.button.button-spacer {
  margin-right: 12px;
}

.button.button-primary-2 {
  border-color: var(--primary-2);
  background-color: var(--navajo-white);
}

.button.button-primary-2.w--current {
  color: var(--dark-gray);
  border-style: none;
}

.button.button-primary-2.button-spacer {
  border-style: solid;
  border-color: var(--navajo-white);
  color: var(--navajo-white);
  background-color: #f8f8f800;
}

.button.button-primary-2.button-spacer.blue {
  border-color: var(--midnight-blue);
  color: var(--midnight-blue);
}

.button.button-primary-2.button-spacer.solid {
  border-color: var(--blue-green);
  background-color: var(--blue-green);
  color: var(--white);
}

.button.button-primary-2.button-spacer.solid.full {
  margin-right: 0;
}

.button.form {
  padding: 15px 35px;
  font-size: 18px;
}

.button.phone-cta {
  border-style: solid;
  border-color: var(--midnight-blue);
  background-color: var(--white);
  color: var(--midnight-blue);
  background-image: url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/65376278e815083e6c86f4c1_ph-01.webp");
  background-position: 11% 47%;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-left: 54px;
}

.button.is-zip {
  border-style: none solid solid none;
  border-right-color: var(--midnight-blue);
  border-bottom-width: 3px;
  border-bottom-color: var(--midnight-blue);
  background-color: var(--blue-green);
  text-transform: uppercase;
  background-image: url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/67cf3e8922a7c5ddcb68cf23_right-arrow.webp");
  background-position: 92%;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  border-radius: 10px;
  min-height: 2.75rem;
  margin-left: 10px;
  padding-right: 43px;
}

.button.is-zip.is-alternative {
  text-transform: none;
  background-image: none;
  border: 1px #000;
  border-radius: 0;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-right: 24px;
  text-decoration: none;
}

.button.is-zip.is-alternative.carrier {
  margin-left: 0;
}

.button.large {
  padding-top: 16px;
  padding-bottom: 16px;
}

.button.large.secondary {
  border: 2px solid var(--black);
  color: var(--black);
  background-color: #0000;
}

.button.blog {
  border-color: var(--navajo-white-2);
  background-color: var(--navajo-white-2);
  color: var(--dark-gray);
  width: 100%;
  margin-top: 14px;
}

.button.secondary {
  border-color: var(--midnight-blue);
  background-color: var(--midnight-blue);
  color: var(--white);
}

.button.mt-16 {
  margin-top: 16px;
}

.button.is--primary {
  text-transform: uppercase;
  border-radius: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1.125rem;
  font-weight: 500;
}

.button.is--primary.margin-top-24 {
  margin-top: 1.5rem;
}

.button.is--primary.margin-top-24.is--yellow {
  background-color: var(--primary-3);
  color: var(--midnight-blue);
}

.text-white {
  color: var(--midnight-blue);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 30px;
  padding-left: 105px;
  padding-right: 105px;
  font-size: 40px;
  line-height: 79px;
}

.navbar-container.fixed {
  background-color: var(--white);
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
}

.navbar-container {
  z-index: 99;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}

.navbar-container.sticky-top {
  width: 100%;
  position: sticky;
  top: 0;
}

.navbar-container.sticky-top.bg-primary {
  background-color: var(--midnight-blue);
  padding-top: 25px;
  padding-bottom: 25px;
}

.navbar-container.fixed {
  background-color: var(--white);
  background-color: #fff;
  background-color: var(--white);
  width: 100%;
  position: fixed;
  top: 0;
}

.footer {
  padding-top: 96px;
  padding-bottom: 48px;
  position: relative;
}

.footer.bg-primary {
  background-color: var(--midnight-blue);
  background-color: var(--midnight-blue);
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.footer-content {
  justify-content: space-between;
  margin-top: 48px;
  margin-bottom: 48px;
  display: flex;
}

.footer-menus {
  align-items: stretch;
  width: 100%;
  display: flex;
}

.footer-links-large {
  border-right: 1px #ffffff1a;
  flex-direction: column;
  margin-right: 60px;
  padding-right: 36px;
  display: flex;
}

.footer-links-large.last {
  margin-right: 0;
}

.footer-link {
  opacity: .8;
  margin-bottom: 8px;
  transition: opacity .2s;
}

.footer-link:hover {
  opacity: 1;
}

.footer-link.footer-link-large {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.footer-link.footer-link-large.text-white.button.round.w--current {
  background-color: #fbcf77;
  border-style: solid;
  border-color: #fbcf77;
}

.footer-link.footer-link-large.text-white.button.round.footer-button {
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: 700;
}

.footer-link.footer-link-large.text-white {
  color: var(--navajo-white);
  text-align: left;
  text-transform: none;
  padding-left: 0;
  padding-right: 0;
  font-size: 17px;
  line-height: 27px;
}

.footer-link.footer-link-large.text-white.w--current {
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}

.footer-link.footer-link-large.text-white.button.round {
  color: var(--midnight-blue);
  border-radius: 0;
  margin-top: 20px;
  padding-left: 29px;
  padding-right: 29px;
}

.footer-link.footer-link-large.text-white.button.round.w--current {
  border-style: solid;
  border-color: var(--navajo-white);
  background-color: var(--navajo-white);
}

.footer-link.footer-link-large.text-white.button.round.footer-button {
  background-color: var(--blue-green);
  color: var(--white);
  background-color: var(--blue-green);
  border-radius: 6px;
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: 400;
}

.footer-link.footer-link-large.text-white.coverages {
  font-size: 17px;
  line-height: 27px;
}

.footer-link.footer-link-large.text-white.coverages.hide {
  display: none;
}

.brand-logo-footer {
  max-width: 150px;
}

.right {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.text-block-3 {
  margin-bottom: 20px;
  font-size: 21px;
}

.link-2 {
  color: #fff;
  font-weight: 400;
}

.social-icon {
  width: 35px;
}

.social-icon.invert {
  filter: invert();
  width: 24px;
}

.social-link {
  margin-left: 14px;
}

.text-block-6 {
  margin-bottom: 20px;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small, .margin-bottom.margin-tiny, .margin-bottom.margin-xsmall, .margin-bottom.margin-xxlarge, .margin-bottom.margin-xxsmall, .margin-bottom.margin-small, .margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-16 {
  margin-bottom: 1rem;
}

.margin-bottom.margin-xxlarge {
  margin: 0 0 5rem;
}

.margin-bottom.margin-small, .margin-bottom.margin-tiny, .margin-bottom.margin-xsmall, .margin-bottom.margin-xxlarge, .margin-bottom.margin-xxsmall, .margin-bottom.margin-small, .margin-bottom.margin-tiny {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.page-wrapper.overflow-hidden {
  overflow: hidden;
}

.nav-dropdown-link {
  color: #282c5299;
  border-radius: 6px;
  align-items: center;
  width: auto;
  padding-left: 11px;
  padding-right: 11px;
  font-weight: 500;
  display: flex;
}

.nav-dropdown-link:hover {
  background-color: var(--white-smoke-2);
  color: #282c52;
}

.nav-dropdown-icon {
  opacity: .85;
  object-fit: cover;
  width: auto;
  height: 75px;
  margin-right: 10px;
}

.nav-dropdown-icon.busines {
  width: auto;
}

.nav-dropdown-icon.sml {
  opacity: .9;
  opacity: .9;
  height: 75px;
}

.hero-heading {
  color: var(--black);
  font-size: 54px;
  line-height: 1.2;
}

.hero-heading.mb-mobile-24 {
  margin-bottom: 12px;
}

.hero-heading.text-light {
  color: var(--white);
}

.hero-heading.secondary-heading {
  margin-bottom: 24px;
  font-family: DM Serif, sans-serif;
  display: none;
}

.hero-heading.mb-0 {
  margin-bottom: 0;
}

.hide {
  display: none;
}

.footer-button {
  color: #282c52;
  background-color: #fbce77;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 2.53em;
  padding-left: 1.9em;
  padding-right: 1.9em;
  text-decoration: none;
  transition: all .25s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.footer-button:hover {
  background-color: #fff;
}

.pagination {
  flex-flow: wrap;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

._2-columns {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  display: flex;
}

.navbar5_menu-dropdown {
  position: static;
}

.navbar5_container {
  background-color: var(--white);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.branding-header {
  padding-left: 0;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.navbar5_dropdown-toggle {
  grid-column-gap: .5rem;
  align-items: center;
  padding: 1.5rem;
  font-weight: 500;
  display: flex;
}

.new-nav {
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px #e4e4e4;
  align-items: center;
  width: 100%;
  max-width: 1330px;
  min-height: 3.6rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 36px;
  display: flex;
}

.new-nav.no-pad {
  padding-left: 0;
  padding-right: 0;
}

.navbar5_menu-button {
  padding: 0;
}

.navbar5_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  flex-flow: column;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  justify-content: start;
  display: flex;
}

.navbar5_dropdown-link-list._2-columns {
  padding-top: 36px;
}

.navbar5_dropdown-link-list.custom {
  width: 100%;
}

.navbar5_dropdown-list {
  z-index: 100;
  background-color: #fff;
}

.navbar5_dropdown-list.w--open {
  z-index: auto;
  background-color: #fff;
  border-bottom: 1px #949494;
  border-radius: 16px;
  width: 100vw;
  max-width: 100%;
  margin-top: -6px;
  padding-left: 0%;
  padding-right: 0%;
  position: absolute;
  inset: 100% 0% auto;
  overflow: hidden;
  box-shadow: 0 0 20px #00000014;
}

.navbar5_menu {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-left: 3rem;
  margin-right: 0;
  display: flex;
  position: static;
}

.navbar5_blog-image {
  opacity: .85;
  object-fit: cover;
  border-radius: 6px;
  width: 90px;
  height: auto;
}

.navbar5_large-item-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
}

.navbar5_dropdown-content-left {
  grid-column-gap: 0rem;
  grid-row-gap: 0px;
  background-color: var(--gradient-2);
  border-radius: 12px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
}

.navbar5_dropdown-content-left.no-bg {
  background-color: #f3f3f300;
}

.text-size-small {
  color: var(--dim-grey);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.4;
}

.text-size-small.text-weight-sb {
  color: var(--black);
  max-width: 35vw;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 20px;
}

.text-size-small.hide-xs {
  margin-bottom: 0;
}

.text-size-small.mb-0 {
  margin-top: 3px;
  margin-bottom: 0;
}

.navbar5_blog-list {
  grid-column-gap: 0rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  display: grid;
}

.navbar5_dropdown-content-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar5_dropdown-content-wrapper.z-index-1 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: max-content max-content;
  grid-auto-rows: max-content;
  width: 100%;
}

.navbar5_dropdown-content-wrapper.z-index-1.blog {
  max-width: none;
}

.navbar5_menu-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.navbar5_dropdown-content {
  flex-flow: row;
  width: 100%;
  display: flex;
}

.navbar5_dropdown-content.custom {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  flex-flow: column;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.navbar5_dropdown-content-right {
  flex: 1;
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  display: flex;
  position: relative;
}

.navbar5_dropdown-content-right.blog {
  background-color: var(--gradient-2);
  max-width: none;
}

.navbar5_dropdown-content-right.bg {
  background-color: var(--gradient-2);
}

.navbar5_menu-left {
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  margin-right: 40px;
  display: flex;
}

.navbar5_blog-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: .6fr 1fr;
  grid-auto-columns: 1fr;
  place-content: space-between flex-start;
  place-items: center start;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-right: 1.5rem;
  text-decoration: none;
  display: flex;
}

.navbar5_blog-item.spotlight {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-right: 1px solid #f1f1f1;
  margin-top: 0;
  padding-left: 1.5rem;
  display: flex;
}

.navbar5_blog-item.blog {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .6fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  padding-right: 3rem;
  display: grid;
}

.navbar5_blog-item.spotlight {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-right: 1px solid #f1f1f1;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-left: 1.5rem;
  display: flex;
}

.navbar5_blog-item.spotlight:hover {
  background-color: var(--feint-gray);
}

.navbar5_blog-item.spotlight.last {
  border-right-style: none;
  transition: background-color .25s;
}

.text-weight-500 {
  color: var(--black);
  font-weight: 600;
}

.collection-list-wrapper-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-height: 65vh;
  display: block;
}

.nav-blog-grid {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.category {
  color: var(--dim-grey);
  font-size: 12px;
  font-weight: 500;
  line-height: 23px;
}

.grid-12 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.branding-footer {
  margin-top: 40px;
}

.flex-gap-16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.filter_results-text {
  width: 100%;
  font-weight: 400;
}

.text-color-green {
  color: var(--dark-gray);
}

.radio_field {
  cursor: pointer;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  padding: 0 0;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  position: relative;
}

.checkbox_label {
  z-index: 1;
  color: var(--dark-gray);
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  position: relative;
}

.checkbox_label:hover {
  background-color: var(--navajo-white);
  border-radius: 4px;
}

.option-results {
  color: #3c7c43;
  display: none;
}

.nav-menu-content {
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem 2rem;
}

.nav-menu-content-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 2fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.menu-card-block-flex {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: stretch;
  display: flex;
}

.menu-card {
  z-index: 2;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--gradient-2);
  border-radius: 15px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 25%;
  min-height: 18.75rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.125rem 1.125rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-card.card--2 {
  background-color: var(--gradient-1);
}

.menu-card.card--3 {
  background-color: var(--navajo-white);
}

.menu-card-heading {
  color: #070707;
  letter-spacing: -.5px;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.125;
}

.menu-card-text {
  color: #070707;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.3;
}

.circ-arrow {
  background-color: var(--white);
  background-image: url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/65376278e815083e6c86f343_icon-arrow-right.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 100px;
  flex: none;
  width: 40px;
  height: 40px;
}

.circ-arrow.sml {
  background-size: 16px 16px;
  width: 25px;
  height: 25px;
}

.categories-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  width: 35%;
  margin-top: 1.5rem;
  display: flex;
}

.navcat-item._1.show-xs-1, .navcat-item._1.show-xs-2, .navcat-item._1.show-xs-3 {
  display: none;
}

.navcat-item {
  z-index: 2;
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: var(--navajo-white-2);
  color: var(--white);
  text-align: left;
  border-radius: 15px;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 1.25rem 1.25rem 1.25rem 5.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navcat-item:hover {
  background-color: var(--gradient-1);
  box-shadow: 0 0 9px #0000001a;
}

.navcat-item.w--current {
  letter-spacing: -.25px;
}

.navcat-item._1.show-xs-1, .navcat-item._1.show-xs-2, .navcat-item._1.show-xs-3 {
  display: none;
}

.navcat-item._1 {
  background-color: var(--midnight-blue);
}

.navcat-item._1.show-xs-1, .navcat-item._1.show-xs-2, .navcat-item._1.show-xs-3, .navcat-item._1.show-xs-1, .navcat-item._1.show-xs-2, .navcat-item._1.show-xs-3 {
  display: none;
}

.navcat-item._2 {
  background-color: var(--blue-green);
}

.navcat-item._3 {
  background-color: #62636bcc;
}

.shape-curves {
  z-index: -1;
  width: 85%;
  height: auto;
  position: absolute;
  bottom: 0%;
  right: 0%;
}

.shape-curves.full-bg {
  opacity: .7;
  width: 60%;
}

.shape-curves.house {
  opacity: .9;
  width: 85%;
  bottom: 0%;
  right: -15%;
}

.shape-curves.sml--1 {
  width: 50px;
  inset: auto auto auto 14px;
}

.shape-curves.sml--1.dark {
  opacity: .8;
}

.shape-curves.sml--2 {
  width: 65px;
  inset: auto auto auto 10px;
}

.shape-curves.sml--3 {
  width: 60px;
  inset: auto auto auto 10px;
  transform: none;
}

.glossary-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1.25fr;
}

.table-wrapper-2 {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.collection-list-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.scroll-table-content {
  flex-direction: column;
  display: flex;
}

.collection-list-wrapper-5 {
  display: block;
}

.collection-item-7 {
  background-color: var(--feint-gray);
  border-radius: 12px;
  padding: 24px;
  transition: background-color .35s;
  display: block;
  overflow: hidden;
}

.collection-item-7:nth-child(odd) {
  background-color: #f8f8fa;
}

.collection-item-7:hover {
  background-color: var(--gradient-1);
}

.filter_form-wrapper-2 {
  width: 100%;
  margin-bottom: 0;
  position: sticky;
  top: 120px;
}

.filter_block-header-2 {
  z-index: 10;
  grid-column-gap: 1rem;
  grid-row-gap: 16px;
  background-color: #fff;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center stretch;
  display: grid;
}

.filter_header-1 {
  z-index: 999;
  grid-column-gap: 1rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
  position: relative;
}

.filter_reset-all-2 {
  border: 1px solid var(--primary-3);
  background-color: var(--navajo-white);
  color: var(--midnight-blue);
  letter-spacing: .03em;
  border-radius: 4px;
  flex-direction: column;
  padding: 6px 10px;
  font-size: 1rem;
  font-weight: 500;
}

.filter_reset-all-2:hover {
  border: 1px solid var(--midnight-blue);
  background-color: var(--midnight-blue);
  color: var(--white);
  border-radius: 4px;
  margin-bottom: 0;
  padding: 6px 10px;
}

.filter_search-field {
  border: 1px solid var(--gainsboro);
  background-color: var(--white);
  background-image: url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/669969c12b347fca77876f55_search.svg");
  background-position: 16px;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  border-radius: 4px;
  min-width: 25rem;
  min-height: 3.2rem;
  margin-bottom: 0;
  padding: 1rem 1.5rem 1rem 3rem;
  font-size: 1rem;
  line-height: 1.25;
}

.filter_search-field:hover {
  border-color: var(--navajo-white);
}

.filter_search-field:focus-visible, .filter_search-field[data-wf-focus-visible] {
  border-color: var(--primary-3);
  outline-color: var(--primary-3);
  outline-offset: 0px;
  outline-width: 1px;
  outline-style: solid;
}

.filter_block-header-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  display: grid;
}

.header-block {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.header-block.carriers {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.filter_wrapper-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: flex;
}

.filter_wrapper-2.carriers {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.header-block-2 {
  width: 100%;
  height: 100%;
}

.collection-list-glossary {
  grid-column-gap: 7.8px;
  grid-row-gap: 7.8px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.collection-list-glossary.carriers {
  justify-content: center;
  align-items: center;
}

.glossary {
  padding-top: 8.75rem;
  padding-bottom: 100px;
}

.glossary-heading {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-family: DM Sans, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.intro-wrapper.margin-bot-24 {
  margin-bottom: 24px;
}

.intro-wrapper.margin-bot-24.news {
  text-align: center;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.intro-wrapper.margin-bot-24.comparison {
  text-align: center;
  max-width: 740px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

.intro-wrapper.article-heading {
  text-align: center;
  margin-bottom: 20px;
}

.intro-wrapper.must-know {
  text-align: center;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.text-default {
  color: var(--dim-grey);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

.text-default.mb-16 {
  margin-bottom: 1.125rem;
}

.radio_input_gloss {
  border-color: var(--gainsboro);
  border-radius: 4px;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
}

.radio_input_gloss.w--redirected-checked {
  border: 1px none var(--dark-gray);
  background-color: var(--navajo-white-2);
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border-radius: 4px;
}

.radio_input_gloss.w--redirected-focus {
  border-style: none;
  border-color: var(--dark-gray);
  box-shadow: none;
}

.line-separator {
  background-color: var(--gainsboro);
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.statement-block {
  max-width: 940px;
  padding-top: 20px;
}

.heading-40 {
  font-size: 40px;
  line-height: 1.2;
}

.fs_cmsselect_select {
  border: 1px solid var(--gainsboro);
  background-color: var(--white);
  color: var(--dim-grey);
  border-radius: 4px;
  height: 3.5rem;
  margin-bottom: 0;
  padding: .5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

.fs_cmsselect_select:focus {
  border-color: var(--navajo-white);
  color: var(--midnight-blue);
}

.fs_cmsselect_wrapper.hide {
  display: none;
}

.flexer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo-footer.show-xs {
  display: none;
}

.dropdown-toggle {
  grid-column-gap: .5rem;
  flex-flow: row-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.dropdown-toggle:hover {
  background-color: #fdfdfd;
}

.dropdown-list {
  background-color: #fff;
  border-radius: 5px;
  display: block;
  overflow: hidden;
  box-shadow: 0 10px 40px #98a2ac36;
}

.div-block-46 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.dropdown-link {
  padding-left: 30px;
  font-weight: 500;
  transition: all .2s;
}

.dropdown-link:hover {
  background-color: var(--gradient-1);
}

.dropdown-link.w--current {
  color: var(--navajo-white);
}

.phone-call {
  display: none;
}

@media screen and (min-width: 1280px) {
  .container.grid-search {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .table-yellow-block {
    max-width: 300px;
  }

  .html-embed-2 {
    margin-bottom: 0;
  }

  .nav-menu-content-grid {
    grid-template-columns: 2fr;
  }

  .card-heading-wrap {
    padding-right: 2rem;
  }

  .radio-btn-field {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .text-size-med.text-color-yellow {
    color: var(--primary-3);
  }

  .row-list {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    align-items: flex-start;
    display: flex;
  }

  .table-comparison {
    max-width: 1200px;
  }
}

@media screen and (min-width: 1920px) {
  .section {
    font-weight: 500;
  }

  .section.grey, .section.grey-gradient {
    padding-bottom: 170px;
  }

  .section.section-large.no-bottom {
    padding-bottom: 0;
  }

  .section.grey, .section.grey-gradient {
    padding-bottom: 170px;
  }

  .container.large {
    max-width: 1440px;
  }

  .heading-5.bot {
    text-align: center;
    text-align: center;
  }

  .text-white-2.blue {
    font-size: 45px;
    font-weight: 400;
  }

  .padding-vertical.padding-xhuge {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .insurance-heading.blue {
    margin-top: 0;
  }

  .bold-text-3, .bold-text-4, .bold-text-5, .bold-text-6, .bold-text-7, .bold-text-8 {
    font-weight: 500;
  }

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

  .text-block-15 {
    margin-top: 10px;
  }

  .section-timeline {
    font-weight: 500;
  }

  .latest_info-wrapper {
    width: 100%;
  }

  .selected-cat_item-card {
    align-items: flex-start;
  }

  .section-blog-title.margin-top.margin-small {
    margin-top: 3rem;
  }

  .full-wd {
    height: 490px;
  }

  .role {
    max-width: 383px;
  }

  .role._2 {
    max-width: 436px;
  }

  .role._3 {
    max-width: 328px;
  }

  .role._4 {
    max-width: 279px;
  }

  .section-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .arrow-wr {
    max-width: 10em;
    bottom: -3.7em;
    right: 0;
  }

  .friendly-arrow {
    max-width: 11.4rem;
  }

  .table-yellow-block {
    max-width: 320px;
  }

  .centered {
    justify-content: center;
    margin-top: 6.5rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .navbar5_large-item-content {
    justify-content: center;
    align-items: flex-start;
    margin-left: 14px;
  }

  .navbar5_blog-list-wrapper {
    display: flex;
  }

  .navbar5_blog-item {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    grid-template-columns: .6fr 1fr;
    grid-auto-flow: row;
    display: flex;
  }

  .navbar5_blog-item.blog {
    place-items: center start;
    padding-right: 5.4rem;
  }

  .review-headline {
    max-width: 383px;
  }

  .step-arrow--1, .step-arrow--2 {
    max-width: 11.4rem;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
    line-height: 60px;
  }

  h2 {
    font-size: 40px;
    line-height: 48px;
  }

  h3 {
    font-size: 32px;
    line-height: 40px;
  }

  h4 {
    font-size: 28px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section.grey, .section.grey-gradient {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section.horizontal-page-title {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }

  .section.section-large.bg-primary {
    padding-left: 26px;
    padding-right: 26px;
  }

  .section.section-large.no-bottom.dark-split {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .section.section-large.is-hero {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.center {
    padding-left: 25px;
    padding-right: 25px;
  }

  .section.grey, .section.grey-gradient {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .text-large {
    font-size: 18px;
    line-height: 28px;
  }

  .text-large.content-row-subtitle {
    margin-bottom: 36px;
  }

  .text-large.content-row-subtitle.right-pad {
    padding-right: 0;
  }

  .text-large.left-pad {
    padding-left: 0;
  }

  .button {
    font-size: 16px;
  }

  .button.button-outline.button-white.navbar-button.right {
    font-size: 18px;
    line-height: 18px;
  }

  .button.button-outline.button-white.navbar-button.phone {
    background-image: url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/65376278e815083e6c86f4f0_94-943942_593-transparent-background-phone-icon-white.webp");
    background-position: 18px 56%;
    background-size: 17px;
    padding-left: 50px;
    font-size: 18px;
    line-height: 18px;
  }

  .button.is-hero {
    width: 100%;
  }

  .card-body {
    padding: 24px;
  }

  .icon-list {
    text-align: left;
  }

  .nav-link {
    padding: 3px 0;
  }

  .nav-link.nav-link-light.right, .nav-link.nav-link-light.right.blue {
    text-align: left;
    align-items: flex-start;
  }

  .nav-link.nav-link-light {
    color: var(--black);
    margin-bottom: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .nav-link.nav-link-light.right, .nav-link.nav-link-light.right.blue {
    text-align: left;
    align-items: flex-start;
  }

  .nav-link.nav-link-light.right, .nav-link.nav-link-light.right.blue {
    text-align: left;
    align-items: flex-start;
  }

  .nav-link.nav-link-light.right.blue {
    text-align: left;
    align-items: flex-start;
  }

  .nav-link.nav-link-light.right.blue.quote-ph {
    display: block;
  }

  .nav-link.nav-link-light.right.quote-ph {
    display: none;
  }

  .nav-link.nav-link-light.blue {
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar-container.sticky-top.bg-white, .navbar-container.fixed, .navbar-container.fixed, .navbar-container.fixed, .navbar-container.sticky-top.bg-white, .navbar-container.sticky-top.bg-white, .navbar-container.fixed, .navbar-container.fixed, .navbar-container.fixed {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-menu {
    border: 1px solid var(--light-gray);
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    margin-top: 12px;
    padding: 12px;
  }

  .navbar-toggle-button {
    background-color: #0000;
    margin-left: 24px;
    margin-right: 10px;
    padding: 0;
  }

  .navbar-toggle-button.w--open {
    background-color: #0000;
  }

  .navbar-toggle-cross-icon {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .footer {
    padding-top: 72px;
  }

  .footer-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 96px;
  }

  .footer-menus {
    order: 1;
    width: 100%;
  }

  .footer-links-large {
    flex: 1;
    margin-right: 20px;
    padding-right: 20px;
  }

  .footer-link.footer-link-large.text-white.button.round {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-link.footer-link-large.text-white.button.round.footer-button {
    align-self: flex-start;
  }

  .content-row {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .content-row.align-center.reverse-direction {
    flex-direction: column;
  }

  .content-row.reverse-direction {
    flex-direction: row;
  }

  .content-row.align-center.in-hero-split {
    margin-bottom: 60px;
  }

  .content-row-contents {
    text-align: center;
    align-items: center;
    max-width: none;
  }

  .content-row-contents.lf {
    align-items: flex-start;
  }

  .justify-center.page-title-text {
    margin-top: 0;
  }

  .medium-heading {
    margin-bottom: 16px;
    padding-right: 0;
    font-size: 40px;
    line-height: 48px;
  }

  .content-row-image-wrapper {
    margin-top: 48px;
  }

  .testimonial-horizontal.content-row-testimonial {
    margin-top: 24px;
  }

  .testimonial-horizontal-text {
    padding-left: 0;
  }

  .section-large {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section-large.hero {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .brand-list.bottom.fl {
    padding-left: 47px;
    padding-right: 47px;
  }

  .brand-logo.circle, .brand-logo.square {
    width: 4.5rem;
  }

  .brand-logo.reverse.chubb {
    width: 8rem;
  }

  .brand-logo.reverse.hagerty {
    width: 6rem;
  }

  .brand-logo.fl {
    margin-bottom: 40px;
  }

  .brand-logo.circle, .brand-logo.square {
    width: 4.5rem;
  }

  .pill-group {
    justify-content: flex-start;
  }

  .block-section {
    flex-direction: column;
  }

  .block-section-half {
    width: 100%;
  }

  .block-section-half.bg-primary {
    justify-content: center;
  }

  .block-section-half.block-section-content {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .block-section-half.block-section-content.bg-gray-4 {
    flex: 1 0 auto;
  }

  .grid-thirds {
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-section-left {
    align-items: center;
    max-width: none;
  }

  .contact-section-right {
    border-left-style: none;
    flex-direction: column;
    flex: 0 auto;
    align-items: center;
    width: 100%;
    min-height: auto;
    margin-top: 48px;
    margin-left: 0;
  }

  .contact-section-right.contact-page {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .block-section-content {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .career-image {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 72px;
  }

  .career-perks {
    max-width: 550px;
    margin-bottom: 72px;
    margin-left: 0;
    margin-right: 0;
  }

  .grid-halves-restricted {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .values-text {
    margin-top: 20px;
  }

  .content-row-contained-image {
    margin-top: 36px;
    padding: 48px;
  }

  .demo-container {
    padding: 24px;
  }

  .nav-link-light {
    color: var(--dim-grey);
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .heading.smaller.tiny {
    font-size: 29px;
  }

  .features.white {
    font-size: 22px;
  }

  .heading-2 {
    line-height: 74px;
  }

  .heading-3.carriers {
    line-height: 1.1;
  }

  .heading-4 {
    line-height: 1;
  }

  .h2 {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 60px;
    line-height: 50px;
  }

  .process-icon {
    width: 65px;
  }

  .right.center {
    align-items: flex-start;
  }

  .section-3.meet {
    padding: 61px 26px;
  }

  .grid-2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .grid-2.grey {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2.grey.max {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .text-block-5 {
    color: #000;
    text-align: left;
    flex: none;
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .text-block-5.blue {
    text-align: left;
    text-align: left;
  }

  .dropdown-toggle-2 {
    text-align: right;
    flex: 1;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .dropdown-toggle-2.w--open {
    margin-left: 0;
    margin-right: 0;
  }

  .dropdown-toggle-2.right {
    align-items: flex-start;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .dropdown-list-2.w--open {
    box-shadow: none;
    background-color: #0000;
    flex-direction: column;
    width: 100%;
    min-width: auto;
    display: flex;
    position: relative;
  }

  .dropdown-link-2 {
    margin-left: 0;
    margin-right: 0;
  }

  .content-row-video-2 {
    height: auto;
    margin-top: 0;
  }

  .text-white-2 {
    font-size: 40px;
  }

  .text-white-2.blue {
    font-size: 69px;
  }

  .text-white-2.white {
    font-size: 70px;
  }

  .text-large-2 {
    font-size: 18px;
    line-height: 28px;
  }

  .content-row-contents-2 {
    text-align: center;
    align-items: center;
  }

  .content-row-contents-2.wider {
    flex-flow: wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .content-row-contents-2.wider2 {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-image {
    height: auto;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical.padding-xhuge, .padding-vertical.carrier-faq, .padding-vertical.padding-xhuge, .padding-vertical.carrier-faq {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .dropdown {
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    display: flex;
  }

  .icon-2 {
    color: var(--black);
  }

  .dropdown-2 {
    display: none;
  }

  .quorte-options-image {
    width: 300px;
    height: 300px;
    top: 25%;
    left: 50%;
  }

  .grid-4 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .collection-list-2 {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    min-width: 0;
  }

  .testimonial-wrapper {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-grid {
    display: none;
  }

  .testimonial-grid.mobile {
    display: block;
  }

  .insurance-heading.blue {
    margin-bottom: 60px;
  }

  .insurance-heading.blue.is-inline {
    margin-bottom: 0;
  }

  .coverages-heading {
    line-height: 1.125;
  }

  .faq10_component {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
  }

  .text-block-10 {
    color: var(--midnight-blue);
  }

  .form-next:hover {
    box-shadow: none;
    opacity: 1;
  }

  .form-block {
    margin-top: 10px;
  }

  .dropdown-omega {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-12 {
    font-size: 34px;
    line-height: 1.1;
  }

  .small-quote-label.is-v3 {
    line-height: 16px;
    top: -15px;
  }

  .nav-drop-link-wrap {
    padding-top: 8px;
    padding-left: 0;
    padding-right: 0;
  }

  .text-white-3 {
    font-size: 40px;
  }

  .div-block-11 {
    width: 100%;
    height: 500px;
    position: relative;
  }

  .div-block-12 {
    grid-template-columns: 1fr;
    width: 66.66%;
    margin-left: auto;
    margin-right: auto;
  }

  .form-next-btn:hover {
    box-shadow: none;
    opacity: 1;
  }

  .section-split {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .half-section-lightbox {
    order: 1;
    width: 100%;
    height: 600px;
  }

  .content-block-1 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 86px 16%;
    display: flex;
  }

  .sm-review-content {
    text-align: left;
  }

  .inline-block-head.with-bm {
    margin-bottom: 50px;
  }

  .section-timeline-bottom {
    padding-top: 48px;
    padding-bottom: 150px;
  }

  .v2-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .city-heading.text-32 {
    line-height: 1.125;
  }

  .v2-pillbox-1 {
    padding: 3px 12px 4px;
    font-size: 15px;
  }

  .form-group {
    flex: 1;
  }

  .breadcrumb-container {
    display: none;
  }

  .breadcrumb-container.is-mobile {
    margin-bottom: 0;
    display: flex;
  }

  .carrier-content {
    width: 100%;
  }

  .carrier-content p, .carrier-content ul, .carrier-content ol, .carrier-content p, .carrier-content ul, .carrier-content ol {
    font-size: 17px;
  }

  .v2-3-grid-1 {
    grid-column-gap: 36px;
    grid-template-columns: 1fr;
  }

  .v2-h2 {
    font-size: 42px;
  }

  .v2-50-width {
    width: 100%;
  }

  .v2-author-medium-profile-pic {
    width: 50px;
    height: 50px;
  }

  .nav-drop-link-list {
    padding: 8px 0;
  }

  .dropdown-list-3.w--open {
    box-shadow: none;
    background-color: #0000;
    flex-direction: column;
    width: 100%;
    min-width: auto;
    display: flex;
    position: relative;
  }

  .v2-testimonial-card {
    min-width: 0;
  }

  .v2-h4.heading-lg32-xs-24 {
    line-height: 1.125;
  }

  .v2-carriers {
    grid-template-columns: 1fr;
  }

  .v2-carriers-logo-grid {
    grid-template-rows: minmax(90px, 1fr) minmax(90px, 1fr) minmax(90px, 1fr) minmax(90px, 1fr);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
  }

  .v2-carrier-logo-card {
    padding: 20px;
  }

  .v2-3-grid-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .slider-content {
    height: auto;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .promise-lockup {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
  }

  .promise-item-lockup {
    grid-column-gap: 0px;
    grid-row-gap: 8px;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding-left: .2rem;
    padding-right: .2rem;
    display: flex;
  }

  .v2-carriers-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .form-button-lockup {
    width: 100%;
  }

  .hero_rating-wrapper {
    text-align: left;
    display: flex;
  }

  .hero_rating-text {
    text-align: left;
    white-space: nowrap;
    padding-left: .5rem;
  }

  .breadcrumb-container-50 {
    margin-bottom: 0;
  }

  .breadcrumb-container-50.is-desk {
    display: none;
  }

  .breadcrumb-container-50.is-mobile {
    border-bottom: 1px solid #282c521a;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .grid-9 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .promise-icon {
    background-color: var(--white-smoke-2);
    border-radius: 100%;
    padding: .5rem;
  }

  .promise-text {
    white-space: nowrap;
    font-size: 12px;
    line-height: 17px;
  }

  .blog-post-hero {
    padding-top: 100px;
  }

  .blog-post-bg-content {
    margin-bottom: 20px;
  }

  .blog-post-bg-image {
    width: 100%;
  }

  .top-cat_wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .blog-slider_slide {
    max-width: 33.3333%;
  }

  .section-hero.herro-padding {
    padding-top: 100px;
  }

  .hero-product-showcase {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-background {
    height: 27%;
  }

  .client-slider {
    padding-left: 5%;
    padding-right: 5%;
  }

  .client-slide {
    width: 33.3333%;
  }

  .client-slide-arrow {
    margin-left: 0%;
  }

  .client-slide-arrow.right {
    margin-right: 0%;
  }

  .section-medium {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .feedback-section-title-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .feedback-statistic-wrapper {
    text-align: left;
  }

  .feedback-number {
    font-size: 3rem;
  }

  .feedback-slider {
    padding-left: 2.5%;
    padding-right: 2.5%;
  }

  .feedback-slide {
    max-width: 80%;
  }

  .feedback-slide-arrow {
    margin-left: 0%;
  }

  .feedback-slide-arrow.right {
    margin-right: 0%;
  }

  .feedback-slide-arrow.kaliwa {
    left: 0;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-layout-left {
    display: none;
  }

  .product-card-home {
    margin-bottom: 4rem;
  }

  .product-card-home.from-tablet-mb-0 {
    margin-bottom: 0;
  }

  .faq-layout {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .faq-layout-left-wrapper, .faq-layout-right-wrapper {
    width: 100%;
  }

  .support-card {
    flex-flow: column;
    padding-bottom: 20px;
    padding-right: 0;
  }

  .review-circle {
    border-radius: 0;
  }

  .review-layout {
    justify-content: center;
  }

  .story-slide {
    width: 50%;
  }

  .new-arrow.is-right {
    margin-left: auto;
    margin-right: 0;
  }

  .new-arrow.is-left {
    margin-left: 0;
    margin-right: auto;
  }

  .fluid-body {
    font-size: 12px;
  }

  .faq-q {
    font-size: 1.8em;
  }

  .review-holder {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .next {
    display: none;
  }

  .faq-item-2 {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }

  .content-holder {
    width: 100%;
    max-width: none;
  }

  .box {
    margin-top: 2em;
    padding: 2em;
  }

  .footer-wrap-2 {
    padding-top: 2.4em;
  }

  .stars-rating {
    height: 1.6em;
  }

  .logo5 {
    height: 6em;
  }

  .table-col {
    height: auto;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .table-col.table-col-l, .table-col.left-align, .table-col.table-col-l, .table-col.left-align {
    padding-left: 0;
  }

  .reviews {
    grid-column-gap: 2.4em;
    margin-top: 2.4em;
  }

  .city-card {
    width: 100%;
    min-width: 100%;
    height: 210px;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .testimonial-texts {
    max-width: none;
  }

  .container-2 {
    padding-left: 4em;
    padding-right: 4em;
  }

  .container-2._2 {
    padding-top: 4em;
  }

  .prev {
    display: none;
  }

  .logo3 {
    height: 4em;
  }

  .row-wrap {
    flex-direction: column;
  }

  .name {
    font-size: 1.5em;
  }

  .hero-feature-item {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-direction: column;
    align-items: center;
  }

  .logo2 {
    height: 6em;
  }

  .list-content {
    width: 100%;
    max-width: none;
    margin-top: 4.8em;
  }

  .list-content.locations {
    grid-column-gap: 34px;
    grid-row-gap: 34px;
    grid-column-gap: 34px;
    grid-row-gap: 34px;
    width: auto;
    display: flex;
  }

  .cities {
    grid-column-gap: 1.6em;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    margin-top: 4em;
  }

  .nav-button-text {
    font-size: 1.5em;
  }

  .hero-wrapper {
    flex-direction: column;
  }

  .partner-logo {
    height: 3.6em;
  }

  .city-name {
    font-size: 1.6em;
  }

  .check-icon {
    height: 1.6em;
  }

  .nav-menu-2 {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonial-image {
    width: 5em;
    height: 5em;
    position: absolute;
    inset: 2em auto auto 50%;
    transform: translate(-50%);
  }

  .header-image-mobile {
    display: block;
  }

  .header-image-mobile.hide {
    display: none;
  }

  .val-text {
    font-size: 14px;
  }

  .step-content-head {
    margin-top: 2em;
    margin-bottom: 2em;
    top: -20%;
    left: -8%;
  }

  .table-col-text {
    text-align: center;
    max-width: 120px;
    font-size: 1.1em;
  }

  .card-2 {
    padding: 2.4em 2em 2em;
  }

  .m-line-3 {
    background-color: #282c52;
    border-radius: 50px;
    width: 25px;
    height: 2px;
    margin-left: auto;
    padding-bottom: 0;
    padding-right: 0;
  }

  .hero-features-block {
    max-width: 50em;
    margin-top: 2.4em;
  }

  .caption {
    font-size: 1.8em;
  }

  .step-name {
    font-size: 1.4em;
  }

  .button-w {
    height: 5.4em;
    padding-left: 3.6em;
    padding-right: 3.6em;
  }

  .header-images {
    flex-flow: column;
    order: -1;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
    display: flex;
  }

  .header-images.hide {
    display: none;
  }

  .m-line-2 {
    background-color: #282c52;
    border-radius: 50px;
    width: 35px;
    height: 2px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .discounts {
    width: 100%;
    max-width: 45em;
    margin-top: 2.4em;
  }

  .hero-feature-text {
    font-size: 1.5em;
  }

  .hero-feature-text._2, .step-text {
    font-size: 1.4em;
  }

  .steps {
    grid-column-gap: 1.6em;
    margin-top: 13em;
  }

  .step-w {
    height: 3.6em;
    margin-right: 1em;
    padding-left: 1em;
    padding-right: 6em;
  }

  .verified-text {
    font-size: 1.6em;
  }

  .m-line {
    background-color: #282c52;
    border-radius: 50px;
    width: 25px;
    height: 2px;
    margin-left: auto;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar-2 {
    height: 7.2em;
  }

  .icon-sm {
    height: 2.5em;
    margin-right: 1em;
  }

  .icon-sm._2 {
    height: 3.4em;
  }

  .nav-link-2 {
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 2em;
  }

  .header-review {
    margin-top: 2.4em;
  }

  .image-holder {
    width: 100%;
    position: static;
    transform: translate(-40px);
  }

  .image-wrap {
    align-self: center;
    height: auto;
    display: block;
  }

  .section-4 {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .list-wrap {
    flex-direction: column;
    margin-top: 4em;
    margin-bottom: 4em;
  }

  .list-wrap.locations {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .logo {
    height: 3.7em;
  }

  .city-image {
    width: 8em;
    height: 8em;
  }

  .text-block-16 {
    font-size: 1.5em;
  }

  .table-logo {
    width: 120px;
  }

  .hero-list-text {
    font-size: 1.6em;
  }

  .faqs {
    max-width: none;
  }

  .role {
    font-size: 1.8em;
    line-height: 33px;
  }

  .hero-content-block {
    text-align: center;
    flex-direction: column;
    order: 0;
    align-items: center;
    width: 100%;
    max-width: none;
    display: flex;
  }

  .testimonials {
    margin-top: 4em;
    margin-bottom: 3.2em;
  }

  .logo8 {
    height: 4em;
  }

  .partners {
    margin-top: 2.4em;
  }

  .button-text {
    font-size: 1.6em;
  }

  .button-text._2 {
    font-size: 1.4em;
  }

  .testimonial-card-head {
    text-align: center;
  }

  .testimonial-stars {
    height: 1.4em;
  }

  .footer-button {
    height: 3.6em;
  }

  .faq-arrow {
    width: 3em;
    min-width: 3em;
  }

  .cards {
    grid-column-gap: 1em;
    width: auto;
    margin-top: 4em;
  }

  .nav-button {
    width: 15em;
    height: 3.4em;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2em;
    padding-right: 2em;
  }

  .footer-logo {
    height: 4em;
  }

  .table-text {
    font-size: 1.4em;
  }

  .table-text.caps {
    font-size: 1.1em;
  }

  .logo6 {
    height: 3.6em;
  }

  .arrow {
    width: 2.4em;
  }

  .menu-button {
    justify-content: flex-end;
    padding: 0;
    display: flex;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .testimonial-card-2 {
    padding: 10em 2em 2.4em;
    position: relative;
    transform: none;
  }

  .testimonial-card-2.padding {
    margin-bottom: 60px;
  }

  .list-name {
    font-size: 1.6em;
  }

  .logo1 {
    height: 3.2em;
  }

  .footer-link-2 {
    margin-right: 2em;
    font-size: 1.6em;
  }

  .hero-list-icon {
    height: 2.8em;
  }

  .info-holder {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .google-review {
    height: 3.2em;
  }

  .avatar-2 {
    width: 3.6em;
    height: 3.6em;
  }

  .testimonial-card-bottom {
    margin-top: 4em;
  }

  .review-text-count {
    font-size: 1.4em;
  }

  .step-circle {
    width: 3.6em;
    height: 3.6em;
  }

  .rating-block {
    margin-bottom: 1.4em;
  }

  .empty {
    min-width: 160px;
  }

  .logo7 {
    height: 3.3em;
  }

  .logo4 {
    height: 3.2em;
  }

  .stars-s {
    height: 1.6em;
  }

  .logos {
    max-width: 60em;
    margin-top: 2.4em;
  }

  .hero-list-wrapper {
    margin-top: 1.4em;
    margin-bottom: 1.4em;
  }

  .review-text-2 {
    font-size: 1.4em;
  }

  .hero-summary-wrapper {
    margin-top: 1em;
  }

  .nav-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .table-head-col {
    height: auto;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .r-star {
    height: 1.4em;
  }

  .header {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .header.white-bg {
    padding-top: 2.19em;
  }

  .header.white-bg.padding-top-0 {
    padding-top: 4em;
  }

  .header.white-bg.padding-top-0.padding-xs-0 {
    padding-top: 0;
  }

  .footer-text {
    font-size: 1.6em;
  }

  .main-heading-title, .main-heading-title.location, .main-heading-title.location {
    font-size: 3.5em;
  }

  .hero-summary-text {
    font-size: 1.8em;
  }

  .right-overlay, .left-overlay {
    width: 100px;
  }

  .div-block-19 {
    margin-right: 1px;
    right: -108px;
  }

  .div-block-19._2 {
    margin-right: -7px;
  }

  .text-block-20 {
    margin-left: 61px;
  }

  .arrow-wr {
    display: none;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lightbox-play-icon {
    box-shadow: 0 0 15px 12px #0a123fa3;
  }

  .content3_lightbox.desktop {
    display: none;
  }

  .content3_lightbox.mobile {
    display: flex;
  }

  .content3_lightbox-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .content3_component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .friendly-arrow {
    right: -12%;
  }

  .friendly-arrow.no-flip {
    right: -15%;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial11_component {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial11_mask {
    width: 100%;
  }

  .testimonial11_slide {
    height: auto;
    margin-right: 2.5rem;
    padding-right: 0;
  }

  .heading-16.location {
    line-height: 1.125;
  }

  .icon-embed-large-2 {
    color: var(--white);
  }

  .table-yellow-block {
    border-width: 3px;
    max-width: 160px;
    height: 41em;
    top: -41%;
  }

  .section-small {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .section-small.locations {
    padding-top: 40px;
    padding-bottom: 18px;
  }

  .blog-head {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .text-medium.text-align-right {
    text-align: left;
    text-align: left;
  }

  .featured-blog-main {
    flex-direction: column;
    display: flex;
  }

  .main-right {
    flex-direction: column-reverse;
    display: flex;
  }

  .bg-highlighter {
    width: 80%;
  }

  .main-left {
    flex-direction: column;
    display: flex;
  }

  .section-head.carriers {
    padding-top: 140px;
  }

  .head-content {
    flex-direction: column;
    display: flex;
  }

  .carrier-body.v2-medium-top.v2-medium-bottom {
    max-width: 100%;
    padding-top: 40px;
  }

  .carrier-body-inner {
    grid-column-gap: 36px;
  }

  .centered {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .container-blog {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-small {
    font-size: 1.5rem;
  }

  .sidebar-blog.carriers {
    align-items: stretch;
    width: 100%;
    position: relative;
    top: 1rem;
  }

  .carieer-2-columns {
    flex-flow: column;
  }

  .main-img._1, .main-img.solo, .main-img._1, .main-img.solo {
    object-fit: contain;
    height: 340px;
  }

  .tabs {
    justify-content: center;
    align-items: center;
  }

  .tabs-content-2 {
    height: 340px;
  }

  .tab-pane-tab-1 {
    height: 260px;
  }

  .navbar5_menu-dropdown {
    width: 100%;
    position: relative;
  }

  .branding-header, .branding-header.w--current {
    order: 2;
  }

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-left: -5px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar5_dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    font-size: 1.125rem;
    display: flex;
  }

  .menu-icon_line-middle {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-bottom {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .new-nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .navbar5_menu-button {
    order: 1;
  }

  .navbar5_menu-button.w--open {
    background-color: #0000;
  }

  .navbar5_dropdown-list {
    position: relative;
    overflow: hidden;
  }

  .navbar5_dropdown-list.w--open {
    border-style: none;
    align-items: flex-start;
    min-width: auto;
    margin-bottom: 1.5rem;
    padding: 0 0 0;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }

  .navbar5_menu {
    border-bottom: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
    background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
    background-image: linear-gradient(to bottom, var(--white), var(--white));
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    align-items: flex-start;
    height: 100dvh;
    margin-left: 0;
    padding: 1rem 5% 6.5rem;
    transition: height .5s;
    position: absolute;
    overflow: auto;
  }

  .navbar5_large-item-content {
    width: 100%;
  }

  .navbar5_dropdown-content-left {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    align-content: start;
    align-items: start;
  }

  .navbar5_blog-list {
    width: 100%;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .navbar5_dropdown-content-wrapper {
    width: 100%;
  }

  .navbar5_menu-right {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
  }

  .navbar5_dropdown-content {
    flex-direction: column;
  }

  .navbar5_dropdown-content.custom {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar5_dropdown-content-right {
    align-items: flex-start;
    max-width: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-top {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar5_menu-left {
    display: block;
  }

  .navbar5_blog-item {
    width: 100%;
  }

  .navbar5_blog-item.spotlight {
    flex-flow: column;
  }

  .navlink {
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .code-map {
    margin-right: 0;
  }

  .review-headline {
    line-height: 33px;
  }

  .grid-12 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .other-articles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .search-wrapper {
    width: 50%;
  }

  .search-field.blog-category-page {
    width: 100%;
  }

  .search-results-list {
    grid-template-columns: 1fr 1fr;
  }

  .empty-list-image {
    width: 305px;
    height: 244px;
  }

  .empty-state-content {
    margin-bottom: 96px;
  }

  .partners-logo {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .filter_grid {
    grid-template-columns: .66fr 1fr;
  }

  .filter_block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex: none;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
  }

  .filter_block-header {
    align-items: start;
    padding-left: 1rem;
  }

  .filter_options {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .collection-list-a-z {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .collection-item-6 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .grid-13 {
    grid-template-columns: 2fr;
  }

  .tab-link-3 {
    padding-left: 22px;
    padding-right: 0;
    font-size: 15px;
  }

  .tab-link-3.w--current {
    padding-left: 0;
  }

  .tabs-menu-4 {
    width: 60%;
    top: -.5%;
    left: 47%;
  }

  .tab-dropdown-wrap {
    flex-direction: column;
  }

  .tab-content {
    margin-top: 100px;
  }

  .nav-menu-content-grid {
    grid-template-rows: auto;
  }

  .menu-card-block-flex {
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
  }

  .menu-card {
    flex: none;
    width: 31%;
  }

  .menu-card-heading {
    line-height: 1.2;
  }

  .categories-wrap {
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    width: 100%;
    margin-left: 0;
  }

  .pricing-description-cell {
    flex: none;
    padding: 20px;
  }

  .pricing-component-title {
    font-size: 2vw;
  }

  .pricing-check-cell {
    flex: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  .pricing-component-text {
    font-size: 2vw;
  }

  .glossary-grid {
    grid-template-columns: 1fr;
  }

  .filter_form-wrapper-2 {
    position: static;
  }

  .filter_header-1 {
    flex-wrap: wrap;
    grid-template-columns: .25fr .25fr;
  }

  .filter_search-field {
    background-position: 16px;
    padding-left: 3rem;
  }

  .filter_block-header-2 {
    grid-column-gap: .5rem;
  }

  .collection-list-glossary {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .glossary {
    padding-top: 7rem;
  }

  .heading-xl {
    font-size: 2.5rem;
  }

  .table-heading {
    line-height: 1.125;
  }

  .scroller {
    padding-right: 5rem;
  }

  .news-heading-1 {
    font-size: 2rem;
  }

  .news-thumb {
    object-fit: cover;
    height: 100%;
  }

  .news-article h3 {
    line-height: 1.125;
  }

  .news-article h2 {
    font-size: 32px;
    line-height: 1.125;
  }

  .card-box {
    height: 380px;
  }

  .card-heading {
    font-size: 1.5rem;
    line-height: 1.125;
  }

  .card-heading-wrap {
    padding-right: 0;
  }

  .card-desc {
    font-size: .875rem;
  }

  .heading-xl-2 {
    font-size: 2.5rem;
  }

  .review-slide-item {
    max-width: 80%;
  }

  .review-arrow {
    margin-left: 0%;
  }

  .review-arrow.right {
    margin-right: 0%;
  }

  .review-slider {
    padding-left: 2.5%;
    padding-right: 2.5%;
  }

  .post-list {
    grid-template-columns: 1fr 1fr;
  }

  .widget-slide {
    width: 50%;
  }

  .global-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .global-section.cat-hero {
    padding-top: 8rem;
  }

  .row.grid-two {
    grid-template-columns: 1fr;
  }

  .product-list-block {
    margin-top: 1.4em;
    margin-bottom: 1.4em;
  }

  .product-list-icon {
    height: 2.8em;
  }

  .text-md {
    font-size: 1.125em;
  }

  .slider-image {
    max-width: none;
  }

  .slider-navigation.no-perspective {
    margin-top: -40px;
  }

  .slide-navigator {
    opacity: 0;
    font-size: 38px;
    top: 18px;
  }

  .arrow-curve {
    display: none;
  }

  .step-arrow--1 {
    max-width: 7rem;
    top: 90%;
    right: -25%;
  }

  .step-arrow--2 {
    right: -12%;
  }

  .step-arrow--2.flip {
    max-width: 7rem;
    top: -50%;
    right: -40%;
  }

  .awards-logo {
    max-width: 60em;
    margin-top: 2.4em;
  }

  .form-container {
    width: 100%;
  }

  .swiper-button:hover {
    background-color: var(--gradient-1);
  }

  .swiper-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .blog-slider-wrapper {
    width: 100%;
  }

  .swiper-slide {
    width: 50%;
  }

  .swiper.is-swiper-portfolio {
    overflow: visible;
  }

  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }

  .text-size-18.text-color-white {
    font-size: 16px;
  }

  .div-block-35 {
    grid-template-columns: 1fr;
  }

  .heading-42, .heading-44 {
    line-height: 1.125;
  }

  .max-940.py-24 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .div-block-36 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: wrap;
  }

  .div-block-37, .insurance-process {
    width: 100%;
  }

  .heading-45 {
    line-height: 1.125;
  }

  .div-block-40 {
    padding-right: 4rem;
  }

  .div-block-44 {
    width: 100%;
    padding-left: 0;
  }

  .side-sticky {
    padding-left: 2rem;
  }

  .dropdown-3 {
    display: block;
  }

  .dropdown-toggle {
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    font-size: 1.125rem;
  }

  .heading-48.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-3 {
    padding-top: 100px;
  }

  .button-4 {
    font-size: 16px;
  }

  .heading-49 {
    line-height: 1;
  }

  .swiper-button-3:hover {
    background-color: #fdeac3;
  }

  .button-5, .carrier-cta-btn {
    font-size: 16px;
  }

  .heading-50.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-4 {
    padding-top: 100px;
  }

  .button-6 {
    font-size: 16px;
  }

  .heading-51 {
    line-height: 1;
  }

  .swiper-button-4:hover {
    background-color: #fdeac3;
  }

  .heading-52.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-5 {
    padding-top: 100px;
  }

  .blog-post-bg-image-2 {
    width: 100%;
  }

  .button-7 {
    font-size: 16px;
  }

  .heading-53 {
    line-height: 1;
  }

  .middle-box.flex-half {
    flex-flow: column;
  }

  .image-box {
    width: 100%;
  }

  .wrap {
    display: inline;
  }

  .mid-container {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: wrap;
  }

  .heading-54.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-6 {
    padding-top: 100px;
  }

  .button-8 {
    font-size: 16px;
  }

  .heading-55 {
    line-height: 1;
  }

  .heading-56.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-7 {
    padding-top: 100px;
  }

  .button-9 {
    font-size: 16px;
  }

  .heading-57.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-8 {
    padding-top: 100px;
  }

  .button-10 {
    font-size: 16px;
  }

  .heading-58 {
    line-height: 1;
  }

  .heading-59.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-9 {
    padding-top: 100px;
  }

  .heading-60 {
    line-height: 1;
  }

  .heading-61.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-10 {
    padding-top: 100px;
  }

  .heading-62 {
    line-height: 1;
  }

  .heading-63.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-11 {
    padding-top: 100px;
  }

  .heading-64 {
    line-height: 1;
  }

  .heading-65.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-12 {
    padding-top: 100px;
  }

  .heading-66 {
    line-height: 1;
  }

  .heading-67.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-13 {
    padding-top: 100px;
  }

  .heading-68 {
    line-height: 1;
  }

  .heading-69.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-14 {
    padding-top: 100px;
  }

  .heading-70 {
    line-height: 1;
  }

  .heading-71.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-15 {
    padding-top: 100px;
  }

  .heading-72 {
    line-height: 1;
  }

  .heading-73.carriers {
    line-height: 1.1;
  }

  .blog-post-hero-16 {
    padding-top: 100px;
  }

  .heading-74 {
    line-height: 1;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .lead-form_progress {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lead-form_glow-circle {
    filter: blur(4rem);
    top: 3%;
    left: 90%;
  }

  .section_lead-form {
    grid-template-rows: 100svh;
    grid-template-columns: minmax(0, 1fr);
    height: auto;
  }

  .about-image-home {
    width: auto;
  }

  .phone-call {
    background-image: url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/67f6946a371f95ff8358d49f_mobile.webp");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    order: 3;
    width: 40px;
    height: 40px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
  }

  .section--hero {
    padding-top: 8rem;
  }

  .container--large.flex-horizontal.space-between.reverse-xs, .container--large.flex-horizontal.space-between.half-cols {
    flex-flow: wrap;
  }

  .container--large.flex-horizontal {
    flex-flow: wrap-reverse;
  }

  .container--large.flex-horizontal.space-between.reverse-xs, .container--large.flex-horizontal.space-between.half-cols, .container--large.flex-horizontal.space-between.reverse-xs, .container--large.flex-horizontal.space-between.half-cols, .container--large.flex-horizontal.space-between.reverse-xs, .container--large.flex-horizontal.space-between.half-cols {
    flex-flow: wrap;
  }

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

  .hero-left.content-wrapper {
    width: 100%;
  }

  .hero-right.content-wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-icon--list, .benefits-icon--list.flex-down, .benefits-icon--list.flex-down {
    justify-content: center;
    align-items: center;
  }

  .column-flex.margin-top-50.grid-style {
    grid-template-columns: 1fr 1fr;
  }

  .column-box--heading {
    font-size: 1rem;
  }

  .pill-box {
    font-size: 1.5em;
  }

  .flex-box-left.blue-box {
    width: 100%;
  }

  .flex-box-right {
    margin-left: auto;
    margin-right: auto;
  }

  .block-breaker {
    bottom: -21%;
  }

  .heading-size-20 {
    font-size: 1.5rem;
  }

  .grid-17.margin-top-60 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-18 {
    grid-template-columns: 1fr;
  }

  .grid-18.rotate-devices {
    flex-flow: wrap-reverse;
    display: flex;
  }

  .table-comparison {
    width: 100%;
  }

  .table-header-box {
    padding: 20px;
  }

  .table-box-cell {
    padding-left: 10px;
    padding-right: 10px;
  }

  .filter_form-wrapper_carriers {
    position: static;
  }

  .layout353_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .padding-section-large-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .layout72_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .layout125_component {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
  }

  .menu-icon-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon-2.is-left {
    margin-right: 0;
  }

  .sidebar9_logo-wrapper {
    margin-bottom: 0;
  }

  .sidebar9_logo-wrapper.hide-desktop {
    display: flex;
  }

  .sidebar9_menu {
    z-index: 99;
    background-color: #fff;
    align-items: stretch;
    min-width: 19rem;
  }

  .padding-global-2 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .menu-icon_line-middle-inner-2 {
    background-color: #000;
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .sidebar9_close-tablet {
    z-index: 1;
    color: #000;
    position: fixed;
    top: 1rem;
    right: 1rem;
  }

  .heading-style-h5-2 {
    font-size: 1rem;
  }

  .layout293_component, .gallery_small-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar9_background-layer {
    background-color: #0009;
    position: fixed;
    inset: 0%;
  }

  .layout399_row {
    grid-template-columns: 1fr 1fr;
  }

  .layout396_row {
    grid-template-columns: 1fr;
  }

  .sidebar9_container {
    flex-direction: row;
  }

  .cta1_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .sidebar9_component {
    z-index: 99;
    background-color: #fff;
    border-right-style: none;
    height: auto;
    padding: 0 .5rem;
    position: fixed;
  }

  .sidebar9_menu-button {
    color: #000;
  }

  .sidebar9_menu-button.w--open {
    background-color: #0000;
  }

  .layout89_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .layout291_component {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar9_menu-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    align-items: stretch;
    height: 100svh;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .heading-style-h3 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h4 {
    font-size: 24px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .section.horizontal-page-title.bg-gray-1 {
    padding-top: 12vh;
    padding-bottom: 7vh;
  }

  .section.section-large.bg-primary {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.is-quote-page {
    padding-bottom: 30px;
  }

  .container.custom-pad {
    padding-left: 0;
    padding-right: 0;
  }

  .text-small.text-spacer {
    line-height: 20px;
  }

  .text-large {
    font-size: 16px;
    line-height: 24px;
  }

  .text-large.content-row-subtitle {
    margin-bottom: 24px;
  }

  .navbar {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .button.navbar-button.right, .button.navbar-button.phone {
    display: none;
  }

  .button.button-outline.button-white.navbar-button.right {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 16px;
    display: none;
  }

  .button.button-outline.button-white.navbar-button.phone {
    font-size: 12px;
    display: none;
  }

  .button.navbar-button.right, .button.navbar-button.phone, .button.navbar-button.right, .button.navbar-button.phone {
    display: none;
  }

  .button.phone {
    border-style: solid;
    border-color: var(--midnight-blue);
    background-color: var(--white);
    background-image: url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/65376278e815083e6c86f4c1_ph-01.webp");
    background-position: 20%;
    background-repeat: no-repeat;
    background-size: 20px;
  }

  .button.is-zip {
    text-align: left;
    width: 100%;
    margin-left: 0;
    padding-left: 1rem;
  }

  .button.is-zip.is-alternative {
    text-align: center;
    text-align: center;
    margin-top: 0;
    margin-left: 0;
  }

  .button.menu {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 18px;
  }

  .avatar {
    width: 60px;
    height: 60px;
  }

  .card-body {
    padding: 24px;
  }

  .card-body.values-card-body {
    display: flex;
  }

  .card {
    border-radius: 5px;
  }

  .pill {
    padding: 6px 12px 6px 6px;
  }

  .expandable-title {
    padding: 16px;
  }

  .icon-list-item.icon-list-item-large {
    margin-top: 24px;
  }

  .check-circle.bg-primary-2.top {
    margin-top: 2px;
  }

  .nav-link {
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
  }

  .nav-link.nav-link-light.right.quote-ph {
    display: block;
  }

  .nav-link.nav-link-light.blue {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .navbar-container.sticky-top.bg-white {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-toggle-button {
    margin-right: 12px;
  }

  .footer {
    padding-top: 48px;
  }

  .footer-content {
    flex-direction: column;
    margin-top: 36px;
    margin-bottom: 48px;
  }

  .footer-menus {
    flex-flow: row-reverse wrap;
    margin-bottom: 24px;
  }

  .footer-links-large {
    width: 50%;
    padding-right: 30px;
  }

  .content-row.align-center.bottom {
    margin-bottom: 0;
  }

  .content-row.align-center.in-hero-split {
    margin-bottom: 50px;
  }

  .content-row-contents {
    z-index: 2;
    position: relative;
  }

  .decoration-container {
    transform: translate(60%, 60%);
  }

  .decoration-grid {
    display: none;
  }

  .content-row-image-wrapper {
    margin-top: 36px;
  }

  .testimonial-quote-symbol.testimonial-quote-symbol-large.text-primary-3 {
    font-size: 72px;
    line-height: 72px;
  }

  .section-large {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 12px;
    padding-left: 24px;
    padding-right: 0;
  }

  .contact-section {
    overflow: hidden;
  }

  .contact-section-right {
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
  }

  .contact-method {
    margin-bottom: 24px;
  }

  .contact-method.var-2 {
    margin-bottom: 40px;
  }

  .block-section-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-halves-restricted {
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
  }

  .circle-number {
    flex: none;
  }

  .values-text {
    margin-top: 0;
    padding-left: 24px;
  }

  .small-heading.testimonial-text {
    margin-top: 24px;
    margin-bottom: 16px;
  }

  .testimonial-slide-nav {
    margin-top: 16px;
  }

  .blog-post-meta.verti {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .blog-post-date {
    margin-top: 0;
    margin-bottom: 12px;
  }

  .content-row-contained-image {
    padding: 24px;
  }

  .heading.smaller.lf {
    display: inline-block;
  }

  .heading.smaller.tiny.lft {
    line-height: 30px;
  }

  .image-3.right-pad {
    margin-right: 10px;
  }

  .heading-2 {
    font-size: 70px;
    line-height: 60px;
  }

  .heading-3.carriers {
    display: none;
  }

  .heading-5.bot {
    margin-bottom: 0;
  }

  .section-3 {
    padding-left: 23px;
    padding-right: 23px;
  }

  .div-block-5 {
    padding-bottom: 19px;
  }

  .div-block-5.white {
    padding-bottom: 20px;
  }

  .text-block-5 {
    font-size: 16px;
  }

  .dropdown-toggle-2 {
    flex: 1;
    margin-left: 0;
    margin-right: 0;
  }

  .dropdown-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  .content-row-video-2 {
    height: auto;
  }

  .text-white-2.blue {
    line-height: 58px;
  }

  .text-white-2.blue.is-inline {
    font-size: 36px;
    line-height: 44px;
  }

  .text-white-2.is-landpage {
    font-size: 42px;
  }

  .text-large-2 {
    font-size: 16px;
    line-height: 24px;
  }

  .content-row-contents-2 {
    z-index: 2;
    position: relative;
  }

  .hero-image {
    max-width: 400px;
    left: -3%;
  }

  .image-11 {
    width: 100%;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-size--medium {
    font-size: 1rem;
  }

  .form-input-zip.white {
    margin-bottom: 10px;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .dropdown {
    flex: 1;
    justify-content: space-between;
    display: flex;
  }

  .icon-2 {
    color: var(--black);
  }

  .quorte-options-image {
    width: 200px;
    min-width: 200px;
    height: auto;
  }

  .grid-5 {
    flex: none;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .grid-6 {
    flex-direction: column;
  }

  .logo-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: center;
  }

  .carrier-logo {
    max-width: 100px;
  }

  .collection-list-2 {
    grid-template-columns: 1fr;
  }

  .testimonial5_rating-icon.yellow.larger {
    width: 1rem;
  }

  .testimonial-wrapper {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .testimonial-grid.mobile {
    display: block;
  }

  .insurance-heading.is-inline {
    font-size: 36px;
    line-height: 41px;
  }

  .coverages-grid {
    grid-template-columns: auto;
  }

  .coverages-heading {
    font-size: 24px;
  }

  .faq10_list.first-col {
    border-bottom-style: none;
  }

  .faq10_component {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .faq10_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .faq10_icon {
    width: 1.75rem;
  }

  .call-icon {
    margin-right: 0;
  }

  .form-slide {
    flex: none;
    width: 100%;
  }

  .form-heading {
    margin-bottom: 10px;
  }

  .form-back {
    min-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .form-step {
    height: 100%;
  }

  .step-number {
    font-size: 14px;
  }

  .checkbox {
    width: 24px;
    height: 24px;
  }

  .form-next {
    min-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .form-block {
    margin-top: 0;
  }

  .input-field {
    font-size: 16px;
  }

  .footer-v2 {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-v2-link {
    border: 2px solid var(--gainsboro);
    justify-content: center;
    width: 100%;
    padding: 12px;
  }

  .footer-v2-col {
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .footer-hours-text {
    order: -1;
    margin-bottom: 20px;
  }

  .nav-call-text {
    display: none;
  }

  .heading-12 {
    font-size: 28px;
  }

  .heading-12.form-subheading.mb-0 {
    margin-bottom: 0;
  }

  .small-quote-label, .nav-dropdown-link {
    text-align: left;
  }

  .text-white-3 {
    font-size: 69px;
    line-height: 58px;
  }

  .div-block-12 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
  }

  .div-block-13 {
    padding: 20px;
  }

  .form-next-btn, .form-back-btn {
    min-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .half-section-lightbox {
    height: 400px;
  }

  .content-block-1 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .sm-review-block-img {
    margin-right: 15px;
  }

  .content-block-subhead {
    font-size: 18px;
    line-height: 25px;
  }

  .flex-list {
    flex-direction: column;
    align-items: stretch;
  }

  .checklist-card {
    width: 100%;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .subhead-pill {
    white-space: normal;
    margin-bottom: 15px;
    font-size: 13px;
  }

  .contact-block-1 {
    flex-direction: column;
    justify-content: flex-start;
  }

  .google-map-richtext {
    width: 100%;
    height: 320px;
  }

  .contact-block-content {
    width: 100%;
  }

  .contact-info-block {
    margin-top: 20px;
  }

  .faq-head {
    padding-top: 19px;
    padding-bottom: 19px;
    padding-right: 0;
  }

  .margin-bottom-xlarge {
    margin-bottom: 48px;
  }

  .timeline_date-text {
    margin-bottom: 24px;
    font-size: 36px;
    top: 25vh;
  }

  .timeline_progress {
    left: 6px;
  }

  .timeline_item {
    grid-template-columns: 64px 1fr;
    width: 100%;
  }

  .timeline_centre {
    justify-content: flex-start;
  }

  .timeline_left {
    text-align: left;
  }

  .timeline_text {
    font-size: 20px;
  }

  .timeline_progress-bar {
    height: 25vh;
    bottom: 25vh;
  }

  .timeline_circle {
    top: 25vh;
  }

  .v2-container.v2-small-top {
    padding-top: 25px;
  }

  .v2-container.v2-small-bottom {
    padding-bottom: 25px;
  }

  .v2-container.v2-medium-bottom {
    padding-bottom: 50px;
  }

  .v2-container.v2-medium-top {
    padding-top: 50px;
  }

  .v2-location-selector-grid {
    grid-template-columns: 1fr;
  }

  .city-heading.text-32 {
    font-size: 24px;
  }

  .quote-progress-tracker {
    top: 148px;
  }

  .quote-progress-percent-text {
    font-size: 10px;
  }

  .radio-button-text {
    font-size: 14px;
    line-height: 20px;
  }

  .div-block-16 {
    width: 100%;
    display: block;
  }

  .v2-blog-h1 {
    text-align: center;
    font-size: 36px;
  }

  .blog-intro-text {
    font-size: 16px;
  }

  .blog-intro-text.mb-30 {
    font-size: 18px;
  }

  .v2-author-block {
    grid-column-gap: 10px;
  }

  .v2-author-small-profile-pic {
    width: 40px;
    height: 40px;
  }

  .v2-author-bio {
    height: 40px;
  }

  .carrier-content p, .carrier-content ul, .carrier-content ol {
    font-size: 16px;
  }

  .carrier-content h1 {
    font-size: 36px;
  }

  .carrier-content h2 {
    font-size: 24px;
  }

  .carrier-content h3 {
    font-size: 20px;
  }

  .carrier-content p, .carrier-content ul, .carrier-content ol {
    font-size: 16px;
  }

  .carrier-content h4 {
    font-size: 18px;
  }

  .carrier-content li {
    font-size: 1rem;
  }

  .v2-3-grid-1 {
    grid-column-gap: 32px;
    grid-template-columns: 1fr;
  }

  .v2-more-articles {
    font-size: 28px;
  }

  .v2-h5-releated-title {
    font-size: 22px;
  }

  .v2-author-hero-grid {
    grid-template-columns: 1fr;
  }

  .v2-author-large-profile-pic {
    width: 150px;
    height: 150px;
    margin-bottom: 1em;
  }

  .v2-h2 {
    font-size: 38px;
  }

  .v2-author-hero-h2 {
    font-size: 32px;
  }

  .v2-author-bio-hero {
    font-size: 16px;
  }

  .v2-author-social-links-lockup {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
  }

  .v2-author-link-brand {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .v2-author-medium-profile-pic {
    width: 40px;
    height: 40px;
  }

  .v2-author-link-brand-2, .v2-author-link-solid-2 {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .v2-author-social-links-lockup-2 {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
  }

  .nav-drop-link-list {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .fq-nav_text {
    height: 2rem;
    padding-left: .5rem;
    font-size: .8rem;
  }

  .fq-nav_shape {
    width: 1rem;
    height: 2rem;
  }

  .fq-nav_shape2 {
    width: .733333rem;
    height: 2rem;
  }

  .v2-left-right {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .v2-testimonial-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .v2-testimonial-card {
    min-height: 230px;
  }

  .v2-testimonial5-rating-wrapper {
    margin-bottom: .5em;
  }

  .v2-h4.heading-lg32-xs-24 {
    font-size: 24px;
  }

  .v2-carriers {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-direction: column;
    align-items: center;
  }

  .v2-carriers-logo-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: minmax(90px, 1fr);
    justify-items: center;
  }

  .v2-carrier-logo-card {
    padding: 15px;
  }

  .v2-button-lockup {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .slider-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .v2-left-arrow {
    width: 35px;
    height: 35px;
    margin-left: -15px;
  }

  .v2-right-arrow {
    width: 35px;
    height: 35px;
    margin-right: -15px;
  }

  .promise-lockup {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    font-size: 13px;
  }

  .promise-item-lockup {
    grid-template-columns: minmax(20px, 20px) 1fr;
  }

  .v2-carriers-h1 {
    padding-right: 0;
    font-size: 36px;
  }

  .v2-carrier-info-content-box {
    position: static;
  }

  .v2-carrier-pic {
    width: 80%;
    padding-top: 20%;
  }

  .v2-carriers-grid {
    grid-template-columns: 1fr;
  }

  .form-button-lockup {
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  .breadcrumb-container-50.is-mobile {
    border-bottom-width: 0;
  }

  .blog-post-bg-content {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .header-bar-layout {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .header-bar-item {
    flex-direction: column;
  }

  .slider-coverage {
    padding-bottom: 10%;
  }

  .slider-coverage-slide-item {
    width: 100%;
  }

  .slider-coverage-nav {
    display: block;
  }

  .author-inner {
    margin-bottom: 12px;
  }

  .span-breaker {
    display: block;
  }

  .post-meta {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: space-between;
    align-self: center;
    align-items: flex-start;
  }

  .blog_layout {
    grid-template-columns: 1fr 1fr;
  }

  .blog_layout._3 {
    flex-direction: column;
  }

  .blog_layout._3.is-reverse {
    flex-direction: column-reverse;
  }

  .blog_layout-2-wrapper {
    width: 100%;
  }

  .blog_layout-1 {
    grid-template-columns: 1fr 1fr;
  }

  .blog-slider_slide {
    max-width: 50%;
  }

  .hero-heading {
    font-size: 44px;
  }

  .section-feature.background-white.pb-80 {
    padding-bottom: 40px;
  }

  .feature-layout-left-wrapper {
    width: 100%;
  }

  .section-medium {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .feedback-slide {
    max-width: 100%;
  }

  .faq-layout {
    flex-direction: column;
  }

  .faq-layout-left-wrapper, .faq-layout-right-wrapper {
    width: 100%;
  }

  .support-card {
    flex-flow: wrap-reverse;
    max-width: none;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .post-intro {
    font-size: 16px;
    line-height: 1.75;
  }

  .new-arrow {
    bottom: -26.75rem;
  }

  .new-arrow.is-left {
    bottom: 0%;
  }

  .footer-links {
    margin-bottom: 2em;
  }

  .review-holder {
    margin-left: 1em;
    margin-right: 1em;
  }

  .footer-wrap-2 {
    padding-bottom: 0;
  }

  .table-col {
    padding-top: 1.2em;
    padding-bottom: 1.2em;
  }

  .table-col.table-col-l.border-bottom, .table-col.table-col-l.border-top {
    border-radius: 0;
  }

  .table-col.table-col-l {
    padding-left: 2em;
  }

  .table-col.table-col-l.border-bottom, .table-col.table-col-l.border-top, .table-col.table-col-l.border-bottom, .table-col.table-col-l.border-top {
    border-radius: 0;
  }

  .reviews {
    grid-column-gap: 0em;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .city-card {
    min-width: 100%;
  }

  .table.hidden {
    display: none;
  }

  .card-icon-w {
    text-align: center;
    flex-flow: column;
    width: 100%;
    margin-bottom: 1.4em;
  }

  .container-2.no-container {
    padding-left: 0;
    padding-right: 0;
  }

  .list-content {
    grid-row-gap: 2.5em;
    flex-flow: column;
  }

  .step-content-head {
    top: -28%;
    left: auto;
  }

  .step-card {
    margin-bottom: 60px;
    padding: 3.2em 2.4em 2em;
  }

  .table-col-text {
    max-width: none;
    font-size: 1.2em;
  }

  .caption {
    z-index: 1;
    position: relative;
  }

  .step-name {
    font-size: 1.8em;
  }

  .card-heading {
    text-align: left;
  }

  .steps {
    grid-template-columns: 1fr;
    margin-top: 9em;
  }

  .card-icon {
    height: 10em;
  }

  .footer-list {
    flex-direction: column;
    margin-top: 2em;
  }

  .table-logo {
    width: 100%;
    max-width: 150px;
    margin-left: -47px;
  }

  .hero-list-text.x {
    font-size: 1.125em;
  }

  .button-text {
    font-size: 1.4em;
  }

  .section-wrap.new-block {
    flex-direction: column;
  }

  .footer-down {
    background-color: #1a1d3e;
    margin-top: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    height: 4.4em;
  }

  .step-card-content {
    max-width: none;
  }

  .footer-divider {
    display: none;
  }

  .logos {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    align-self: center;
    place-items: center stretch;
    padding-left: 4em;
    padding-right: 4em;
    display: grid;
  }

  .review-text-2 {
    font-size: 14px;
  }

  .footer-up {
    flex-direction: column;
    align-items: center;
  }

  .table-head-col.top-r, .table-head-col.border-x, .table-head-col.top-r, .table-head-col.border-x {
    padding-left: 0;
  }

  .footer-text {
    color: #fff;
  }

  .main-heading-title {
    font-size: 2.5em;
  }

  .main-heading-title.location {
    font-size: 2.4em;
  }

  .hero-summary-text._2.location {
    font-size: 1.125em;
  }

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

  .right-overlay, .left-overlay {
    width: 200px;
  }

  .div-block-19 {
    margin-top: -6px;
    margin-right: -12px;
  }

  .div-block-19._2 {
    margin-top: -4px;
  }

  .location-wr {
    margin-bottom: 40px;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .content3_lightbox.hide-xs {
    display: none;
  }

  .content3_lightbox.show-xs {
    display: flex;
  }

  .content3_component {
    grid-template-columns: 1fr;
  }

  .friendly-arrow {
    inset: auto 0% -21% auto;
    transform: rotate(100deg);
  }

  .friendly-arrow.no-flip {
    inset: auto auto -29% 0%;
    inset: auto auto -29% 0%;
    transform: rotateX(180deg)rotateY(0)rotateZ(-80deg);
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial11_component {
    padding-bottom: 5rem;
  }

  .testimonial11_client-info {
    margin-bottom: 1rem;
  }

  .testimonial11_divider {
    display: none;
  }

  .testimonial11_client {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .testimonial11_slide {
    height: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .testimonial11_client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .testimonial11_arrow.is-left {
    right: 3.5rem;
  }

  .heading-16.location {
    font-size: 2.5em;
  }

  .heading-style-testimonial {
    font-size: 1.125rem;
  }

  .check {
    width: 24px;
    height: 24px;
  }

  .table-yellow-block {
    border-radius: 20px;
    flex-flow: column;
    flex: 0 auto;
    align-items: center;
    width: 16.7em;
    max-width: 136px;
    height: 40em;
    display: flex;
    top: -37%;
    left: -31px;
  }

  .section-small {
    padding-top: 30px;
    padding-bottom: 72px;
  }

  .section-small.locations {
    padding-top: 40px;
  }

  .section-head.carriers {
    padding-bottom: 40px;
  }

  .carrier-image-wrapper {
    width: 70%;
  }

  .carrier-body.v2-medium-bottom {
    padding-bottom: 50px;
  }

  .carrier-body.v2-medium-top {
    padding-top: 50px;
  }

  .carrier-body.v2-medium-top.v2-medium-bottom {
    padding-top: 0;
  }

  .carrier-body-inner {
    grid-column-gap: 32px;
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .carrier-logo-table {
    width: 50%;
    padding-top: 20%;
  }

  .author-top-inner {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .video-container {
    width: 480px;
  }

  .container-blog {
    max-width: 760px;
  }

  .banner-blog.carriers.hide-xs {
    display: none;
  }

  .banner-blog.mobile {
    text-align: center;
    margin-top: 40px;
    display: block;
  }

  .banner-content-wrapper {
    width: auto;
  }

  .heading-small {
    font-size: 1.25rem;
  }

  .rich-text-wrapper {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .sidebar-blog {
    width: 100%;
    padding-right: .5em;
    position: relative;
    top: auto;
  }

  .sidebar-blog.carriers {
    z-index: 10;
    background-color: var(--white);
    z-index: 10;
    background-color: var(--white);
    flex-flow: column;
    align-items: stretch;
    padding-bottom: 1em;
    position: sticky;
    top: 4.2rem;
  }

  .blog-wrapper-column, .carieer-2-columns {
    flex-flow: column;
  }

  .navbar5_menu-dropdown {
    border-bottom: 1px solid var(--light-gray);
  }

  .navbar5_dropdown-toggle {
    grid-column-gap: 1rem;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding-left: 1rem;
    font-size: 1.5rem;
  }

  .navbar5_dropdown-toggle.w--open {
    padding-right: 0;
  }

  .new-nav {
    min-height: 4rem;
  }

  .navbar5_dropdown-link-list {
    grid-column-gap: 0px;
    grid-row-gap: .5rem;
    text-align: center;
    flex-flow: column;
    grid-template-rows: max-content;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-self: flex-end;
    align-items: flex-start;
    max-width: none;
  }

  .navbar5_menu {
    background-image: linear-gradient(#fff, #fff);
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 6rem;
    padding-left: 0%;
    padding-right: 0%;
  }

  .navbar5_dropdown-content-left {
    grid-column-gap: 0rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-left: 1.5rem;
    display: grid;
  }

  .navbar5_dropdown-content-left.no-bg {
    text-align: center;
    text-align: center;
    flex-flow: row;
    justify-content: space-between;
    place-items: center stretch;
    display: flex;
  }

  .text-size-small.text-weight-sb {
    text-align: left;
    align-self: flex-start;
  }

  .text-size-small.hide-xs {
    display: none;
  }

  .navbar5_blog-list {
    grid-template-columns: 1fr;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .navbar5_dropdown-content-wrapper.z-index-1 {
    flex-flow: row;
    max-width: none;
  }

  .navbar5_dropdown-content-right {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 1.5rem;
    display: block;
  }

  .navbar5_menu-left {
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
  }

  .navbar5_blog-item {
    grid-template-columns: .6fr 1fr;
  }

  .navbar5_blog-item.blog {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    justify-content: start;
    place-items: start;
    padding-right: 0;
  }

  .navbar5_blog-item.spotlight {
    border-bottom: 1px solid #f1f1f1;
    border-right-style: none;
    flex-flow: row;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar5_blog-item.spotlight.last {
    border-bottom-style: none;
  }

  .navlink {
    border-bottom: 1px solid var(--light-gray);
    text-align: left;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    font-size: 1.5rem;
  }

  .nav-blog-grid {
    grid-column-gap: .4em;
    grid-row-gap: .4em;
  }

  .text-block-28 {
    text-align: left;
  }

  .video-embed-wrapper.custom-800.mb-40 {
    margin-bottom: 0;
  }

  .fluid-image.cornered.height-180.sml-xs {
    width: 113px;
    height: 84px;
  }

  .blog-card-meta {
    flex: 1;
  }

  .featured-heading.insights {
    display: none;
  }

  .category-label {
    font-size: 12px;
  }

  .other-articles-grid {
    grid-template-columns: 1fr;
  }

  .article-blog-card.h-flex {
    flex-flow: wrap;
  }

  .width-controller {
    width: 100%;
  }

  .blog-category-label.custom-hover {
    border-bottom-style: solid;
    border-bottom-color: var(--gainsboro);
    border-bottom-style: solid;
    border-bottom-color: var(--gainsboro);
    padding: .75rem .5rem;
  }

  .heading-med-32.xs-24.dark {
    font-size: 26px;
  }

  .short-description.hide-xs {
    display: none;
  }

  .flex-gap-16 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .flex-gap-16.horizontal {
    flex-flow: row;
  }

  .search-wrapper {
    width: 80%;
  }

  .search-field {
    padding-left: 44px;
  }

  .search-field.blog-category-page {
    width: 100%;
  }

  .health-hub-link.results-page {
    margin-bottom: 48px;
  }

  .mobile-3-5rem {
    font-size: 3.5rem;
  }

  .search-results-list {
    grid-template-columns: 1fr;
  }

  .empty-list-image {
    width: 243px;
    height: 195px;
    margin-top: 40px;
  }

  .empty-state-content {
    flex-direction: column;
    margin-bottom: 80px;
  }

  .cta-image {
    max-width: 50%;
  }

  .partners-logo {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .heading-lg40-xs32 {
    font-size: 32px;
  }

  .heading-lg-32-xs-28 {
    font-size: 28px;
  }

  .pros-cons-plugin {
    margin-top: 2rem;
  }

  .break-lg {
    display: block;
  }

  .filter_grid {
    grid-template-columns: 1fr;
  }

  .collection-locations {
    grid-template-columns: 1fr 1fr;
  }

  .meta-flex {
    flex: 1;
  }

  .featured-col-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .featured-title.main-title {
    padding-right: 1rem;
  }

  .tabs-content-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .tabs-menu-4 {
    width: 100%;
    top: 4%;
    left: 0%;
  }

  .tab-dropdown-wrap {
    flex-direction: column;
  }

  .menu-card-block-flex {
    flex-flow: column;
  }

  .menu-card {
    width: 100%;
    min-height: 10rem;
  }

  .categories-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .navcat-item {
    font-size: 1.125rem;
  }

  .shape-curves.full-bg {
    width: 20%;
  }

  .shape-curves.sml--1, .shape-curves.sml--2, .shape-curves.sml--3, .shape-curves.full-bg {
    width: 20%;
  }

  .shape-curves.house {
    width: 26%;
    right: 0%;
  }

  .shape-curves.sml--1, .shape-curves.sml--2, .shape-curves.sml--3 {
    width: 20%;
  }

  .pricing-description-cell {
    padding: 15px 10px;
  }

  .pricing-component-title {
    font-size: 3vw;
  }

  .pricing-check-cell {
    padding: 10px 15px;
  }

  .pricing-component-text {
    font-size: 2.5vw;
  }

  .table-data-wrapper {
    position: relative;
  }

  .table-wrapper-2 {
    overflow: hidden;
  }

  .scroll-table-content {
    margin-right: 2rem;
  }

  .scroll-container {
    width: 100vw;
    overflow: hidden;
  }

  .table-container {
    position: relative;
    overflow: hidden;
  }

  .filter_block-header-2 {
    z-index: 100;
    grid-column-gap: 1rem;
    grid-template-columns: 1fr .25fr;
  }

  .filter_header-1 {
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1.25fr;
  }

  .filter_block-header-2 {
    grid-column-gap: 1rem;
  }

  .glossary {
    padding-bottom: 40px;
  }

  .heading-xl {
    font-size: 2.125rem;
  }

  .table-heading {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }

  .carrier-logo.center {
    max-width: 130px;
    max-height: none;
  }

  .news-category-btn {
    font-size: 12px;
  }

  .featured-news.margin-bot-60 {
    flex-flow: column-reverse;
  }

  .news-featured-content-left, .news-featured-image {
    width: 100%;
  }

  .news-summary {
    font-size: 1rem;
  }

  .news-thumb.article {
    height: 18.75rem;
  }

  .news-thumb.featured {
    min-height: auto;
  }

  .news-latest-articles {
    grid-template-columns: 1fr 1fr;
  }

  .news-article h3 {
    font-size: 1.5rem;
  }

  .news-article h2 {
    font-size: 30px;
  }

  .breadcrumb-flex {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .storm-center.margin-bot-60 {
    flex-flow: column-reverse;
  }

  .blocks-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .card-box {
    height: 350px;
  }

  .card-box.corner-8.fifth {
    bottom: 0;
  }

  .news-category-articles {
    grid-template-columns: 1fr 1fr;
  }

  .heading-xl-2 {
    font-size: 2rem;
  }

  .review-slide-item {
    max-width: 100%;
  }

  .review-arrow.left {
    right: 8%;
  }

  .faqs-heading {
    font-size: 1.75rem;
  }

  .ticker-card {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .ticker-block {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }

  .post-list {
    grid-template-columns: 1fr;
  }

  .widget-slide {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .slide-nav-4 {
    padding-left: 0;
    font-size: 10px;
  }

  .heading-wrapper.mb-40 {
    padding-left: 0;
    padding-right: 6.5rem;
  }

  .cta-view-more {
    margin-right: 0;
    inset: 0% 0% auto auto;
  }

  .block-spacer.my-30 {
    margin-left: auto;
    margin-right: auto;
  }

  .container-default {
    padding-left: 24px;
    padding-right: 24px;
  }

  .row {
    display: block;
  }

  .row.grid-two {
    grid-template-columns: 1fr;
  }

  .content.flex-down {
    text-align: center;
    text-align: center;
    align-items: center;
  }

  .product-rating-block {
    margin-left: auto;
    margin-right: auto;
  }

  .main-heading {
    font-size: 32px;
  }

  .text-med {
    font-size: 20px;
  }

  .product-list-block {
    margin-top: 0;
    margin-bottom: 0;
  }

  .text-md {
    font-size: 18px;
  }

  .form-zipcode {
    margin-top: 0;
  }

  .slider-image {
    height: 400px;
  }

  .slider-right-arrow, .slider-left-arrow {
    margin-top: 20%;
  }

  .slider-navigation.no-perspective {
    margin-top: -30px;
  }

  .slide-navigator {
    opacity: 0;
    top: 23px;
  }

  .sub-heading-h2 {
    font-size: 1.875rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid.mt-64 {
    margin-top: 42px;
    margin-bottom: 42px;
  }

  .step-text {
    font-size: 2em;
  }

  .step-arrow--1 {
    inset: auto 0% -20% auto;
    transform: rotate(100deg);
  }

  .step-arrow--1.hide-xs {
    display: none;
  }

  .step-arrow--1.show-xs {
    width: 100%;
    max-width: 8rem;
    height: auto;
    display: block;
    right: -8%;
  }

  .step-arrow--2 {
    inset: auto 0% -21% auto;
    transform: rotate(100deg);
  }

  .step-arrow--2.flip {
    inset: auto auto -29% 0%;
    transform: rotateX(180deg)rotateY(0)rotateZ(-80deg);
  }

  .step-arrow--2.flip.hide-xs {
    display: none;
  }

  .step-arrow--2.flip.show-xs {
    width: 100%;
    max-width: 8rem;
    height: auto;
    display: block;
    bottom: -25%;
    left: -8%;
  }

  .awards-logo {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    align-self: center;
    place-items: center stretch;
    padding-left: 4em;
    padding-right: 4em;
    display: grid;
  }

  .form-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  .swiper-wrapper {
    grid-template-columns: 1fr;
  }

  .blog-slider-wrapper, .swiper-slide {
    width: 100%;
  }

  .swiper.is-swiper-portfolio {
    overflow: visible;
  }

  .swiper-slide-wrapper {
    width: 100%;
  }

  .blog-text-wrapper {
    min-height: auto;
  }

  .comparison-title {
    margin-bottom: 8px;
    font-size: 1.125rem;
  }

  .quote-grid {
    grid-column-gap: 12px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .flex-gap-8 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .insights-flex-wrap {
    flex-flow: column;
  }

  .sticky-sidebar {
    width: 100%;
    padding-right: 0;
    position: static;
  }

  .sticky-content {
    width: 100%;
    padding-right: 0;
  }

  .blog-categories {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .category-wrapper.px-16 {
    padding-left: 0;
    padding-right: 0;
  }

  .dropdown-btn {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 24px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
    display: flex;
  }

  .dropdown-btn.mt-0 {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-top: 0;
    margin-bottom: 2px;
    padding: 10px;
  }

  .dp-icon {
    width: 14px;
    height: 14px;
  }

  .section-agents {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .text-size-18.text-size-xs-14 {
    font-size: 14px;
  }

  .careers-hero {
    padding-top: 8rem;
  }

  .div-block-35 {
    padding: 60px 40px;
  }

  .heading-41 {
    font-size: 34px;
  }

  .heading-41.mb-32, .heading-43 {
    font-size: 38px;
  }

  .job-location {
    flex: 0 auto;
  }

  .div-block-36 {
    padding-bottom: 62px;
  }

  .heading-45 {
    font-size: 38px;
  }

  .div-block-40 {
    padding-right: 0;
  }

  .job-hero {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }

  .job-body {
    padding-top: 2rem;
  }

  .job-content {
    order: 2;
  }

  .flex-default.mb-0 {
    flex-flow: column;
    align-items: flex-start;
  }

  .div-block-44 {
    display: none;
  }

  .div-block-44.show-xs {
    margin-bottom: 24px;
    padding-top: 0;
    display: block;
  }

  .grid-16 {
    flex-flow: column;
    display: flex;
  }

  .side-sticky {
    order: -1;
    width: 100%;
    padding-left: 0;
    position: static;
  }

  .careers-form {
    order: 3;
  }

  .breaker-slash {
    display: none;
  }

  .dropdown-toggle {
    height: 90px;
    padding-left: 1rem;
    font-size: 1.5rem;
  }

  .dropdown-link {
    font-size: 20px;
  }

  .v2-blog-h3-2 {
    font-size: 16px;
  }

  .blog-post-date-2 {
    margin-top: 0;
    margin-bottom: 12px;
  }

  .v2-blog-h1-2 {
    text-align: center;
    font-size: 36px;
  }

  .v2-more-articles-2 {
    font-size: 28px;
  }

  .post-meta-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: space-between;
    align-self: center;
    align-items: flex-start;
  }

  .v2-author-small-profile-pic-3 {
    width: 40px;
    height: 40px;
  }

  .breadcrumb_menu-text.is-alternate.w--current {
    text-align: left;
    text-align: left;
  }

  .swiper-slide-wrapper-2 {
    width: 100%;
  }

  .v2-author-small-profile-pic-4, .v2-author-small-profile-pic-5 {
    width: 40px;
    height: 40px;
  }

  .blog-post-bg-image-2 {
    height: auto;
  }

  .image-box.pad-left-2rem.first-xs {
    order: -1;
  }

  .mid-container {
    padding-bottom: 62px;
  }

  .company-website {
    display: block;
  }

  .post-intro-6 {
    font-size: 16px;
    line-height: 1.75;
  }

  .blog-intro-text-2 {
    font-size: 16px;
  }

  .blog-intro-text-2.mb-30 {
    font-size: 18px;
  }

  .post-intro-7 {
    font-size: 16px;
    line-height: 1.75;
  }

  .blog-intro-text-3 {
    font-size: 16px;
  }

  .blog-intro-text-3.mb-30 {
    font-size: 18px;
  }

  .post-intro-8 {
    font-size: 16px;
    line-height: 1.75;
  }

  .blog-intro-text-4 {
    font-size: 16px;
  }

  .blog-intro-text-4.mb-30 {
    font-size: 18px;
  }

  .heading-med-33.xs-24.dark {
    font-size: 26px;
  }

  .featured-heading-2.insights {
    display: none;
  }

  .dropdown-btn-2 {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 24px;
    display: flex;
  }

  .form-back-btnx {
    min-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .lead-form_option2-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .lead-form_option1-svg {
    width: 3rem;
    height: 3rem;
  }

  .if-lib-rangeslider_display-value {
    font-size: 1rem;
  }

  .lead-form_option1-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .spacer-medium {
    padding-top: 1.25rem;
  }

  .lead-form_option1-label {
    font-size: 1rem;
  }

  .lead-form_title {
    font-size: 2rem;
  }

  .lead-form_subtitle, .lead-form_option2-label, .lead-form_input {
    font-size: 1rem;
  }

  .lead-form_option1 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .phone-call {
    width: 32px;
    height: 32px;
  }

  .comparison-table-mb {
    padding: 20px 10px;
  }

  .comparison-grid-table {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: stretch stretch;
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: grid;
  }

  .col-box {
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 14px;
  }

  .col-box.text-center {
    border-bottom: 1px solid var(--gradient-1);
    color: var(--white);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 70px;
    margin-top: -10px;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
  }

  .col-box.text-center.last {
    border-bottom-style: none;
  }

  .col-box.main-column {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border: 4px solid var(--primary-3);
    background-color: var(--blue-green);
    background-image: linear-gradient(0deg, var(--blue-green), var(--midnight-blue));
    text-align: center;
    border-radius: 16px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    overflow: hidden;
  }

  .col-box.column {
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    border: 1px solid var(--white);
    background-color: var(--white);
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center stretch;
    margin-bottom: 20px;
    padding: 0;
    display: grid;
  }

  .col-box.item {
    background-color: var(--gradient-1);
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 75px;
    padding-top: .5rem;
    padding-bottom: .5rem;
    display: flex;
  }

  .col-box.item.text-left {
    text-align: left;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1rem;
  }

  .comparison-header-title {
    font-size: 14px;
    font-weight: 700;
  }

  .comparison-header-title.compare {
    color: var(--blue-green);
  }

  .comparison-logo {
    width: 75px;
    height: auto;
  }

  .comparison-header-wrap {
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 75px;
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 14px;
    display: flex;
  }

  .comparison-header-wrap.text-left {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1rem;
  }

  .comparison-header-wrap.text-left.align-bottom {
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 1rem;
  }

  .comparison-header-wrap.head-logo {
    border-bottom: 1px solid var(--primary-3);
    background-color: #282c5200;
  }

  .section--hero {
    padding-bottom: 4rem;
  }

  .container--large.flex-horizontal.space-between {
    flex-flow: wrap;
  }

  .hero-left.content-wrapper {
    order: 2;
  }

  .hero-right.content-wrapper {
    order: -1;
  }

  .section--coverage.bg-color-blue {
    padding-top: 5rem;
  }

  .text-size-20 {
    font-size: 1.125rem;
  }

  .column-flex {
    flex-flow: column;
  }

  .column-flex.margin-top-50 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .column-flex.margin-top-50.grid-style {
    grid-template-columns: 1fr 1fr;
  }

  .column-box {
    width: auto;
  }

  .column-box--heading {
    font-size: 1.25rem;
  }

  .pill-box {
    font-size: 1.375em;
    font-weight: 500;
  }

  .row-list--item.text-color-dark, .table-grid--content {
    font-size: 1rem;
  }

  .wrap-xs {
    display: inline;
  }

  .block-breaker {
    order: 3;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    top: 0;
    bottom: auto;
  }

  .breaker-img {
    width: 40px;
    margin-bottom: 5px;
  }

  .heading-size-20 {
    font-size: 1.75rem;
  }

  .table-comparison {
    margin-top: 40px;
  }

  .table-header-box {
    padding: 15px;
  }

  .table-box-cell {
    padding: 10px 15px;
  }

  .layout353_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .padding-section-large-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .layout72_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h2 {
    font-size: 1.5rem;
  }

  .layout399_card-content {
    padding: 1rem;
  }

  .layout353_content-left {
    position: static;
  }

  .gallery5_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .layout125_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout399_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .sidebar9_menu {
    width: 80vw;
  }

  .padding-global-2 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .gallery1_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .heading-style-h5-2 {
    font-size: 1rem;
  }

  .layout293_component, .gallery_small-grid {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout399_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .layout396_card-content {
    padding: 1.5rem;
  }

  .layout396_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .cta1_component {
    grid-row-gap: 3rem;
  }

  .layout89_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .layout396_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .layout291_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .gallery5_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .sidebar9_menu-wrapper {
    width: auto;
  }

  .heading-style-h3 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
    line-height: 22px;
  }

  h2 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.2;
  }

  h3 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 34px;
  }

  h4 {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 28px;
  }

  p {
    font-size: 1rem;
  }

  ul {
    font-size: 16px;
  }

  ol {
    font-size: 1rem;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section.section-large.no-bottom.dark-split, .section.center.padding-xs-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .section.horizontal-page-title.bg-gray-1 {
    padding-top: 100px;
    padding-bottom: 42px;
  }

  .section.no-top-space.pad {
    padding-top: 69px;
    padding-bottom: 69px;
  }

  .section.section-large.bg-primary.padding-xs-0 {
    padding: 40px 0;
  }

  .section.section-large.no-bottom.dark-split, .section.center.padding-xs-0, .section.center.padding-xs-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .section.grey {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section.is-quote-page {
    padding-left: 0;
    padding-right: 0;
  }

  .section.is-quote-page.padding-top-20 {
    padding-top: 20px;
  }

  .section.is-quote-page.has-mt {
    background-color: var(--white);
    padding-top: 0;
  }

  .section.grey-gradient {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .text-large.left-pad {
    padding-left: 0;
  }

  .text-large.center {
    font-size: 16px;
  }

  .navbar {
    justify-content: center;
  }

  .button {
    font-size: 16px;
  }

  .button.navbar-button {
    display: none;
  }

  .button.navbar-button.phone.fl.show-mobile {
    display: block;
  }

  .button.button-spacer {
    margin-bottom: 12px;
    margin-right: 0;
  }

  .button.is-zip {
    min-height: 3rem;
    margin-left: 0;
    font-size: 18px;
  }

  .button.is--primary {
    width: 100%;
  }

  .badge {
    margin-bottom: 0;
    margin-right: 5px;
  }

  .badge.bot, .badge.mb-12, .badge.bot, .badge.bot, .badge.mb-12 {
    margin-bottom: 0;
    margin-right: 0;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .avatar {
    width: 48px;
    height: 48px;
  }

  .avatar-container {
    flex: none;
  }

  .card-body.values-card-body {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .check-circle.bg-primary-2 {
    width: 20px;
    height: 20px;
  }

  .check-circle-icon {
    width: 12px;
    height: 12px;
  }

  .nav-link {
    padding-left: 0;
  }

  .nav-link.nav-link-light {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar-container {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .navbar-container.fixed {
    border-bottom: 1px solid var(--white-smoke-2);
    border-bottom: 1px solid #edf1f4;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-container.sticky-top.bg-white.new {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-container.fixed {
    border-bottom: 1px solid var(--white-smoke-2);
    border-bottom: 1px solid #edf1f4;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-menu {
    border-radius: 5px;
    margin-right: 0;
    padding: 12px;
  }

  .navbar-toggle-button {
    overflow: hidden;
  }

  .footer.bg-primary {
    text-align: center;
    text-align: center;
    margin-top: 0;
  }

  .footer-content {
    align-items: center;
    margin-bottom: 0;
  }

  .footer-menus {
    flex-direction: column;
  }

  .footer-links-large {
    border-right-style: none;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
    margin-right: 0;
    padding-right: 0;
  }

  .footer-links-large.switch-xs {
    flex-flow: column;
  }

  .footer-link.footer-link-large.text-white {
    text-align: center;
    font-size: 18px;
  }

  .footer-link.footer-link-large.text-white.w--current {
    text-align: center;
  }

  .footer-link.footer-link-large.text-white.button.round {
    opacity: 1;
    width: 90%;
    padding-left: 21px;
    padding-right: 21px;
  }

  .footer-link.footer-link-large.text-white.button.round.footer-button {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .content-row.align-center.reverse-direction.mb-0 {
    margin-bottom: 0;
  }

  .content-row.align-center {
    margin-bottom: 60px;
  }

  .content-row-contents.lf, .content-row-contents.meet, .content-row-contents.lf, .content-row-contents.meet {
    padding-left: 0;
    padding-right: 0;
  }

  .decoration-grid {
    display: none;
  }

  .medium-heading {
    padding-right: 0;
    font-size: 36px;
    line-height: 36px;
  }

  .content-row-image-wrapper {
    justify-content: center;
    align-items: center;
    margin-top: 24px;
  }

  .testimonial-horizontal.content-row-testimonial {
    margin-top: 16px;
  }

  .testimonial-quote-symbol.testimonial-quote-symbol-large.text-primary-3 {
    font-size: 72px;
    line-height: 72px;
  }

  .cta-action-container {
    flex-direction: column;
  }

  .cta-action-text {
    margin-top: 16px;
    margin-left: 0;
  }

  .section-large {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .brand-list {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-wrap: wrap;
    display: flex;
  }

  .brand-list.bottom.fl {
    float: none;
    clear: none;
    object-fit: fill;
    float: none;
    clear: none;
    object-fit: fill;
    float: none;
    clear: none;
    object-fit: fill;
    margin-bottom: 60px;
    padding-left: 14px;
    padding-right: 14px;
    display: flex;
    overflow: visible;
  }

  .brand-logo.reverse.chubb {
    margin-right: 20px;
  }

  .brand-logo.reverse.hagerty {
    margin-left: 40px;
  }

  .brand-logo.fl {
    width: 40%;
    max-width: 35%;
    margin-left: 17px;
    margin-right: 17px;
  }

  .timeline-item, .timeline-item.timeline-item-right, .timeline-item.timeline-item-right {
    padding-left: 0;
  }

  .block-section-half.block-section-content.bg-gray-4 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .grid-thirds {
    grid-template-columns: 1fr;
  }

  .form-pair {
    grid-row-gap: 12px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .contact-section-right {
    align-items: flex-start;
  }

  .contact-section-right.contact-page {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .contact-method {
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
  }

  .career-image {
    margin-bottom: 40px;
  }

  .career-perks {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-halves-restricted {
    grid-row-gap: 12px;
  }

  .values-text {
    margin-top: 24px;
    padding-left: 0;
  }

  .small-heading {
    font-size: 28px;
    line-height: 32px;
  }

  .small-heading.testimonial-text {
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: 19px;
    font-weight: 400;
    line-height: 29px;
  }

  .button-container {
    flex-direction: column;
  }

  .blog-post-date {
    margin-top: 4px;
    margin-bottom: 0;
  }

  .utility-page-wrap {
    padding-left: 28px;
    padding-right: 28px;
  }

  .utility-page-logo {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .utility-page-content-wrapper, .utility-page-content {
    width: 100%;
  }

  .content-row-contained-image {
    margin-top: 24px;
  }

  .content-row-contained-image.bg-primary.image {
    background-position: 100% 100%;
    width: 100%;
    min-width: auto;
    max-width: none;
    height: 250px;
  }

  .heading.smaller {
    font-size: 26px;
    line-height: 27px;
  }

  .heading.smaller.tiny {
    line-height: 28px;
  }

  .features {
    font-size: 30px;
    line-height: 27px;
  }

  .paragraph.center {
    font-size: 18px;
  }

  .paragraph.center.text-18 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
  }

  .paragraph.center.text-16 {
    font-size: 16px;
  }

  .paragraph.center.text-16.mb-mobile-34 {
    margin-bottom: 34px;
  }

  .image-3.right-pad.new {
    max-width: 120px;
  }

  .heading-2 {
    font-size: 60px;
    line-height: 50px;
  }

  .heading-3 {
    line-height: 34px;
  }

  .div-block {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .heading-4 {
    text-align: center;
    font-size: 40px;
  }

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

  .div-block-2 {
    margin-right: 0;
  }

  .lottie-animation-2 {
    width: 70px;
  }

  .h2 {
    padding-left: 0;
    padding-right: 0;
    font-size: 50px;
    line-height: 47px;
  }

  .h2.white.text-xs-40, .h2.text-xs-42, .h2.white.text-xs-40, .h2.white.text-xs-40, .h2.text-xs-42 {
    font-size: 42px;
  }

  .grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .process-icon {
    width: 90px;
  }

  .right.center {
    align-items: stretch;
    width: 100%;
  }

  .heading-5.bot {
    margin-bottom: 16px;
  }

  .social-icon {
    width: 25px;
  }

  .social-link {
    margin-left: 15px;
    margin-right: 15px;
  }

  .heading-6 {
    font-size: 70px;
    line-height: 1;
  }

  .section-3.meet {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .grid-2.grey {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .grid-2.grey.max {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-5 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .div-block-5.white {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-3 {
    margin-bottom: 0;
    font-size: 16px;
  }

  .boat-pvt {
    object-fit: cover;
    width: 100%;
    max-width: 320px;
    height: 100%;
  }

  .text-block-5 {
    font-size: 16px;
    line-height: 24px;
  }

  .text-block-5.blue._9 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .dropdown-link-2 {
    font-size: 16px;
  }

  .content-row-video-2 {
    margin-top: 0;
  }

  .text-white-2 {
    font-size: 42px;
    line-height: 50px;
  }

  .text-white-2.blue {
    font-size: 40px;
    line-height: 50px;
  }

  .text-white-2.white {
    font-size: 58px;
  }

  .text-white-2.is-landpage {
    color: var(--black);
    margin-bottom: 12px;
    font-size: 36px;
    font-weight: 400;
  }

  .text-white-2.is-landpage.xs {
    font-size: 32px;
  }

  .content-row-contents-2.wider, .content-row-contents-2.wider2, .content-row-contents-2.wider, .content-row-contents-2.wider2 {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-image {
    width: 80%;
    top: 0%;
    left: auto;
  }

  .text-block-6 {
    font-size: 18px;
  }

  .heading-8 {
    line-height: 42px;
  }

  .max-width-large.align-center.mb0 {
    margin-bottom: 24px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-xxlarge {
    margin-bottom: 1rem;
  }

  .margin-bottom.margin-small.mb-xs-40 {
    margin-bottom: 40px;
  }

  .form-input-zip {
    min-height: 3rem;
    margin-bottom: 10px;
    font-size: 1.125rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .quorte-options-image {
    width: 150px;
    min-width: 130px;
    max-width: 100%;
    margin-top: -20px;
    top: 22%;
    left: 50%;
  }

  .grid-4 {
    grid-column-gap: 0px;
  }

  .grid-5 {
    grid-template-columns: 1fr 1fr;
  }

  .product-card {
    padding: 5%;
  }

  .product-card-head {
    font-size: 16px;
  }

  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection-list-2 {
    grid-template-columns: 1fr;
  }

  .testimonial-wrapper {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .testimonial-grid.mobile {
    display: block;
  }

  .testimonial-grid.mobile.padding-x {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq10_component {
    grid-template-columns: 1fr;
  }

  .form-slide.is-v3 {
    padding-bottom: 0;
  }

  .form-heading {
    line-height: 30px;
  }

  .form-heading.with-tm {
    line-height: 24px;
  }

  .form-back {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .form-step.last-step {
    height: auto;
    padding-bottom: 0;
    padding-left: 3px;
    padding-right: 3px;
  }

  .text-field-wrapper {
    min-height: 45px;
  }

  .text-field-wrapper.half1, .text-field-wrapper.half2 {
    width: 49%;
  }

  .text-field-wrapper.half {
    width: 49%;
    min-height: 40px;
    font-size: 16px;
  }

  .text-field-wrapper.half3 {
    width: 100%;
    min-height: 40px;
  }

  .text-field-wrapper.half1, .text-field-wrapper.half2 {
    width: 49%;
  }

  .text-field-wrapper.half-full {
    width: 100%;
  }

  .checkbox {
    width: 22px;
    height: 22px;
    margin-left: -5px;
    margin-right: 10px;
  }

  .form-next {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .form-block {
    box-shadow: none;
    border-radius: 10px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .checkbox-field-2 {
    align-items: flex-start;
    margin-bottom: 8px;
    padding-left: 5px;
    padding-right: 0;
    font-size: 14px;
  }

  .checkbox-field-2.full-on-mobile {
    width: 100%;
  }

  .fields-group._3 {
    flex-wrap: nowrap;
  }

  .input-field {
    padding-left: 12px;
    font-size: 16px;
  }

  .footer-v2 {
    display: none;
  }

  .heading-12 {
    margin-bottom: 10px;
    font-size: 26px;
  }

  .heading-12.get-free-insurance {
    font-size: 28px;
  }

  .heading-12.form-subheading {
    padding-left: 0;
    padding-right: 0;
  }

  .small-quote-label.is-v3 {
    font-size: 14px;
    top: 0;
  }

  .checkbox-group.flood-quote {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .nav-drop-link-wrap {
    flex-direction: column;
  }

  .nav-dropdown-link {
    color: var(--black);
    width: 100%;
    margin-bottom: 0;
    padding-right: 0;
    font-size: 18px;
  }

  .nav-dropdown-link.flex-xs {
    color: var(--black);
    margin-bottom: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
  }

  .nav-dropdown-link.flex-xs:hover {
    background-color: #f8f8f8;
  }

  .nav-dropdown-icon {
    object-fit: contain;
    width: 80px;
    height: auto;
    margin-right: 16px;
  }

  .nav-dropdown-icon.sml {
    flex: 0 auto;
    width: 60px;
    height: auto;
    margin-right: 18px;
  }

  .text-white-3 {
    font-size: 60px;
    line-height: 50px;
  }

  .div-block-11 {
    height: 350px;
  }

  .form-next-btn {
    order: -1;
    align-self: center;
    width: 100%;
    min-height: 40px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 16px;
  }

  .form-next-btn.full {
    order: 1;
  }

  .form-btn-block {
    flex-direction: column;
  }

  .form-btn-block.free-quote {
    z-index: 1;
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    z-index: 1;
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    margin-top: 10px;
    position: relative;
  }

  .form-back-btn {
    text-align: center;
    flex: none;
    width: 100%;
    min-height: 40px;
    margin-bottom: 5px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .google-map-richtext {
    height: 280px;
  }

  .timeline_item {
    grid-template-columns: 48px 1fr;
  }

  .margin-bottom-medium {
    margin-bottom: 24px;
  }

  .v2-section.pt-60 {
    padding-top: 60px;
  }

  .v2-section.tint-gradient.blog-post-subfooter {
    padding-bottom: 51px;
  }

  .v2-container.v2-medium-top.v2-medium-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .v2-container.v2-medium-top.v2-small-bottom.padding-x-24 {
    padding-top: 20px;
  }

  .city-heading.text-40 {
    font-size: 32px;
  }

  .form-zip-code {
    flex-direction: column;
  }

  .form-wrapper {
    width: 80%;
    margin-top: 1.4rem;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }

  .breadcrumb-container.is-mobile {
    grid-row-gap: 0px;
    grid-row-gap: 0px;
  }

  .breadscrumb-badge-highlighted, .breadscrumb-badge {
    font-size: 13px;
  }

  .quote-progress-tracker {
    top: 80px;
  }

  .v2-blog-h1 {
    margin-bottom: .5em;
    font-size: 32px;
  }

  .blog-intro-text {
    font-size: 18px;
  }

  .carrier-content h1 {
    font-size: 32px;
  }

  .carrier-content h4 {
    font-size: 18px;
  }

  .v2-3-grid-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .v2-more-articles {
    flex: none;
    font-size: 32px;
  }

  .v2-author-large-profile-pic {
    width: 88px;
    height: 88px;
  }

  .v2-h2 {
    font-size: 24px;
  }

  .v2-author-hero-h2 {
    font-size: 28px;
  }

  .v2-author-social-links-lockup, .v2-author-social-links-lockup-2 {
    margin-bottom: 1.5em;
  }

  .nav-drop-link-list {
    flex-direction: column;
  }

  .nav-dropdown-link-list {
    width: 100%;
    margin-bottom: 6px;
  }

  .fq-nav_text.current {
    background-color: var(--midnight-blue);
    color: var(--white);
    background-color: var(--midnight-blue);
  }

  .fq-nav_shape.current {
    color: var(--midnight-blue);
  }

  .fq-nav_shape2.current {
    clear: none;
    color: var(--midnight-blue);
    clear: none;
  }

  .v2-left-right, .v2-carriers {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .v2-carriers-logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .v2-3-grid-2 {
    grid-template-columns: 1fr;
  }

  .v2-button-lockup {
    width: 100%;
  }

  .slider-content {
    padding-left: 0;
    padding-right: 0;
  }

  .promise-lockup {
    grid-row-gap: 10px;
    flex-flow: row;
    margin-top: 1em;
  }

  .v2-carriers-h1 {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 1em;
  }

  .v2-carrier-pic {
    padding-top: 30%;
  }

  .v2-carrier-info-row-item.v2-1em-bottom-margin {
    display: flex;
    overflow: visible;
  }

  .v2-carrier-info-value {
    margin-left: auto;
  }

  .hero_rating-wrapper {
    margin-bottom: .5rem;
  }

  .breadcrumb-container-50.is-mobile {
    display: none;
  }

  .grid-9 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .promise-icon {
    padding: .125rem;
  }

  .hero-button {
    margin-top: 1rem;
  }

  .blog-post-hero {
    padding: 80px 20px 10px;
  }

  .blog-post-bg-content {
    padding-top: 20px;
  }

  .blog-post-bg-image {
    order: -1;
    height: 240px;
  }

  .header-bar-layout {
    grid-column-gap: .625rem;
    grid-row-gap: .625rem;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-bar-layout.hide-m {
    display: none;
  }

  .header-bar-text {
    margin-top: -6px;
    font-size: 12px;
  }

  .header-bar-item {
    text-align: center;
    justify-content: center;
  }

  .slider-coverage {
    padding-bottom: 15%;
  }

  .reading-time-flex {
    justify-content: center;
    align-items: center;
    margin-top: 4px;
  }

  .post-meta {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .blog_layout, .top-cat_wrapper {
    grid-template-columns: 1fr;
  }

  .top-cat_info-wrapper {
    flex: 0 auto;
  }

  .latest_item-wrapper, .latest_item-card {
    align-items: flex-start;
  }

  .latest_title {
    font-size: 1.125rem;
  }

  .staff-pick_title {
    font-size: 2rem;
  }

  .selected-cat_item-card {
    align-items: flex-start;
  }

  .blog_layout-2, .blog_layout-1 {
    grid-template-columns: 1fr;
  }

  .blog-slider_slide {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .breadcumb_component {
    flex-wrap: wrap;
  }

  .breadcumb_component.is--white {
    flex-flow: row;
    margin-bottom: 1.5rem;
  }

  .breadcumb_component.is--white.hide-xs {
    display: none;
  }

  .section-hero {
    padding-top: 80px;
  }

  .section-hero.bg-blue-dark.search {
    padding-top: 100px;
  }

  .section-hero.herro-padding {
    padding-top: 80px;
  }

  .hero-headline-wrapper {
    margin-bottom: 24px;
  }

  .hero-heading {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-heading.mb-mobile-24 {
    margin-bottom: 24px;
  }

  .hero-heading.secondary-heading {
    margin-bottom: 10px;
  }

  .hero-product-showcase {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    max-width: none;
    margin-bottom: 40px;
    padding: 10px;
  }

  .hero-product-item {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    text-align: left;
    border-radius: 6px;
    flex-flow: row;
    padding: 16px 8px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 0 12px #0000001f;
  }

  .hero-product-item-image {
    width: 45px;
    height: 100%;
  }

  .hero-product-item-name {
    color: var(--dark-gray);
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .hero-background {
    border-radius: 0;
    height: 38%;
  }

  .hero-client-wrapper.px-12 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .client-slide {
    width: 100%;
  }

  .section-feature.py-80 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-feature.cta-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .feature-layout {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
  }

  .feature-layout-left-wrapper {
    width: 100%;
  }

  .feature-layout-left-wrapper.is-last {
    order: 1;
  }

  .feature-layout-right-wrapper {
    width: 100%;
  }

  .feature-headline-title, .feature-headline-title.alternate, .feature-headline-title.alternate {
    font-size: 2.5em;
    line-height: 1.2;
  }

  .feature-layout-illustration-wrapper {
    text-align: center;
  }

  .section-medium {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .section-medium.is-home {
    padding-top: 140px;
  }

  .feature-circle {
    border-top-right-radius: 500px;
    border-bottom-right-radius: 500px;
    border-bottom-left-radius: 500px;
  }

  .section-feedback.padding-top-40 {
    padding-top: 40px;
  }

  .feedback-title {
    margin-bottom: 0;
    font-size: 1.5rem;
  }

  .feedback-number {
    font-size: 2.5rem;
  }

  .feedback-mask {
    width: 100%;
  }

  .feedback-slide {
    max-width: 100%;
  }

  .feedback-stars-wrapper {
    justify-content: center;
    align-items: center;
  }

  .product-section-title {
    margin-bottom: 2rem;
  }

  .product-section-title.mb-2 {
    margin-bottom: 0;
  }

  .product-card-home {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    margin-bottom: 3rem;
  }

  .card-info-wrapper {
    padding-right: 0;
  }

  .card-product-name {
    margin-bottom: 0;
  }

  .card-product-description {
    font-size: 16px;
  }

  .button-group.full {
    margin-top: 1rem;
  }

  .support-card-link {
    font-size: 16px;
  }

  .review-circle {
    max-height: 100%;
  }

  .hero-product-tabs-wrapper {
    margin-left: -16px;
    margin-right: -16px;
  }

  .hero-tab-link {
    min-width: 48%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
  }

  .hero-tab-link.active {
    color: var(--white);
    background-color: #e4be70;
    min-width: 48%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-tab-link._02 {
    min-width: 48%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .tabs-menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: row;
    width: 95%;
    margin-bottom: .875rem;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .tabs-content.secondary {
    top: -70px;
  }

  .header-review-component {
    order: 1;
  }

  .review-layout {
    flex-direction: column;
    margin-top: 20px;
  }

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

  .section-blog.overflow-none {
    padding-top: 20px;
  }

  .section-blog-title {
    font-size: 2.5em;
  }

  .story-slide {
    width: 100%;
  }

  .new-arrow.is-right {
    margin-left: auto;
    margin-right: 0;
  }

  .new-arrow.is-left {
    margin-left: 0;
    margin-right: auto;
    bottom: 0%;
  }

  .faq-q {
    font-size: 1.25em;
  }

  .footer-links {
    justify-content: space-between;
    width: 100%;
    max-width: 30em;
    padding-left: 1em;
    padding-right: 1em;
    display: flex;
  }

  .review-holder {
    background-color: #fff0;
    flex-flow: column;
    justify-content: space-between;
    width: 100%;
    margin-left: .5em;
    margin-right: .5em;
    padding: 1em .5em;
    display: flex;
  }

  .box {
    padding-top: 2em;
  }

  .box-text {
    font-size: 1em;
  }

  .stars-rating {
    width: 5em;
  }

  .logo5 {
    width: 14em;
  }

  .table-col {
    justify-content: center;
    padding-left: .3rem;
    padding-right: .3rem;
  }

  .table-col.bg-yellow {
    background-color: #fffaf0;
    background-image: none;
    background-position: 0 0;
    border-bottom: 3px #fbce77;
    border-left: 3px solid #fbce77;
    border-right: 3px solid #fbce77;
    justify-content: center;
    align-items: stretch;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .table-col.bg-yellow.last {
    border-bottom: 1px solid #b1b5df80;
  }

  .table-col.table-col-l {
    text-align: left;
    padding-left: 0;
  }

  .reviews {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-flow: row;
    place-content: stretch flex-start;
    align-items: flex-start;
    margin-top: 0;
  }

  .city-card {
    flex-flow: row-reverse wrap;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: auto;
    height: 180px;
    padding: 1em 1.4em;
  }

  .city-card._3 {
    background-image: linear-gradient(#00000030 51%, #000000ba 90%), url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/65e04905a548ba3e6e69c650_danilo-d-agostino-NjhHTNPkEDQ-unsplash.webp");
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .table.hidden {
    display: none;
  }

  .card-icon-w {
    flex-direction: column;
    justify-content: center;
    margin-bottom: .5em;
  }

  .container-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container-2._66 {
    padding-left: 0;
    padding-right: 0;
  }

  .logo3 {
    width: auto;
    height: auto;
  }

  .rating-divider.x {
    margin-left: .5em;
    margin-right: .5em;
  }

  .hero-feature-item {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .logo2 {
    width: auto;
    height: auto;
  }

  .list-content.mt-xs-2 {
    margin-top: 2em;
  }

  .l1 {
    width: 90px;
    height: 45px;
  }

  .cities {
    grid-template-columns: 1fr;
    margin-top: 2.4em;
  }

  .hero-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .slide-nav-3 {
    width: 100%;
    bottom: -6em;
  }

  .partner-logo {
    height: 4em;
  }

  .shape {
    height: 8.4em;
  }

  .city-name {
    text-align: center;
    flex: 0 auto;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .check-icon {
    width: 1.6em;
  }

  .testimonial-image {
    flex: 0 auto;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    max-height: 32px;
    margin-bottom: 10px;
    margin-right: 0;
    position: static;
    top: 0;
    left: 0%;
    transform: none;
  }

  .header-image-mobile.hide {
    display: none;
  }

  .slide-wrap {
    text-align: center;
    padding-top: 0;
  }

  .l3 {
    width: 100px;
    height: 30px;
  }

  .step-content-head {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    position: absolute;
    top: -22%;
    left: 0%;
  }

  .step-content-head.custom-abs-pos {
    top: -20%;
  }

  .step-card {
    padding-top: 2em;
    padding-left: 1.6em;
    padding-right: 1.6em;
  }

  .step-card.mb-xs-0 {
    margin-bottom: 20px;
  }

  .table-col-text {
    text-align: center;
    font-size: 1.125em;
  }

  .table-col-text.gray {
    color: var(--white);
  }

  .table-col-text.white {
    color: #fff;
  }

  .hero-features-block {
    flex-flow: row;
    justify-content: center;
    display: flex;
  }

  .hero-features-block.mobile {
    grid-column-gap: 20px;
    grid-column-gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: none;
    margin-top: .5em;
    display: flex;
  }

  .caption {
    font-size: 1.5em;
    line-height: 1.4;
  }

  .full-wd {
    object-fit: contain;
    height: auto;
  }

  .step-name {
    font-size: 22px;
  }

  .stop-card-head {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .button-w {
    font-size: 16px;
  }

  .button-w._2 {
    height: 4.5em;
    padding-left: 1em;
    padding-right: .5em;
  }

  .button-w.pl-10 {
    padding-left: 1em;
    padding-right: 2em;
  }

  .header-images {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .header-images.boat {
    order: -1;
  }

  .header-images.slider {
    margin-bottom: 34px;
    padding-top: 20px;
  }

  .header-images.mb-0 {
    margin-bottom: 0;
  }

  .box-icon {
    width: 4em;
    height: 4em;
  }

  .brand {
    padding-left: 0;
  }

  .discounts {
    grid-column-gap: 1em;
    grid-row-gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-feature-text._2 {
    text-align: center;
    max-width: 87px;
    line-height: 1.3;
  }

  .hero-feature-text._2.x {
    font-size: 1.2em;
  }

  .list-icon {
    width: 4em;
    height: 4em;
  }

  .steps {
    margin-top: 8em;
  }

  .step-w {
    width: 3em;
    height: 3em;
    margin-right: 1.5em;
    padding-right: 0;
  }

  .verified-text.new {
    font-size: 1.125rem;
  }

  .navbar-2 {
    height: 4rem;
  }

  .icon-sm {
    width: 2.4em;
    margin-bottom: 5px;
    margin-right: 0;
  }

  .icon-sm._2 {
    margin-top: 0;
    margin-bottom: 8px;
  }

  .icon-sm._3 {
    margin-top: 0;
    margin-bottom: 5px;
  }

  .nav-link-2 {
    font-size: 1.5em;
  }

  .header-review {
    justify-content: space-between;
    margin-top: 0;
  }

  .image-holder {
    transform: translate(-20px);
  }

  .image-wrap {
    order: -1;
  }

  .footer-list {
    width: 100%;
  }

  .section-4 {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .section-4.bg--light {
    padding: 4em 20px;
  }

  .section-4.bg--dark.locations {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .section-4.padding-b-0.p {
    padding-top: 5em;
  }

  .section-4.grey-c {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .button-2.hide-mobile {
    display: none;
  }

  .text-color-grey {
    font-size: 1.125em;
    line-height: 1.4;
  }

  .list-wrap {
    margin-top: 2.4em;
    margin-bottom: 2.4em;
  }

  .list-wrap.locations {
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .logo {
    width: 14em;
  }

  .logo.x {
    width: auto;
    height: auto;
    max-height: 2rem;
  }

  .logo.comparison_table {
    max-width: 70px;
    height: auto;
  }

  .city-image {
    width: 5.6em;
    height: 5.6em;
    margin-left: auto;
    margin-right: auto;
  }

  .text-block-16 {
    text-align: left;
    font-size: 1.3em;
  }

  .text-block-16._2 {
    text-align: left;
    text-align: left;
  }

  .table-logo {
    min-width: auto;
    max-width: 80px;
    margin-left: 0;
  }

  .hero-list-text {
    text-align: left;
    font-size: 14px;
  }

  .hero-list-text.x {
    color: var(--midnight-blue);
    font-size: 1em;
    font-weight: 400;
  }

  .faqs {
    margin-top: 2.5em;
  }

  .testimonials {
    margin-top: 2.4em;
  }

  .logo8 {
    width: 10em;
  }

  .button-text {
    font-size: 1.4em;
  }

  .button-text._2 {
    text-align: left;
    font-size: 1.25em;
    line-height: 1.2;
  }

  .button-text._2.x {
    font-size: 1.1em;
  }

  .button-text.lowercase {
    font-size: 1.25em;
  }

  .testimonial-stars {
    width: 8em;
  }

  .l2 {
    width: 120px;
    height: 71px;
  }

  .faq-arrow {
    margin-left: 1em;
  }

  .footer-down {
    padding-left: 2em;
    padding-right: 2em;
  }

  .cards {
    margin-top: 2.4em;
  }

  .footer-logo {
    width: 14em;
  }

  .table-text {
    max-width: 60px;
    font-size: 1.125em;
  }

  .logo6 {
    width: 14em;
  }

  .arrow {
    width: 2em;
    height: 2em;
  }

  .testimonial-card-2 {
    padding-top: 2.4em;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .testimonial-card-2.padding {
    margin-bottom: 40px;
  }

  .logo1 {
    width: 12em;
    height: auto;
  }

  .footer-link-2 {
    margin-right: 0;
  }

  .hero-list-icon {
    width: 2.4em;
    height: 2.4em;
  }

  .step-img {
    width: 10em;
    height: 8em;
  }

  .step-img._1 {
    width: 9em;
  }

  .step-img._3 {
    width: 12em;
  }

  .header-img {
    height: 100%;
  }

  .google-review {
    width: 10em;
  }

  .table-head {
    grid-column-gap: 4px;
  }

  .avatar-2 {
    z-index: 2;
    width: 3.5em;
    height: 3.4em;
    margin-right: 1em;
    position: static;
    inset: 0% auto 0% 0%;
  }

  .testimonial-card-bottom {
    flex-direction: column;
    margin-top: 2em;
  }

  .review-text-count._2 {
    text-align: left;
    flex: 0 auto;
    font-size: .875em;
    line-height: 18px;
  }

  .review-text-count._2.x {
    font-size: 1em;
    font-weight: 400;
  }

  .step-circle {
    width: 2.8em;
    height: 2.8em;
    font-size: 14px;
    left: 0;
    right: 0;
  }

  .rating-block._2 {
    max-width: none;
    display: none;
  }

  .rating-block._2.mobile {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: .5em;
    display: flex;
  }

  .rating-block._2.mobile.mb-0 {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .rating-block._2.desktop {
    display: none;
  }

  .rating-block._2.mt-24 {
    width: 340px;
  }

  .logo7 {
    width: 8em;
    height: 3em;
  }

  .logo4 {
    width: auto;
    height: auto;
  }

  .stars-s {
    width: 10em;
  }

  .logos {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-top: 2em;
    margin-bottom: 2em;
    padding-left: 2em;
    padding-right: 2em;
  }

  .text-md {
    font-size: 1.25em;
  }

  .button-arrow {
    width: 1.6em;
    height: 1.4em;
  }

  .hero-list-wrapper {
    margin-top: 1em;
    margin-bottom: 0;
  }

  .hero-list-wrapper.mb-24 {
    margin-bottom: 1em;
  }

  .review-text-2.x {
    margin-left: .8em;
    font-size: 1em;
    font-weight: 400;
  }

  .hero-summary-wrapper {
    margin-top: .5em;
  }

  .nav-list {
    margin-bottom: 20px;
  }

  .partner-item {
    min-width: 16em;
    margin-left: .5em;
    margin-right: .5em;
  }

  .table-head-col.top-r, .table-head-col.border-x {
    background-color: #e9e9e900;
  }

  .table-head-col.top-r, .table-head-col.border-x {
    background-color: #e9e9e900;
  }

  .table-head-col.active {
    background-color: #fbce771c;
    border-top: 3px solid #fbce77;
    border-left: 3px solid #fbce77;
    border-right: 3px solid #fbce77;
    border-radius: 8px 8px 0 0;
  }

  .r-star {
    width: 8em;
    height: 1.2em;
  }

  .header.white-bg {
    padding-top: .5em;
    padding-bottom: 0;
  }

  .header.white-bg.padding-top-0 {
    padding-top: 2em;
  }

  .header.white-bg.padding-top-0.padding-xs-0 {
    padding-top: 1em;
  }

  .header.padding-top-80 {
    padding-bottom: 0;
  }

  .main-heading-title {
    text-align: center;
    font-size: 2.5em;
  }

  .main-heading-title.mobile-header {
    font-size: 2.6em;
    display: block;
  }

  .main-heading-title.mobile-header.lg {
    font-size: 28px;
    line-height: 1.4;
  }

  .main-heading-title.hide-in-mobile {
    display: none;
  }

  .main-heading-title.location {
    margin-top: .75rem;
    font-size: 1.8rem;
  }

  .hero-summary-text {
    font-size: 1.6em;
  }

  .hero-summary-text._2 {
    max-width: 342.667px;
    font-size: 1.2em;
  }

  .hero-summary-text._2.location {
    color: var(--midnight-blue);
    max-width: none;
    font-size: 1rem;
    font-weight: 400;
  }

  .heading-14 {
    text-align: center;
    font-size: 1.125rem;
  }

  .sticky-btn-wr {
    background-color: #f8f8f800;
    padding-left: 2%;
    padding-right: 2%;
    display: flex;
  }

  .brand-2 {
    padding-left: 0;
  }

  .div-block-18 {
    flex-wrap: nowrap;
    width: 100%;
  }

  .text-block-17 {
    text-align: center;
    display: block;
  }

  .yellow-banner {
    text-align: center;
    padding: 10px 3%;
    font-size: 12px;
  }

  .text-block-18 {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.25em;
    font-weight: 500;
    line-height: 1.1;
  }

  .image-16 {
    max-width: 20px;
    margin-right: 5px;
  }

  .header-banner {
    text-align: center;
    padding-left: 10px;
    padding-right: 0;
  }

  .banner-icon {
    max-width: 16px;
    margin-right: 5px;
  }

  .banner-text {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.25em;
    font-weight: 500;
    line-height: 1.1;
  }

  .right-overlay, .left-overlay {
    width: 70px;
    display: none;
  }

  .div-block-19 {
    margin-top: 33px;
    display: none;
  }

  .image-18 {
    width: 30px;
  }

  .content3_lightbox-image {
    max-height: 220px;
  }

  .friendly-arrow {
    max-width: 150px;
    height: auto;
    right: -3.8rem;
  }

  .friendly-arrow.no-flip {
    max-width: 150px;
    left: -3.8rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical.margin-medium.rmove-top-margin-mobile {
    margin-top: 0;
  }

  .testimonial11_component {
    margin-bottom: 2.2rem;
  }

  .testimonial11_rating-wrapper.hide-on-mobile {
    display: none;
  }

  .testimonial11_client-image {
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
    min-height: 4rem;
  }

  .testimonial11_slide {
    height: auto;
  }

  .text-block-22 {
    font-size: 1.5rem;
    font-weight: 400;
  }

  .heading-16 {
    line-height: 42px;
  }

  .heading-16.location {
    font-size: 2.2em;
    line-height: 1.2;
  }

  .div-block-20 {
    flex-direction: column;
  }

  .check {
    opacity: .3;
    display: none;
    position: absolute;
    inset: auto 0% 38% auto;
  }

  .table-yellow-block {
    width: 28vw;
    height: 420px;
    top: -9px;
    left: -20px;
  }

  .v2-content-box-text {
    font-size: 14px;
  }

  .map-embed-wrapper {
    width: 100%;
    padding: 0;
    top: 0;
  }

  .location-collection-list-wrap {
    flex-direction: column;
    display: flex;
  }

  .section-small {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .featured-blog-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .featured-blog-title.text-align-center {
    font-size: 34px;
  }

  .blog-title-small {
    font-size: 22px;
    line-height: 1.2;
  }

  .small-blog-block {
    flex-direction: column;
  }

  .thumbnail-main {
    width: 100%;
    height: 160px;
  }

  .main-featured-image {
    height: 170px;
  }

  .featured-article-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-category {
    flex-direction: column;
    align-items: flex-start;
  }

  .bg-highlighter {
    display: none;
  }

  .html-embed-2 {
    color: var(--midnight-blue);
    font-weight: 400;
    line-height: 1.2em;
  }

  .section-head.carriers {
    background-color: var(--gradient-1);
    background-image: none;
    background-color: var(--gradient-1);
    background-image: none;
    padding-top: 100px;
  }

  .head-content-inner {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-wrapper {
    order: -1;
  }

  .image-wrapper.carrier-cover {
    max-width: 320px;
  }

  .carrier-body.v2-medium-top.v2-medium-bottom {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .carrier-body-inner {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .carrier-top-wrapper {
    flex-direction: column;
  }

  .carrier-logo-table {
    background-position: 50%;
    width: 100%;
    margin-left: auto;
    padding-top: 30%;
  }

  .text-size-sm {
    font-size: 16px;
  }

  .authior-profile-img {
    width: 80px;
    height: 80px;
  }

  .table-mobile {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: none;
  }

  .table-mobile.sml {
    font-size: 10px;
    line-height: 16px;
  }

  .grid-11 {
    grid-column-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .delimiter {
    color: #fff;
    background-color: #282c52;
    padding: .3rem 0;
  }

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

  .video-container {
    width: 290px;
  }

  .container-blog {
    max-width: 360px;
  }

  .banner-blog.mobile {
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner-blog.hide-mobile {
    display: none;
  }

  .heading-small.numbers {
    margin-bottom: 0;
    font-family: DM Sans, sans-serif;
    font-size: .9rem;
    font-weight: 700;
  }

  .rich-text-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .sidebar-blog {
    padding-left: 0;
    padding-right: 0;
  }

  .sidebar-blog.carriers {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    top: 3rem;
  }

  .div-block-24 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-25 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-25.mb-24 {
    margin-bottom: 24px;
  }

  .main-img._1 {
    border-radius: 24px;
    height: 250px;
  }

  .main-img._1.fluid {
    height: 250px;
  }

  .main-img.solo {
    border-radius: 24px;
    width: 100%;
    height: 270px;
  }

  .thumb-image {
    width: 60px;
    height: 40px;
  }

  .thumb-image._1, .thumb-image._2, .thumb-image._1, .thumb-image._2 {
    object-fit: cover;
    width: 60px;
    height: 60px;
  }

  .tabs-menu-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    margin-top: 0;
  }

  .tabs-content-2 {
    height: 260px;
  }

  .tab-pane-tab-1 {
    height: 250px;
  }

  .brand-logo-header {
    width: 120px;
    height: auto;
  }

  .navbar5_menu-dropdown {
    max-width: 100%;
  }

  .navbar5_dropdown-toggle {
    color: var(--black);
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    height: 80px;
    padding-left: .5rem;
  }

  .navbar5_dropdown-toggle.w--open {
    padding-right: 1rem;
  }

  .new-nav {
    max-width: none;
  }

  .navbar5_dropdown-link-list {
    grid-row-gap: 0rem;
    flex-flow: column;
    justify-content: center;
    align-self: auto;
    align-items: flex-end;
    width: 100%;
    padding-left: 0;
  }

  .navbar5_dropdown-link-list._2-columns {
    width: 100%;
    padding-top: 0;
  }

  .navbar5_dropdown-link-list.custom {
    padding-left: 0;
  }

  .navbar5_dropdown-list.w--open {
    box-shadow: 0 0 20px #0000001f;
  }

  .navbar5_blog-image {
    object-fit: cover;
    width: 80px;
    height: auto;
  }

  .navbar5_large-item-content {
    margin-top: 0;
  }

  .navbar5_dropdown-content-left {
    grid-row-gap: 0rem;
    background-color: var(--white);
    grid-template-columns: 1fr;
    padding: 0 0 1rem 1rem;
  }

  .navbar5_dropdown-content-left.no-bg {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: wrap;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .text-size-small.text-weight-sb {
    max-width: 100%;
    display: none;
  }

  .text-size-small.hide-xs {
    display: none;
  }

  .navbar5_blog-list {
    grid-column-gap: 0px;
    grid-row-gap: 0rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .navbar5_dropdown-content-wrapper.z-index-1 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .navbar5_dropdown-content-wrapper.z-index-1.blog {
    display: block;
  }

  .navbar5_dropdown-content-wrapper.z-index-1.padding-xy {
    padding: .75rem;
  }

  .navbar5_dropdown-content {
    flex: 1;
    padding-left: 0;
  }

  .navbar5_dropdown-content-right {
    padding: 0;
  }

  .navbar5_dropdown-content-right.bg.hide-xs {
    display: none;
  }

  .navbar5_dropdown-content-right.blog.pxy {
    padding: .75rem;
  }

  .navbar5_blog-item {
    flex-flow: row;
    padding-right: 0;
    display: flex;
  }

  .navbar5_blog-item.spotlight.last {
    border-bottom-style: solid;
  }

  .navbar5_blog-item.spotlight {
    justify-content: center;
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar5_blog-item.spotlight.flex-xs {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navlink {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: .5rem;
  }

  .text-weight-500 {
    font-size: 18px;
    font-weight: 700;
  }

  .collection-list-wrapper-4 {
    max-height: none;
  }

  .nav-blog-grid {
    display: block;
  }

  .flex-numbers {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    display: flex;
  }

  .div-block-28 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    align-items: center;
    display: flex;
  }

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

  .paragraph-8 {
    font-size: 14px;
  }

  .card-scroll {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .text-20 {
    font-size: 18px;
  }

  .review-headline {
    line-height: 1.2;
  }

  .grid-12 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .branding-footer.w--current {
    order: 1;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .blog-card-meta {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .featured-heading {
    font-size: 24px;
    font-weight: 500;
  }

  .featured-heading.small {
    font-size: 18px;
  }

  .featured-heading.med {
    font-size: 20px;
  }

  .category-label.mb-6, .category-label.text-xs-12, .category-label.mb-6, .category-label.text-xs-12 {
    margin-bottom: 0;
  }

  .reading-time {
    margin-top: 0;
    font-weight: 500;
  }

  .other-articles-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .article-blog-card.h-flex {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .blog-category-list {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .blog-category-label {
    letter-spacing: -.25px;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 500;
  }

  .heading-med-32.xs-24 {
    flex: none;
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.2;
  }

  .heading-med-32.xs-24.dark {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .heading-med-32.text-color-gold {
    font-size: 24px;
  }

  .search-wrapper {
    width: 100%;
  }

  .search-field.blog-category-page {
    min-width: 0;
  }

  .health-hub-link {
    margin-top: 16px;
    margin-bottom: 24px;
    display: none;
  }

  .flex-horizontal.mobile-align-top {
    align-items: flex-start;
  }

  .mobile-3-5rem {
    font-size: 1.5rem;
  }

  .mobile-3-5rem.no-margin-bot.keyword {
    line-height: 1.2;
  }

  .empty-state-text {
    font-size: 1.125rem;
    line-height: 1.2rem;
  }

  .search-header {
    flex-direction: column;
  }

  .cta-image {
    max-width: 75%;
  }

  .pros-cons-plugin {
    border-style: none;
    margin-top: 1rem;
    padding: 0;
  }

  .text-size-default {
    font-size: 1rem;
    line-height: 1.6;
  }

  .pros-cons-table-grid {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
    grid-template-columns: 1fr;
  }

  .table-box-flex {
    font-size: 1rem;
  }

  .break-lg {
    display: inline;
  }

  .collection-locations {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .filter_block-header {
    grid-row-gap: .5rem;
    text-align: center;
    flex-flow: column;
    grid-template-columns: auto;
    align-items: center;
    display: flex;
  }

  .checkbox_label {
    font-size: 1.125rem;
  }

  .author-image {
    flex: none;
  }

  .pagination_page-button, .fs-cmsload_page-dots {
    width: 2rem;
  }

  .section-featured.padding-top-40 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-featured.padding-top-40.comparisons {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .featured-col-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .featured-title.main-title {
    padding-left: 1rem;
    font-size: 1.5rem;
  }

  .tab-link-3 {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 15px;
  }

  .tab-link-3.w--current {
    z-index: 10;
    order: -1;
    padding-left: 0;
    font-size: 1.375rem;
  }

  .tabs-menu-4 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    left: 0%;
    overflow: hidden;
  }

  .tab-dropdown-wrap {
    padding-top: 18px;
  }

  .tab-content {
    margin-top: 80px;
  }

  .category-tabs {
    flex-direction: column;
  }

  .text-block-31 {
    font-size: 1.5rem;
  }

  .nav-menu-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .nav-menu-content.xs-pad-0 {
    width: 100%;
    padding-bottom: 1rem;
  }

  .nav-menu-content-grid {
    width: 100%;
  }

  .menu-content-label.margin-bot-24.hide-xs {
    display: none;
  }

  .menu-card.card--2, .menu-card.card--3 {
    margin-top: 0;
  }

  .menu-card.card--2, .menu-card.card--3 {
    margin-top: 0;
  }

  .menu-card.hide-xs {
    display: none;
  }

  .categories-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border-top-style: none;
    border-bottom-style: none;
    margin-top: 0;
  }

  .navcat-item {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .navcat-item._1.show-xs-1 {
    background-color: var(--light-gray);
    color: var(--black);
    display: block;
  }

  .navcat-item._1.show-xs-2 {
    background-color: var(--gradient-1);
    color: var(--black);
    display: block;
  }

  .navcat-item._1.show-xs-3 {
    background-color: var(--navajo-white);
    color: var(--black);
    display: block;
  }

  .shape-curves.sml--2, .shape-curves.sml--3 {
    width: 15%;
    display: none;
  }

  .shape-curves.house {
    width: 30%;
  }

  .shape-curves.sml--1 {
    width: 12%;
    display: none;
  }

  .shape-curves.sml--2, .shape-curves.sml--3 {
    width: 15%;
    display: none;
  }

  .pricing-rows {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    margin-bottom: 2px;
  }

  .pricing-description-cell {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 6px;
  }

  .pricing-component-title {
    overflow-wrap: break-word;
    font-size: 3.5vw;
  }

  .pricing-check-cell {
    margin: 0;
    padding-left: 6px;
    padding-right: 10px;
  }

  .pricing-component-text {
    overflow-wrap: break-word;
    font-size: 3.5vw;
  }

  .collection-item-7 {
    padding: 16px;
  }

  .filter_block-header-2 {
    grid-template-columns: 1fr;
  }

  .filter_header-1 {
    grid-template-rows: auto;
  }

  .filter_search-field {
    min-width: 20rem;
  }

  .filter_block-header-2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .header-block {
    flex-wrap: wrap;
  }

  .glossary-heading {
    font-size: 1.125rem;
  }

  .heading-xl.margin-bot-24.blue {
    line-height: 1.2;
  }

  .text-default {
    font-size: .875rem;
  }

  .statement-block {
    padding-top: 20px;
  }

  .heading-40 {
    font-size: 32px;
  }

  .table-heading {
    margin-top: 16px;
    margin-bottom: 24px;
    line-height: 1;
  }

  .worth-table-logo {
    width: 4rem;
  }

  .scroller {
    padding-right: 40px;
  }

  .news-hero {
    padding-top: 7rem;
  }

  .label-flex.margin-top-32.margin-bot-60 {
    flex-flow: row-reverse wrap;
    margin-bottom: 40px;
  }

  .news-category-btn {
    flex: none;
    justify-content: center;
    align-items: center;
  }

  .featured-news.margin-bot-60.blog-article {
    margin-bottom: 20px;
  }

  .news-featured-content-left {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding: 16px 20px;
  }

  .news-heading-1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .news-summary {
    margin-bottom: 12px;
  }

  .news-thumb.sml {
    aspect-ratio: 16 / 9;
  }

  .news-thumb.article {
    height: 12.5rem;
  }

  .text-18 {
    line-height: 1.4;
  }

  .text-18.text-xs-16 {
    font-size: 1rem;
  }

  .news-latest-articles {
    grid-template-columns: 1fr;
  }

  .news-title-sml {
    font-size: 1.125rem;
  }

  .news-card-meta.align-left {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: row-reverse wrap-reverse;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
  }

  .news-category-label {
    padding-left: 8px;
    padding-right: 8px;
  }

  .news-article-wrap {
    padding-top: 7rem;
  }

  .breadcrumb-flex {
    background-color: var(--gradient-1);
    border-radius: 8px;
    flex-flow: row;
    padding: 4px 8px 4px 6px;
  }

  .post-summary {
    line-height: 1.4;
  }

  .post-summary p {
    margin-bottom: 0;
  }

  .blocks-wrapper {
    grid-template-columns: 1fr;
  }

  .card-box {
    height: 290px;
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .card-box.corner-8.second, .card-box.corner-8.fourth {
    bottom: 0;
  }

  .card-box.corner-8.sixth, .card-box.corner-8.second, .card-box.corner-8.fourth {
    bottom: 0;
  }

  .card-box.corner-8.sixth, .card-box.corner-8.second, .card-box.corner-8.fourth {
    bottom: 0;
  }

  .card-box.corner-8.fifth {
    overflow: clip;
  }

  .card-box.corner-8.sixth {
    bottom: 0;
  }

  .card-heading {
    font-size: 24px;
  }

  .card-heading-wrap.text-left {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .card-desc {
    font-size: 1rem;
    line-height: 1.4;
  }

  .card-art-icon {
    z-index: 0;
  }

  .card-art-icon._2 {
    width: 150px;
  }

  .card-art-icon._1 {
    width: 170px;
  }

  .card-art-icon._3 {
    width: 190px;
  }

  .card-art-icon._4 {
    width: 150px;
  }

  .card-art-icon._6 {
    width: 210px;
  }

  .card-art-icon._5 {
    width: 140px;
  }

  .news-category-articles {
    grid-template-columns: 1fr;
  }

  .heading-xl-2.margin-bot-24.blue {
    line-height: 1.2;
  }

  .text-21 {
    line-height: 1.4;
  }

  .text-21.text-xs-16 {
    font-size: 1rem;
  }

  .graph-image {
    width: 85%;
  }

  .review-slide-item {
    max-width: 100%;
  }

  .review-arrow.right {
    right: 2%;
  }

  .review-arrow.left {
    right: 14%;
  }

  .review-mask {
    width: 100%;
  }

  .mb-40 {
    margin-bottom: 40px;
  }

  .logo-footer {
    display: none;
  }

  .logo-footer.show-xs {
    display: block;
  }

  .slide-wrap {
    min-height: 15rem;
  }

  .post_content_image {
    height: 12rem;
  }

  .heading-wrapper.mb-60, .heading-wrapper.mb-40 {
    margin-bottom: 40px;
  }

  .heading-wrapper.mb-40, .heading-wrapper.mb-60, .heading-wrapper.mb-40 {
    margin-bottom: 40px;
  }

  .heading-wrapper.align-middle.py-96 {
    padding-top: 52px;
    padding-bottom: 32px;
  }

  .heading-wrapper.mb-40 {
    margin-bottom: 40px;
  }

  .product-list-icon {
    width: 2.4em;
    height: 2.4em;
  }

  .form-zipcode {
    width: 80%;
    margin-top: 1.4rem;
    padding-right: 0;
  }

  .slider-image {
    height: 270px;
  }

  .slider-right-arrow, .slider-left-arrow {
    margin-top: 20%;
  }

  .slider-navigation.no-perspective {
    flex-flow: row;
  }

  .step-text {
    font-size: 2em;
  }

  .step-image {
    height: 20em;
  }

  .step-shape-bg {
    height: 8.4em;
  }

  .step-arrow--1 {
    height: auto;
    right: -3.8rem;
  }

  .step-arrow--1.show-xs {
    bottom: -22%;
    right: -10%;
  }

  .step-arrow--2 {
    height: auto;
    right: -3.8rem;
  }

  .step-arrow--2.flip {
    left: -3.8rem;
  }

  .step-arrow--2.flip.show-xs {
    bottom: -22%;
    left: -10%;
  }

  .product-banner {
    text-align: center;
    padding-left: 10px;
    padding-right: 0;
  }

  .awards-logo {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-top: 2em;
    margin-bottom: 2em;
    padding-left: 2em;
    padding-right: 2em;
  }

  .text-span-7 {
    display: block;
  }

  .swiper.is-swiper-portfolio {
    overflow: visible;
  }

  .swiper-btn-icon {
    line-height: 1;
  }

  .blog-summary-wrapper {
    padding-right: 0;
  }

  .swiper-slide-wrapper {
    min-height: auto;
  }

  .blog-text-wrapper {
    grid-row-gap: 1.25rem;
    height: auto;
    min-height: auto;
  }

  .portfolio-summary-text {
    font-size: 1rem;
    font-weight: 400;
  }

  .comparison-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .comparison-post {
    height: 140px;
  }

  .comparison-content {
    padding: .5rem;
  }

  .comparison-title {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .comparison-post-date {
    font-size: 12px;
  }

  .quote-grid {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .qt-label {
    font-size: 13px;
  }

  .blog-categories {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .dropdown-btn {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 0;
    display: flex;
  }

  .dropdown-btn.mt-0 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .agents-form {
    padding: 1rem;
  }

  .form-flex {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: wrap;
  }

  .text-field {
    height: 46px;
  }

  .savings-group {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
  }

  .select-field {
    height: 46px;
  }

  .text-size-24 {
    font-size: 1.125rem;
  }

  .form-heading-flex {
    justify-content: center;
    align-items: center;
  }

  .text-size-18 {
    font-size: 18px;
    line-height: 1.4;
  }

  .text-size-18.text-size-xs-16 {
    font-size: 16px;
  }

  .careers-hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .div-block-35 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-image: linear-gradient(#282c5259, #282c52), url("https://cdn.prod.website-files.com/65376278e815083e6c86f2b8/6716c4fce5bd608da463559f_v33-cryptotech.avif");
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    padding: 32px 24px;
  }

  .heading-41.mb-32 {
    font-size: 28px;
    line-height: 1.2;
  }

  .grid-14 {
    grid-template-columns: 1fr;
  }

  .benefit-box {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
  }

  .heading-42 {
    font-size: 20px;
  }

  .heading-43 {
    font-size: 28px;
  }

  .job-item {
    flex-flow: column;
    grid-template-rows: auto;
    justify-content: center;
    align-items: flex-start;
    padding: 18px;
    display: block;
    position: relative;
  }

  .heading-44 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .job-location {
    text-align: left;
    align-self: auto;
    width: 100%;
    font-size: 14px;
  }

  .go-arrow {
    margin-top: 32px;
    margin-bottom: 10px;
    margin-right: 10px;
    position: absolute;
    inset: auto 0% 0% auto;
  }

  .div-block-36 {
    padding-bottom: 52px;
  }

  .div-block-37 {
    text-align: center;
    padding-right: 0;
  }

  .heading-45 {
    font-size: 28px;
    line-height: 1.2;
  }

  .item-text {
    font-size: 18px;
  }

  .div-block-42 {
    width: 60px;
    height: 60px;
  }

  .job-hero {
    padding-top: 6rem;
  }

  .job-body {
    padding-bottom: 4rem;
  }

  .flex-default {
    margin-bottom: 16px;
  }

  .flex-default.mb-0 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .div-block-44.show-xs {
    padding-top: 0;
  }

  .side-sticky {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    border-bottom: 1px solid var(--gainsboro);
    justify-content: flex-start;
    display: flex;
  }

  .div-block-45 {
    border-bottom-style: none;
  }

  .div-block-45.last {
    margin-bottom: 0;
  }

  .dropdown-toggle {
    justify-content: space-between;
    padding-left: .5rem;
  }

  .cta-block-heading {
    font-size: 2.5rem;
  }

  .swiper-btn-icon-2 {
    line-height: 1;
  }

  .v2-blog-h3-2 {
    font-size: 18px;
  }

  .blog-post-date-2 {
    margin-top: 4px;
    margin-bottom: 0;
  }

  .v2-blog-h1-2 {
    margin-bottom: .5em;
    font-size: 32px;
  }

  .v2-more-articles-2 {
    flex: none;
    font-size: 32px;
  }

  .post-meta-2 {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .div-block-53 {
    margin-right: 0;
  }

  .div-block-54 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-54.mb-24 {
    margin-bottom: 24px;
  }

  .div-block-55 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-48 {
    line-height: 34px;
  }

  .blog-post-hero-3 {
    padding: 80px 20px 10px;
  }

  .button-4 {
    font-size: 16px;
  }

  .heading-49 {
    text-align: center;
    font-size: 40px;
  }

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

  .div-block-57 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-57.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .author-image-2 {
    flex: none;
  }

  .button-5 {
    font-size: 16px;
  }

  .swiper-slide-wrapper-2 {
    min-height: auto;
  }

  .portfolio-summary-text-2 {
    font-size: 1rem;
    font-weight: 400;
  }

  .carrier-cta-btn {
    font-size: 16px;
  }

  .div-block-58 {
    margin-right: 0;
  }

  .heading-50 {
    line-height: 34px;
  }

  .blog-post-hero-4 {
    padding: 80px 20px 10px;
  }

  .button-6 {
    font-size: 16px;
  }

  .heading-51 {
    text-align: center;
    font-size: 40px;
  }

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

  .div-block-62 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-62.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-63 {
    margin-right: 0;
  }

  .heading-52 {
    line-height: 34px;
  }

  .blog-post-hero-5 {
    padding: 80px 20px 10px;
  }

  .blog-post-bg-image-2 {
    order: -1;
  }

  .button-7 {
    font-size: 16px;
  }

  .heading-53 {
    text-align: center;
    font-size: 40px;
  }

  .div-block-67 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-67.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .middle-box.flex-half.mb-32 {
    border-radius: 12px;
  }

  .text-content {
    padding-top: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .image-box.pad-left-2rem {
    padding: 2rem;
  }

  .grid-half, .column {
    padding-left: 0;
    padding-right: 0;
  }

  .mid-container {
    padding: 24px;
  }

  .div-block-68 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-68.mb-24 {
    margin-bottom: 24px;
  }

  .div-block-69 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-54 {
    line-height: 34px;
  }

  .blog-post-hero-6 {
    padding: 80px 20px 10px;
  }

  .button-8 {
    font-size: 16px;
  }

  .heading-55 {
    text-align: center;
    font-size: 40px;
  }

  .div-block-71 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-71.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .blog-intro-text-2 {
    font-size: 18px;
  }

  .heading-56 {
    line-height: 34px;
  }

  .blog-post-hero-7 {
    padding: 80px 20px 10px;
  }

  .button-9 {
    font-size: 16px;
  }

  .blog-intro-text-3 {
    font-size: 18px;
  }

  .div-block-73 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-73.mb-24 {
    margin-bottom: 24px;
  }

  .div-block-74 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-57 {
    line-height: 34px;
  }

  .blog-post-hero-8 {
    padding: 80px 20px 10px;
  }

  .button-10 {
    font-size: 16px;
  }

  .heading-58 {
    text-align: center;
    font-size: 40px;
  }

  .div-block-76 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-76.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .blog-intro-text-4 {
    font-size: 18px;
  }

  .div-block-77 {
    margin-right: 0;
  }

  .div-block-78 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-78.mb-24 {
    margin-bottom: 24px;
  }

  .div-block-79 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-59 {
    line-height: 34px;
  }

  .blog-post-hero-9 {
    padding: 80px 20px 10px;
  }

  .heading-60 {
    text-align: center;
    font-size: 40px;
  }

  .div-block-80 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-80.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-81 {
    margin-right: 0;
  }

  .div-block-82 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-82.mb-24 {
    margin-bottom: 24px;
  }

  .div-block-83 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-61 {
    line-height: 34px;
  }

  .blog-post-hero-10 {
    padding: 80px 20px 10px;
  }

  .heading-62 {
    text-align: center;
    font-size: 40px;
  }

  .div-block-84 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-84.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-85 {
    margin-right: 0;
  }

  .div-block-86 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-86.mb-24 {
    margin-bottom: 24px;
  }

  .div-block-87 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-63 {
    line-height: 34px;
  }

  .blog-post-hero-11 {
    padding: 80px 20px 10px;
  }

  .heading-64 {
    text-align: center;
    font-size: 40px;
  }

  .div-block-88 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-88.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-89 {
    margin-right: 0;
  }

  .div-block-90 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-90.mb-24 {
    margin-bottom: 24px;
  }

  .div-block-91 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-65 {
    line-height: 34px;
  }

  .blog-post-hero-12 {
    padding: 80px 20px 10px;
  }

  .heading-66 {
    text-align: center;
    font-size: 40px;
  }

  .div-block-92 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-92.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-93 {
    margin-right: 0;
  }

  .div-block-94 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-94.mb-24 {
    margin-bottom: 24px;
  }

  .div-block-95 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-67 {
    line-height: 34px;
  }

  .blog-post-hero-13 {
    padding: 80px 20px 10px;
  }

  .heading-68 {
    text-align: center;
    font-size: 40px;
  }

  .div-block-97 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-97.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-98 {
    margin-right: 0;
  }

  .div-block-99 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-99.mb-24 {
    margin-bottom: 24px;
  }

  .heading-69 {
    line-height: 34px;
  }

  .blog-post-hero-14 {
    padding: 80px 20px 10px;
  }

  .heading-70 {
    text-align: center;
    font-size: 40px;
  }

  .div-block-101 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-101.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-102 {
    margin-right: 0;
  }

  .div-block-103 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-103.mb-24 {
    margin-bottom: 24px;
  }

  .heading-71 {
    line-height: 34px;
  }

  .blog-post-hero-15 {
    padding: 80px 20px 10px;
  }

  .heading-72 {
    text-align: center;
    font-size: 40px;
  }

  .div-block-105 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-105.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-106 {
    margin-right: 0;
  }

  .div-block-107 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: block;
  }

  .div-block-107.mb-24 {
    margin-bottom: 24px;
  }

  .heading-73 {
    line-height: 34px;
  }

  .blog-post-hero-16 {
    padding: 80px 20px 10px;
  }

  .heading-74 {
    text-align: center;
    font-size: 40px;
  }

  .div-block-109 {
    flex-direction: column;
    padding-bottom: 8px;
  }

  .div-block-109.subfooter-cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .heading-med-33.xs-24 {
    flex: none;
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.2;
  }

  .heading-med-33.xs-24.dark {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .featured-heading-2 {
    font-size: 24px;
    font-weight: 500;
  }

  .dropdown-btn-2 {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 24px;
    display: flex;
  }

  .reading-time-2 {
    margin-top: 0;
    font-weight: 500;
  }

  .featured-heading-3 {
    font-size: 24px;
    font-weight: 500;
  }

  .featured-heading-3.med {
    font-size: 20px;
  }

  .form-back-btnx {
    text-align: center;
    flex: none;
    width: 100%;
    min-height: 40px;
    margin-bottom: 5px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .break-xs {
    display: block;
  }

  .lead-form_option2-grid {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-form_option1-grid {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .lead-form_cols-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-form_title {
    font-size: 1.5rem;
  }

  .lead-form_glow-circle {
    width: 10rem;
    height: 10rem;
  }

  .lead-form_subtitle {
    font-size: .9375rem;
  }

  .lead-form_button {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .comparison-grid-table {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 1rem;
    line-height: 18px;
    display: flex;
  }

  .col-box.text-center {
    height: 60px;
    margin-top: -15px;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    font-weight: 500;
  }

  .col-box.main-column {
    width: 30%;
    padding-left: .25rem;
    padding-right: .25rem;
    overflow: hidden;
  }

  .col-box.column {
    width: 25%;
  }

  .col-box.column.first {
    width: 23%;
  }

  .col-box.item {
    height: 60px;
  }

  .comparison-logo {
    align-self: center;
    width: 50px;
  }

  .comparison-header-wrap {
    align-items: flex-end;
    height: 70px;
    padding-bottom: 10px;
  }

  .comparison-header-wrap.text-left {
    align-items: flex-end;
  }

  .comparison-header-wrap.text-left.align-bottom {
    padding-bottom: 10px;
  }

  .comparison-header-wrap.head-logo {
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .section--hero {
    padding-top: 7rem;
    padding-bottom: 3.75rem;
  }

  .hero-left.content-wrapper.padding-right {
    padding-right: 0;
  }

  .text-size-xl.text-weight-bold.text-color-dark {
    font-size: 2.125rem;
  }

  .hero-right.content-wrapper {
    width: 90%;
  }

  .icon-list--item {
    text-align: left;
    font-size: .875rem;
    line-height: 1.2;
  }

  .section--coverage {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section--coverage.bg-color-blue, .section--coverage.padding-top-5, .section--coverage.bg-color-blue, .section--coverage.padding-top-5 {
    padding-top: 2.5rem;
  }

  .text-size-med {
    font-size: 1.75rem;
  }

  .text-size-20 {
    font-size: 18px;
  }

  .text-size-20.text-color-yellow.text-size-xs-16, .text-size-20.text-color-blue.text-size-xs-16, .text-size-20.text-color-yellow.text-size-xs-16, .text-size-20.text-color-yellow.text-size-xs-16, .text-size-20.text-color-blue.text-size-xs-16, .text-size-20.text-color-blue.text-size-xs-16 {
    font-size: 16px;
  }

  .column-flex.margin-top-50 {
    margin-top: 2.5rem;
  }

  .column-flex.margin-top-50.grid-style {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .column-box {
    width: 1000%;
  }

  .column-box--content {
    font-size: 1rem;
  }

  .blue-dot {
    width: 8px;
    height: 8px;
  }

  .section--eligibility {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .pill-box {
    border-radius: 20px;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 18px;
  }

  .section--binding {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .flex-box-left.blue-box {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .row-list--item {
    font-size: 1rem;
  }

  .text-agent {
    font-size: 1.625rem;
  }

  .btn-flex {
    padding-right: 20px;
    position: relative;
  }

  .section--schedule {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .table-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .table-grid--box {
    border-radius: 25px;
    padding-bottom: .5rem;
  }

  .table-grid--content {
    border-radius: 20px;
  }

  .section--surchagers {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .list-content-wrap {
    border-radius: 25px;
    padding: 2rem 1.5rem;
  }

  .list-content-wrap.bg-dark-blue {
    border-radius: 25px;
  }

  .two-col-list.margin-top-40.flex-box {
    display: block;
  }

  .two-col-list-content {
    width: 100%;
  }

  .warning-content {
    text-align: center;
    flex-flow: column;
  }

  .section--coverages {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .block-breaker {
    grid-column-gap: 8px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: .5rem;
    padding-right: .5rem;
    display: grid;
  }

  .block-item {
    font-size: 14px;
  }

  .block-item.hide-xs {
    display: none;
  }

  .breaker-img.stars {
    width: 58px;
  }

  .heading-size-20 {
    font-size: 24px;
  }

  .grid-17.margin-top-60 {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .btn-arrow {
    position: absolute;
    inset: auto 0% auto auto;
  }

  .btn-text-size {
    font-size: 1.25rem;
    font-weight: 700;
  }

  .section--full {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .grid-18 {
    margin-bottom: 20px;
  }

  .half-content-block {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .box-list--item {
    font-size: 1rem;
  }

  .grid-boxes.margin-top-60 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto auto;
    margin-top: 2.5rem;
  }

  .section--table {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .table-header-box {
    padding: 10px;
  }

  .table-title {
    font-size: 3.5vw;
  }

  .table-box-cell {
    width: 33.3333%;
    padding: 5px;
  }

  .section--half, .section--cta {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .layout353_component, .layout72_component, .layout125_component, .layout293_component, .gallery_small-grid, .layout399_row, .cta1_component, .layout89_component, .layout291_component {
    grid-template-columns: 1fr;
  }
}

#w-node-ac3df3bf-3d1c-1930-4843-6e00180fc6a8-ae4ceec0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#Field-2.w-node-ac3df3bf-3d1c-1930-4843-6e00180fc6aa-ae4ceec0, #w-node-ac3df3bf-3d1c-1930-4843-6e00180fc68e-ae4ceec0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ac3df3bf-3d1c-1930-4843-6e00180fc67b-ae4ceec0 {
  justify-self: end;
}

#w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c329-2f83c315 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c32c-2f83c315 {
  place-self: auto center;
}

#w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c337-2f83c315, #w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c342-2f83c315, #w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c34e-2f83c315, #w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c37b-2f83c315, #w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c39e-2f83c315 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c32c-2f83c315 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto center;
  }

  #w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c337-2f83c315, #w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c342-2f83c315 {
    place-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c3b1-2f83c315 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ac3df3bf-3d1c-1930-4843-6e00180fc6a8-ae4ceec0 {
    justify-self: stretch;
  }

  #Field-2.w-node-ac3df3bf-3d1c-1930-4843-6e00180fc6aa-ae4ceec0 {
    justify-self: auto;
  }

  #w-node-ac3df3bf-3d1c-1930-4843-6e00180fc691-ae4ceec0 {
    justify-self: stretch;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2f5d7e23-0d41-9fd8-40d4-67112f83c341-2f83c315 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}
