/*
  Theme Name: CPLG
  Theme URI: https://247lemonlaw.com
  Version: 1.0 / 2024

  Colors
  ------
  main
    #081D3F  Navy
    #5291E2  Sky Blue
    #F2B705  Gold
    #3A3A3A  Black
    #C8D3D7  Gray
    #F7F7F7  Gray Light
  accents
    #103778  Blue
    #10784E  Green
    #FCD55F  Gold
    #1C1C1C  Black

  Webfonts
  --------
  "Inter", sans-serif;

*/

/* ====================================================================
   Global
   ==================================================================== */

/* -------------------[ Layout ]------------------- */

* {
  position: relative;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  background-color: #f7f7f7;
}

.wrap {
  width: 92%;
  max-width: 1224px;
  margin: auto;
  padding: 0 4%;
}

.columns {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.columns .col {
  flex: 1;
}

@media only screen and (max-width: 960px) {
  .columns {
    display: block;
  }
  .columns .col {
    width: auto;
    margin: auto;
  }
}

/* -------------------[ Type ]------------------- */

body,
html {
  color: #3a3a3a;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
}

@media only screen and (max-width: 1200px) {
  body,
  html {
    font-size: 16px;
  }
}

a:link,
a:visited,
a:active {
  color: #5291e2;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  color: #3a3a3a;
  text-decoration: none;
}

a.link-black {
  color: #3a3a3a;
}

a.link-black:hover {
  color: #5291e2;
}

p {
  margin: 0 0 18px 0;
}

h1 {
  margin: 0 0 20px 0;
  font-size: 44px;
  line-height: 52px;
  font-weight: 800;
}

h1.page-title {
  margin: 48px auto;
}

.title-blue {
  padding: 48px 0;
  background-color: #081d3f;
  background-image: linear-gradient(180deg, rgba(8, 29, 63, 0) 0%, #081d3f 100%),
    url("images/pattern.png");
  color: #fff;
}

h2 {
  margin: 0 0 20px 0;
  font-size: 37px;
  line-height: 44px;
  font-weight: 800;
}

h2 span {
  font-size: 22px;
  line-height: 31px;
  font-weight: 400;
}

h3 {
  margin: 0 0 12px 0;
  font-size: 28px;
  line-height: 34px;
  font-weight: 800;
}

h4 {
  margin: 0 0 12px 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

h5,
h6 {
  margin: 0 0 12px 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
}

@media only screen and (max-width: 960px) {
  h1 {
    font-size: 38px;
    line-height: 46px;
  }
}

@media only screen and (max-width: 660px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
  h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

@media only screen and (max-width: 460px) {
  h1 {
    font-size: 22px;
    line-height: 30px;
  }
}

/* -----[ Lists ]----- */

/* -[ Phone ] */

ul.list-phone li {
  padding: 0 0 12px 0;
  list-style-type: none;
}

ul.list-phone li::before {
  display: inline-block;
  position: relative;
  top: 12px;
  height: 30px;
  width: 30px;
  margin-right: 4px;
  background: url("images/icons/phone.svg") no-repeat;
  content: "";
}

ul.list-phone li a {
  color: #3a3a3a;
}

ul.list-phone li a:hover {
  color: #5291e2;
}

/* -[ Home ] */

ul.list-icon {
  list-style: none;
  padding-left: 0;
}

ul.list-home li {
  padding-left: 50px;
  margin: 10px 0 20px 0;
}

ul.list-home li:nth-child(1)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-image: url("images/icons/list-icon-paper-ribbon.svg");
}

ul.list-home li:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-image: url("images/icons/list-icon-dollars.svg");
}

/* -[ CTA2 ] */

ul.list-checkmarkvalidated li {
  padding-left: 50px;
  margin: 10px 0 20px 0;
}

ul.list-checkmarkvalidated li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-image: url("images/icons/list-icon-checkmark-validated.svg");
}

/* -------------------[ Title Bubble ]------------------- */

.title-bubble {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 24px;
  background: #3a3a3a;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

/* -------------------[ Buttons ]------------------- */

li.button a,
a.button {
  display: inline-block;
  border-radius: 14px;
  font-weight: 700;
  color: #3a3a3a;
  text-align: center;
}

#header .nav-header li.button-header a {
  padding: 12px 16px;
  border: 1px solid #fcd55f;
  background: #f2b705;
  font-size: 16px;
}

#header .nav-header li.button-header a:hover {
  border: 1px solid #3a3a3a;
  background: #fff;
  color: #3a3a3a;
}

a.button-white {
  margin-top: 10px;
  padding: 12px 16px;
  border: 1px solid #3a3a3a;
  background: #fff;
  color: #3a3a3a;
  font-size: 16px;
  font-weight: 700;
}

a.button-white:hover {
  border: 1px solid #fcd55f;
  background: #f2b705;
  color: #3a3a3a;
}

a.button-yellow {
  min-width: 150px;
  height: 22px;
  padding: 12px 54px 12px 30px;
  border: 1px solid #fcd55f;
  background: #f2b705;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08),
    0px 6px 8px 4px rgba(0, 0, 0, 0.04);
  font-size: 17px;
}

a.button-yellow:hover {
  border: 1px solid #3a3a3a;
  background: #fff;
  color: #3a3a3a;
}

a.button-yellow:after {
  position: absolute;
  margin-top: -1px;
  margin-left: 7px;
  content: url("images/icons/arrow-right.svg");
}

a.button-call {
  display: inline-block;
  width: 216px;
  margin: 12px auto;
  padding: 4px 8px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #3a3a3a;
  font-size: 16px;
  text-align: center;
}

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

a.button-call img {
  top: 3px;
  width: 18px;
  height: auto;
}

a.button-center {
  display: block;
  margin: 40px auto 0 auto;
}

/* -------------------[ HR ]------------------- */

hr {
  width: 100%;
  height: 1px;
  margin: 32px 0;
  border: none;
  background-color: #3a3a3a;
}

/* -------------------[ Images ]------------------- */

.wrap img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* -------------------[ Header ]------------------- */

#header-wrap {
  background-color: #f7f7f7;
}

#header {
  display: flex;
  height: 65px;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 25px;
  justify-content: start;
  align-items: center;
}

#header .logo,
#footer .logo {
  margin-right: 16px;
}

#header .logo img,
#footer .logo img {
  width: auto;
  height: 65px;
}

#header .title,
#footer .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
  font-size: 14px;
}

#header .title img,
#footer .title img {
  width: auto;
  height: 20px;
}

#header .nav-header {
  margin-left: auto;
}

#header .nav-header ul {
  list-style: none;
}

#header .nav-header li {
  display: inline-block;
  margin: 0 0 0 24px;
}

#header .nav-header li:first-child {
  margin: 0;
}

#header .nav-header a {
  padding-bottom: 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

#header .nav-header a,
#header .nav-header ul li.current-menu-item ul li a,
#header .nav-header li#menu-item-32 a {
  color: #3a3a3a;
}

#header .nav-header a:hover,
#header .nav-header li.current-menu-item a,
#header .nav-header li.nav-seeall a {
  color: #5291e2;
}

#header .nav-header li a:after {
  position: relative;
  top: 2px;
  right: -5px;
  opacity: 0.5;
  content: url("images/icons/caret-up.svg");
}

#header .nav-header li:hover a:after {
  display: inline-block;
  opacity: 1;
  content: url("images/icons/caret-down.svg");
}

#header .nav-header li a:only-child:after {
  content: "";
}

#header .nav-header li.nolink a {
  cursor: default;
}

#header .nav-header li.nolink li a {
  cursor: pointer;
}

#header .nav-header ul ul {
  z-index: 1;
  float: left;
  position: absolute;
  top: 54px;
  left: -9999px;
  width: 260px;
  padding: 16px 16px 12px 16px;
  border-radius: 12px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08),
    0px 6px 8px 4px rgba(0, 0, 0, 0.04);
  background: #fff;
  opacity: 1;
  transition: opacity 200ms ease-in, visibility 200ms ease-in;
}

#header .nav-header ul li:hover > ul {
  left: auto;
  opacity: 1;
}

#header .nav-header ul ul li {
  display: grid;
  width: 100%;
  margin: 4px 0;
  padding: 4px 0;
}

#header .nav-header ul ul li a {
  position: relative;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

#header .nav-header ul ul li a:hover,
#header .nav-header ul ul li.current-menu-item a {
  background: #f7f7f7;
  color: #3a3a3a;
}

.mobile-menu-panel {
  display: none;
}

@media only screen and (max-width: 1100px) {
  #header .title,
  #footer .title {
    font-size: 0;
  }
}

@media only screen and (max-width: 960px) {
  #header {
    display: flex;
    height: 65px;
    padding-top: 25px;
    justify-content: start;
    align-items: center;
    flex-shrink: 0;
  }
  #header .nav-header li {
    display: none;
  }
  #header .nav-header li.nav-button {
    display: block;
    margin: -4px 54px 0 0;
  }
  #click-menu {
    display: block;
    position: absolute;
    top: 32px;
    right: 4%;
    z-index: 1;
  }
  #click-menu .menu-link {
    padding: 9px;
    border-radius: 10px;
    border: 1px solid #3a3a3a;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08),
      0px 6px 8px 4px rgba(0, 0, 0, 0.04);
    content: url("images/icons/menu.svg");
  }
  #click-menu .active {
    display: none;
  }
  .mobile-menu-panel {
    display: block;
    position: fixed;
    right: -100%;
    z-index: 2;
    width: 84%;
    max-width: 84%;
    padding: 30px 8%;
    margin-top: 115px;
    background: #fff;
  }
  .mobile-menu-panel .menu-close {
    position: absolute;
    top: -83px;
    right: 4%;
    z-index: 3;
    padding: 9px;
    border-radius: 10px;
    border: 1px solid #3a3a3a;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08),
      0px 6px 8px 4px rgba(0, 0, 0, 0.04);
    content: url("images/icons/x.svg");
  }
  .mobile-menu-panel ul {
    color: #3a3a3a;
    font-size: 16px;
    font-weight: 500;
    list-style-type: none;
  }
  .mobile-menu-panel ul li {
    padding-top: 8px;
  }
  .mobile-menu-panel ul li a {
    color: #3a3a3a;
  }
  .mobile-menu-panel ul li a:hover,
  .mobile-menu-panel ul li.nav-seeall a {
    color: #5291e2;
  }
  .mobile-menu-panel ul li.menu-mobile-title {
    margin-bottom: 8px;
    font-weight: 700;
    cursor: inherit;
  }
  .mobile-menu-panel ul li.menu-mobile-title a:hover {
    color: #3a3a3a;
  }
  .mobile-menu-panel li:after {
    display: block;
    width: 100%;
    height: 0.5px;
    background-color: #c8d3d7;
    margin: 20px 0 10px 0;
    content: "";
  }
  .mobile-menu-panel li:last-child:after,
  .mobile-menu-panel li li:after {
    display: none;
  }
  .mobile-menu-panel .call {
    margin-top: 20px;
  }
  .mobile-menu-panel .call a {
    color: #3a3a3a;
  }
  .mobile-menu-panel .call img {
    top: 3px;
    width: 16px;
    height: auto;
  }
}

@media only screen and (max-width: 600px) {
  #header .logo {
    margin-right: 10px;
  }
  #header .logo img {
    height: 40px;
  }
}

/* -------------------[ CTAs - Found in Options for Global use ]------------------- */

/* -----[ Yellow Checkmark ]----- */

.cta1 {
  margin: 96px auto;
  padding: 96px 48px 48px 48px;
  border-radius: 16px;
  font-size: 22px;
  line-height: 31px;
  background-color: #fcd55f;
  background-image: url("images/icons/checkmark-validated.svg");
  background-position: bottom 48px right 48px;
  background-size: 96px;
  background-repeat: no-repeat;
}

.cta1 h2 {
  margin: 0;
}

@media only screen and (max-width: 960px) {
  .cta1 {
    margin: 72px auto;
    padding: 96px 24px 146px 24px;
    background-position: bottom 24px left 24px;
  }
}

/* -----[ Yellow Logo ]----- */

.cta2 {
  margin: 96px auto;
  padding: 96px 48px 48px 48px;
  border-radius: 16px;
  font-size: 22px;
  line-height: 31px;
  background-color: #fcd55f;
  background-image: url("images/cplg-logo-black.svg");
  background-position: bottom 48px right 48px;
  background-size: 96px;
  background-repeat: no-repeat;
}

.cta2 .content {
  width: 65%;
}

.cta2 .content li {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.cta2 .content ul.list-checkmarkvalidated {
  padding-top: 12px;
}

@media only screen and (max-width: 960px) {
  .cta2 {
    margin: 72px auto;
    padding: 96px 24px 146px 24px;
    background-position: bottom 24px right 24px;
  }
  .cta2 .content {
    width: 100%;
  }
}

/* -----[ Green Checkmark ]----- */

.cta3 {
  max-width: 600px;
  margin: auto;
  padding: 96px 0;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.cta3 img {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px auto;
}

.cta3 a.button {
  margin-top: 16px;
}

/* -----[ Steps ]----- */

.steps {
  max-width: 960px;
  margin: auto;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}

.steps h2 {
  margin: auto;
}

.steps h2:after {
  display: block;
  width: 40px;
  height: 6px;
  margin: 24px auto;
  background-color: #f2b705;
  content: "";
}

.steps .columns {
  gap: 60px;
}

.steps .columns .col {
  align-self: flex-start;
}

.steps .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 48px;
  margin: 16px auto 24px auto;
  border-radius: 48px;
}

.steps .number {
  background-color: #081d3f;
  color: #fff;
  font-size: 37px;
  font-weight: 800;
  line-height: 44px;
}

.steps .check {
  background-color: #10784e;
}

.steps .check img {
  width: 40px;
  height: 40px;
  margin: auto;
}

@media only screen and (max-width: 960px) {
  .steps {
    max-width: 265px;
    margin: auto;
  }
  .steps .item {
    margin: 36px auto 24px auto;
  }
}

/* -------------------[ Jump Links - Single States and Team ]------------------- */

#state ul.jump-links {
  margin: 60px 0 0 0;
}

#team ul.jump-links {
  margin: 10px 0 0 0;
}

ul.jump-links {
  list-style-type: none;
}

ul.jump-links li {
  padding-bottom: 10px;
}

ul.jump-links li a {
  color: #081D3F;
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
}

ul.jump-links li a:hover {
  color: #C8D3D7;
}

ul.jump-links li a:before {
  margin-right: 10px;
  border-right: 3px solid #081D3F;
  content: "";
}

ul.jump-links li a:hover:before {
  border-right: 3px solid #C8D3D7;
}

@media only screen and (max-width: 960px) {
  ul.jump-links {
    display: none;
  }
}

/* -------------------[ Settlements ]------------------- */

#footer-bar {
  display: flex;
  align-items: center;
  margin-top: 96px;
  padding: 20px 0;
  gap: 40px;
  background: #c8d3d7;
  text-align: center;
}

#footer-bar .wrap {
  max-width: 1800px;
}

#footer-bar h4 {
  margin: 0 0 10px 0;
}

#footer-bar .footer-rs {
  --fade-end: 75%;
  mask-image: linear-gradient( to right, white var(--fade-end), transparent );
}

#footer-bar .footer-rs .item .item-flex {
  display: flex;
  align-items: center;
  justify-self: center;
  padding: 0 24px;
}

#footer-bar .footer-rs .item .item-flex img {
  margin: 0 10px;
}

@media only screen and (max-width: 960px) {
  #footer-bar {
    margin-top: 72px;
  }
  #footer-bar .footer-rs {
    --fade-end: 75%;
    mask-image: none;
  }
  #footer-bar .footer-rs .item .item-flex {
    justify-content: center;
    padding: 0;
  }
}

/* -------------------[ Footer ]------------------- */

#footer {
  padding: 96px 0;
}

#footer:after {
  z-index: -100;
  background-image: url("images/footer-background.svg");
  background-position: top -430px left -330px;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.02;
  content: "";
}

#footer a {
  color: #3a3a3a;
}

#footer a:hover {
  color: #5291e2;
}

#footer .main {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  gap: 26px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #c8d3d7;
}

#footer .main .col {
  flex: 1;
  font-size: 17px;
  line-height: 22px;
  font-weight: 500;
}

#footer .main .logo {
  float: left;
}

#footer .main .title {
  font-size: 14px;
  line-height: 20px;
}

#footer .main .byline {
  display: flex;
  margin: 15px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

#footer .main .social a {
  margin-right: 16px;
}

#footer .footer-menu ul {
  list-style: none;
}

#footer .footer-menu li {
  padding: 0 0 8px 0;
}

#footer .main a.button {
  margin-top: 12px;
}

#footer .bottom {
  max-width: 1000px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

@media only screen and (max-width: 960px) {
  #footer {
    padding: 48px 0;
  }
  #footer .main {
    display: block;
  }
  #footer .main h4,
  #footer .main a.button {
    margin-top: 24px;
  }
  #footer:after {
    background-position: center right;
    background-size: cover;
  }
}

/* ====================================================================
   Home
   ==================================================================== */

/* -------------------[ Hero ]------------------- */

#home .hero-wrap {
  width: 92%;
  max-width: 1224px;
  margin: auto;
  padding: 0 4%;
}

#home .hero {
  overflow: hidden;
  border-radius: 24px;
}

#home .hero .hero-img-wrap {
  display: inline-block;
  background: linear-gradient(
    129deg,
    #c7d2d6 29.73%,
    rgba(199, 210, 214, 0.75) 51.34%,
    rgba(199, 210, 214, 0) 79.57%
  );
}

#home .hero img.hero-img {
  z-index: -1;
  display: block;
  width: 100%;
  height: auto;
}

#home .hero .hero-content {
  position: absolute;
  top: 64px;
  left: 64px;
  width: 100%;
  max-width: 600px;
  font-size: 20px;
  font-weight: 500;
}

#home .hero .hero-content h1 {
  font-size: 74px;
  font-weight: 800;
  line-height: 70px;
  letter-spacing: -0.74px;
}

#home .hero .hero-content .google-reviews {
  margin: 0 0 20px 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.74px;
}

#home .hero .hero-content .google-reviews img.google-review {
  top: 6px;
}

#home .hero .hero-content .google-reviews img {
  top: 5px;
}

@media only screen and (max-width: 1250px) {
  #home .hero-wrap {
    width: 100%;
    padding: 0;
  }
  #home .hero {
    border-radius: 0;
  }
  #home .hero .hero-content {
    max-width: 390px;
  }
  #home .hero .hero-content h1 {
    font-size: 54px;
    line-height: 52px;
    letter-spacing: -0.54px;
  }
}

@media only screen and (max-width: 960px) {
  #home .hero .hero-img-wrap {
    background-position-x: -300px;
  }
  #home .hero img.hero-img {
    width: auto;
    height: 670px;
    right: 200px;
  }
}

@media only screen and (max-width: 760px) {
  #home .hero .hero-img-wrap {
    background-position-x: -400px;
  }
  #home .hero img.hero-img {
    right: 300px;
  }
  #home .hero .hero-content {
    top: 24px;
    left: 4%;
  }
}

@media only screen and (max-width: 560px) {
  #home .hero .hero-img-wrap {
    background-position-x: -500px;
  }
  #home .hero img.hero-img {
    right: 450px;
  }
  #home .hero .hero-content {
    max-width: 280px;
  }
}

/* -------------------[ Hero - Issues Carousel ]------------------- */

.issues-carousel-wrap {
  display: flex;
  max-width: 1100px;
  margin: -60px auto 0 auto;
  padding: 16px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08), 0px 6px 8px 4px rgba(0, 0, 0, 0.04);
}

.issues-carousel-wrap .title {
  min-width: 120px;
  margin: 14px 16px 0 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  text-align: center;
}

.issues-carousel-wrap .title img {
  margin-top: 20px;
}

.issues-carousel {
  width: 100%;
}

.issues-carousel .slick-slide {
  margin: 0.8%;
  padding: 16px;
  border-radius: 12px;
  background: #F7F7F7;
  font-size: 16px;
  font-weight: 500;
}

.issues-carousel .slick-slide .issue svg {
  width: 48px;
  height: auto;
  margin-bottom: 16px;
}

@media only screen and (max-width : 1200px) {
  .issues-carousel-wrap {
    display: block;
    width: 90%;
    margin: -60px auto 0 auto;
  }
  .issues-carousel-wrap .title {
    display: block;
    margin: 0 0 16px 0;
  }
}

@media only screen and (max-width : 960px) {
  .issues-carousel-wrap .title {
    margin: 0;
  }
}

@media only screen and (max-width : 760px) {
  .issues-carousel-wrap {
    width: 80%;
    margin: -40px auto 0 auto;
  }
}

/* -------------------[ Steps ]------------------- */

#home .steps {
  padding: 96px;
}

/* -------------------[ State ]------------------- */

#home .home-state {
  gap: 64px;
}

@media only screen and (max-width: 960px) {
  #home .home-state .col:nth-child(1) img {
    margin-bottom: 30px;
  }
}

/* -------------------[ Manufacturers ]------------------- */

#home .m-types-wrap {
  margin-top: 100px;
  padding: 20px 0;
  background-color: #081d3f;
  background-image: linear-gradient(180deg, rgba(8, 29, 63, 0) 0%, #081d3f 100%), url(images/pattern.png);
  color: #fff;
  text-align: center;
}

#home .m-types-wrap .badge {
  width: 140px;
  height: auto;
  margin-top: -60px;
  margin-bottom: 20px;
}

#home .m-types-wrap h5 {
  max-width: 400px;
  margin: auto;
}

#home .m-types-wrap h5:after {
  display: block;
  width: 40px;
  height: 6px;
  margin: 24px auto;
  background-color: #f2b705;
  content: "";
}

#home .m-types {
  padding-bottom: 40px;
  background-color: #081d3f;
}

#home .m-types .columns {
  margin-top: 0;
}

/* -------------------[ Reviews ]------------------- */

#home .reviews {
  max-width: 1000px;
  margin: auto;
  padding: 50px 0 150px 0;
}

/* -------------------[ FAQs ]------------------- */

#home .faqs {
  max-width: 800px;
}

#faq .faqs {
  margin-top: 50px;
}

.faqs {
  display: block;
  width: 84%;
  padding: 40px 8%;
  margin: auto;
  border-radius: 24px;
  background: #081d3f;
}

.faqs .faq-title {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.faqs .faq-title h3 {
  margin: 0;
  color: #fff;
}

.faqs .faq-title img {
  margin-left: auto;
}

.faqs .expand-collapse {
  color: #fff;
  font-size: 18px;
  line-height: 25px;
}

.faqs .expand-collapse .faq {
  margin: 0 0 20px 0;
  border-bottom: 2px solid #5291e2;
}

.faqs .expand-collapse .faq:last-child {
  margin: 0;
  border-bottom: none;
}

.faqs .expand-collapse .question {
  width: 90%;
  margin: 10px 0;
  padding: 10px 0;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
}

.faqs .expand-collapse .question:after {
  position: absolute;
  top: 8px;
  right: -10%;
  content: url("images/icons/faq-down.svg");
}

.faqs .expand-collapse .question.active:after {
  content: url("images/icons/faq-up.svg");
}

.faqs .expand-collapse .answer {
  width: 94%;
  max-height: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  opacity: 0;
  color: #c8d3d7;
}

.faqs .expand-collapse .answer.show {
  opacity: 1;
  max-height: 800px;
}

.faqs a.button-white {
  display: block;
  width: 120px;
  height: 22px;
  margin: 40px auto 0 auto;
  padding: 12px 54px 12px 30px;
  font-size: 17px;
}

.faqs a.button-white:after {
  position: absolute;
  margin-top: -1px;
  margin-left: 7px;
  content: url("images/icons/arrow-right.svg");
}

/* -------------------[ CTA Bottom ]------------------- */

.home-cta-bottom {
  max-width: 600px;
  margin: auto;
  padding: 96px 0 0 0;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.home-cta-bottom a.button {
  margin-top: 16px;
}

/* ====================================================================
   States
   ==================================================================== */

/* -------------------[ Main ]------------------- */

#states .s-list {
  margin-top: 96px;
}

#states .s-list .columns {
  align-items: flex-start;
}

#states .s-list .col:nth-child(1) {
  flex: 1 1 65%;
  margin-right: 5%;
}

#states .s-list .col:nth-child(2) {
  flex: 1 1 30%;
}

#states .s-list ul {
  margin: 0;
  padding: 0;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  -webkit-column-rule: none;
  -moz-column-rule: none;
  column-rule: none;
  -webkit-column-fill: balance;
  -moz-column-fill: balance;
  column-fill: balance;
}

#states .s-list ul li {
  display: inline-block;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  width: 100%;
  height: 20px;
  padding: 0 0 14px 0;
  font-size: 18px;
  line-height: 25px;
}

#states .cta3 {
  padding: 96px 0 0 0;
}

@media only screen and (max-width: 960px) {
  #states .s-list {
    max-width: 500px;
    margin: 72px auto 0 auto;
  }
  #states .s-list .col:nth-child(2) img {
    padding-top: 30px;
  }
  #states .cta3 {
    padding: 72px 0 0 0;
  }
}

/* -------------------[ Single ]------------------- */

/* -----[ Top ]----- */

#state .s-top .columns {
  gap: 50px;
}

#state .s-top .col:nth-child(1) {
  flex: 1 1 55%;
}

#state .s-top .col:nth-child(2) {
  flex: 1 1 45%;
}

#state .s-top {
  padding: 96px 0;
  font-size: 18px;
  line-height: 25px;
}

#state .s-top h1 {
  margin: 24px 0;
}

#state .s-top ul.list-checkmarkvalidated li::before {
  background-image: url(images/icons/list-icon-checkmark-validated-green.svg);
}

#state .s-top .button {
  margin-top: 24px;
}

#state .s-top img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 960px) {
  #state .s-top img {
    margin-top: 64px;
  }
}

/* -------------------[ Top Blue ]------------------- */

#state .s-top-blue {
  padding: 40px 48px 80px 48px;
  border-radius: 24px 24px 0 0;
  background-color: #081d3f;
  background-image: linear-gradient(180deg, rgba(8, 29, 63, 0) 0%, #081d3f 100%),
    url("images/pattern.png");
  color: #fff;
  text-align: center;
}

#state .s-top-blue img {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px auto;
}

#state .s-top-blue .s-top-blue-content {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

#state .s-top-blue .s-top-blue-content h4 {
  font-weight: 400;
}

#state .s-top-blue .s-top-blue-content span {
  color: #F2B705;
}

@media only screen and (max-width: 960px) {
  #state .s-top-blue {
    padding: 40px 16px 80px 16px;
  }
}

/* -------------------[ Members ]------------------- */

#state .s-content {
  padding: 0 4% 40px 4%;
  margin-bottom: 24px;
  border-radius: 0 0 24px 24px;
  background: #fff;
}

#state .s-content .columns {
  align-items: flex-start;
  gap: 40px;
}

#state .s-content .columns .col:nth-child(1) {
  flex: 1 1 35%;
}

#state .s-content .columns .col:nth-child(2) {
  flex: 1 1 65%;
}

#state .s-content .s-qa h3, #state .s-content .s-qa h2 {
  margin-top: 60px;
}

#state .s-content .s-qa .answer {
  margin: 16px 0;
}

#state .s-content .s-qa ol,
#state .s-content .s-qa ul {
  margin: 0 0 25px 30px;
}

@media only screen and (max-width: 960px) {
  #state .s-content {
    padding: 5px 4% 40px 4%;
  }
}

/* -----[ CTA 1]----- */

#state .cta1 {
  margin: 40px 0 0 0;
}

/* -----[ Steps ]----- */

#state .steps {
  max-width: inherit;
  margin: 40px 0;
  padding: 48px;
  border-radius: 24px;
  background: #fff;
}

/* -----[ CTA Bottom ]----- */

.cta-bottom {
  max-width: 600px;
  margin: auto;
  padding: 96px 0 0 0;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.cta-bottom a.button {
  margin: 16px auto;
}


/* ====================================================================
   Manufacturers
   ==================================================================== */

/* -------------------[ Main ]------------------- */

.m-types .columns {
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 96px;
  justify-content: center;
}

.m-types .col {
  flex: 1 1 32%;
  max-width: 392px;
  text-align: center;
}

.m-types .col img.m-vehicle {
  border-radius: 16px 16px 0 0;
}

.m-types .col img.m-logo {
  display: block;
  top: -44px;
  width: 176px;
  height: auto;
  margin: 0 auto -44px auto;
}

.m-types .col .m-types-content {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08),
    0px 6px 8px 4px rgba(0, 0, 0, 0.04);
  background-color: #fff;
}

.m-types .terms {
  min-height: 100px;
  margin: 0 10px;
  text-align: left;
}

.m-types .terms .term-title {
  padding: 0 5px;
  margin: 16px 0 8px 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  text-align: left;
}

.m-types .terms .term-title:after {
  content: "";
  display: inline-block;
  height: 0.5em;
  vertical-align: bottom;
  width: 60%;
  margin-right: -100%;
  margin-left: 10px;
  border-top: 1px solid black;
}

.m-types .terms li {
  display: inline-block;
  margin: 4px;
  padding: 4px 8px;
  border-radius: 24px;
  background-color: #F7F7F7;
  color: #3A3A3A;
  font-size: 13px;
  line-height: 15px;
  font-weight: 500;
}

.m-types .terms li a {
  color: inherit;
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}

#manufacturers .cta3 {
  padding: 96px 0 0 0;
}

@media only screen and (max-width: 960px) {
  .m-types .col {
    min-width: 390px;
    max-width: 390px;
  }
  #manufacturers .cta3 {
    min-width: 330px;
    max-width: 330px;
    padding: 72px 0 0 0;
  }
}

@media only screen and (max-width: 480px) {
  .m-types .col {
    min-width: auto;
  }
  .m-types .col img.m-logo {
    top: -40px;
    width: 140px;
    margin: 0 auto -40px auto;
  }
}

/* -------------------[ Single ]------------------- */

/* -----[ Top ]----- */

body.single-manufacturer #header-wrap,
body.single-manufacturer #header {
  background-color: #081d3f;
}

#header .cplg-logo-mobile,
body.single-manufacturer #header .cplg-logo-desktop {
  display: none;
}

body.single-manufacturer #header .cplg-logo-mobile {
  display: block;
}

body.single-manufacturer #header,
body.single-manufacturer #header .nav-header a {
  color: #fff;
}

body.single-manufacturer #header .nav-header ul ul li a {
  color: #3a3a3a;
}

body.single-manufacturer #header .nav-header li a:after {
  content: url("images/icons/caret-up-white.svg");
}

body.single-manufacturer #header .nav-header li:hover a:after {
  content: url("images/icons/caret-down-white.svg");
}

body.single-manufacturer #header .nav-header li a:only-child:after {
  content: "";
}

#manufacturer .m-top {
  background: linear-gradient(180deg, #081d3f 0%, #1c1c1c 100%);
  font-size: 18px;
  line-height: 25px;
}

#manufacturer .m-top .columns {
  gap: 40px;
  padding: 48px 0 96px 0;
  color: #fff;
}

#manufacturer .m-top h1 {
  margin: 8px 0;
}

#manufacturer .m-top .button {
  margin-top: 24px;
}

#manufacturer .m-top img {
  width: 100%;
  height: auto;
}

/* -----[ Problems ]----- */

#manufacturer .problems:before {
  display: block;
  width: 40px;
  height: 5px;
  margin-bottom: 16px;
  background-color: #f2b705;
  content: "";
}

#manufacturer .problems {
  margin: 96px auto 20px auto;
}

#manufacturer .problems ul li {
  margin-left: 20px;
}

#manufacturer .problems .columns {
  align-items: flex-start;
  gap: 100px;
}

#manufacturer .problems .columns .col:nth-child(2) {
  margin-top: 8px;
}

/* -----[ Issues ]----- */

#manufacturer .issues {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#manufacturer .issue {
  display: flex;
  flex: 1 1 45%;
  align-items: center;
  padding: 16px 2%;
  border-radius: 12px;
  background: #FFF;
}

#manufacturer .issue svg {
  margin-right: 16px;
}

@media only screen and (max-width: 960px) {
  #manufacturer .issue {
    flex: 1 1 98%;
  }
}

/* -----[ Steps ]----- */

#manufacturer .steps {
  margin-top: 96px;
}

#manufacturer .steps a.button-yellow {
  margin-top: 40px;
}

@media only screen and (max-width: 960px) {
  #manufacturer .m-top img {
    margin-top: 64px;
  }
}

@media only screen and (max-width: 460px) {
  #manufacturer .m-top {
    overflow: hidden;
  }
  #manufacturer .m-top .columns {
    padding-bottom: 0;
    margin-bottom: -7px;
  }
  #manufacturer .m-top img {
    width: inherit;
    max-width: inherit;
    height: 500px;
  }
}

/* ====================================================================
   Team
   ==================================================================== */

/* -------------------[ Top ]------------------- */

#team .top {
  padding: 40px 48px 80px 48px;
  border-radius: 24px 24px 0 0;
  background-color: #081d3f;
  background-image: linear-gradient(180deg, rgba(8, 29, 63, 0) 0%, #081d3f 100%),
    url("images/pattern.png");
  color: #fff;
  text-align: center;
}

#team .top img {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px auto;
}

#team .top h3 {
  max-width: 800px;
  margin: auto;
  font-weight: 400;
}

@media only screen and (max-width: 960px) {
  #team .top {
    padding: 40px 16px 80px 16px;
  }
}

/* -------------------[ Members ]------------------- */

#team .members {
  padding: 72px 4%;
  margin-bottom: 24px;
  border-radius: 0 0 24px 24px;
  background: #fff;
}

#team .members .columns {
  align-items: flex-start;
  gap: 40px;
}

#team .members .columns .col:nth-child(1) {
  flex: 1 1 35%;
}

#team .members .columns .col:nth-child(2) {
  flex: 1 1 65%;
}

#team .members .member .columns {
  align-items: center;
  gap: 24px;
}

#team .members .member img {
  width: 200px;
  height: auto;
}

#team .members .member .info h3 {
  margin-bottom: 5px;
}

#team .members .member .info a {
  font-size: 14px;
}

#team .members .member .info h5 {
  margin-bottom: 5px;
}

#team .members .member .bio {
  margin: 16px 0;
}

#team .members .member .bio ul {
  margin: 0 0 25px 30px;
}

#team .members .member:after {
  display: block;
  margin: 64px 0;
  width: 100%;
  height: 2px;
  background-color: #f2b705;
  content: "";
}

#team .members .cta1 {
  margin: auto;
}

/* -------------------[ Steps ]------------------- */

#team .steps {
  max-width: inherit;
  padding: 48px;
  border-radius: 24px;
  background: #fff;
}

/* ====================================================================
   Contact
   ==================================================================== */

#contact .col:nth-child(1) {
  flex: 1 1 50%;
}

#contact .col:nth-child(2) {
  flex: 1 1 40%;
  margin-left: 10%;
}

#contact a.button {
  margin-top: 16px;
}

#contact ul.list-phone {
  margin-top: -10px;
}

#contact .col .map {
  height: 0;
  padding-bottom: 100%;
  border-radius: 24px;
  overflow: hidden;
}

#contact .col .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media only screen and (max-width: 960px) {
  #contact .col:nth-child(1),
  #contact .col:nth-child(2) {
    flex: 1;
    margin: 0;
  }
  #contact .col .map {
    margin-top: 64px;
  }
}


/* ====================================================================
   Single post
   ==================================================================== */
    .section-wrapper {
      position: relative;
      background-color: #fff;
      border-radius: 16px;
      padding: 48px;
		max-width:1220px;
      box-shadow:
        0 0 0 1px #cbd5e1, /* border-border */
        0 8px 16px rgb(0 0 0 / 0.07);
      overflow: visible;
/* 		min-height:527px; */
		margin-top:50px;
		margin-bottom:96px;
      display: flex;
      gap: 48px;
	background-image: url(https://247lemonlaw.com/wp-content/uploads/2025/09/bio-bg-corner-asset.svg);
    background-position: top left;
    background-repeat: no-repeat;
    }

    /* Image styles */
    .attorney-photo {
      flex-shrink: 0;
		width:250px;
		height:250px;
/*       width: 200px; */
/*       height: 250px; */
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 10px rgb(0 0 0 / 0.12);
/*       border: 1.5px solid #cbd5e1; */
      background-color: #fff;
    }
    .attorney-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Content styles */
    .content {
      flex: 1;
    }
    .content h2 {
      font-weight: 700;
      font-size: 1.75rem;
      margin: 0 0 12px 0;
      color: #0a1f44; /* darker navy-ish */
      line-height: 1.2;
    }

    .name-line {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
      font-weight: 600;
      font-size: 1.125rem;
      color: #394047; /* muted dark */
    }
    .name-line svg {
      width: 20px;
      height: 20px;
      stroke: #4f8aff;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      margin-right: 8px;
      flex-shrink: 0;
    }

    .description {
      color: #475569; /* text-muted-foreground */
      font-size: 1rem;
      line-height: 1.5;
      max-width: 650px;
    }

    /* Responsive */
    @media (max-width: 640px) {
      .section-wrapper {
        flex-direction: column;
        max-width: 95vw;
        padding: 24px;
		  gap:20px;
      }
      .attorney-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
      }
      .content h2 {
        font-size: 1.5rem;
      }
      .content {
        margin-top: 20px;
      }
    }

/* .single_content_side ul {
    margin-bottom: 20px;
}
.single_content_side li {
    left: 20px;
}
.single_content_side table, .single_content_side th, .single_content_side td {
  border: 1px solid #00000026;
  border-collapse: collapse;
	padding:10px;
}
.single_content_side table{
	margin-bottom:40px;
} */

/* City Single */
.image-card img{
	border-radius:30px;
}
.location-bar {
    position: absolute;
    bottom: 30px;
    width: 80%;
    left: 50%;
    background: white;
    padding: 15px 15px;
    border-radius: 50px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.location-bar .arrow {
    margin-left: auto;
	display: flex;
    align-items: center;
    justify-content: center;
}
span.location-icon{
	display: flex;
    justify-content: center;
    align-items: center;
}
@media(max-width:770px){
	.location-bar .arrow img, span.location-icon img{
		margin-top:0 !important;
	}
}
/* ====================================================================
   Document Upload
   ==================================================================== */

#upload_page_content_container div#vid-cont {
    width: 60%;
	margin-bottom:30px;
}
@media(max-width:600px){
#upload_page_content_container div#vid-cont {
    width: 100%;
}	
}


body.page-id-327,
body.page-id-327 #header-wrap {
  background-color: #fff;
}

body.page-id-327,
body.page-id-327 .content iframe {
  padding-bottom: 20px;
}
/* Car Manufacturer */
@media(max-width:600px){
	.video-embed iframe{
	width:100% !important;
	max-width:100% !important;
	min-width:100% !important;
		margin-bottom:80px;
}
}



/* ========================================== */
			/* Single Manufacture  */
/* ========================================== */
div#reviews_now .answer.show *{
	text-align:left !important;
}