html {
  scroll-behavior: smooth;
}

.lawyer-demo-page {
  --ink: #111318;
  --navy: #182131;
  --midnight: #0b0f17;
  --bronze: #b8874c;
  --bronze-dark: #8b6339;
  --parchment: #f4efe5;
  --paper: #ffffff;
  --mist: #ebe6dc;
  --muted: #6f6b63;
  background: var(--parchment);
  color: var(--ink);
  font-family: "DM Sans", "Google Sans", "Quicksand", sans-serif;
  overflow-x: hidden;
}

.lawyer-demo-page *,
.lawyer-demo-page *::before,
.lawyer-demo-page *::after {
  box-sizing: border-box;
}

.lawyer-demo-page .row {
  margin: 0;
}

.lawyer-demo-page img {
  display: block;
  max-width: 100%;
}

.lawyer-demo-page a {
  text-decoration: none;
}

#top-header {
  position: relative;
  z-index: 1001;
  padding: 0;
  background: #151923;
}

#top-header .container,
#main-header .container {
  width: min(92%, 1280px);
  max-width: 1280px;
}

#top-header .row {
  min-height: 48px;
  align-items: center;
}

#top-header .ul-wrap-header-top {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

#top-header .ul-wrap-header-top li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 700;
}

#top-header .ul-wrap-header-top img {
  width: 18px;
  filter: brightness(0) invert(1);
  opacity: .78;
}

#top-header .headertop-right-side {
  display: flex;
  justify-content: flex-end;
}

.btn-consulttn,
#appointment-demo,
#appointment-demos,
#appointment-btn,
#section-5 .submit-btn-law {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.btn-consulttn,
#appointment-demo,
#appointment-btn,
#section-5 .submit-btn-law {
  background: var(--bronze);
  color: #fff;
  box-shadow: 0 14px 30px rgba(184, 135, 76, .24);
}

.btn-consulttn:hover,
#appointment-demo:hover,
#appointment-btn:hover,
#section-5 .submit-btn-law:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}

#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  background: #f8f3ea;
  border-bottom: 1px solid rgba(17, 19, 24, .08);
  transition: box-shadow .25s ease, background .25s ease;
}

.lawyer-demo-page.scrolled #main-header {
  box-shadow: 0 16px 42px rgba(17, 19, 24, .12);
}

.lawyer-demo-page.scrolled #top-header {
  display: none;
}

#main-header .row {
  min-height: 74px;
  align-items: center;
}

#main-header .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#main-header .header-left-side img {
  width: 168px;
}

#main-header .header-ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 34px);
  padding: 0;
  margin: 0;
  list-style: none;
}

#main-header .nav-link {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0;
  color: var(--ink);
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
}

#main-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze), var(--navy));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

#main-header .nav-link:hover,
#main-header .nav-link:focus,
#main-header .actives .nav-link {
  color: var(--bronze-dark);
}

#main-header .nav-link:hover::after,
#main-header .nav-link:focus::after,
#main-header .actives .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

#appointment-btn {
  color: #fff !important;
  padding: 0 18px;
}

#appointment-btn::after {
  display: none;
}

.mobile-menu-bar {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}

#section1 {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #f4efe5 0%, #f4efe5 51%, #151923 51%, #151923 100%);
}

#section1 .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

#section1 .col-lg-12 {
  padding: 0;
}

#section1 .wrapper-section1 {
  position: relative;
  min-height: 82vh;
  isolation: isolate;
}

#section1 .wrapper-section1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 58%;
  background:
    linear-gradient(rgba(17, 19, 24, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 24, .035) 1px, transparent 1px),
    var(--parchment);
  background-size: 42px 42px;
  pointer-events: none;
}

#section1 .wrapper-section1::after {
  content: "";
  position: absolute;
  left: 49%;
  top: 11%;
  z-index: 3;
  width: 1px;
  height: 72%;
  background: linear-gradient(180deg, transparent, rgba(184, 135, 76, .75), transparent);
  pointer-events: none;
}

#owl-demo {
  position: absolute;
  top: 46px;
  right: clamp(18px, 4vw, 74px);
  bottom: 46px;
  z-index: 2;
  width: min(48vw, 710px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .32);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

#section1 .item {
  min-height: calc(82vh - 92px);
  height: calc(82vh - 92px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#owl-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(21, 25, 35, .16), rgba(21, 25, 35, .48)),
    radial-gradient(circle at 70% 18%, rgba(184, 135, 76, .24), transparent 28%);
  pointer-events: none;
}

#section1 .owl-item.active .item {
  animation: lawyerHeroZoom 7s ease forwards;
}

#section1 .owl-nav,
#section1 .owl-dots {
  display: none;
}

.main-slider-content {
  position: absolute;
  top: 50%;
  left: clamp(22px, 6vw, 104px);
  z-index: 4;
  width: min(640px, calc(100% - 44px));
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(17, 19, 24, .1);
  border-left: 5px solid var(--bronze);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(17, 19, 24, .12);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.hero-eyebrow,
#section-2 .wrap-center-sct3 span,
#section-3 .wrap-center-services span,
#section-4 .title-wrper-sect4 span,
#testimonials .wrapper-titel-testimonial span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--bronze);
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-eyebrow::before,
#section-2 .wrap-center-sct3 span::before,
#section-3 .wrap-center-services span::before,
#section-4 .title-wrper-sect4 span::before,
#testimonials .wrapper-titel-testimonial span::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.main-slider-content h1 {
  max-width: 640px;
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 850;
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

.main-slider-content p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #59534c;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 600;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

#appointment-demos {
  border: 1px solid rgba(17, 19, 24, .18);
  background: transparent;
  color: var(--ink);
}

#appointment-demos:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(17, 19, 24, .12);
  border-radius: 8px;
  background: #f7f2e9;
  color: #5d554c;
  font-weight: 800;
}

.hero-proof strong {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1;
}

.hero-case-file {
  position: absolute;
  right: clamp(26px, 5vw, 92px);
  bottom: 70px;
  z-index: 5;
  width: min(330px, 30vw);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(21, 25, 35, .88);
  color: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.hero-case-file::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184, 135, 76, .35);
  border-radius: 6px;
  pointer-events: none;
}

.case-file-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--bronze);
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-case-file h3 {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 850;
  line-height: 1.05;
}

.hero-case-file ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-case-file li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  font-weight: 750;
}

.hero-case-file li span {
  display: inline-flex;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 135, 76, .2);
  color: var(--bronze);
  font-weight: 900;
}

#section1 {
  padding: 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(184, 135, 76, .16), transparent 26%),
    linear-gradient(135deg, #0c1018 0%, #171d29 52%, #0f1218 100%);
}

#section1 .wrapper-section1 {
  display: grid;
  grid-template-columns: 72px minmax(360px, .92fr) minmax(430px, 1fr);
  grid-template-areas:
    "rail media content"
    "rail media case";
  gap: 24px;
  width: min(92%, 1280px);
  min-height: calc(100vh - 122px);
  margin: 0 auto;
  padding: 58px 0 66px;
  align-items: stretch;
}

#section1 .wrapper-section1::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% + 42px) 0 -6vw;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 34px 34px;
}

#section1 .wrapper-section1::after {
  display: none;
}

.hero-docket-rail {
  grid-area: rail;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .7);
}

.hero-docket-rail span,
.hero-docket-rail strong {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-docket-rail span {
  color: var(--bronze);
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-docket-rail strong {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
}

#owl-demo {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  grid-area: media;
  width: 100%;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px 96px 8px 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .34);
  clip-path: none;
}

#owl-demo .owl-stage-outer,
#owl-demo .owl-stage,
#owl-demo .owl-item {
  height: 100%;
}

#section1 .item {
  height: 100%;
  min-height: 640px;
  background-size: cover;
  background-position: center;
}

#owl-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 35%, rgba(12, 16, 24, .65) 100%),
    radial-gradient(circle at 70% 12%, rgba(184, 135, 76, .2), transparent 28%);
  pointer-events: none;
}

.main-slider-content {
  position: relative;
  top: auto;
  left: auto;
  grid-area: content;
  align-self: end;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  backdrop-filter: none;
  transform: none;
}

.main-slider-content h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(44px, 5vw, 82px);
  line-height: .95;
}

.main-slider-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, .76);
}

#appointment-demos {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.hero-proof span {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .74);
}

.hero-proof strong {
  color: #fff;
}

.hero-case-file {
  position: relative;
  right: auto;
  bottom: auto;
  grid-area: case;
  width: auto;
  align-self: start;
  padding: 26px;
  border: 0;
  background:
    linear-gradient(135deg, rgba(244, 239, 229, .98), rgba(235, 230, 220, .96));
  color: var(--ink);
}

.hero-case-file::before {
  border-color: rgba(17, 19, 24, .12);
}

.hero-case-file h3 {
  color: var(--ink);
}

.hero-case-file li {
  color: #514b44;
}

#section-2,
#section-3,
#section-5,
#testimonials {
  background: var(--parchment);
}

#section-2 {
  padding: 115px 0;
}

#section-2 .container,
#section-3 .container,
#section-4 .container,
#section-5 .container,
#testimonials .container {
  width: min(90%, 1180px);
  max-width: 1180px;
}

#section-2 .wrap-center-sct3 {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 54px;
  border: 1px solid rgba(17, 19, 24, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  text-align: center;
  box-shadow: 0 24px 70px rgba(17, 19, 24, .08);
}

#section-2 .wrap-center-sct3::before {
  content: "§";
  position: absolute;
  left: 50%;
  top: -48px;
  color: rgba(184, 135, 76, .14);
  font-family: "Playfair Display", serif;
  font-size: 148px;
  line-height: 1;
  transform: translateX(-50%);
}

#section-2 .wrap-center-sct3 span,
#section-3 .wrap-center-services span,
#section-4 .title-wrper-sect4 span,
#testimonials .wrapper-titel-testimonial span {
  justify-content: center;
}

#testimonials .wrapper-titel-testimonial h2 {
  color: #fff;
}

#section-2 h2,
#section-3 h2,
#section-4 h2,
#section-5 h2,
#testimonials h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

#section-2 .wrap-center-sct3 p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.78;
}

#section-2 .border-verticle {
  width: 2px;
  height: 80px;
  margin: 36px auto;
  background: linear-gradient(180deg, transparent, var(--bronze), transparent);
}

#section-2 .name-of-founder h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 850;
}

#section-2 .name-of-founder h5 {
  margin: 6px 0 0;
  color: var(--bronze-dark);
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#section-3 {
  padding: 105px 0;
  background: #fff;
}

#section-3 .wrap-center-services,
#testimonials .wrapper-titel-testimonial {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

#section-3 .enter-s {
  row-gap: 24px;
}

#section-3 .enter-s > [class*="col-"] {
  padding: 12px;
}

.wrap-center-servicess {
  position: relative;
  height: 100%;
  min-height: 310px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(17, 19, 24, .08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #fff 0%, #f7f2e9 100%);
  box-shadow: 0 18px 48px rgba(17, 19, 24, .07);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.wrap-center-servicess::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(184, 135, 76, .1);
}

.wrap-center-servicess:hover {
  border-color: rgba(184, 135, 76, .28);
  box-shadow: 0 28px 80px rgba(17, 19, 24, .12);
  transform: translateY(-8px);
}

.service-image-rp {
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--navy);
}

.service-image-rp img {
  width: 36px;
  filter: brightness(0) invert(1);
}

.wrap-center-servicess h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 850;
  line-height: 1.08;
}

.wrap-center-servicess p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

#section-4 {
  position: relative;
  overflow: hidden;
  padding: 115px 0 220px;
  background-size: cover;
  background-position: center;
}

#section-4::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(184, 135, 76, .28), transparent 28%),
    linear-gradient(135deg, rgba(11, 15, 23, .9), rgba(24, 33, 49, .88));
}

#section-4 .container {
  position: relative;
  z-index: 1;
  padding: 0;
}

#section-4 .wrapper-lsw-d {
  max-width: 1080px;
  margin: 0 auto;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}

#section-4 .title-wrper-sect4 {
  text-align: center;
}

#section-4 h2 {
  color: #fff;
}

#section-4 .box-wrper-sect4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 42px 0;
}

#section-4 .box-1wrpare {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

#section-4 .box-1wrpare p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.75;
}

#section-4 .row-for-count {
  row-gap: 18px;
}

#section-4 .row-for-count > [class*="col-"] {
  padding: 8px;
}

#section-4 .wrapper-counter-s {
  height: 100%;
  padding: 24px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  text-align: center;
}

#section-4 .counter-deigit {
  display: block;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 850;
  line-height: .95;
}

#section-4 .wrapper-counter-s p {
  margin: 12px 0 0;
  color: var(--bronze);
  font-weight: 900;
}

#section-5 {
  position: relative;
  padding: 110px 0 110px;
  background: var(--parchment);
}

#section-5 .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: min(90%, 900px);
  margin-top: -150px;
  padding: 42px;
  border: 1px solid rgba(17, 19, 24, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(17, 19, 24, .12);
}

#section-5 .title-wrpper-sect5 {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

#section-5 .title-wrpper-sect5 p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.65;
}

#section-5 .row-forks {
  margin-left: -8px;
  margin-right: -8px;
}

#section-5 .row-forks > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

#section-5 .form-group-erpt {
  margin-bottom: 16px;
}

#section-5 input,
#section-5 select,
#section-5 textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 24, .1);
  border-radius: 8px;
  background: #f7f3ec;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

#section-5 input,
#section-5 select {
  height: 52px;
  padding: 0 15px;
}

#section-5 textarea {
  min-height: 140px;
  padding: 14px 15px;
  resize: vertical;
}

#section-5 input:focus,
#section-5 select:focus,
#section-5 textarea:focus {
  border-color: var(--bronze);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 135, 76, .14);
  outline: 0;
}

#section-5 .submit-btn-law {
  width: 100%;
  border: 0;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

#testimonials {
  position: relative;
  overflow: hidden;
  padding: 115px 0 135px;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 135, 76, .16), transparent 28%),
    linear-gradient(135deg, #0b0f17 0%, #171d29 56%, #241d18 100%);
  color: #fff;
}

#testimonials::before {
  content: "CLIENT VERDICTS";
  position: absolute;
  left: 50%;
  top: 28px;
  color: rgba(255, 255, 255, .035);
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 10vw, 150px);
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
  transform: translateX(-50%);
}

#testimonials .testimonial-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

#testimonials #carouselExampleIndicators img {
  width: 100% !important;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

#testimonials .carousel-item {
  min-height: 520px;
  padding: 0;
}

#testimonials .carousel-item::before {
  content: "";
  position: absolute;
  left: 31%;
  top: 38px;
  bottom: 38px;
  z-index: 2;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 135, 76, .75), transparent);
}

#testimonials .carousel-item > img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 31% !important;
  height: 100%;
  filter: grayscale(.24) contrast(1.04);
}

#testimonials .carousel-item > img::after {
  display: none;
}

#testimonials .wrpper-clint-wrd {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  margin-left: 31%;
  padding: 62px 72px 118px;
}

.client-case-type {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(184, 135, 76, .45);
  border-radius: 999px;
  color: var(--bronze);
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

#testimonials blockquote {
  position: relative;
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: clamp(23px, 2.25vw, 34px);
  font-style: italic;
  font-weight: 650;
  line-height: 1.45;
}

#testimonials blockquote::before {
  content: "“";
  position: absolute;
  left: -34px;
  top: -42px;
  color: rgba(184, 135, 76, .32);
  font-size: 108px;
  font-style: normal;
  line-height: 1;
}

#testimonials .clinet-namde {
  position: absolute;
  right: 72px;
  bottom: 46px;
  z-index: 4;
  min-width: 250px;
  margin: 0;
  padding: 18px 22px;
  border-left: 3px solid var(--bronze);
  background: rgba(255, 255, 255, .08);
  text-align: left;
}

#testimonials .clinet-namde h4 {
  margin: 0;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 900;
}

#testimonials .clinet-namde p {
  margin: 5px 0 0;
  color: var(--bronze);
  font-weight: 800;
}

#testimonials .carousel-indicators {
  right: auto;
  bottom: 42px;
  left: calc(31% + 72px);
  justify-content: flex-start;
  margin: 0;
}

#testimonials .carousel-indicators button {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .35) !important;
}

#testimonials .carousel-indicators .active {
  background: var(--bronze) !important;
}

#testimonials .carousel-control-prev,
#testimonials .carousel-control-next {
  top: auto;
  bottom: 38px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  opacity: 1;
}

#testimonials .carousel-control-prev {
  left: auto;
  right: 128px;
}

#testimonials .carousel-control-next {
  right: 72px;
}

footer#footer {
  padding: 24px 0;
  background: var(--midnight);
}

#footer .footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  text-align: center;
  font-size: 14px;
}

.lawyer-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .72s ease, transform .72s ease;
}

.lawyer-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lawyerHeroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@media (min-width: 992px) {
  #top-header {
    position: fixed;
    top: 22px;
    right: 28px;
    left: 342px;
    z-index: 1100;
    padding: 0;
    background: transparent;
  }

  .lawyer-demo-page.scrolled #top-header {
    display: block;
  }

  #top-header .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  #top-header .row {
    min-height: 0;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(11, 15, 23, .86);
    box-shadow: 0 18px 44px rgba(11, 15, 23, .2);
    backdrop-filter: blur(18px);
  }

  #top-header .col-lg-9 {
    flex: 1 1 auto;
    max-width: none;
  }

  #top-header .col-lg-3 {
    flex: 0 0 auto;
    max-width: none;
  }

  #top-header .ul-wrap-header-top {
    gap: 16px;
  }

  #top-header .ul-wrap-header-top li {
    padding: 0 10px 0 0;
    border-right: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
  }

  #top-header .ul-wrap-header-top li:last-child {
    border-right: 0;
  }

  #top-header .btn-consulttn {
    min-height: 38px;
    padding: 0 16px;
  }

  #main-header {
    position: fixed;
    top: 22px;
    bottom: 22px;
    left: 28px;
    z-index: 1101;
    width: 286px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .lawyer-demo-page.scrolled #main-header {
    box-shadow: none;
  }

  #main-header .container {
    width: 100%;
    height: 100%;
    padding: 18px;
    border: 1px solid rgba(17, 19, 24, .1);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(244, 239, 229, .94)),
      var(--parchment);
    box-shadow: 0 26px 78px rgba(17, 19, 24, .18);
    backdrop-filter: blur(18px);
  }

  #main-header .row {
    min-height: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  #main-header .col-lg-2,
  #main-header .col-lg-10 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  #main-header .col-lg-2 {
    justify-content: center;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(17, 19, 24, .1);
  }

  #main-header .header-left-side img {
    width: 178px;
    margin: 0 auto;
  }

  #main-header .col-lg-10 {
    display: flex;
    flex: 1 1 auto;
  }

  #main-header .header-right-side {
    display: flex;
    width: 100%;
  }

  #main-header .header-ul {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }

  #main-header .header-ul li:last-child {
    margin-top: auto;
  }

  #main-header .nav-link {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 16px;
    border: 1px solid rgba(17, 19, 24, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .5);
    color: #2b2825;
    box-shadow: inset 0 0 0 0 rgba(184, 135, 76, 0);
  }

  #main-header .nav-link::after {
    display: none;
  }

  #main-header .nav-link::before {
    display: none;
  }

  #main-header .nav-link:hover,
  #main-header .nav-link:focus,
  #main-header .actives .nav-link {
    border-color: rgba(184, 135, 76, .28);
    background:
      linear-gradient(90deg, rgba(184, 135, 76, .16), rgba(255, 255, 255, .78));
    color: var(--ink);
    box-shadow: inset 4px 0 0 var(--bronze);
  }

  #appointment-btn {
    justify-content: center;
    min-height: 50px;
    color: #fff !important;
  }

  #appointment-btn::before {
    display: none;
  }

  #section1 .wrapper-section1 {
    width: calc(100% - 370px);
    min-height: 100vh;
    margin: 0 28px 0 342px;
    padding-top: 98px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1199px) {
  #main-header .header-ul {
    gap: 16px;
  }

  #main-header .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  #top-header {
    display: none;
  }

  #main-header .col-lg-10 {
    display: none;
  }

  .mobile-menu-bar {
    display: inline-flex;
  }

  .lawyer-menu-open #main-header .col-lg-10 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .lawyer-menu-open #main-header .header-ul {
    display: grid;
    gap: 6px;
    justify-content: stretch;
    padding: 18px 0 8px;
  }

  .lawyer-menu-open #main-header .nav-link {
    display: flex;
    width: 100%;
    padding: 10px 4px;
  }

  .lawyer-menu-open #appointment-btn {
    justify-content: center;
  }

  #section-4 .box-wrper-sect4 {
    grid-template-columns: 1fr;
  }

  #testimonials .carousel-item {
    min-height: auto;
    padding-top: 260px;
  }

  #testimonials .carousel-item::before {
    display: none;
  }

  #testimonials .carousel-item > img {
    right: 0;
    bottom: auto;
    width: 100% !important;
    height: 260px;
  }

  #testimonials .wrpper-clint-wrd {
    min-height: auto;
    margin-left: 0;
    padding: 42px 34px 134px;
  }

  #testimonials .clinet-namde {
    right: 34px;
    bottom: 54px;
    left: 34px;
  }

  #testimonials .carousel-indicators {
    left: 34px;
    bottom: 28px;
  }

  #testimonials .carousel-control-prev {
    right: 90px;
    bottom: 24px;
  }

  #testimonials .carousel-control-next {
    right: 34px;
    bottom: 24px;
  }

  #section1 {
    background: var(--parchment);
  }

  #section1 .wrapper-section1 {
    display: grid;
    gap: 18px;
    min-height: auto;
    padding: 28px 18px 54px;
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  #section1 .wrapper-section1::before,
  #section1 .wrapper-section1::after {
    display: none;
  }

  #owl-demo {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    clip-path: none;
    order: 2;
    grid-area: auto;
    min-height: 430px;
    border-radius: 8px 48px 8px 8px;
  }

  #section1 .item {
    min-height: 430px;
    height: 56vh;
  }

  .main-slider-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    order: 1;
    transform: none;
    grid-area: auto;
  }

  .hero-case-file {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    order: 3;
    background: var(--navy);
    color: #fff;
    grid-area: auto;
  }

  .hero-case-file h3 {
    color: #fff;
  }

  .hero-case-file li {
    color: rgba(255, 255, 255, .78);
  }

  .hero-docket-rail {
    display: none;
  }
}

@media (max-width: 767px) {
  .main-slider-content h1 {
    font-size: clamp(39px, 11vw, 56px);
  }

  .hero-proof span {
    width: 100%;
  }

  #section-2,
  #section-3,
  #section-4,
  #testimonials {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  #section-2 .wrap-center-sct3,
  #section-4 .wrapper-lsw-d,
  #section-5 .container,
  #testimonials .testimonial-wrapper {
    padding: 24px;
  }

  #testimonials .testimonial-wrapper {
    padding: 0;
  }

  #testimonials blockquote {
    font-size: 22px;
  }

  #section-3 .enter-s > [class*="col-"] {
    padding: 8px 0;
  }

  #section-5 {
    padding-bottom: 82px;
  }

  #section-5 .container {
    margin-top: -110px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    display: grid;
  }

  #appointment-demo,
  #appointment-demos {
    width: 100%;
  }
}
