@import url(https://fonts.googleapis.com/css?family=Nunito+Sans);
/* TESTING VARIABLES */
/* END TESTING VARIABLES */
body {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: normal;
  overflow-x: hidden;
  margin-top: 84px;
}

.menu-open {
  margin-top: 0;
}

h1 {
  font-weight: 800;
  font-size: 56px;
  line-height: 107%;
  letter-spacing: -1px;
}

h2 {
  font-weight: 800;
  font-size: 32px;
  line-height: 119%;
  letter-spacing: -0.4px;
}

h3 {
  font-weight: 800;
  font-size: 24px;
  line-height: 133%;
}

h4 {
  font-weight: 800;
  font-size: 18px;
  line-height: 139%;
}

h5 {
  font-weight: 800;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
}

.col {
  padding-left: calc($col-gutter / 2);
  padding-right: calc($col-gutter / 2);
}

@media (min-width: 0px) {
  .row {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .row {
    padding-left: 70px;
    padding-right: 70px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 1199px) {
  .row {
    padding-left: 155px;
    padding-right: 155px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
button.primary {
  padding: 12px 20px 12px 20px;
  border-radius: 4px;
  border-style: none;
  background-color: #fcba11;
  color: #2F302F;
  font-weight: 800;
}

a.primary {
  padding: 12px 20px 12px 20px;
  border-radius: 4px;
  border-style: none;
  background-color: #fcba11;
  color: #2F302F;
  font-weight: 800;
}

button.secondary {
  padding: 12px 20px 12px 20px;
  border-radius: 4px;
  border-style: none;
  background-color: #fcba11;
  color: #2F302F;
  font-weight: 800;
  background-color: #ffffff;
  border: 2px solid #2f302f;
}

button.primary:hover {
  background-color: #eeab00;
}

a.primary:hover {
  background-color: #eeab00;
}

button.secondary:hover {
  background-color: #f9f6ec;
}

a.tertiary {
  color: #2F302F;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
}
a.tertiary::after {
  content: ">";
  padding-left: 5px;
  transition: all 0.2s ease-in-out;
}
a.tertiary:hover::after {
  padding-left: 10px;
}

a.text-link {
  color: #2F302F;
  text-decoration: none;
}
a.text-link::before, a.text-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 0px;
  height: 2px;
  margin: 2px 0 0;
  opacity: 0;
  background-color: #222322;
}
a.text-link:hover {
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
}
a.text-link:hover::before, a.text-link:hover::after {
  left: 0;
  width: 100%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.mp-nav-container {
  display: flex;
  flex-direction: column;
  padding: 0px;
  margin: 0px;
  background-color: white;
  width: 100%;
}

.mp-nav {
  padding-left: 50px;
  padding-right: 50px;
  flex-direction: row;
  align-items: center;
  display: flex;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 0px -5px 20px 0px #212529;
  transition: all 0.2s ease-in-out;
  z-index: 1000;
}

.mp-nav-center {
    justify-content: center;
}

.mp-container-left {
  flex-direction: row;
  align-items: center;
  display: flex;
  width: 100%;
  gap: 1em;
}
.mp-container-left .navbar-nav {
  gap: 1em;
}

.mp-container-right {
  flex-direction: row;
  align-items: center;
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

@media (max-width: 1199px) {
  .mp-hide-sm {
    display: none;
  }

  .mp-nav-menu-toggler {
    display: block !important;
  }
}
.mp-sub-nav-show {
  display: flex !important;
}

.mp-sub-nav {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 25px;
  width: 100%;
  display: none;
  gap: 50px;
  box-shadow: 0 10px 20px -20px #212529;
  z-index: 100;
}

.mp-nav-scrolled {
  padding-top: 0;
  padding-bottom: 0;
}

.mp-nav-button {
  margin-top: -5px;
  margin-left: 20px;
  white-space: nowrap;
}

.mp-nav-menu-toggler {
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  display: none;
}

.yellow-please {
  color: #fcba11 !important;
}

.nav-list {
  list-style: none;
}

.mp-mobile-nav-list li {
  margin-bottom: 1rem;
}

.mp-mobile-nav-list li a {
  padding: 10px;
}

hr {
  color: #fcba11;
  height: 2px;
}

.mp-footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  color: white;
  padding: 80px;
  width: 100%;
}
.mp-footer-cta h3 {
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .mp-footer-cta {
    padding: 35px;
  }
  .mp-footer-cta h3 {
    padding-bottom: 0;
  }
}
.mp-cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 30px;
}

.mp-cta-description {
  padding-bottom: 40px;
  width: 50%;
  text-align: center;
}

.mp-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: baseline;
}

@media (max-width: 768px) {
  .mp-cta-info {
    flex-direction: column;
  }
  .mp-cta-info .mp-nav-button {
    margin: unset;
  }

  .mp-cta-contact {
    align-items: center;
  }

  .mp-cta-description {
    width: auto;
  }
}
.mp-footer {
  display: flex;
  flex-direction: column;
  background-color: #2F302F;
  color: white;
}
.mp-footer .text-link {
  color: white !important;
}
.mp-footer .text-link::before, .mp-footer .text-link::after {
  background-color: white !important;
}

.mp-footer-nav {
  display: flex;
  flex-direction: row;
}
.mp-footer-nav button {
  margin-left: auto;
  align-self: baseline;
}

.mp-footer-rights {
  display: flex;
  flex-direction: row;
  font-size: 10pt;
}

.mp-footer-rights-lp {
    display: flex;
    flex-direction: row;
    font-size: 13px;
}
.mp-footer-rights-lp div {
    margin-bottom: 10px;
}
.mp-footer-rights-lp p {
    margin-bottom: 0px;
}
.mp-footer-rights-lp span {
    margin-right: 16px;
}
.mp-footer-items {
  display: flex;
  flex-direction: row;
  gap: 2em;
}
.mp-footer-items ul {
  list-style: none;
  font-size: 10pt;
  
}
.mp-footer-items span {
  display: flex;
  flex-direction: row;
  gap: 2em;
}
.mp-footer-bbb{
    padding-left: 2rem;
}
.mp-footer-icon{
    margin: 10px; 
}
.mp-footer-sub-row {
  display: flex;
  flex-direction: row;
  width: 60%;
}

.mp-footer-rights-info {
  width: 54%;
}

.mp-footer-rights-links span {
  padding-right: 20px;
}

@media (max-width: 768px) {
  .mp-footer-items {
    flex-direction: column;
    gap: 0;
  }

  .mp-footer-sub-row ul {
    width: 50%;
  }

  .mp-footer-rights-info {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2em;
  }

  .mp-footer {
    margin: 0;
  }

  .mp-footer-nav {
    flex-direction: column;
  }
  .mp-footer-nav button {
    margin-left: 2rem;
  }
  .mp-footer-nav .milepost-nav-brand {
    padding-left: 2em;
    padding-right: 2em;
  }

  .mp-footer-rights-links {
    margin-left: unset;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
  }

  .milepost-nav-brand {
    padding-left: 0;
    margin-right: 0;
  }

  .mp-footer-rights {
    flex-direction: column;
  }
}
.mp-icon {
  height: 1em;
  width: 1em;
}

.mp-darkener {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2F302F;
  z-index: -1;
  mix-blend-mode: multiply;
}

.mp-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.mp-mobile-sub-nav {
  width: 100%;
  padding: 0;
  z-index: 100;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.mp-mobile-sub-nav::-webkit-scrollbar {
  display: none;
}

.mp-mobile-sub-nav-show {
  display: flex;
  transition: all 0.2s ease-in-out;
  gap: 0px;
}

.body-no-scroll {
  overflow: hidden;
}

.flip-img {
  transform: scaleX(-1);
}

.nav-list-mobile {
  list-style: none;
  padding-right: 32px;
}
.nav-list-mobile li {
  padding: 20px;
  border-bottom: 2px solid #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-list-mobile li:last-child {
  border-bottom: none;
  display: block;
}
.nav-list-mobile li:hover {
  cursor: pointer;
}
.nav-list-mobile li:last-child:hover {
  background-color: white;
}

.nav-sub-list-mobile {
  list-style: none;
  padding: 0;
}
.nav-sub-list-mobile ul {
  list-style-type: none;
}
.nav-sub-list-mobile ul li {
  margin-left: 20px;
}

.mp-mobile-back {
  padding: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  cursor: pointer;
  position: absolute;
  width: 100%;
}
.mp-mobile-back img {
  margin-left: 20px;
  padding-left: 10px;
}

.mp-mobile-nav-sub-scroller {
  padding-top: 80px;
}

@media (max-width: 768px) {
  .navbar {
    justify-content: flex-start;
  }
}
.mp-mobile-menu {
  width: 100%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  height: 100%;
  overflow-y: scroll;
}

.mp-mobile-menu-scroll {
  width: 100%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  overflow-y: scroll;
}

.mp-mobile-menu-insurances, 
.mp-mobile-menu-insurance {
  width: 100%;
  transition: all 0.2s ease-in-out;
}

.mp-no-width {
  width: 0% !important;
  opacity: 0;
  visibility: hidden;
  transition: none;
}

.mp-no-height {
  height: 0;
}

.mp-full-height {
  height: 100%;
}

/*TODO: remove with "feature-231008-header-footer"*/
.insurance-list,
.resources-list,
.about-us-list {
  display: none;
}

.login-list {
    display: none;
    margin-left: auto;
    margin-right: 0;
    float: right;
}

.login-list li {
    margin-left: auto;
    margin-right: 0;
    float: right;
    padding-right: 30px;
}

.nav-list-show {
  display: block;
}

.nav-list-hide {
    display: none;
}
/* Fact list Section */
.mp-fact-list-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mp-fact-list-header {
    text-align: center;
    max-width: 720px;
}

.mp-fact-list-description {
    padding: 24px 0;
}

.mp-fact-list {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 75%;
}

@media (min-width: 2279px) {
  .mp-fact-list {
    max-width: 60%;
  }
}
.mp-fact {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.mp-fact-text {
  padding-top: 30px;
}

.mp-fact-description {
  width: 35ch;
  text-align: center;
}

.mp-fact-image {
    max-width: 50px;
    max-height: 50px;
}

@media (max-width: 768px) {
  .mp-fact-list {
    flex-direction: column;
  }

  .mp-fact-description {
    width: auto;
    text-align: center;
    padding-bottom: 10px;
  }

  .mp-fact-list-section h2 {
    font-size: 24px;
  }

  .mp-fact-text {
    padding-top: 15px;
  }
}
.mp-gray-section {
  background-color: #f5f5f5 !important;
}

/* End Fact list Section */
@media (min-width: 0px) {
  .mp-section {
    padding-top: 44px;
    padding-bottom: 44px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .mp-section-item {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 12px;
    padding-right: 12px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .mp-section {
    padding-top: 44px;
    padding-bottom: 44px;
    padding-left: 70px;
    padding-right: 70px;
  }

  .mp-section-item {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 70px;
    padding-right: 70px;
    text-align: center;
  }
}
@media (min-width: 1199px) {
  .mp-section {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: 155px;
    padding-right: 155px;
  }

  .mp-section-item {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 155px;
    padding-right: 155px;
    text-align: center;
  }
}
@media (min-width: 2279px) {
  .mp-section-item {
    text-align: center;
  }
}

.mp-info-list-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.mp-info-list {
  width: 75%;
}

.mp-icon-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 0px;
}

.mp-icon-list-header {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-bottom: 36px;
    max-width: 720px;
}

.mp-icon-list-items {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 36px;
    max-width: 720px;
}

@media (min-width: 601px) and (max-width: 940px) {
    .mp-icon-list-items {
        width: 80%;
    }

    .mp-icon-list-header {
        width: 80%;
    }
}

@media (min-width: 941px) and (max-width: 1200px) {
    .mp-icon-list-items {
        width: 70%;
    }

    .mp-icon-list-header {
        width: 70%;
    }
}

@media (min-width: 1201px) {
    .mp-icon-list-items {
        width: 60%;
    }
    .mp-icon-list-header {
        width: 60%;
    }
}

@media (min-width: 600px) {
    .mp-icon-section {
        display: flex;
    }
    .mp-icon-section-img {
        margin-right: 30px;
    }
}

.mp-icon-section-img {
    display: flex;
    justify-content: center;    
    margin-bottom: 16px;
}

.mp-icon-section-img img {
    height: 112px;
    width: 144px;
}

.mp-info-header-container {
  width: 75%;
}

@media (min-width: 2279px) {
  .mp-info-list {
    width: 75%;
  }
}
@media (max-width: 768px) {
  .mp-info-list {
    width: 100%;
  }

  .mp-info-list-section h2 {
    font-size: 24px;
  }

  .mp-info-header-container {
    width: 100%;
  }
}
.mp-info-box-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 74px;
}

.mp-info-box-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 74px;
}

@media (max-width: 768px) {
  .mp-info-box-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    justify-content: space-evenly;
    gap: 25px;
  }

  .mp-info-box-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 25px;
  }
}
.mp-info-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.mp-info-callout {
  font-weight: 800;
  font-size: 32px;
  line-height: 119%;
  letter-spacing: -0.4px;
  text-align: left;
}

.mp-info-img {
    width: 311px;
}

@media (max-width: 768px) {
  .mp-info-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .mp-info-text a {
    width: 100%;
    text-align: left;
  }

  .mp-info-callout {
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    width: 100%;
  }
  .mp-info-img {
    width: 100%;
  }
}

.mp-testimonial-list-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

/* Checklist Section */
.mp-checklist-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 64px;
}

.mp-checklist-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 50%;
}

.mp-checklist-header-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mp-checklist-list-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.mp-checklist-header {
    font-weight: 700;
    font-size: 32px;
    line-height: 119%;
    letter-spacing: -0.4px;
}

.mp-checklist-lists {
    display: flex;
    justify-content: center;
    gap: 36px;
}

.mp-checklist-lists ul {
    width: 50%;
}
.mp-checklist-lists ul li {
    padding: 4px 0;
}

@media (min-width: 768px) and (max-width: 1400px){
    .mp-checklist-container {
        width: 75%;
    }
}

@media (max-width: 768px) {
    .mp-checklist-section {
        padding: 48px 24px;
    }
    .mp-checklist-container {
        width: 90%;
    }

    .mp-checklist-lists {
        gap: 0;
        flex-direction: row;
    }

    .mp-checklist-lists ul {
        width: 100%;
        margin-bottom: 0;
        padding-left: 1.4rem;
    }
}

@media (max-width:500px){
    .mp-checklist-lists {
        flex-direction: column;
    }
}

.mp-checklist-item p {
    margin-bottom: 0;
}
/* End Checklist Section */

.mp-active-state-map-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.mp-active-state-map-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 60%;
  max-width: 60%;
  justify-content: space-around;
  gap: 24px;
}
.mp-active-state-map-container img {
  width: 100%;
}

.mp-active-state-map-states {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mp-active-state-map-states h3 {
  width: 24ch;
}

.mp-active-state-lists {
  white-space: nowrap;
}
.mp-active-state-lists ul {
  line-height: 32px;
}

.active-state-map-header {
  font-weight: 800;
  font-size: 32px;
  line-height: 119%;
  letter-spacing: -0.4px;
}

@media (max-width: 768px) {
  .mp-active-state-map-container {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 100%;
  }

  .mp-active-state-map-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .mp-active-state-map-states {
    gap: 5px;
  }

  .active-state-map-header {
    font-size: 24px;
    text-align: left;
    width: 100%;
    line-height: 32px;
  }
}
.mp-mid-page-cta {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 24px;
}

@media (max-width: 768px) {
  .mp-mid-page-cta {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
  }
}
.mp-cta-button {
  margin-left: 0;
}

.test-row {
  background-color: #f5f5f5;
}

.test-col {
  background-color: #e95476;
}

.spacer {
  font-size: 16px;
  line-height: 125%;
  text-transform: capitalize;
  background-color: #f5f5f5;
}

.right-border {
  border-right: #2F302F 1px solid;
}

.mp-road-text-box-line {
  padding: 0;
  margin-bottom: 5px;
  height: 5px;
  background: #FCBA11;
}

.mp-road-text-box-get-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0;
  background-image: url(/media/0chdr10r/bkg.webp);
}

.mp-road-text-box-text {
  padding: 0;
  color: white;
  font-size: 56px;
  max-width: 650px;
  text-align: center;
}

.mp-road-text-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    padding-left: 0;
    padding-right: 0;
    background-image: url(/media/0chdr10r/bkg.webp);
}

@media (max-width: 768px) {
  .mp-road-text-box {
    padding: 0;
    margin: 0;
  }

  .mp-road-text-box-text {
    font-size: 32px;
  }

  .mp-road-text-box-get-quote {
    margin: 0;
  }
}
.mp-road-text-box-get-quote-text {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  color: white;
  font-size: 56px;
  max-width: 650px;
  text-align: left;
}

.mp-road-text-box-get-quote-input-holder {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  gap: 10px;
  width: 50%;
}

.mp-road-text-box-get-quote-subtext {
  padding-top: 10px;
  text-align: start;
  padding-left: 0;
  padding-right: 0;
  color: white;
  font-size: 18pt;
  max-width: 650px;
}

.mp-road-text-box-content-holder {
  max-width: 80%;
  margin-right: 70px;
  margin-left: 70px;
}

@media (max-width: 768px) {
  .mp-road-text-box-get-quote-text {
    padding: 0;
    color: white;
    font-size: 30px;
    max-width: 650px;
    text-align: left;
  }

  .mp-road-text-box-get-quote-subtext {
    padding: 0;
    text-align: start;
    padding-left: 0;
    padding-right: 0;
    color: white;
    text-align: left;
    font-size: 18px;
    max-width: 650px;
  }

  .mp-road-text-box-get-quote-image {
    width: 0;
    display: none;
  }

  .mp-road-text-box-content-holder {
    padding-top: 55px;
    padding-bottom: 55px;
    margin-right: 5px;
    margin-left: 5px;
  }

  .mp-road-text-box-get-quote-input-holder {
    width: 100%;
  }
}
@media (max-width: 1504px) {
  .mp-road-text-box-get-quote-image {
    width: 0;
    display: none;
  }
}
.mp-road-text-box-get-quote-line {
  padding: 0;
  margin-bottom: 5px;
  height: 5px;
  background: #FCBA11;
  min-width: 100px;
}

.mp-road-text-box-get-quote-sub-row {
  width: 100%;
}

.mp-road-text-box-lines {
  margin: 0;
  overflow-x: hidden;
}

.mp-road-text-box-get-quote-zip-input {
  width: 50%;
  height: 48px;
}

.mp-carousel-prev-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  background-color: #FCBA11;
  background-image: none;
}

.mp-carousel-next-icon {
  background-color: #FCBA11;
  background-image: none;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.mp-carousel-prev-next-btn {
  opacity: 1;
}

.mp-carousel-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
}

.mp-carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.mp-quote-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 218px !important;
}

.mp-quote-box-text {
  width: 35ch;
  text-align: center;
  padding-top: 10px;
  font-weight: 500;
  padding-left: 10px;
  padding-right: 10px;
}

.mp-quote-box-source {
  font-weight: 900;
}

.mp-road-text-box-lines-left {
  grid-row: 1;
  grid-column: 1;
}

.mp-road-text-box-lines-right {
  grid-row: 1;
  grid-column: 3;
}

.mp-road-text-box-lines-img {
  width: 100%;
  min-height: 16px;
}

.mp-road-text-box-holder {
  grid-row: 1;
  grid-column: 2;
}

.mp-contact-us-section {
  display: flex;
  flex-direction: column;
}

.mp-contact-us-column {
  height: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  padding: 0px 46px;
}

.mp-contact-us-header {
  font-weight: 800;
  font-size: 32px;
  line-height: 119%;
  letter-spacing: -0.4px;
}

@media (max-width: 768px) {
  .mp-contact-us-column {
    padding: 0 20px;
  }

  .mp-contact-us-header {
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 16px;
  }

  .mp-contact-us-message {
    min-height: 133px !important;
  }
}
.mp-contact-us-content {
  padding-bottom: 32px;
}

.mp-contact-method-header {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  padding-bottom: 16px;
}

.mp-contact-method-icon {
  height: 30px;
  width: 30px;
  margin-right: 16px;
}

.mp-contact-method-header-text {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
}

.mp-contact-method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: left;
  padding-bottom: 30px;
}

.no-bullets {
  list-style-type: none;
  /* Remove bullets */
  padding: 0;
  /* Remove padding */
  margin: 0;
  /* Remove margins */
}

.phone-number {
  text-decoration: underline;
}

.mp-contact-us-form {
  width: 100%;
}

.mp-contact-submit-button {
  width: 100%;
  background: #FCBA11;
  border: none;
  font-size: 16px;
  font-weight: 900;
}

.mp-contact-submit-button:hover {
  background: #C7920E;
}

.mp-contact-us-form .form-control,
.mp-contact-us-form .form-select {
  background-color: rgba(230, 231, 232, 0.35);
}

.mp-contact-us-row {
  display: flex;
  flex-direction: row;
  margin: 0px 165px;
  justify-content: center;
}

.mp-contact-us-disclaimer {
  margin: auto;
  text-align: left;
  font-size: 16px;
  width: 45%;
  color: #2F302F;
}

@media (max-width: 768px) {
  .mp-contact-us-row {
    flex-direction: column;
    margin: 0;
  }

  .mp-contact-us-disclaimer {
    margin: auto;
    width: 100%;
    padding: 60px 20px 0;
  }
}
.mp-breadcrumb-section {
  padding-bottom: 0;
}

.mp-breadcrumb-section-nav {
  --bs-breadcrumb-divider: ">";
}

.mp-breadcrumb-item-active::before {
  color: #FCBA11 !important;
}

.mp-breadcrumb-link {
  text-decoration: none;
  color: #2F302F;
}

/* Basic Textbox */
.mp-basic-textbox-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 64px;
    gap: 16px;
}

.mp-basic-textbox-section-header {
  font-weight: 700;
  font-size: 32px;
  line-height: 119%;
  width: 50%;
  max-width: 720px;
}

.mp-basic-textbox-section-content {
  width: 50%;
  max-width: 720px;
}

@media (max-width: 768px) {
    .mp-basic-textbox-section {
        padding: 48px 24px;
    }

    .mp-basic-textbox-section-header {
        width: 90%;
    }

    .mp-basic-textbox-section-content {
        width: 90%;
    }
}
/* End Basic Textbox */ 

.mp-textbox-login {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: auto;
  gap: 10%;
  width: 75%;
  padding-left: 32px;
  padding-right: 32px;
}

.mp-textbox-login-content {
  display: flex;
  flex-direction: column;
  width: 45%;
}

.mp-textbox-login-image {
  display: flex;
  flex-direction: column;
  width: 45%;
}

@media (max-width: 768px) {
  .mp-textbox-login {
    flex-direction: column-reverse;
    width: 100%;
    margin: 0;
    gap: 32px;
  }

  .mp-textbox-login-content {
    width: 95%;
  }

  .mp-textbox-login-image {
    width: 100%;
  }

  .mp-textbox-login-image-img {
    width: 100%;
  }
}
.mp-textbox-login-button-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.mp-textbox-login-button {
  margin-right: 15px;
}

.mp-textbox-video {
  display: flex;
  flex-direction: row;
  width: 75%;
  gap: 10%;
  margin: auto;
  align-items: center;
  justify-items: center;
}

.mp-textbox-video-header {
  font-weight: 800;
  font-size: 32px;
  line-height: 119%;
  letter-spacing: -0.4px;
}

.mp-textbox-video-player {
  width: 45%;
}

.mp-textbox-video-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mp-textbox-video-player-content {
  width: 100%;
}

@media (max-width: 768px) {
  .mp-textbox-video {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding-left: 32px;
    padding-right: 32px;
  }

  .mp-textbox-video-player {
    width: 95%;
  }

  .mp-textbox-video-content {
    width: 95%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mp-textbox-video-header {
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
  }
}
.mp-login-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mp-login-box {
  width: 30%;
  background: white;
  padding: 0px 30px 10px 30px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .mp-login-box {
    width: 100%;
  }
}
.mp-login-box-header-image {
  max-width: 94px;
  max-height: 94px;
  margin-top: 10%;
}

.mp-login-box-header-text {
  font-size: 24px;
  text-align: center;
  padding: 30px 0px;
}

.mp-login-button {
  font-size: 16px;
}

.mp-login-box-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10%;
}

.mp-login-box-footer {
  text-align: center;
}

.grey-link {
  color: #565756;
}

.grey-link:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-toggler-icon-close {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='red' class='bi bi-x' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}

.sidebar {
  display: none;
  position: relative;
  width: 100%;
}

@media (max-width: 1199px) {
  html.sidebar-is-open .sidebar {
    display: block;
    position: absolute;
    z-index: 0;
    overflow: scroll;
    overflow-x: hidden;
    margin-top: 84px;
    height: 100%;
    /* 
     The sidebar is just rendered in default position,
     as it appears in the document flow
    */
  }

  html.sidebar-is-open .sidebar-no-block {
    display: flex;
  }

  html.sidebar-is-open .main-content {
    position: fixed;
    visibility: hidden;
    /* 
     It is the main content that is positioned. 
     This is the crux of the implementation. The rest is all sugar.

     Cons: the body will scroll to the top, losing your user's scroll position
    */
    /* prevents resizing from its original full-screen width */
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
  }

  /* Optional enhancement: 
     make the overscroll on iPhone the same colour as the sidebar */
  html.sidebar-is-open body {
    background-color: white;
  }

  .sidebar {
    background-color: white;
  }
}
.sub-nav-scroll {
  overflow: scroll;
  height: 100%;
}

.mp-nav-open {
  position: unset;
}

.white-anchor, .white-anchor:hover {
    color: white;
}

.hero-section-quote-btn {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.mp-notification-bar-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #8fbf3f;
}

.mp-notification-bar-section p {
    margin-bottom: 0;
}

.mp-header-login {
    border: none;
    max-width: 100px;
}

.hero-image-standalone {
    display: block;
}
.hero-image-standalone img {
    width: 100%;
}

.hero-image-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #2F302FE5;
    width: 585px;
    padding: 48px;
    color: #FFFFFF;
}

.hero-image-text h1, h3 {
    font-weight: 700;
    margin-bottom: 0;
}

.hero-image-text #roadGetAQuoteForm {
    margin-bottom: 0 !important;
    width: 100%;
}

.hero-image-text p {
    margin-bottom: 0;
}

.hero-image-text a {
    color: #FFFFFF;
}

@media (max-width: 375px) {
    .hero-image-background {
        background-image: none !important;
    }
    .hero-image-text {
        width: 100%;
        padding: 24px;
    }
}

@media (min-width: 375px) and (max-width: 815px) {
    .hero-image-background {
        background-image: none !important;
    }
    .hero-image-text {
        width: 100%;
        padding: 48px;
    }
}

@media (min-width: 815px) {
    .hero-image-background {
        height: 520px;
        padding: 48px 120px;
        position: relative;
        /*background-size: auto 100% !important;*/
        background-position: right center !important;
        background-repeat: no-repeat no-repeat !important;
    }
    .hero-image-standalone {
        display: none;
    }
    .hero-image-text {
        margin: 0;
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.zipcode-form-inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zipcode-form-inputs .invalid-tooltip {
    line-height: 16px;
}

@media (min-width: 600px) {
    .zipcode-form-inputs {
        flex-direction: row;
        gap: 0;
        height: 48px;
    }
    .zipcode-form-inputs input {
        width: 375px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
    }
    .zipcode-form-inputs #roadGetAQuoteButton {
        width: 114px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }
}

@media (max-width: 600px) {
    .hero-image-text h1 {
        font-size: 48px;
        line-height: 64px;
    }
}

/*# sourceMappingURL=milepost.css.map */
