/* RESET */

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

ol[class],
ul[class] {
  padding: 0;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background-color: #fff;
}

ol[class],
ul[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

/* COLORS */

	:root {
    --blue: #1c2252;
    --red: #d81818;
    --lightblue: #b5c0e1;
    --gray: #f0efef;
    --white: #fff;
    --black: #000;
	}

 .blue-bg {
  background-color: var(--blue);
  }
  .blue-bg p,
  .blue-bg h1,
  .blue-bg h2,
  .blue-bg h3,
  .blue-bg li {
    color: var(--white);
  }

  .blue-bg  a.button {
    background-color: var(--white);
    color: var(--blue);
  }

  .blue-bg  a.button.alt {
    background-color: var(--blue);
    color: var(--white);
    border: 2px solid var(--white);
  }

  .red-bg {
    background-color: var(--red);
  }
  .red-bg p,
  .red-bg h1,
  .red-bg h2,
  .red-bg h3,
  .red-bg li {
    color: var(--white);
  }

  .red-bg a.button {
    background-color: var(--white);
    color: var(--red);
  }
  .red-bg a.button.alt {
    background-color: var(--red);
    color: var(--white);
    border: 2px solid var(--white);
  }

  .white-bg {
    background-color: var(--white);
  }
  .white-bg p,
  .white-bg li {
    color: var(--black);
  }
  .white-bg h1,
  .white-bg h2,
  .white-bg h3 {
    color: var(--blue);
  }

  .white-bg a.button {
    background-color: var(--blue);
    color: var(--white);
  }
  .white-bg a.button.alt {
    background-color: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
  }

  .lightblue-bg {
    background-color: var(--lightblue);
  }
  .lightblue-bg p,
  .lightblue-bg li {
    color: var(--black);
  }
  .lightblue-bg h1,
  .lightblue-bg h2,
  .lightblue-bg h3 {
    color: var(--blue);
  }

  .lightblue-bg a.button {
    background-color: var(--white);
    color: var(--red);
  }
  .lightblue-bg a.button.alt {
    background-color: var(--red);
    color: var(--white);
    border: 2px solid var(--white);
  }

  .gray-bg {
    background-color: var(--gray);
  }
  .gray-bg p,
  .gray-bg li {
    color: var(--black);
  }
  .gray-bg h1,
  .gray-bg h2,
  .gray-bg h3 {
    color: var(--blue);
  }

  .gray-bg a.button {
    background-color: var(--red);
    color: var(--white);
  }
  .gray-bg a.button.alt {
    background-color: var(--white);
    color: var(--red);
    border: 2px solid var(--red);
  }

  .black-bg {
    background-color: var(--black);
  }
  .black-bg p,
  .black-bg h1,
  .black-bg h2,
  .black-bg h3,
  .black-bg li {
    color: var(--white);
  }

  .black-bg a.button {
    background-color: var(--white);
    color: var(--black);
  }
  .black-bg a.button.alt {
    background-color: var(--black);
    color: var(--white);
    border: 2px solid var(--white);
  }

  

/* FONTS */

@font-face {
  font-family: 'OS';
  src: url(../fonts/OpenSans-Light.woff2);
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'OS';
  src: url(../fonts/OpenSans-Regular.woff2);
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'OS';
  src: url(../fonts/OpenSans-Bold.woff2);
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'poppins';
  src: url(../fonts/Poppins-Regular.woff2);
    font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'poppins';
  src: url(../fonts/Poppins-Light.woff2);
    font-weight: 300;
  font-display: swap;
}


 h1 {
    font-family: 'OS';
    letter-spacing: .02em;
    font-size: 54px;
    color: var(--black);
    text-transform: capitalize;
   font-weight: 700;
    text-align: left;
    line-height: 112%;
    margin-bottom: 20px;
  }

   h2 {
    font-family: 'OS';
    letter-spacing: .02em;
    font-size: 39px;
    color: var(--black);
    text-transform: none;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin-bottom: 20px;
  }

  h2.centered {
    font-size: 36px;
    line-height: 110%;
  }

  h2 span {
    font-family: 'OS';
    font-weight: 100;
  }

h4 {
    font-family: 'OS';
    color: var(--blue);
    font-size: 18px;
    margin-bottom: 20px;
}


  p {
      color: var(--black);
      font-family: 'poppins';
      font-weight: 400;
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 160%;
      text-align: left;
  }


  li {
    color: var(--black);
    font-family: 'poppins';
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 140%;
    text-align: left;
    position: relative;

   

  }


  h3 {
    font-family: 'OS', sans-serif;
    letter-spacing: .02em;
    font-size: 24px;
    color: var(--red);
    text-transform: capitalize;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin-bottom: 20px;
  }

sup {
  font-size: 0.75em;
  vertical-align: super;
  margin-left: 1px; /* optional */
}

h1 sup, h2 sup, h3 sup, h4 sup {
    font-size: .5em;
}

/* LINKS */

a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  font-family: inherit;
}

p a {
    color: var(--red);
}

/* COMPONENTS */

.content-wrapper {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 5%;
}


/* BUTTONS */

  a.button {
    display: inline-block;
    padding: 0.6em 1.6em;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 0px;
    font-weight: bold;
    transition: all 0.2s;
    font-family: 'os', sans-serif;
    text-transform: uppercase;
        font-size: 16px;
    line-height: 140%;
  }

  a.button:hover {
    transform: scale(1.02);
  }

  a.closing.button {
    margin-top: 30px;
    display: inline-block;
}

  a.learn-more:hover {
  transform: scale(1.03);
  cursor: pointer;
  }

  input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

/* OVERLAYS */

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgb(39 49 109 / 80%);
      z-index: 5;
  }

/* FORMATTING */

  .alignleft {
      float: left;
      margin: 0 20px 20px 0;
      height: auto;
  }

  .alignright {
      float: right;
      margin: 0 0px 20px 20px;
      height: auto;
  }

  .aligncenter {
      display: block;
      margin: 0 auto 20px;
      height: auto;
  }



   /* Header */

   header {
    width: 100%;
    position: fixed;
    display: block;
    height: auto;
    background-color: var(--colorWhite);
    left: 0;
    top: 0;
    z-index: 15;
    transition: all .5s;
}

.nav-one-row-with-banner .header-content {
  padding: 0px 20px 0px 10px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  max-width: 1600px;
  margin: 0px auto;
  background-color: var(--white);
}

/* Banner Row */

.nav-one-row-with-banner .nav-row.top-nav-row {
  background-color: var(--blue);
  padding: 2px 3%;
  height: 36px;
}

.nav-row.top-nav-row a {
    color: var(--white);
}

/* Logo */

a.logo-link {
    padding: 8px 0px;
    height: 100%;
    flex: 0 0 auto;
    align-items: center;
    display: flex;
}

.logo {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transition: width .3s;
}

/* Nav */

.nav-rows {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
}

.nav-row {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

/* Top Nav Row */

.nav-row.top-nav-row > * {
    margin-left: 5%;
}

.nav-one-row-with-banner a.nav-phone-link {
    font-size: 18px;
    letter-spacing: 0.06em;
    font-weight: 300;
    font-family: 'poppins';
    color: var(--white);
}

.nav-one-row-with-banner .social-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 12px;
  padding: 0px 1em;
  margin-left: 30px;
}

.nav-one-row-with-banner a.nav-social {
  display: flex;
  align-items: center;
}

.nav-one-row-with-banner a.nav-social i {
  font-size: 28px;
  color: var(--colorWhite);
}

/* Bottom Nav Row */

nav {
    height: 100%;
    flex-grow: 1;
    position: relative;
}

/* Nav Menu */

.menu-main-menu-container {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

#menu-main-menu {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: none;
    padding-right: 2%;
    flex: 1;
    column-gap: 2%;
}

#menu-main-menu > li {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    position: relative;
    text-align: center;
    margin-bottom: 0px;
}

.menu-main-menu-container li a {
    transition: margin .3s;
    display: flex;
    align-items: center;
    color: var(--blue);
    text-transform: uppercase;
    font-family: 'OS', sans-serif;
    font-weight: 400;
    font-size: 14px;
    height: 100%;
    text-align: left;
}

/* Sub Menu */

#menu-main-menu li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  display: block;
  /* border-top: 4px solid var(--colorBlue); */
  position: absolute;
  right: -10px;
  top: 70px;
  width: auto;
  min-width: 166px;
  filter: drop-shadow(1px 1px 1px #999);
  border-radius: 2px;
  overflow: hidden;
  background-color: var(--white);
  }

ul#menu-main-menu > li {
    cursor: default;
}

  #menu-main-menu li:hover ul.sub-menu a {
      /* padding-bottom: 0px; */
  }

  #menu-main-menu > li:not(.nav-cta):hover > a {
      text-decoration: none;
  }

  #menu-main-menu li.menu-item-has-children>a:after {
      font-family: 'Font Awesome 5 Free';
      content: '\f107';
      margin: 0 0 0 5px;
      font-weight:600;
  }

  .sub-menu {
      display: none;
      position: absolute;
      z-index: 20;
      margin: 0;
      height: auto;
      top: 10px;
      width: auto;
      min-width: 130px;
      background-color: var(--colorWhite);
  }

  .sub-menu li {
      margin: 0;
      display: block;
      text-align: left;
      background: var(--colorLight);
      /* padding: 8px 12px; */
  }

  .sub-menu li:hover {
      background-color: var(--lightblue);
      color: var(--colorGrayFont);
  }

  .sub-menu li:hover a {
      color: var(--colorGrayFont);
  }

  .sub-menu a {
      font-size: 16px;
      font-weight: 500;
      color: var(--colorGrayFont);
      text-transform: none;
      height: 100%;
      display: block;
      width: 100%;
      padding: 8px 12px;
  }

  .sub-menu a:hover {
      color: var(--colorOrange) !important;
  }
  

  .header-content-container.nav-one-row-with-banner {
    padding: 0px 0%;
    /* max-width: 1600px; */
    margin: 0 auto;
    background: var(--white);
}

header a.button {
    background-color: var(--red);
    padding: 0.75em 1.25em;
}

section#hero {
    /* margin-top: -136px; */
}

/* Nav Contact Button */

.learn-more.nav-contact-btn {
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
}

/* Fixed Space */

.fixed-header-space {
    height: 106px;
    width: 100%;
    background-color: var(--colorDark);
}

/* Footer */

.footer-row {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo-column {
    flex: 0 0 25%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-info-column {
    flex: 0 0 25%;
}

.footer-menu-column {
    flex: 0 0 50%;
}

.footer-logo-column img {
    max-width: 300px;
}

.footer-info-column p {
    margin-bottom: 2px;
}

p.footer-wordmark {
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'OS';
    color: var(--blue);
    font-size: 20px;
}

.subfooter {
    background-color: var(--blue);
    padding: 20px 50px;
}

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

.subfooter p {
    color: var(--white);
    font-size: 12px;
    margin-bottom: 0px;
}

a.subfooter-link {
    color: var(--white);
    font-family: 'poppins';
    font-size: 12px;
}

a.nav-social i {
    color: var(--white);
    font-size: 22px;
}

.social-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 10px;
}

a.nav-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* HOME PAGE */

#hero .hero-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

.hero-content-image {
    flex: 0 0 50%;
    overflow: hidden;
}

.hero-content-body {
    flex: 0 0 50%;
    padding: 80px 5% 50px 40px;
}

.home .hero-content-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.multiple-buttons-container {
    display: flex;
    column-gap: 50px;
}

.hero-content-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
    margin-top: 10px;
}

#form-cta .content-wrapper {
    padding: 20px 5%;
        max-width: 1200px;
}

#form-cta .form-cta-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}


.form-cta-content-body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.form-cta-content-body p {
    font-size: 22px;
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    max-width: 330px;
    text-align: left;
    line-height: 140%;
    margin-bottom: 0px;
}

.form-cta-content-body h2 {
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 32px;
}

#benefits .benefits-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 15px;
}

.benefits-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 40px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

h3.benefit-heading {
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.benefit-top img {
    margin-bottom: 20px;
    height: 100px;
    width: auto;
}

.benefit-top p {
    text-align: left;
}

.benefit-top p:last-of-type {
    margin-bottom: 0px;
}

#video .video-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

.video-content-video img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.video-content-video {
    flex: 0 0 60%;
}

.video-content-body {
        flex: 0 0 40%;
    padding: 0px 5% 0px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.video-content-body p {
    text-align: left;
}

section#experience {
    position: relative;
}

.experience-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-content h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 30px;
}

.experience-content p {
    margin-bottom: 40px;
    max-width: 960px;
    margin: 0 auto 20px;
}

.experience-content a.button {
  color: var(--red);
}

section#experience .content-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

#cta .cta-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

#cta .content-wrapper {
  padding-top: 70px;
  padding-bottom: 70px;
}

.cta-content-text h2 {
    margin-bottom: 0px;
    font-size: 34px;
}

#about .about-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 30px;
}

.about-content-images {
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    column-gap: 30px;
}

p.founder-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

p.founder-title {
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 100%;
}

.founder img {
    margin-bottom: 10px;
}

.about-content-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-body p {
    text-align: left;
}

.about-content-buttons {
    text-align: left;
}

.about-content-body h2 {
    max-width: 470px;
}

#carrier .carrier-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

.carrier-content-body {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 60px 30px 60px 5%;
    max-width: 700px;
}

.carrier-content-image {
    flex: 0 0 50%;
}

.carrier-content-body > * {
    max-width: calc(750px - 5%);
}

.carrier-content-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carrier-content-body h2 {
    font-size: 32px;
}

/* Partnerships */

section#partnerships .content-wrapper {
    padding: 50px 0px;
    max-width: none;
}

.partnerships-content {
    border-top: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    padding: 30px;
}

.partnerships-content h2 {
    text-align: center;
    font-size: 34px;
}

.partner-logos {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
    padding: 0 5%;
}

/* State Page */

section#state-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: -136px; */
}

.state-hero-content h1 {
    position: relative;
    z-index: 10;
    /* margin-bottom: 0px; */
    /* padding-top: 70px; */
    font-size: 40px;
    margin-bottom: 10px;
    max-width: 760px;
}

.state-post-heading h2 {
    text-align: center;
    margin-bottom: 50px;
}

.state-post-heading-link-container p a {
    font-size: 22px;
}

.state-post-heading-link-container {
    margin-bottom: 30px;
}

.state-post-heading-link-container p {
    margin-bottom: 30px;
}

/* Posts */

.post h2 {
    color: var(--blue);
}

.post {
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}

.post p {
    line-height: 180%;
    font-size: 18px;
}

.post li {
    margin-bottom: 15px;
    line-height: 180%;
    position: relative;
  padding-left: 2em; 
    font-size: 18px;
}

.post li::before {
  content: '\f061'; 
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;
  color: var(--red); 
  position: absolute;
  left: 0;
  top: 0.05em; 
  font-size: 18px; 
  width: 1.5em;    
  display: inline-block;
  text-align: center;
    
} 

ul.checkmarks {
  list-style: none;
  padding-left: 10px; /* optional, controls left indent */

}

ul.checkmarks li {
   margin-bottom: 15px;
    line-height: 180%;
    position: relative;
  padding-left: 2em; 
    font-size: 18px;
}

ul.checkmarks li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--red);
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 18px;
  width: 1.5em;
  display: inline-block;
  text-align: center;
} 



ul.strikes li::before {
  content: '\f00d';
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;
  color: var(--red); 
  position: absolute;
  left: 0;
  top: 0.05em; 
  font-size: 18px; 
  width: 1.5em;    
  display: inline-block;
  text-align: center;
} 



.post ul {
  list-style: none;
  padding-left: 10px; /* optional, controls left indent */

}

/* Owner Template */


#owner-years .owner-years-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
    min-height: 400px;
}

#owner-why .owner-why-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

.owner-why-content-image img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
}

section#owner-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#owner-hero .content-wrapper {
    display: flex;
    justify-content: flex-end;
    /* max-width: 960px; */
    margin: 0 0 0 auto;
}

.owner-hero-content p:last-of-type {
    margin-bottom: 0px;
}

section#owner-how-we-help {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
}

section#contact-cta {
    position: relative;
}

.owner-hero-content {
    max-width: 960px;
    margin: 0 5% 0 auto;
    position: relative;
    z-index: 10;
}

.owner-hero-text p {
    text-align: left;
}

.owner-years-content-text {
    flex: 0 0 50%;
    padding: 50px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.owner-years-content-image {
    flex: 0 0 50%;
}

.owner-why-content-image {
	flex: 0 0 33%;
	position: relative;
}

.owner-why-content-image img {
    max-width: 100%;
    max-height: 95%;
    object-fit: contain;
}

.owner-why-content-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: calc(67% - (100vw * .10));
    flex-grow: 1;
    padding: 50px 50px 50px 0px;
}

.owner-why-content-text > * {
    text-align: left;
}

.owner-how-we-help-content > * {text-align: center;}

.owner-how-we-help-content {
    position: relative;
    z-index: 10;
}

.owner-how-we-help-content p {
    max-width: 840px;
    margin: 0 auto;
}

.owner-plan-content > * {
    text-align: left;
}

.icon-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.icon-split-icon {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-split-icon img {
    height: 120px;
}

.icon-splits {
    row-gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 50px;
}

section#contact-cta {
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owner-how-we-help-content h2 {
    text-align: center;
    margin-bottom: 50px;
}

.owner-how-we-help-content .multiple-buttons-container {
    justify-content: center;
}

.owner-years-content-text h2 span {
    font-weight: 600;
    color: var(--red);
}

.owner-years-content-text h2 {
    text-align: left;
    margin: 0 auto 10px 0;
}

/* Non-CDL */


#non-cdl-hero-images .non-cdl-hero-images-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 30px;
    z-index: 10;
    position: relative;
}
section#non-cdl-fight {
    position: relative;
}
#non-cdl-insurance-premiums .non-cdl-insurance-premiums-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

#non-cdl-long-term-cost .non-cdl-long-term-cost-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

section#non-cdl-hero {
    position: relative;
    /* overflow: hidden; */
}

img.non-cdl-icon {
    position: absolute;
    top: 0;
    right: 0;
    height: 115%;
    opacity: .03;
    z-index: 10;
}

.non-cdl-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.non-cdl-hero-content img {
    height: 120px;
    margin-bottom: 60px;
}

section#non-cdl-hero .content-wrapper {
    padding: 80px;
}

.non-cdl-hero-content h2 {
    text-align: center;
}

.non-cdl-hero-content p {
    text-align: center;
}

.non-cdl-hero-images-content-image {
    flex: 0 0 calc((100% / 3) - 30px);
    aspect-ratio: 1 / 1;
    width: calc((100% / 3) - 30px);
    border: 3px solid #fff;
    overflow: hidden;
}

.non-cdl-hero-images-content-image img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

section#non-cdl-hero-images {
    position: relative;
}

.detached-bg.blue-bg {
    width: 100%;
    height: 50%;
    position: absolute;
    z-index: 5;
}

section#non-cdl-hero-images .content-wrapper {
    padding-top: 0px;
        padding-bottom: 20px;
}

.red-line {
    height: 2px;
    width: 100%;
    max-width: calc(1400px - 10%);
    margin: 0 auto 40px;
}

section#non-cdl-livelihood h2 {
    text-align: left;
}

section#non-cdl-livelihood p {
    text-align: left;
}

.non-cdl-insurance-premiums-heading-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    max-width: 1400px;
    padding: 30px 5% 30px;
    margin: 0 auto;
    column-gap: 30px;
}

.non-cdl-insurance-premiums-icon-container {
    flex: 0 0 200px;
}

.non-cdl-insurance-premiums-icon-container img {
    width: 200px;
}

.non-cdl-insurance-premiums-heading-container h2 {
    max-width: 800px;
}

.non-cdl-insurance-premiums-content-text {
    /* padding-left: 5%; */
    max-width: calc(700px - (100vw * .05));
    width: 50vw;
    padding-right: 50px;
}

.non-cdl-insurance-premiums-content-image {
    flex: 0 0 50%;
}

.non-cdl-insurance-premiums-content-text p {
}

section#non-cdl-insurance-premiums {
    padding-bottom: 60px;
}

.non-cdl-fight-content > * {
    text-align: left;
}

.non-cdl-fight-content img {
    width: 260px;
    margin: 0 auto 40px 0;
}

.non-cdl-fight-content {
    text-align: left;
}

section#non-cdl-fight .content-wrapper {
    padding: 80px 5%;
    position: relative;
    z-index: 10;
}

.non-cdl-fight-content > p:last-of-type {
    margin-bottom: 0px;
}

.non-cdl-long-term-cost-content-text {
    max-width: calc(700px - (100vw * .05));
    width: 50vw;
    padding-left: 50px;
    padding: 50px 0px 50px 50px;
}

.non-cdl-long-term-cost-content-image {
    flex: 0 0 50%;
}

section#non-cdl-long-term-cost {
    padding: 60px 0px;
}

.non-cdl-long-term-cost-content-text a.button {
    background-color: var(--red);
}

.non-cdl-protect-yourself-content h2 {
    text-align: left;
}

.non-cdl-protect-yourself-content p {
    text-align: left;
}


/* FMCSA Template */


#fmcsa-hero .fmcsa-hero-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

.fmcsa-intro-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 30px;
}

#what-counts .what-counts-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

#why-it-matters .why-it-matters-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

#legal-support .legal-support-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

/* FMCSA */

section#fmcsa-hero {position: relative;}

img.fmcsa-hero-icon {
    position: absolute;
    top: -100px;
    height: calc(100% + 100px);
    width: auto;
    left: 0;
    opacity: .03;
}

.fmcsa-hero-content-text {
    max-width: calc(700px - (100vw * .05));
    width: 50vw;
    padding-left: 50px;
    padding: 50px 50px 50px 0px;
    display: flex;
    align-items: center;
   
}

.fmcsa-hero-content-text-2.white-bg {
    position: relative;
    flex: 0 0 50%;
    overflow: hidden;
    margin: 80px 0;
    padding: 60px 5% 60px 50px;
}

img.truck-off-screen {
    position: absolute;
    right: -200px;
    height: 480px;
    opacity: .15;
}

.fmcsa-hero-content-text-2-inner {
    width: calc(100% - 180px);
}

.fmcsa-hero-content-text-2-inner p:last-of-type {
    margin-bottom: 0px;
}

.fmcsa-intro-content-image {
    flex: 0 0 200px;
}

.fmcsa-intro-content-image img {
    width: 160px;
}

.fmcsa-intro-content-text {
    flex-grow: 1;
    text-align: left;
}

.fmcsa-intro-content-text h3 {
    color: var(--black);
}

.fmcsa-intro-content-text p:last-of-type {
    margin-bottom: 0px;
}

li p, li strong {
    display: inline-block;
}

.what-counts-content-image {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-counts-content-image img {
    position: absolute;
    top: 100px;
    bottom: 100px;
    right: 0;
    min-width: 100%;
    height: calc(100% - 200px);
    object-fit: cover;
}

.what-counts-content-image-inner {
    position: relative;
    max-width: 377px;
}

.what-counts-content-image-inner h2 {
    color: #fff;
}

.what-counts-content-text.red-bg {
    /* max-width: calc(700px - (100vw * .05)); */
    width: 50vw;
    padding-left: 50px;
    padding: 100px 50px 100px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 50px;
}

.what-counts-content-text-inner {
    max-width: calc(650px - (100vw * .05));
}

.why-it-matters-content-image {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-it-matters-content-image img {
    position: absolute;
    top: 100px;
    bottom: 100px;
    right: 0;
    width: auto;
    min-width: 100%;
    object-fit: cover;
    height: calc(100% - 200px);
    filter: drop-shadow(2px 4px 6px var(--black));
    z-index: 10;
}

.why-it-matters-content-text {
    width: 50vw;
    padding-left: 50px;
    padding: 100px 50px 100px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 50px;
    position: relative;
}

.why-it-matters-content-text-inner {
   max-width: calc(650px - (100vw * .05));
}

.why-it-matters-content-text.blue-bg img {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 70%;
    height: auto;
    opacity: 0.05;
}

.detached-vertical {
    height: 100%;
    width: 10%;
    background-color: var(--blue);
    right: 0;
    position: absolute;
    z-index: 5;
}

/* CSA */

.csa-hero-content-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.empty-heading {
    flex: 0 0 302px;
}

.csa-hero-content-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.csa-hero-image {
    flex: 0 0 400px;
    position: relative;
    height: 90px;
}

.csa-hero-image img {
    height: auto;
    width: 410px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.csa-hero-content-heading-body {
    flex-grow: 1;
    padding: 10px 0px 0px 30px;
}

.body-content-content-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.body-content-content-top-text {
    flex-grow: 1;
    padding-right: 50px;
}

.body-content-content-top-image {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 0px 0px 20px;
}

.body-content-content-top-image img {
    width: 100%;
}

.csa-basics-content h2 {
    text-align: center;
    font-weight: 500;
}

.csa-basics-content p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.csa-basics-content h2 span {
    font-weight: 600;
}

.csa-basics-content-card-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    row-gap: 30px;
    column-gap: 20px;
    flex-flow: wrap;
}

.csa-basics-content-card {
    flex: 0 0 calc((100% / 4) - 20px);
    display: flex;
    flex-direction: column;
    border: 2px solid var(--blue);
    border-radius: 20px;
    overflow: hidden;
}

.card-top {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 6px;
    padding: 8px 16px;
}

.card-top:hover a {
    text-decoration: underline;
    text-decoration-color: var(--red);
}

.page-template-state-cdl-information .card-bottom a:hover {
    text-decoration: underline;
}

.card-top img {
    height: 80px;
}

.card-top h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 0px;
}

.card-bottom {
    background-color: var(--blue);
    padding: 10px;
    flex-grow: 1;
}

.card-bottom p {
    color: var(--white);
}

.csa-score-matters-content-text.blue-bg {
    width: 50vw;
    padding-left: 50px;
    padding: 100px 0px 100px 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 50px;
    position: relative;
}

.csa-score-matters-content-image {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csa-score-matters-content-image img {
    position: absolute;
    /* top: 100px; */
    /* bottom: 100px; */
    right: 0;
    /* width: 100%; */
    /* min-width: 100%; */
    object-fit: cover;
    height: calc(100% - 200px);
    filter: drop-shadow(2px 4px 6px var(--black));
    z-index: 10;
    height: 500px;
    max-width: calc(700px - (100vw * .05));
}

.csa-score-matters-content-image .detached-vertical {
    right: 0;
    right: 0;
}

.csa-score-matters-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 0px;
    column-gap: 0px;
}

/* INTERNAL PAGES */
/* Internal Pages - Internal Hero */

section.internal-header {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  margin-top: 0px;
  background-color: var(--colorGold);
  position: relative;
}

section.internal-header h1, section.internal-header p.hero-title {
    color: var(--white);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 0px;
    position: relative;
    z-index: 10;
    text-align: center;
    font-family: 'OS';
    width: 100%;
}

/* GALLERY PAGE */

.image-gallery-row {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: center;
  flex-flow: wrap;
  max-width: 1000px;
  margin: 40px auto 0;
  row-gap: 14px;
  column-gap: 14px;
  }

  .image-gallery-container {
  height: 188px;
  overflow: hidden;
  }

  .image-gallery-container img {
  min-height: 200px;
  min-width: 100%;
  object-fit: cover;
  transition: .5s all;
  }

  .image-gallery-container img:hover {
  transform: scale(1.05);
  }

  a.image-gallery-container {
  border-bottom: none;
  border-radius: 6px;
  flex: 0 0 calc(20% - 12px);
  }

  a.image-gallery-container:hover {
    border-bottom: none;
  }

  /* STATE */

  .page-template-state-cdl-information .card-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    row-gap: 12px;
    padding: 20px;
}

.page-template-state-cdl-information .card-bottom a {
    color: #fff;
    font-family: 'OS';
    font-weight: 500;
    text-align: left;
}

section#pick-a-state .content-wrapper {
    padding: 50px 30px;
}

section#pick-a-state-content h2 {
    text-align: center;
}

section#pick-a-state-content p {
    text-align: center;
    margin-bottom: 40px;
}

.page-template-state-cdl-information .card-top {
    min-height: 100px;
}

.card-top-link {
    display: flex;            /* Or block, but flex allows easy centering */
    align-items: center;
    justify-content: center;  /* Center the text, adjust as needed */
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    padding: 1em 0;           /* Optional: for height/spacing */
    transition: background 0.2s;
}

.page-template-state-cdl-information .card-bottom i {
    /* margin-right: 6px; */
    width: 28px;
}

.page-template-state-cdl-information .card-bottom i.fa-solid.fa-check {
    padding-left: 3px;
}

.icon-split.reverse {
    flex-direction: row-reverse;
}

.page-template-carriers section#owner-plan .content-wrapper {
    padding-bottom: 0px;
    padding-top: 0px;
}

.page-template-carriers .icon-split, .page-template-carriers .non-icon-split {
    margin-bottom: 50px
}

.page-template-carriers .icon-split, .page-template-carriers .non-icon-split {
    margin-bottom: 50px
}

.page-template-carriers .non-icon-split:last-of-type {
    margin-bottom: 0px;
}

.page-template-carriers .icon-split {
    background-color: #efefef;
    border-radius: 0em;
    padding: 30px;
    margin: 70px 0px;
}

.page-template-carriers .icon-split p:last-of-type {
    margin-bottom: 0px;
}

.carriers-inner-row {
       display: flex;
       justify-content: space-between;
       align-items: stretch;
       column-gap: 20px;
       margin: 70px 0px;
}

.carriers-card {
    flex: 0 0 calc((100% / 3) - 20px);
    background-color: var(--blue);
    padding: 30px;
    border-radius: 0em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.carriers-card h3 {
    color: var(--white);
    text-align: left;
    font-size: 23px;
    max-width: 314px;
    margin: 0 auto 30px 0px;
}

.carriers-card p {
    color: var(--white);
    text-align: left;
    margin-bottom: 0px;
}

.carriers-card i {
    color: var(--lightblue);
    font-size: 60px;
    margin-bottom: 30px;
    padding-top: 10px;
    margin: 0 auto 30px 10px;
}

.page-template-carriers .icon-split-icon img {
    height: 160px;
}

.page-template-carriers .icon-split-icon {
    align-items: center;
}

.reverse .icon-split-text {
    padding-left: 20px;
}

.non-icon-split {
    padding: 0px 20px;
}

.page-template-cdl .why-it-matters-content-text.blue-bg {
    margin: 60px 0 60px;
}

.page-template-cdl .detached-vertical {
    height: calc(100% - 120px);
}

/* Single Legal Article */

.author-box {
    display: flex;
    column-gap: 16px;
    padding: 12px 12px 6px;
    background-color: var(--gray);
    align-items: center;
    width: 370px;
    float: left;
    margin: 10px 30px 20px 0px;
}

.author-image img {
    height: 164px;
    width: auto;
    object-fit: contain;
}

.author-info p {
    margin-bottom: 0px;
    line-height: 160%;
}

.author-info {
    flex: 0 0 auto;
}

.author-info p {
    font-weight: 600;
}

.author-info p.author-link {
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: var(--red);
}

.author-info p:first-of-type {
    font-size: 20px;
}

.author-info p:nth-of-type(2) {
    font-weight: 400;
}

.single-legal-article h1, .single h1 {
    font-size: 40px;
    margin-bottom: 10px;
    max-width: 800px;
    padding-top: 30px;
}

.separator {
    width: 100%;
    height: 2px;
    background-color: var(--red);
    margin-bottom: 40px;
}

p.subheading {
    font-size: 36px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'poppins';
    letter-spacing: 0.04em;
}

.state-hero-content {
    position: relative;
    z-index: 10;
}

.single-legal-article section#state-hero, .single section#state-hero {
    height: 360px;
}

.author-bio {
    background-color: var(--gray);
    padding: 20px;
    margin-top: 40px;
}

.author-bio p {
    margin-bottom: 0px;
    font-style: italic;
}

/* Legal Articles */

.legal-articles-column {
    display: flex;
    flex-direction: column;
    /* flex-flow: wrap; */
    justify-content: space-between;
    align-items: stretch;
    column-gap: 20px;
    row-gap: 40px;
	    max-width: 1000px;
    margin: 0 auto;
}

.legal-article-teaser {
    flex: 0 0 calc((100% / 3) - 20px);
}

.legal-article-teaser h2 {
    font-size: 24px;
    color: var(--blue);
}

#legal-articles {
    scroll-margin-top: 100px; /* adjust as needed */
}

span.page-numbers.current {
    background-color: var(--red);
    color: var(--white);
    font-family: 'poppins';
    font-weight: 400;
    padding: 6px 10px;
}

a.page-numbers {
    font-family: 'poppins';
    font-weight: 400;
    background-color: var(--gray);
    padding: 4px 8px;
        margin: 0 4px;
}

.xp-buttons {

	margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

/* Large CTA */

.page-template-legal-articles section#large-cta, .page-template-testimonials section#large-cta, .page-template-blog section#large-cta  {
    background: var(--red) url('/wp-content/uploads/2025/07/bg-tel4-section.jpg') no-repeat center center / cover;
    min-height: 500px;
    position: relative;
}

.single-legal-article section#large-cta, .single section#large-cta {
    background: var(--red) url('/wp-content/uploads/2025/07/bg-tel3-section.jpg') no-repeat center center / cover;
    min-height: 500px;
    position: relative;
}



section#large-cta .content-wrapper {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-cta-content p {
    color: var(--white);
    text-align: center;
    font-size: 54px;
    font-weight: 700;
    max-width: 720px;
    letter-spacing: .04em;
    margin-bottom: 0px;
    line-height: 120%;
}

.large-cta-content p a {
    color: var(--white);
}

.white-separator {
    width: 100%;
    height: 2px;
    background-color: var(--white);
}

.large-cta-content {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

/* FORM */

.form-cta-content-form {
    flex: 0 0 50%;
}


.page-template-contact-us .form-cta-content input[type="text"],
.page-template-contact-us .form-cta-content input[type="email"],
.page-template-contact-us .form-cta-content input[type="tel"],
.page-template-contact-us .form-cta-content input[type="password"],
.page-template-contact-us .form-cta-content input[type="number"],
.page-template-contact-us .form-cta-content input[type="search"],
.page-template-contact-us .form-cta-content input[type="url"],
.page-template-contact-us .form-cta-content textarea,
.page-template-contact-us .form-cta-content select,

.form-cta-content input[type="text"],
.form-cta-content input[type="email"],
.form-cta-content input[type="tel"],
.form-cta-content input[type="password"],
.form-cta-content input[type="number"],
.form-cta-content input[type="search"],
.form-cta-content input[type="url"],
.form-cta-content textarea,
.form-cta-content select {
    background: var(--red) !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
      height: 46px;
}

.page-template-contact-us input[type="text"],
.page-template-contact-us input[type="email"],
.page-template-contact-us input[type="tel"],
.page-template-contact-us textarea,
.page-template-contact-us select {
    background: var(--white) !important;
    border: 2px solid var(--blue) !important;
    color: var(--black) !important;
      height: 46px;
}

.page-template-contact-us .form-cta-content input[type="text"]::placeholder,
.page-template-contact-us .form-cta-content input[type="email"]::placeholder,
.page-template-contact-us .form-cta-content input[type="tel"]::placeholder,
.page-template-contact-us .form-cta-content input[type="password"]::placeholder,
.page-template-contact-us .form-cta-content input[type="number"]::placeholder,
.page-template-contact-us .form-cta-content input[type="search"]::placeholder,
.page-template-contact-us .form-cta-content input[type="url"]::placeholder,
.page-template-contact-us .form-cta-content textarea::placeholder,

.form-cta-content input[type="text"]::placeholder,
.form-cta-content input[type="email"]::placeholder,
.form-cta-content input[type="tel"]::placeholder,
.form-cta-content input[type="password"]::placeholder,
.form-cta-content input[type="number"]::placeholder,
.form-cta-content input[type="search"]::placeholder,
.form-cta-content input[type="url"]::placeholder,
.form-cta-content textarea::placeholder {
    color: var(--white) !important;
    opacity: 1 !important; 
    font-family: 'poppins', sans-serif;
    margin-bottom: 0px;
    font-size: 14px;
}

.page-template-contact-us input[type="text"]::placeholder,
.page-template-contact-us input[type="email"]::placeholder,
.page-template-contact-us input[type="tel"]::placeholder,
.page-template-contact-us textarea::placeholder{
    color: #555 !important;
}

/* If you want to override Gravity Forms buttons to match */
.form-cta-content .gform_button, 
.form-cta-content button, 
.form-cta-content input[type="submit"] {
    background: var(--white) !important;
    border: 2px solid var(--white) !important;
    color: var(--red) !important;
    font-family: 'OS', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.6em 1.6em;
        font-size: 16px;
    line-height: 140%;
}

.page-template-contact-us .gform_button, 
button, 
.page-template-contact-us input[type="submit"] {
    background: var(--red) !important;
    border: none;
    color: var(--white) !important;
    font-family: 'OS', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.6em 1.6em;
        font-size: 16px;
    line-height: 140%;
}

body .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 4%;
    grid-row-gap: 20px;
}

body .gform-footer.gform_footer.top_label {
    padding-top: 10px;
}

/* Testimonials */

section#large-cta {
    position: relative;
}

.testimonial p {
    margin-bottom: 4px;
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 50px;
	    max-width: 1000px;
    margin: 0 auto;
}

.testimonial p:first-of-type {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial p:nth-of-type(2) {
    font-weight: 600;
    letter-spacing: .04em;
}

.fmcsa-intro-content-image i {
    color: var(--red);
    font-size: 130px;
}

.page-template-contact-us #owner-hero .content-wrapper {
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}


.page-template-contact-us #owner-hero .content-wrapper .owner-hero-content {
    margin: 0 auto;
}

.contact-page-form-container {
    margin-top: 50px;
    max-width: 800px;
    margin: 50px auto 0px;
}

/* Table */

table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'os', Arial, sans-serif;
  background: var(--white);
  color: var(--gray, #444); /* fallback for --gray */
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-radius: 0px;
  overflow: hidden;
}

thead th {
  font-weight: 600;
  background: var(--blue, #0056d6);
  color: var(--white, #fff);
  padding: 1.1em 1.2em;
  font-size: 1.07rem;
  border-bottom: 2px solid var(--red, #d00);
  text-align: left;
  letter-spacing: 0.02em;
}

tbody td {
  font-weight: 400;
  padding: 1em 1.2em;
  border-bottom: 1px solid var(--gray, #e0e0e0);
  font-size: 1rem;
  background: var(--white, #fff);
  color: var(--black, #d00);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background: var(--blue, #0056d6);
  color: var(--white, #fff);
  transition: background 0.2s, color 0.2s;
}

tbody td:first-child {
  font-weight: 600;
  color: var(--red, #d00);
  width: 220px;
}

/* Class B */

.page-template-class-b .body-content-content-bottom {
    padding-top: 0px;
}

.page-template-class-b .body-content-content-bottom h2 {
    text-align: center;
    margin-bottom: 40px;
}

.page-template-class-b .body-content-content-bottom p {
    max-width: 1000px;
    margin: 0 auto;
}

.page-template-class-b .owner-plan-content h2 {
    text-align: center;
}

@media (max-width: 600px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    width: 100%;
  }
  thead tr {
    display: none;
  }
  tbody td {
    padding: 0.9em 1em;
    border: none;
    border-bottom: 1px solid var(--gray, #eee);
    position: relative;
  }
  tbody td:first-child {
    color: var(--blue, #0056d6);
    background: var(--white, #fff);
    border-bottom: none;
    font-size: 1.08rem;
    padding-top: 1.3em;
  }
}


/* FAQ */

 .panel p {
    text-align: left;
    font-size: 20px;
  }

  .panel p:last-of-type {
    margin-bottom: 0px;
}

  .panel {
    height: auto;
    display: none;
    padding: 30px;
    background: var(--lightblue);
  }

  .accordion-title-container:not(.mobile-menu-accordion):hover {
    cursor: pointer;
  }

  .accordion-title-container:not(.mobile-menu-accordion) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    background-color: var(--colorWhite);
    margin-bottom: 16px;
    padding-right: 16px;
    border-radius: 0px;
    border-bottom: 1px solid #ccc;
  }

  .accordion-title-container:not(.mobile-menu-accordion) h3 {
    flex-grow: 1;
    text-align: left;
    margin-bottom: 0px;
    color: var(--colorDark);
    font-size: 28px;
    font-weight: 600;
    text-transform: capitalize;
  }

  .faq-accordion-title-container.accordion {
    display: flex;
    justify-content: space-between;
}

span.fa-solid.fa-angle-down.title-icon {
    display: flex;
    align-items: center;
}

.faq-content-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal-width columns */
    gap: 20px; /* Spacing between items in both directions */
}

.single-faq {
  break-inside: avoid; /* Prevent items from breaking into the next column */
  margin-bottom: 20px; /* Add spacing between items */
  background: var(--blue);
  border-radius: 0px;
  padding: 0px;
}

.faq-accordion-title-container.accordion h3 {font-family: 'os', sans-serif;letter-spacing: .02em;font-size: 24px;color: var(--white);text-transform: none;font-weight: 600;text-align: left;line-height: 160%;margin-bottom:  0px;padding: 20px;};

.faq-accordion-title-container.accordion span {
    padding-right: 16px;
    display: flex;
    align-items: center;
}

.faq-accordion-title-container.accordion span {
    padding-right: 16px;
    display: flex;
    align-items: center;
}

.panel li {
    font-size: 20px;
    color: var(--black);
    font-family: 'poppins';
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 160%;
    text-align: left;
}

.faq-accordion-title-container.accordion.open span {
    padding-right: 16px;
    display: flex;
    align-items: center;
}

section#faq-outro .content-wrapper {
    padding-top: 10px;
}

/* Leadership */

.page-template-leadership .why-it-matters-content-image img {
    height: 400px;
    width: auto;
    object-fit: contain;
    right: 0px;
    min-width: 0px;
}

.page-template-leadership .why-it-matters-content-text {
    flex-grow: 1;
    width: auto;
}

.page-template-leadership .why-it-matters-content-image {
    flex: 0 0 28%;
    min-width: 400px;
}

.page-template-leadership .why-it-matters-content-text-inner {
    max-width: calc(100% - (100vw * .05));
}

.detached-vertical {
    background-color: var(--blue);
}

/* RESPONSIVE */

	@media screen and (max-width: 1399px) {
        .menu-main-menu-container li a {
    font-size: 12px;
}

#menu-main-menu li.menu-item-has-children>a:after {
    margin: 0 0 0 0px;
}


	}



@media screen and (min-width: 1280px) {

    .mobile-only {
    display: none !important;
    }

}


	@media screen and (max-width: 1279px) {
        #hero .hero-content {
    flex-direction: column;
}

.hero-content-image {
    flex: none;
    height: 300px;
}

.home .hero-content-body {
    padding: 40px 30px;
    margin: 0 auto;
    max-width: 700px;
}

.multiple-buttons-container {
    flex-direction: column;
    row-gap: 12px;
    margin: 0 auto;
}

a.button.alt {
    text-align: center;
}

#form-cta .form-cta-content {
    flex-direction: column;
}

.form-cta-content-body > * {
    text-align: center;
}

.form-cta-content-body {align-items: center;}

#benefits .benefits-content .benefits-list {
    flex-direction: column;
    row-gap: 40px;
}

#video .video-content {
    flex-direction: column;
    row-gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.xp-buttons {
    flex-direction: column;
    row-gap: 30px;
}

.experience-content a.button {
    width: 280px;
}

#cta .cta-content {
    flex-direction: column;
    row-gap: 30px;
}

.cta-content-text h2 {
    text-align: center;
}

#about .about-content {
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.about-content-body h2 {
    text-align: center;
    margin: 0 auto 30px;
}

.about-content-body p {
    text-align: center;
}

.about-content-buttons {
    text-align: center;
    margin-bottom: 50px;
}

.about-content-images {
    justify-content: center;
}

.hero-content-body h1 {
    font-size: 32px;
}

#carrier .carrier-content {
    flex-direction: column;
}

.carrier-content-body {
    max-width: 700px;
    margin: 0 auto;
}

.experience-content {
    max-width: 700px;
    margin: 0 auto;
}

.content-wrapper {
    padding: 40px 30px;
    max-width: 700px;
}

.form-cta-content-form {}

#form-cta .content-wrapper {
    max-width: 700px;
}

.partner-logos {
    flex-flow: wrap;
    justify-content: center;
}

.partner-logos img {
    width: 160px;
}

section#partnerships .content-wrapper {
    max-width: 700px;
}

.gform-footer.gform_footer.top_label {
    justify-content: center;
}

#owner-years .owner-years-content {
    flex-direction: column;
}

.owner-years-content-text {
    flex: none;
    padding: 0px;
}

#non-cdl-long-term-cost .non-cdl-long-term-cost-content {
    flex-direction: column;
}

.non-cdl-long-term-cost-content-image {
    flex: none;
    height: 500px;
}

.non-cdl-long-term-cost-content-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 30px;
            width: 100%;
}

#owner-hero .content-wrapper {
    justify-content: center;
    margin: 0 auto;
}

.icon-split, .icon-split.reverse {
    flex-direction: column;
    padding-top: 0px !important;
}

.icon-split-icon {
    margin: 0 auto;
}

.icon-split-icon img {
    max-height: 120px;
}

.carriers-inner-row {
    flex-direction: column;
    row-gap: 30px;
}

.body-content-content-top {
    flex-direction: column;
}

.body-content-content-top-text {
    padding: 0px;
}

.body-content-content-top-image {
    display: none;
}

.owner-hero-content {
    margin: 0px;
}

.owner-hero-content h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

.csa-score-matters-content {
    flex-direction: column;
}

.csa-score-matters-content-text.blue-bg {
    width: 100%;
    padding: 40px 30px;
}

.csa-score-matters-content-text-inner {
    max-width: 700px;
    margin: 0 auto;
}

.detached-vertical {
    display: none;
}

.csa-score-matters-content-image {
    height: 500px;
    flex: none;
    display: block;
}

.csa-score-matters-content-image img {
    width: 100%;
    max-width: none;
    position: absolute;
    height: 100%;
    filter: none;
    object-position: top;
    height: 500px;
}

.page-template-safety-rating #non-cdl-long-term-cost .non-cdl-long-term-cost-content {
    flex-direction: column-reverse;
}

.fmcsa-intro-content-image {
    display: none;
}

#what-counts .what-counts-content {
    flex-direction: column;
}

.what-counts-content-image {
    flex: none;
    height: 500px;
}

.what-counts-content-image img {
    top: 0px;
    bottom: 0px;
    height: 100%;
    object-position: top;
}

.what-counts-content-text.red-bg {
    width: 100%;
    padding: 40px 30px;
}

.what-counts-content-text-inner {
    max-width: 700px;
    margin: 0 auto;
}

#why-it-matters .why-it-matters-content {
    flex-direction: column;
}

.why-it-matters-content-image {
    width: 100%;
    flex: none;
    height: 500px;
}

.why-it-matters-content-image img {
    top: 0;
    bottom: 0;
    height: 100%;
    filter: none;
}

.page-template-cdl .why-it-matters-content-text.blue-bg {
    margin: 0px;
}

.why-it-matters-content-text {
    width: 100%;
}

.why-it-matters-content-text-inner {
    max-width: 700px;
    margin: 0 auto;
}

.why-it-matters-content-text.blue-bg img {
    display: none;
}

.page-template-obtaining-cdl .csa-score-matters-content {
    flex-direction: column-reverse;
}

.page-template-CDL-violations .csa-score-matters-content {
    flex-direction: column-reverse;
}

.page-template-CDL-suspensions .csa-score-matters-content {
    flex-direction: column-reverse;
}

#owner-years .owner-years-content {
    flex-direction: column-reverse;
}

.owner-years-content-image {
    flex: none;
    height: 400px;
    width: auto;
}

.owner-years-content-text h2 {
    text-align: center;
    margin: 0 auto 40px;
}

.page-template-class-b .csa-score-matters-content {
    flex-direction: column-reverse;
}

.csa-hero-content-heading {
    justify-content: center;
}

.empty-heading {
    flex: none;
}

.csa-hero-content-heading-text h1 {
    text-align: center;
    font-size: 32px;
}

.csa-hero-content-body {
    flex-direction: column;
}

.csa-hero-image {
    flex: none;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.csa-hero-image img {
    height: auto;
    max-width: 280px;
    position: relative;
}

#owner-why .owner-why-content {
    flex-direction: column;
}

.owner-why-content-image {
    display: none;
}

.owner-why-content-text {
    flex: none;
    max-width: none;
    padding: 40px 30px;
}

.owner-why-content-inner {
    max-width: 700px;
    margin: 0 auto;
}

.non-cdl-hero-images-content {
    column-gap: 10px;
}

.non-cdl-hero-images-content-image {
    flex: 0 0 calc((100% / 3) - 10px);
    width: calc((100% / 3) - 10px);
}

#non-cdl-hero-images .non-cdl-hero-images-content {
    column-gap: 10px;
}

#non-cdl-insurance-premiums .non-cdl-insurance-premiums-content {
    flex-direction: column;
}

.non-cdl-insurance-premiums-content-text {
    width: 100%;
    padding: 40px 30px;
}

.page-template-non-cdl #non-cdl-long-term-cost .non-cdl-long-term-cost-content {
    flex-direction: column-reverse;
}

#fmcsa-hero .fmcsa-hero-content {
    flex-direction: column;
    padding: 40px 30px;
}

.fmcsa-hero-content-text {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0px;
}

.fmcsa-hero-content-text-2-inner {
    width: 100%;
}

.footer-row {
    column-gap: 20px;
	flex-direction: column;
}

.fmcsa-hero-content-text-inner h1 {
    font-size: 32px;
}

.page-template-fmcsa .what-counts-content-image {
    display: none;
}

.csa-basics-content-card {
    flex: 0 0 calc((100% / 2) - 20px);
}

.large-cta-content p {
    font-size: 28px;
}

section#state-hero {
    padding: 40px 30px;
}

.single-legal-article h1, .single h1 {
    font-size: 28px;
}

.author-box {
    width: 100%;
    float: none;
}

.footer-logo-column {
    flex: none;
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-info-column {
    flex: none;
    margin: 0 auto;
}

.footer-info-column p {
    text-align: center;
}


.state-hero-content h1 {
    text-align: center;
}

p.legal-article-date {
    text-align: center;
}

div#bottom-phone-bar {
    position: fixed;
    bottom: 0px;
    background: var(--red);
    width: 100%;
    z-index: 15;
}



    /* Header Mobile */

    header.mobile-only img {
        height: 54px;
    }

      header.mobile-only {
        display: flex;
        padding: 0px 23px 0px 20px;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        position: fixed;
        z-index: 1000;
        background: #fff;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
    }

    header.mobile-only a.logo-link {
        flex: 0 0 180px;
        display: flex;
        align-items: center;
        padding: 3px 0;
    }

    .fixed-header-space.mobile-only {
        height: 70px;
        display: block;
        width: 100%;
    }

    /* Hamburger Icon */

    .mobile-navbar ul {
        list-style: none;
    }

    .mobile-navbar {
        display: flex;
        align-items: center;
        margin-top: 0px;
    }

    .mobile-navbar ul {
        margin-bottom: 0px;
    }

    #menu-icon {
        width: 40px;
        height: 30px;
        position: relative;
        margin: 7px auto 6px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        cursor: pointer;
        z-index: 999;
    }

    #menu-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--blue);
        border-radius: 6px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    #menu-icon.open span {
        background: var(--blue);
    }

    #menu-icon span:nth-child(1) {
        display: none;
    }

    #menu-icon span:nth-child(2),
    #nav-icon span:nth-child(3) {
        top: 13px;
    }

    #menu-icon span:nth-child(4) {
        top: 26px;
    }

    #menu-icon.open span:nth-child(1) {
        display: none;
    }

    #menu-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 12px;
    }

    #menu-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 11px;
    }

    #menu-icon.open span:nth-child(4) {
        top: 12px;
        width: 0%;
        left: 50%;
        opacity: 0;
    }

    /* Mobile Nav Menu */



    .sidenav.open {
        height: calc(100vh - 120px);
        padding-bottom: 154px;
        padding-top: 20px;
    }

    .sidenav a {
        padding: 3px;
        text-decoration: none;
        font-size: 21px;
        color: var(--blue);
        display: block;
        transition: 0.3s;
        font-family: "Mont Bold", sans-serif;
        text-align: center;
    }

    #sidenav .faq-accordion-title-container.mobile-menu-accordion h3 {
        font-size: 24px;
        color: var(--blue);
        margin-bottom: 0px;
        margin-right: 10px;
    }

    #sidenav h3 {
        font-size: 24px;
        color: var(--colorDarkest);
    }

      #sidenav .faq-accordion-title-container.mobile-menu-accordion {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 10px;
        margin-bottom: 10px;
    }

    #sidenav .panel {
        padding: 10px 0px;
    }

    .sidenav {
        height: 0px;
        width: 100%;
        position: fixed;
        z-index: 990;
        top: 70px;
        left: 0;
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(10px);
        overflow-x: hidden;
        transition: 0.5s all;
        -webkit-overflow-scrolling: touch;
        padding-right: 20px;
        padding-left: 20px;
      }

      .mobile-navbar ul {
        list-style: none;
        margin-top: 0px;
      }

      ul#menu-mobile-menu {
          display: block;
      }
  #mobile-nav li {
        text-align: left;
        border-bottom: none;
        display: block;
        margin-bottom: 10px;
      }

      #mobile-nav li:last-of-type {
        border: none;
      }

      #mobile-nav a, #mobile-nav ul.sub-menu a {
          padding: 2px;
          text-decoration: none;
          font-size: 19px;
          color: var(--blue);
          display: block;
          transition: 0.3s;
          font-family: 'os';
          font-weight: 700;
          text-transform: capitalize;
          letter-spacing: .02em;
		  text-align: right;
      }

      a.mobile-submenu-link {
        color: var(--colorDarkest);
        font-size: 20px;
        margin-left: 20px;
      }

      .sidenav.open {
        height: calc(100vh - 80px);
        padding-bottom: 100px;
        padding-top: 50px;
      }

      #mobile-nav ul {
        list-style: none;
        padding-left: 0px;
      }
      


      .fixedPosition {
        position: fixed;
      }

      .bottom-phone-bar-content {
    background-color: var(--red);
    bottom: 0;
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.bottom-phone-bar-content p {
    color: #fff;
    margin: 0;
}

.bottom-phone-button-container a.learn-more {
    background-color: #fff;
    padding: 4px 10px;
    display: inline-block;
    color: var(--red);
    font-family: 'poppins';
    font-weight: 600;
}

header.mobile-only {
    background: var(--white);
}

img.logo {
    height: 70px;
}

	.desktop {
			display: none !important;
		}

		       .subfooter {

    padding: 20px 50px 100px;
}
		
		.fixed-header-space {
			height: 70px;
		}
		
		.page-template-leadership .why-it-matters-content-image {
    flex: none;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-template-leadership .why-it-matters-content-image img {
    position: relative;
}

	}

	@media screen and (min-width: 1001px) {



	}

	@media screen and (max-width: 1000px) {

		.desktop {
			display: none !important;
		}
		
		.author-box {

		      width: 100%;
        	float: none;
		}


  }

  @media screen and (max-width: 900px) {

  }

  @media screen and (max-width: 780px) {

    .csa-basics-content-card {
    flex: 0 0 100%;
}

.page-template-state-cdl-information .card-bottom a {
    text-align: center;
    margin: 0 auto;
}
	  
	  .about-content-images {
    flex-direction: column;
    row-gap: 30px;
}

.founder p {
    text-align: center;
}
	  
	  .page-template-leadership .why-it-matters-content-image img {
    width: 280px;
}

  }

  @media screen and (max-width: 520px) {

  }
