:root {
  --body-text: #6f727b;
  --white: white;
  --titles: #16181f;
  --accent: #c19351;
  --snow: #fefaf7;
  --light-grey: #bfc1c8;
  --midnight-blue: #1b2549;
  --dark-grey: #aaaebd;
  --tan: #c7ae8a;
  --peru: #a87e41;
  --seashell: #faebe7;
  --black-grey: #313b5d;
  --light-slate-grey: #959bad;
  --linen: #f0e4db;
}

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

body {
  color: var(--body-text);
  font-family: Muli;
  font-size: 18px;
  line-height: 1em;
}

h1 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 24px;
  font-family: Playfair Display;
  font-size: 68px;
  font-weight: 400;
  line-height: 1.2em;
}

h2 {
  color: var(--titles);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Playfair Display;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1em;
}

h3 {
  color: var(--titles);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

h4 {
  color: var(--titles);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: var(--titles);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  color: var(--titles);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  color: var(--body-text);
  margin-top: 18px;
  margin-bottom: 24px;
  line-height: 1.6em;
}

a {
  color: var(--accent);
  font-weight: 400;
  text-decoration: underline;
  transition: color .35s;
}

a:hover {
  color: var(--accent);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  display: inline-block;
}

label {
  color: var(--titles);
  letter-spacing: 14%;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  display: block;
}

strong {
  color: var(--titles);
  font-weight: 700;
}

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

figure {
  margin-top: 56px;
  margin-bottom: 56px;
}

figcaption {
  text-align: left;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.3em;
}

.utility-page-wrap {
  background-color: var(--snow);
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.navbar {
  background-color: #16181ff2;
  width: 100%;
  margin-bottom: -110px;
  padding-left: 20px;
  padding-right: 20px;
  position: fixed;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
}

.default-container {
  z-index: 1;
  flex-direction: column;
  max-width: 1288px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-section {
  background-color: #16181fba;
  align-items: center;
  padding: 290px 20px 232px;
  position: relative;
}

.background-video {
  z-index: -1;
  flex: 0 auto;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.grid-testimonials {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  margin-bottom: 111px;
}

.standard-button {
  border: 1px solid var(--white);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  padding: 18px 34px;
  font-family: Mulish, sans-serif;
  font-weight: 700;
  line-height: 18px;
  transition: all .3s ease-in-out;
}

.standard-button:hover {
  border: 1px solid var(--accent);
  background-color: var(--accent);
  color: var(--white);
}

.standard-button.outline {
  border-color: var(--light-grey);
}

.standard-button.outline:hover {
  border-color: var(--accent);
}

.large-button {
  color: var(--white);
  background-color: #1b2549;
  padding: 24px 50px;
  font-family: Mulish, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  transition: all .3s ease-in-out;
}

.large-button:hover {
  background-color: var(--accent);
  color: #fff;
}

.large-button.full-width {
  text-align: center;
  display: block;
}

.outline-button {
  border: 1px solid var(--white);
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  min-width: 230px;
  padding: 24px 43px;
  font-family: Mulish, sans-serif;
  font-weight: 300;
  line-height: 18px;
  transition: all .3s ease-in-out;
}

.outline-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.outline-button.silver-color {
  border-color: var(--light-grey);
  color: var(--light-grey);
}

.outline-button.silver-color:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-link {
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: Mulish, sans-serif;
  transition: all .3s ease-in-out;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--accent);
}

.divider {
  background-color: #ffffff21;
  max-width: 1288px;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
}

.divider.margin-top-and-bottom-56px {
  margin-top: 56px;
  margin-bottom: 56px;
  margin-left: -60px;
}

.divider.licences {
  background-color: #7c839754;
  margin-top: 56px;
  margin-bottom: 56px;
}

.page-wrapper.style-guide {
  align-items: flex-start;
  display: flex;
}

.awards-section {
  background-image: linear-gradient(#0000 50%, #fefaf7 50%);
  margin-top: -118px;
  position: relative;
}

.awards-container {
  z-index: 1;
  background-color: var(--white);
  justify-content: space-between;
  align-items: center;
  max-width: 94%;
  padding: 66px 24px;
  position: static;
  top: -128px;
}

.about-section {
  background-color: #fefaf7;
  padding: 140px 20px;
}

.primary-button {
  background-color: var(--white);
  color: var(--titles);
  text-align: center;
  text-transform: uppercase;
  min-width: 230px;
  padding: 25px 44px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  transition: all .3s ease-in-out;
}

.primary-button:hover {
  background-color: var(--accent);
  color: var(--white);
}

.primary-button.margin-right-32px {
  font-family: Mulish, sans-serif;
}

.primary-button.margin-right-32px:hover {
  background-color: var(--accent);
  color: var(--white);
}

.primary-button.outline {
  border: 1px solid var(--light-grey);
}

.primary-button.outline:hover {
  border-color: var(--accent);
}

.bg-pattern-dots {
  max-width: 60%;
  transition: all .2s;
  position: absolute;
  inset: -8% auto auto -3%;
}

.areas-section {
  padding: 180px 40px 140px 20px;
  overflow: hidden;
}

.carousel-container {
  max-width: 1288px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.carousel {
  background-color: #0000;
  justify-content: flex-end;
  align-items: center;
}

.carousel.is-contained {
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
}

.carousel.is-contained.unterseite {
  margin-top: 140px;
}

.arrow-left {
  border: 1px solid var(--dark-grey);
  filter: saturate(0%);
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 28px 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: -20% 10% auto auto;
}

.arrow-left:hover {
  border-color: var(--accent);
  filter: none;
}

.arrow-right-testimonials {
  border: 1px solid var(--dark-grey);
  filter: saturate(0%);
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 28px 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: -53% 3% auto auto;
}

.arrow-right-testimonials:hover {
  border-color: var(--accent);
  filter: none;
}

.carousel-slider {
  margin-right: 40px;
}

.carousel-mask {
  width: 380px;
  overflow: visible;
}

.golden-line {
  background-color: var(--accent);
  min-width: 44px;
  max-width: 44px;
  height: 2px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.golden-line.max-w-150px {
  min-width: 150px;
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.golden-line.max-w-150px.margin-bottom-16px {
  transition: all .2s;
}

.golden-line.max-w-150px.margin-bottom-32px {
  background-color: var(--tan);
  transition: all .2s;
}

.golden-line.margin-top-65px {
  background-color: var(--tan);
  color: var(--tan);
  margin-top: 65px;
}

.golden-line.margin-bottom-4px {
  margin-bottom: 4px;
}

.golden-line.margin-top-40px {
  margin-top: 40px;
  transition: all .2s;
}

.golden-line.title {
  background-color: var(--accent);
  margin-top: 40px;
}

.card-icon {
  max-width: 98px;
}

.margin-bottom-16px {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Playfairdisplay, sans-serif;
}

.bg-dots-carousel-container {
  max-width: 1350px;
  margin-top: -342px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.cta-section {
  background-image: linear-gradient(#c1935154, #c1935154);
  padding-bottom: 140px;
  overflow: hidden;
}

.cta-container {
  opacity: .99;
  background-image: url('../images/background-get-a-free-quote-justicia-template.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 97%;
  margin-left: auto;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 40px;
  transition: all .2s;
  position: relative;
}

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

.white-text.align-center {
  text-align: center;
}

.white-text.align-center.margin-bottom-18px {
  margin-bottom: 18px;
  transition: all .2s;
}

.white-text.margin-bottom-24px {
  color: var(--white);
  background-color: #0000;
  transition: all .2s;
}

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

._2-buttons-container---center {
  justify-content: flex-start;
  transition: all .2s;
  display: flex;
}

.case-results-grid {
  grid-column-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  margin-bottom: 48px;
}

.amount {
  color: var(--titles);
  margin-top: 20px;
  margin-bottom: 8px;
  font-family: Playfairdisplay, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
}

.subtitle {
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 28px;
}

.subtitle.margin-bottom-24px {
  font-size: 16px;
  line-height: 22px;
}

.case-result-image {
  z-index: -1;
  position: relative;
}

.flex-horizontal-center {
  justify-content: center;
  transition: all .2s;
  display: flex;
}

.case-result-section {
  padding: 140px 20px;
}

.case-result-section.team {
  padding-bottom: 0;
}

.why-us-section {
  background-color: var(--midnight-blue);
  padding: 140px 20px;
  overflow: hidden;
}

.why-attorney-pros-wrapper {
  grid-column-gap: 61px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-left: 0;
}

.split-right-section {
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  justify-items: start;
}

.sign-container {
  grid-column-gap: 34px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.employee-name {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}

.job-title {
  color: var(--black-grey);
  font-size: 22px;
  line-height: 20px;
}

.content-why-us-container {
  grid-template-rows: auto;
  grid-template-columns: 44px 1fr;
}

.image-why-us {
  z-index: 1;
  opacity: 1;
  background-image: linear-gradient(#1b2549, #1b2549);
  width: 95%;
  position: relative;
}

.bg-dots-why-us {
  margin-top: 70px;
  transition: all .2s;
  position: absolute;
  inset: -22% -8.5% auto auto;
}

.card-testimonials {
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  max-width: 518px;
  height: 100%;
  margin-left: 0;
  margin-right: auto;
  padding-bottom: 48px;
  padding-left: 40px;
  padding-right: 40px;
}

.card-testimonials.margin-top-87px {
  margin-top: 87px;
}

.testimonial-avatar {
  max-width: 116px;
  margin-bottom: 24px;
}

.testimonial-name {
  color: var(--titles);
  width: auto;
  margin-right: 8px;
  font-weight: 600;
  line-height: 21.6px;
}

.testimonials-section {
  padding: 140px 20px;
  overflow: hidden;
}

.margin-bottom-24px {
  color: var(--black-grey);
  margin-bottom: 24px;
  font-family: Playfairdisplay, sans-serif;
}

.margin-bottom-24px.white {
  color: var(--white);
}

.testimonial-name-container {
  align-items: flex-end;
  margin-bottom: 10px;
  display: flex;
}

.team-section {
  background-color: var(--titles);
  padding: 140px 20px;
  overflow: hidden;
}

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

.dark-grey-text-color.margin-bottom-40px {
  color: var(--white);
  text-align: left;
  margin-bottom: 60px;
  font-family: Playfairdisplay, sans-serif;
  font-weight: 300;
}

.our-team-cards-wrapper {
  grid-column-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 130px;
}

.card-team {
  border: 1px solid #262a36;
  min-width: auto;
  padding-bottom: 45px;
  padding-left: 20px;
  padding-right: 20px;
}

.team-member-avatar {
  width: 68%;
}

.telephone-number {
  color: var(--white);
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
}

.email-team {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.email-team:hover {
  color: var(--accent);
}

.team-card-content {
  flex-direction: column;
  align-items: center;
  margin-top: -71px;
  display: flex;
}

.divider-card-team {
  background-color: #ffffff21;
  min-width: 100%;
  height: 1px;
  margin: 24px auto;
}

.contact-wrapper {
  grid-column-gap: 70px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
}

.line-card-team {
  background-color: var(--accent);
  width: 48px;
  height: 2px;
  margin-top: 32px;
  margin-bottom: 23px;
}

.carousel-testimonials {
  background-color: #0000;
  justify-content: flex-end;
  align-items: center;
}

.carousel-testimonials.is-contained {
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
}

.carousel-testimonials-mask {
  width: 518px;
  overflow: visible;
}

.carousel-testimonials-slider {
  margin-right: 32px;
}

.card-testimonials-wrapper {
  margin-top: -57px;
}

.grid-title-case-results {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-bottom: 60px;
}

.contact-section {
  background-image: linear-gradient(to bottom, var(--titles) 50%, white 50%);
}

.text-field {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--light-grey);
  min-height: 62px;
  margin-bottom: 0;
  font-size: 20px;
  transition: all .3s ease-in-out;
}

.text-field:hover {
  border-bottom-color: var(--accent);
}

.text-field:focus {
  border-width: 0 0 1px;
  border-color: var(--accent);
}

.link-form {
  color: var(--titles);
  letter-spacing: 0;
  text-transform: none;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.link-form:hover {
  color: var(--accent);
}

.form-block {
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  min-width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  padding: 80px 48px;
}

.submit-button {
  background-color: var(--black-grey);
  color: var(--white);
  text-transform: uppercase;
  padding: 24px 50px;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  transition: all .3s ease-in-out;
}

.submit-button:hover {
  background-color: var(--accent);
}

.form-container {
  z-index: 1;
  background-image: linear-gradient(to right, var(--white) 97%, transparent 97%);
  flex-direction: column;
  padding: 140px 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-area {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--light-grey);
  min-width: 100%;
  max-width: 100%;
  min-height: 105px;
  margin-bottom: 0;
  font-size: 20px;
  transition: all .3s ease-in-out;
}

.text-area:hover {
  border-bottom-color: var(--accent);
}

.text-area:focus {
  border-width: 0 0 1px;
  border-color: var(--accent);
}

.h2-form {
  margin-bottom: 16px;
  font-size: 44px;
  line-height: 43.2px;
  transition: all .2s;
}

.footer {
  background-color: var(--midnight-blue);
  text-align: center;
  align-items: flex-start;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-flex-container {
  background-color: var(--midnight-blue);
  text-align: center;
  justify-content: space-between;
  padding: 87px 230px;
  display: block;
}

.footer-logo-link {
  flex: 0 auto;
  min-width: 60px;
  max-height: 60px;
}

.footer-image {
  object-position: 0% 50%;
  width: 400px;
  height: 100%;
  margin-bottom: 16px;
  transition: all .2s;
}

.name {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}

.social-network-footer {
  margin-bottom: 40px;
}

.social-network {
  transition: all .2s ease-in-out;
}

.social-network:hover {
  opacity: .7;
}

.footer-copyright-text {
  opacity: .8;
  color: var(--titles);
  line-height: 26px;
  transition: all .2s;
}

.footer-copyright-text.links {
  margin-top: 20px;
}

.paragraph-footer {
  color: var(--light-slate-grey);
  max-width: 500px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  transition: all .2s;
}

.link-footer {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 20px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: block;
}

.link-footer:hover {
  color: var(--accent);
}

.menu-footer {
  justify-content: center;
  font-family: Playfairdisplay, sans-serif;
  transition: all .2s;
  display: flex;
}

.margin-l-r-36px {
  margin-left: 36px;
  margin-right: 36px;
}

.title-awards {
  color: var(--titles);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 136px;
  font-size: 22px;
  font-weight: 600;
  transition: all .2s;
}

.grid-hero {
  color: var(--accent);
  grid-template-rows: auto;
  grid-template-columns: auto 1.25fr;
  margin-bottom: 100px;
}

.grid-hero.team {
  margin-top: 100px;
}

.split-left-about-wrapper {
  margin-top: 107px;
  margin-right: 0%;
}

.image-about {
  max-width: 95%;
  position: relative;
}

.arrow-left-testimonials {
  border: 1px solid var(--accent);
  filter: saturate(0%);
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 28px 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: -53% 12% auto auto;
}

.arrow-left-testimonials:hover {
  filter: none;
}

.practice-areas-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 8.75fr;
  margin-bottom: 50px;
}

.arrow-right {
  border: 1px solid var(--dark-grey);
  filter: saturate(0%);
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 28px 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: -20% 1% auto auto;
}

.arrow-right:hover {
  border-color: var(--accent);
  filter: none;
}

.margin-right-32px {
  margin-right: 32px;
}

.margin-bottom-32px {
  margin-bottom: 32px;
}

.bg-pattern-dots-form {
  z-index: -1;
  transition: all .2s;
  position: absolute;
  inset: auto auto -11% -10%;
}

.margin-bottom-26px {
  margin-bottom: 26px;
  transition: all .2s;
}

.icon-form {
  margin-right: 14px;
}

.contact-phone-number-wrapper {
  margin-bottom: 14px;
  transition: all .2s;
}

.images-wrapper {
  position: relative;
}

.arrow-left-icon:hover, .arrow-right-icon:hover {
  filter: none;
}

.awards {
  justify-content: space-between;
  align-items: center;
  width: 803px;
  display: flex;
}

.h1-wrapper {
  margin-right: 220px;
}

.about-image-wrapper {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto -20px -59% auto;
}

.awards-wrapper {
  z-index: 1;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1288px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.default-button-dropdown-menu {
  background-color: var(--white);
  color: var(--titles);
  padding: 18px 34px;
  font-weight: 700;
  line-height: 18px;
}

.award {
  transition: all .2s;
}

.hero-buttons-wrapper {
  margin-top: 44px;
  transition: all .2s;
}

.contact-email-wrapper {
  transition: all .2s;
}

.slide-nav {
  display: none;
}

.bg-dots-carousel {
  z-index: -10;
  transition: all .2s;
  position: relative;
}

.sign {
  transition: all .2s;
}

.button-mobile-container {
  display: none;
}

.next-section-button-wrapper {
  justify-content: flex-end;
  display: inline-block;
}

.next-section-button {
  filter: invert(38%);
  transition: all .3s ease-in-out;
}

.next-section-button:hover {
  filter: none;
}

.about-justicia-law-firm-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.paragraph-why {
  color: var(--white);
  max-width: none;
  font-family: Mulish, sans-serif;
  transition: all .2s;
}

.next-section-button-container {
  justify-content: flex-end;
  display: flex;
}

.link-phone-number-team {
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.link-phone-number-team:hover {
  color: var(--accent);
}

.case-result-content-card {
  z-index: 2;
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  margin-top: -150px;
  margin-left: 18px;
  margin-right: 18px;
  padding: 40px 32px 48px;
  position: relative;
}

.brand.w--current {
  color: var(--accent);
}

.logo {
  width: 300px;
}

.copyright-container {
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

.about-container {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  max-width: 1288px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.split-right-image-wrapper {
  position: relative;
}

.title-404 {
  color: var(--black-grey);
  margin-bottom: 20px;
}

.paragraph-404 {
  margin-bottom: 40px;
}

._404 {
  color: var(--accent);
  font-family: Muli;
  font-size: 296px;
  font-weight: 200;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 480px;
  display: flex;
}

.h2-password {
  margin-bottom: 40px;
  font-size: 48px;
}

.text-field-password {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--light-grey);
  background-color: #0000;
  min-height: 64px;
  margin-bottom: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 20px;
  transition: all .3s ease-in-out;
}

.text-field-password:hover {
  border-bottom-color: var(--accent);
}

.text-field-password:focus {
  border-width: 0 0 1px;
  border-color: var(--accent);
}

.password-icon {
  width: 30%;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
}

.color-text {
  padding: 24px 20px 32px;
}

.text-span {
  color: #091439;
}

.icongraphy-grid {
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.menu-title {
  color: var(--titles);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-top: 1px solid #dfe1eb;
  border-bottom: 1px solid #dfe1eb;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 600;
}

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

.grid-3-columns.buttons {
  grid-row-gap: 40px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: auto;
}

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

.paragraph-large {
  opacity: .8;
  font-size: 28px;
  line-height: 145%;
}

.style-content {
  width: 85%;
}

.color {
  border: 1px solid var(--light-grey);
  background-color: #fff;
}

.style-side-bar {
  z-index: 4;
  border-right: 1px solid #dfe1eb;
  width: 15%;
  min-width: 260px;
  height: 100%;
  min-height: 100vh;
  position: sticky;
  top: 0;
}

.container-left-540px {
  max-width: 540px;
}

.container-left-540px.margin-bottom-40px {
  max-width: 100%;
}

.typography-block {
  border-bottom: 0 solid #dfe1eb;
  padding-top: 0;
  padding-bottom: 0;
}

.typography-block.top {
  padding-top: 0;
}

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

.margin-bottom-50px {
  margin-bottom: 50px;
  font-family: Playfairdisplay, sans-serif;
  font-weight: 400;
}

.sidebar-button {
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  position: absolute;
  inset: auto 0% 0%;
}

.typography-size {
  border-bottom: 1px solid var(--light-grey);
  color: var(--accent);
  margin-top: 60px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-family: Playfairdisplay, sans-serif;
  font-size: 23px;
  line-height: 1.5em;
}

.typography-size.h1 {
  margin-top: -23px;
}

.style-section-header {
  background-color: var(--titles);
  padding: 140px 5%;
  position: relative;
}

.container-880px {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.container-880px.margin-80px {
  margin-top: 44px;
  margin-bottom: 44px;
  padding-left: 24px;
  padding-right: 24px;
}

.color-block {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  min-height: 140px;
}

.color-block.accent {
  background-color: var(--accent);
  border-radius: 0;
}

.color-block.titles {
  background-color: var(--titles);
  border-radius: 0;
}

.color-block.light-grey {
  background-color: var(--light-grey);
  border-radius: 0;
}

.color-block.text {
  background-color: var(--body-text);
  border-radius: 0;
}

.nav-link-block {
  color: var(--body-text);
  width: 100%;
  min-height: 28px;
  padding: 14px 24px;
  font-family: Mulish, sans-serif;
  text-decoration: none;
  transition: color .35s, background-color .35s;
}

.nav-link-block:hover {
  color: var(--titles);
  background-color: #f3bb9314;
}

.nav-link-block.w--current {
  border-right: 4px solid var(--accent);
  color: var(--titles);
  background-color: #f3bb9324;
}

.text-color-white {
  color: #fff;
  margin-bottom: 24px;
  font-family: Mulish, sans-serif;
}

.text-color-white.margin-bottom-20px {
  font-family: Playfairdisplay, sans-serif;
}

.color-title {
  color: var(--titles);
  font-size: 20px;
  font-weight: 700;
}

.style-section-content {
  border-bottom: 1px solid #dfe1eb;
  padding: 110px 5% 120px;
}

.color-hex {
  color: var(--body-text);
  margin-top: 4px;
}

.logo-sidebar {
  justify-content: flex-start;
  align-items: center;
  padding: 18px 24px;
  display: flex;
}

.black-text-color {
  color: var(--titles);
}

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

.feature-card {
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  color: #b8b9c2;
  max-width: 380px;
  margin-left: 0;
  margin-right: auto;
  padding: 65px 32px 74px;
  overflow: hidden;
}

.case-result-card {
  max-width: 408px;
}

.case-result-card.team {
  max-width: 100%;
}

.slide-nav-2 {
  display: none;
}

.transition-bg-image-2 {
  z-index: 1;
  background-color: #e5d4cf;
  width: 95%;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  display: none;
  position: absolute;
  inset: 0%;
}

.error-message {
  color: #df6f53;
  text-align: center;
  background-color: #fff1f1;
  margin-top: 28px;
  padding: 24px 39px;
}

.success-message {
  color: var(--titles);
  background-color: #faf5f2;
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: 22px;
}

.form-wrapper {
  margin-left: 0;
  position: relative;
}

.button-wrapper {
  margin-top: 60px;
  transition: all .2s;
}

.heading {
  transition: all .2s;
}

.cards-wrapper {
  margin-bottom: 40px;
}

.transition-bg-image-3 {
  z-index: 1;
  background-color: var(--black-grey);
  width: 100%;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  display: none;
  position: absolute;
  inset: 0%;
}

.transition-bg-image {
  z-index: 1;
  background-color: #e0d3c9;
  width: 95%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% auto 0% 5%;
}

.container-550px---left {
  max-width: 1288px;
}

.color-white {
  color: #fff;
  font-family: Mulish, sans-serif;
}

.container-494px---left {
  max-width: none;
}

.margin-bottom-40px {
  margin-bottom: 40px;
}

.container-600px, .container-1288px {
  max-width: 1288px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text h2 {
  margin-top: 32px;
  margin-bottom: 24px;
  font-size: 44px;
  line-height: 1.2em;
}

.rich-text li {
  margin-bottom: 16px;
  line-height: 1.2em;
}

.rich-text ul {
  margin-top: 44px;
  margin-bottom: 24px;
  padding-left: 22px;
}

.rich-text ol {
  margin-top: 44px;
  margin-bottom: 22px;
  padding-left: 22px;
}

.rich-text h3 {
  margin-top: 24px;
  font-family: Playfair Display;
}

.rich-text blockquote {
  border-left-color: var(--accent);
  margin-top: 26px;
  margin-bottom: 26px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 20px;
  line-height: 30px;
}

.rich-text figure {
  margin-top: 24px;
}

.search-result-item {
  border: 1px solid #dfe1e7;
  padding: 48px 52px;
}

.search-wrapper {
  margin-top: 56px;
}

.margin-top-48px {
  margin-top: 48px;
}

.grid-form-container {
  grid-column-gap: 24px;
  grid-row-gap: 48px;
  margin-bottom: 48px;
}

.licenses-hero {
  background-color: var(--titles);
  padding: 160px 24px 86px;
}

.licenses-content {
  padding: 88px 24px;
}

.licences-subtitle {
  font-size: 48px;
}

.content-with-line {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 44px 1fr;
}

.footer-link {
  color: var(--titles);
  letter-spacing: 0;
  text-transform: none;
  font-size: 18px;
  text-decoration: underline;
  transition: color .35s;
}

.footer-link:hover {
  color: var(--accent);
}

.bold-text, .bold-text-2 {
  color: var(--titles);
}

.practice-areas-hero {
  background-color: var(--titles);
  padding: 160px 24px 200px;
}

.container-practice-areas {
  background-color: #fff;
  border: 1px solid #e9e9e9;
  max-width: 820px;
  margin-top: -130px;
  margin-left: auto;
  margin-right: auto;
  padding: 72px 72px 54px;
}

.section {
  padding-bottom: 120px;
  padding-left: 24px;
  padding-right: 24px;
}

.practice-area-head-wrapper {
  border-bottom: 1px solid var(--light-grey);
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 56px;
  display: flex;
}

.practice-area-title {
  color: var(--titles);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 32px;
}

.practice-area-excerpt {
  margin-bottom: 0;
}

.image {
  margin-right: 32px;
}

.arrow-link {
  color: var(--accent);
  margin-left: 14px;
}

.arrow-link-container {
  font-family: Mulish, sans-serif;
  text-decoration: none;
  display: flex;
}

.heading-small-h2 {
  font-size: 40px;
}

.paragraph-405 {
  font-family: Mulish, sans-serif;
}

.bold-text-4 {
  color: var(--tan);
  text-align: left;
  font-weight: 400;
}

.bold-text-5 {
  color: var(--accent);
  text-align: left;
  font-family: Mulish, sans-serif;
  font-weight: 400;
}

.bold-text-6 {
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6em;
}

.div-block-8 {
  flex-direction: column;
  align-items: flex-start;
  width: 85%;
  max-width: 1600px;
  padding-top: 0;
  display: flex;
}

.paragraph-406 {
  color: #fff;
  width: 60%;
  margin-bottom: 60px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9em;
}

.paragraph-406.black {
  color: #6f727b;
  width: 100%;
  margin-bottom: 0;
  font-family: Mulish, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9em;
}

.bold-text-7 {
  font-family: Lato, sans-serif;
  font-size: 24px;
}

.link-3 {
  color: var(--peru);
}

.paragraph-407 {
  margin-top: 0;
  padding-top: 20px;
  font-family: Mulish, sans-serif;
}

.hero-section-copy {
  background-color: #16181fba;
  align-items: center;
  padding: 290px 20px 232px;
  position: relative;
}

.hero-section-copy.unterseiten {
  padding-top: 140px;
  padding-bottom: 40px;
}

.areas-section-copy {
  padding: 180px 40px 140px 20px;
  overflow: hidden;
}

.areas-section-copy.unterseiten {
  padding-top: 140px;
  padding-bottom: 20px;
}

.paragraph-408.white {
  color: var(--white);
}

.heading-2 {
  font-family: Playfairdisplay, sans-serif;
}

.areas-kontakt {
  background-color: var(--midnight-blue);
  padding: 100px 40px 40px 20px;
  overflow: hidden;
}

.kontakt {
  z-index: 1;
  opacity: .48;
  background-image: linear-gradient(#1b2549, #1b2549);
  width: 95%;
  position: relative;
}

.case-result-content-card-2 {
  z-index: 2;
  background-color: #fff;
  border: 1px solid #bfc1c8;
  margin-top: -150px;
  margin-left: 18px;
  margin-right: 18px;
  padding: 40px 32px 48px;
  position: relative;
}

.subtitle-2 {
  color: #c19351;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 28px;
}

.subtitle-2.margin-bottom-24px {
  font-size: 16px;
  line-height: 22px;
}

.margin-bottom-24px-2 {
  color: #313b5d;
  margin-bottom: 24px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.amount-2 {
  color: #16181f;
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
}

.golden-line-2 {
  background-color: #c19351;
  min-width: 44px;
  max-width: 44px;
  height: 2px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.golden-line-2.title {
  background-color: #c19351;
  margin-top: 40px;
}

.heading-3 {
  font-family: Playfairdisplay, sans-serif;
}

.paragraph-409 {
  font-family: Mulish, sans-serif;
}

.bold-text-8 {
  font-weight: 400;
}

.paragraph-410, .paragraph-411 {
  font-family: Mulish, sans-serif;
}

.text-block-4 {
  font-family: Playfairdisplay, sans-serif;
}

.arrow-right-2 {
  filter: saturate(0%);
  border: 1px solid #aaaebd;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 28px 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: -20% 1% auto auto;
}

.arrow-right-2:hover {
  filter: none;
  border-color: #c19351;
}

._1 {
  font-family: Mulish, sans-serif;
}

.margin-bottom-16px-2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Mulish, sans-serif;
  font-weight: 500;
}

.arrow-left-2 {
  filter: saturate(0%);
  background-color: #fff;
  border: 1px solid #aaaebd;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 28px 10px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: -20% 10% auto auto;
}

.arrow-left-2:hover {
  filter: none;
  border-color: #c19351;
}

.feature-card-2 {
  color: #b8b9c2;
  background-color: #fff;
  border: 1px solid #bfc1c8;
  max-width: 380px;
  margin-left: 0;
  margin-right: auto;
  padding: 65px 32px 74px;
  overflow: hidden;
}

.heading-4, .heading-5, .heading-6 {
  font-family: Playfairdisplay, sans-serif;
}

.typography-size-2 {
  color: #c19351;
  border-bottom: 1px solid #bfc1c8;
  margin-top: 60px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-family: Playfairdisplay, sans-serif;
  font-size: 23px;
  line-height: 1.5em;
}

.paragraph-footer-2 {
  color: #959bad;
  max-width: 500px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  transition: all .2s;
}

.bold-text-9 {
  color: #c19351;
  text-align: left;
  font-weight: 400;
}

.text-span-2 {
  font-size: 18px;
}

.paragraph-footer-3 {
  color: #959bad;
  max-width: 500px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  transition: all .2s;
}

.bold-text-10 {
  color: #c19351;
  text-align: left;
  font-family: Mulish, sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 1920px) {
  p {
    font-size: 20px;
  }

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

  .hero-section {
    background-color: #16181fd9;
  }

  .large-button {
    background-color: var(--midnight-blue);
  }

  .large-button.full-width {
    font-size: 20px;
  }

  .divider {
    max-width: 1440px;
  }

  .awards-section {
    margin-top: -117px;
  }

  .primary-button {
    font-size: 18px;
  }

  .primary-button.outline {
    letter-spacing: 2px;
    font-size: 18px;
  }

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

  .golden-line.max-w-150px.margin-bottom-32px {
    object-fit: fill;
  }

  .golden-line.margin-top-65px {
    color: var(--peru);
  }

  .bg-dots-carousel-container {
    max-width: 1550px;
  }

  .cta-section {
    background-color: var(--body-text);
    background-image: none;
  }

  .subtitle, .testimonial-name {
    font-size: 20px;
  }

  .testimonial-name-container {
    margin-bottom: 14px;
  }

  .card-team {
    padding-bottom: 40px;
  }

  .telephone-number {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .link-form {
    font-size: 20px;
  }

  .footer, .footer-flex-container {
    background-color: var(--midnight-blue);
  }

  .footer-image {
    width: 200px;
  }

  .icon-form {
    width: 48px;
  }

  .contact-phone-number-wrapper {
    margin-bottom: 24px;
  }

  .paragraph-why {
    max-width: none;
  }

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

  .paragraph-404 {
    font-size: 20px;
    line-height: 1.1em;
  }

  .menu-title, .typography-size {
    font-size: 20px;
  }

  .typography-size.h1 {
    margin-top: -7px;
  }

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

  .nav-link-block {
    font-size: 20px;
  }

  .feature-card {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .case-result-card {
    max-width: 600px;
  }

  .container-550px---left, .container-494px---left {
    max-width: none;
  }

  .container-600px {
    max-width: 720px;
  }

  .testimonial-role {
    font-size: 20px;
  }

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

  .rich-text ul, .rich-text ol {
    font-size: 20px;
  }

  .container-practice-areas {
    max-width: 1000px;
    padding: 80px;
  }

  .arrow-link-container, .text-block {
    font-size: 20px;
  }

  .webflow {
    color: var(--titles);
  }

  .bold-text-4 {
    color: var(--peru);
  }

  .paragraph-406.black {
    font-size: 20px;
  }

  .text-block-2, .text-block-3 {
    line-height: 1.2em;
  }

  .hero-section-copy {
    background-color: #16181fd9;
  }

  .hero-section-copy.unterseiten {
    padding-top: 220px;
    padding-bottom: 100px;
  }

  .areas-section-copy.unterseiten {
    padding-bottom: 0;
  }

  .subtitle-2 {
    font-size: 20px;
  }

  .feature-card-2 {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .typography-size-2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .navbar {
    inset: 0% 0% auto;
  }

  .hero-section {
    margin-top: -95px;
    padding-top: 240px;
    padding-bottom: 240px;
  }

  .grid-testimonials {
    grid-template-columns: auto;
    margin-bottom: 233px;
  }

  .standard-button {
    display: none;
  }

  .standard-button.outline {
    display: inline-block;
  }

  .nav-link {
    color: var(--titles);
    border-bottom: 1px solid #bfc1c82b;
  }

  .divider.margin-top-and-bottom-56px {
    margin-right: 0;
  }

  .page-wrapper.style-guide {
    flex-direction: column;
  }

  .awards-section {
    margin-top: -122px;
  }

  .awards-container {
    padding-top: 40px;
    padding-bottom: 40px;
    top: -161px;
  }

  .about-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .bg-pattern-dots {
    position: absolute;
    top: -4%;
    left: -3%;
  }

  .areas-section {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 0;
  }

  .carousel.is-contained {
    margin-left: 60px;
  }

  .carousel.is-contained.unterseite {
    margin-top: 100px;
  }

  .arrow-left {
    inset: -25% auto auto;
  }

  .arrow-right-testimonials {
    inset: -50% auto auto 98px;
  }

  .golden-line {
    margin-left: 0;
    margin-right: auto;
  }

  .golden-line.margin-bottom-4px {
    margin-left: 0;
  }

  .bg-dots-carousel-container {
    margin-left: 36px;
  }

  .cta-section {
    padding-bottom: 0;
  }

  .cta-container {
    max-width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .case-results-grid {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .amount {
    margin-top: 10px;
  }

  .flex-horizontal-center {
    justify-content: flex-start;
    margin-left: 61px;
  }

  .case-result-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .why-us-section {
    background-image: linear-gradient(to top, var(--seashell) 32%, var(--titles) 32%);
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .why-attorney-pros-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    display: flex;
  }

  .split-right-section {
    display: block;
  }

  .image-why-us {
    width: 100%;
  }

  .bg-dots-why-us {
    inset: auto 3% -6% auto;
  }

  .testimonials-section, .team-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .our-team-cards-wrapper {
    grid-row-gap: 100px;
    grid-template-columns: auto auto;
  }

  .team-member-avatar {
    width: 50%;
  }

  .contact-wrapper {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
    grid-template-areas: ".";
  }

  .carousel-testimonials.is-contained {
    margin-left: 60px;
  }

  .grid-title-case-results {
    grid-template-columns: 1fr;
  }

  .form-block {
    min-width: 100%;
    max-width: 100%;
  }

  .form-container {
    background-color: #fff;
    background-image: none;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-flex-container {
    padding: 100px 80px;
  }

  .title-awards {
    width: auto;
    margin-right: 124px;
  }

  .grid-hero {
    margin-bottom: 60px;
  }

  .split-left-about-wrapper {
    margin-top: 0;
    margin-right: 0%;
  }

  .image-about {
    max-width: 100%;
    position: relative;
  }

  .arrow-left-testimonials {
    inset: -50% auto auto;
  }

  .practice-areas-wrapper {
    grid-template-columns: auto;
    margin-bottom: 176px;
  }

  .arrow-right {
    inset: -25% auto auto 98px;
  }

  .bg-pattern-dots-form {
    bottom: -3%;
    left: -4%;
  }

  .images-wrapper {
    margin-top: 56px;
    margin-left: 0;
  }

  .awards {
    text-align: center;
    flex: none;
    justify-content: flex-start;
    width: auto;
  }

  .h1-wrapper {
    margin-right: 0;
  }

  .about-image-wrapper {
    justify-content: flex-start;
    margin-left: 60px;
    position: relative;
    bottom: auto;
    right: auto;
  }

  .awards-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: start;
    display: grid;
  }

  .default-button-dropdown-menu {
    background-color: var(--titles);
    color: var(--white);
    transition: all .3s ease-in-out;
  }

  .default-button-dropdown-menu:hover {
    background-color: var(--accent);
  }

  .award {
    max-width: 92px;
    margin: 20px;
  }

  .menu-button {
    background-color: var(--white);
    padding: 16.5px 10px;
  }

  .menu-button.w--open {
    border-color: var(--accent);
    background-color: var(--white);
  }

  .nav-menu {
    background-color: var(--white);
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 10px 6px #16181f7a;
  }

  .button-mobile-container {
    padding: 20px;
    display: flex;
  }

  .next-section-button {
    width: 70%;
  }

  .about-justicia-law-firm-grid {
    grid-row-gap: 85px;
    grid-template-columns: 1fr;
    grid-template-areas: ".";
  }

  .paragraph-why {
    max-width: none;
  }

  .next-section-button-container {
    justify-content: flex-start;
    margin-left: 60px;
  }

  .case-result-content-card {
    max-width: 676px;
  }

  .split-right-image-wrapper {
    position: static;
  }

  .menu-icon-top-line {
    background-color: var(--titles);
    min-width: 24px;
    max-width: 24px;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon-middle-line {
    background-color: var(--titles);
    min-width: 24px;
    max-width: 24px;
    height: 1px;
    margin-top: 4px;
    margin-bottom: 4px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon-bottom-line {
    background-color: var(--titles);
    min-width: 24px;
    max-width: 24px;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-title {
    display: block;
  }

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

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

  .nav-sidebar {
    padding-bottom: 10px;
    display: block;
  }

  .style-content {
    width: 100%;
  }

  .style-side-bar {
    width: 100%;
    min-width: 100%;
    min-height: auto;
    position: static;
  }

  .sidebar-button {
    flex-direction: column;
    align-items: center;
    display: none;
    position: static;
  }

  .typography-size {
    font-size: 24px;
    line-height: 1.9em;
  }

  .style-section-header {
    padding-left: 24px;
    padding-right: 24px;
    display: none;
  }

  .style-section-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .logo-sidebar {
    justify-content: flex-start;
    padding-bottom: 16px;
  }

  .case-result-card {
    width: 100%;
    max-width: 100%;
  }

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

  .form-wrapper {
    margin-left: 0;
  }

  .transition-bg-image {
    width: 100%;
    left: 0%;
  }

  .container-494px---left {
    max-width: 110.456%;
  }

  .container-1288px.contact {
    margin-left: 0;
    margin-right: 0;
  }

  .content-with-line {
    grid-row-gap: 19px;
  }

  .div-block-8 {
    width: 100%;
    padding: 40px 20px;
  }

  .paragraph-406 {
    width: 100%;
  }

  .link-3 {
    color: var(--peru);
  }

  .link-block {
    max-width: 33%;
  }

  .hero-section-copy {
    margin-top: -95px;
    padding-top: 240px;
    padding-bottom: 240px;
  }

  .areas-section-copy {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 0;
  }

  .areas-kontakt {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 40px;
  }

  .kontakt {
    width: 100%;
  }

  .case-result-content-card-2 {
    max-width: 676px;
  }

  .amount-2 {
    margin-top: 10px;
  }

  .golden-line-2 {
    margin-left: 0;
    margin-right: auto;
  }

  .arrow-right-2 {
    inset: -25% auto auto 98px;
  }

  .arrow-left-2 {
    inset: -25% auto auto;
  }

  .typography-size-2 {
    font-size: 24px;
    line-height: 1.9em;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  a {
    font-size: 15px;
  }

  .utility-page-content {
    margin-left: 10px;
    margin-right: 10px;
  }

  .navbar {
    inset: 0% 0% auto;
  }

  .default-container {
    align-items: flex-start;
  }

  .hero-section {
    margin-top: -93px;
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .grid-testimonials {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 228px;
  }

  .standard-button.outline {
    padding-left: 20px;
    padding-right: 20px;
  }

  .large-button {
    text-align: center;
    flex: 1;
    min-width: 300px;
    padding: 20px 40px;
    font-size: 15px;
    display: inline-block;
  }

  .outline-button {
    text-align: center;
    min-width: 200px;
    padding: 20px 30px;
  }

  .awards-section {
    margin-top: 0;
  }

  .awards-container {
    background-color: var(--white);
    background-image: none;
    max-width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    position: static;
  }

  .about-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .primary-button {
    text-align: center;
    min-width: 200px;
    padding: 20px 30px;
    font-size: 15px;
  }

  .primary-button.margin-right-32px {
    justify-content: center;
    align-items: center;
    margin-right: 0;
    display: flex;
  }

  .bg-pattern-dots {
    inset: auto 17% -4% auto;
  }

  .areas-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .carousel-container {
    margin-left: 20px;
  }

  .carousel.is-contained {
    margin-left: 0;
  }

  .carousel.is-contained.unterseite {
    margin-top: 60px;
  }

  .arrow-left {
    top: -25%;
    bottom: auto;
    right: auto;
  }

  .arrow-right-testimonials {
    top: -46%;
    bottom: auto;
    right: auto;
  }

  .golden-line {
    margin-bottom: 10px;
  }

  .golden-line.margin-top-65px, .golden-line.margin-top-40px {
    margin-top: 0;
  }

  .margin-bottom-16px {
    font-size: 25px;
  }

  .bg-dots-carousel-container {
    margin-left: -12px;
  }

  .cta-container {
    margin-left: 0;
    padding: 80px 20px;
  }

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

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

  .amount {
    font-size: 25px;
  }

  .subtitle {
    font-size: 16px;
  }

  .flex-horizontal-center {
    margin-left: 0;
  }

  .case-result-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .why-us-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .employee-name {
    font-size: 22px;
  }

  .job-title {
    font-size: 18px;
  }

  .content-why-us-container {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .bg-dots-why-us {
    inset: auto -6% -4% auto;
  }

  .testimonials-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .team-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .our-team-cards-wrapper {
    grid-row-gap: 100px;
    grid-template-columns: 1fr;
    margin-top: 120px;
  }

  .team-member-avatar {
    width: 30%;
  }

  .email-team {
    font-size: 16px;
  }

  .contact-wrapper {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    grid-template-areas: ".";
  }

  .carousel-testimonials.is-contained {
    margin-left: 0;
  }

  .carousel-testimonials-mask, .carousel-testimonials-slider {
    width: 400px;
  }

  .grid-title-case-results {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .text-field, .link-form {
    font-size: 16px;
  }

  .form-block {
    min-width: 100%;
    max-width: 100%;
    padding: 60px 30px;
  }

  .submit-button {
    font-size: 15px;
  }

  .form-container {
    background-color: var(--white);
    background-image: none;
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .text-area {
    font-size: 16px;
  }

  .information-wrapper {
    margin-bottom: 22px;
  }

  .h2-form {
    margin-top: 0;
  }

  .footer {
    padding: 0 0 40px;
  }

  .footer-flex-container {
    padding: 80px 40px;
  }

  .footer-image {
    object-fit: contain;
  }

  .name {
    font-size: 20px;
  }

  .social-network-footer {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .footer-copyright-text {
    font-size: 16px;
  }

  .link-footer {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .menu-footer {
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .title-awards {
    text-align: center;
    margin-right: 0;
    font-size: 19px;
  }

  .grid-hero {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .split-left-about-wrapper {
    margin-top: 0;
  }

  .image-about {
    max-width: 100%;
  }

  .arrow-left-testimonials {
    inset: -46% auto auto 0%;
  }

  .practice-areas-wrapper {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 160px;
  }

  .arrow-right {
    top: -25%;
    bottom: auto;
    right: auto;
  }

  .bg-pattern-dots-form {
    bottom: -5%;
    left: -2%;
  }

  .images-wrapper {
    margin-left: 0;
  }

  .awards {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

  .about-image-wrapper {
    margin-left: 0;
    position: relative;
  }

  .awards-wrapper {
    margin-left: 0;
  }

  .award {
    max-width: 100px;
  }

  .hero-buttons-wrapper {
    grid-column-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .about-justicia-law-firm-grid {
    grid-row-gap: 40px;
    grid-template-areas: ".";
  }

  .next-section-button-container {
    display: none;
  }

  .link-phone-number-team {
    font-size: 16px;
  }

  .brand {
    padding-left: 0;
  }

  .copyright-container {
    margin-left: 20px;
    margin-right: 20px;
  }

  .split-right-image-wrapper {
    margin-top: 34px;
  }

  .paragraph-404 {
    font-size: 16px;
  }

  ._404 {
    font-size: 180px;
  }

  .utility-page-form {
    width: 100%;
  }

  .text-field-password {
    font-size: 16px;
  }

  .grid-3-columns.buttons {
    grid-row-gap: 57px;
    grid-template-columns: 1fr;
  }

  .paragraph-large {
    font-size: 20px;
  }

  .typography-size {
    font-size: 23px;
    line-height: 1.7em;
  }

  .case-result-card {
    width: auto;
    max-width: none;
    margin-left: 0;
  }

  .transition-bg-image {
    width: 100%;
  }

  .rich-text h2 {
    font-size: 32px;
  }

  .rich-text h3 {
    font-size: 22px;
  }

  .grid-form-container {
    grid-template-columns: 1fr;
  }

  .licenses-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .content-with-line {
    grid-template-columns: 1fr;
  }

  .container-practice-areas {
    padding: 48px 32px;
  }

  .section {
    padding-bottom: 60px;
  }

  .practice-area-head-wrapper {
    flex-direction: column;
  }

  .image {
    margin-bottom: 32px;
    margin-right: 0;
  }

  .link-3 {
    color: var(--peru);
  }

  .link-block {
    max-width: 50%;
  }

  .hero-section-copy {
    margin-top: -93px;
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .areas-section-copy, .areas-kontakt {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .subtitle-2 {
    font-size: 16px;
  }

  .amount-2 {
    font-size: 25px;
  }

  .golden-line-2 {
    margin-bottom: 10px;
  }

  .arrow-right-2 {
    top: -25%;
    bottom: auto;
    right: auto;
  }

  .margin-bottom-16px-2 {
    font-size: 25px;
  }

  .arrow-left-2 {
    top: -25%;
    bottom: auto;
    right: auto;
  }

  .typography-size-2 {
    font-size: 23px;
    line-height: 1.7em;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 16px;
  }

  h1, h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 15px;
  }

  .utility-page-content {
    align-items: stretch;
    margin-left: 20px;
    margin-right: 20px;
  }

  .navbar {
    inset: 0% 0% auto;
  }

  .default-container {
    align-items: stretch;
  }

  .hero-section {
    height: auto;
    margin-top: -94px;
  }

  .grid-testimonials {
    grid-template-columns: 1fr;
    margin-bottom: 192px;
  }

  .large-button {
    min-width: auto;
    display: block;
  }

  .outline-button {
    font-size: 15px;
  }

  .divider.margin-top-and-bottom-56px {
    margin-left: 0;
  }

  .awards-container {
    position: static;
  }

  .primary-button {
    font-size: 15px;
  }

  .primary-button.margin-right-32px {
    min-width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .bg-pattern-dots {
    width: 100%;
    margin-top: 75px;
    margin-left: -13px;
    inset: auto -3% -5% auto;
  }

  .carousel-container {
    margin-left: 0;
  }

  .card-wrapper {
    text-align: left;
  }

  .carousel.is-contained {
    width: auto;
  }

  .carousel.is-contained.unterseite {
    margin-top: 60px;
  }

  .arrow-left {
    margin-left: 10px;
    top: -28%;
    bottom: auto;
    right: auto;
  }

  .arrow-right-testimonials {
    top: -38%;
    bottom: auto;
    right: auto;
  }

  .carousel-slider {
    margin-right: 12px;
  }

  .carousel-mask {
    width: 100%;
    max-width: 100%;
  }

  .golden-line.margin-top-65px, .golden-line.margin-top-40px {
    margin-left: 0;
  }

  .margin-bottom-16px {
    text-align: left;
  }

  .bg-dots-carousel-container {
    margin-top: -347px;
  }

  ._2-buttons-container---center {
    grid-template-columns: 1fr;
  }

  .case-results-grid {
    grid-row-gap: 40px;
  }

  .amount {
    font-size: 24px;
  }

  .subtitle {
    font-size: 16px;
  }

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

  .job-title {
    font-size: 16px;
  }

  .content-why-us-container {
    grid-template-columns: 1fr;
  }

  .image-why-us {
    width: auto;
  }

  .bg-dots-why-us {
    width: 53%;
    inset: auto -6% -5% auto;
  }

  .card-testimonials {
    padding-left: 20px;
    padding-right: 20px;
  }

  .margin-bottom-24px {
    font-size: 30px;
  }

  .our-team-cards-wrapper {
    grid-row-gap: 68px;
    margin-top: 80px;
  }

  .team-member-avatar {
    width: 40%;
  }

  .team-card-content {
    margin-top: -41px;
  }

  .contact-wrapper {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
    grid-template-areas: ".";
  }

  .carousel-testimonials.is-contained, .carousel-testimonials-mask {
    width: auto;
  }

  .carousel-testimonials-slider {
    width: 100%;
    margin-right: 12px;
  }

  .card-testimonials-wrapper {
    text-align: left;
  }

  .grid-title-case-results {
    grid-template-columns: 1fr;
  }

  .form-block {
    min-width: 100%;
    max-width: 100%;
    padding: 40px 20px;
  }

  .submit-button {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .text-area {
    min-width: auto;
    max-width: none;
  }

  .footer {
    text-align: left;
    padding-bottom: 20px;
  }

  .footer-flex-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .footer-logo-link {
    height: 60px;
  }

  .footer-image {
    margin-bottom: 95px;
  }

  .name {
    font-size: 18px;
  }

  .social-network-footer {
    flex-direction: row;
    justify-content: center;
    display: flex;
  }

  .footer-copyright-text {
    text-align: center;
  }

  .title-awards {
    margin-right: 0;
    font-size: 18px;
  }

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

  .split-left-about-wrapper {
    margin-top: 0;
  }

  .image-about {
    width: 100%;
    max-width: none;
  }

  .arrow-left-testimonials {
    top: -38%;
  }

  .practice-areas-wrapper {
    grid-template-columns: 1fr;
    margin-bottom: 178px;
  }

  .arrow-right {
    top: -28%;
    bottom: auto;
    right: auto;
  }

  .bg-pattern-dots-form {
    bottom: -2%;
    left: -4%;
  }

  .awards {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, 110px);
    grid-auto-columns: 1fr;
    justify-items: center;
    width: 100%;
    display: grid;
  }

  .awards-wrapper {
    justify-items: center;
  }

  .award {
    max-width: 100px;
    margin: 0;
  }

  .hero-buttons-wrapper {
    grid-row-gap: 32px;
    grid-template-columns: .75fr;
  }

  .about-justicia-law-firm-grid {
    grid-template-columns: repeat(auto-fit, 100%);
  }

  .case-result-content-card {
    margin-top: -125px;
    margin-left: 12px;
    margin-right: 12px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .logo {
    width: 200px;
  }

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

  .split-right-image-wrapper {
    margin-top: 44px;
  }

  ._404 {
    font-size: 130px;
  }

  .password-icon {
    width: 175px;
  }

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

  .menu-title {
    display: block;
  }

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

  .paragraph-large {
    font-size: 19px;
  }

  .style-content {
    display: block;
  }

  .typography-size {
    line-height: 1.9em;
  }

  .style-section-header {
    padding-top: 80px;
    padding-bottom: 80px;
    display: none;
  }

  .style-section-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .feature-card {
    text-align: left;
    max-width: 100%;
    padding: 40px 20px;
  }

  .case-result-card {
    width: 100%;
    max-width: none;
  }

  .transition-bg-image-2 {
    width: auto;
  }

  .transition-bg-image {
    width: 100%;
  }

  .search-result-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-with-line {
    grid-template-columns: 1fr;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-practice-areas {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bold-text-3, .paragraph-405 {
    text-align: left;
  }

  .bold-text-6 {
    font-size: 19px;
  }

  .div-block-8 {
    padding-top: 0;
  }

  .paragraph-406.black {
    width: 100%;
    font-size: 15px;
    position: static;
    overflow: visible;
  }

  .link-3 {
    color: var(--peru);
  }

  .link-block {
    max-width: 80%;
  }

  .hero-section-copy {
    height: auto;
    margin-top: -94px;
  }

  .areas-section-copy.unterseiten {
    padding-top: 20px;
    padding-right: 0;
  }

  .paragraph-408 {
    font-size: 14px;
  }

  .heading-2 {
    font-size: 25px;
  }

  .areas-kontakt {
    padding-left: 40px;
  }

  .kontakt {
    width: auto;
  }

  .case-result-content-card-2 {
    margin-top: -125px;
    margin-left: 12px;
    margin-right: 12px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .subtitle-2 {
    font-size: 16px;
  }

  .margin-bottom-24px-2 {
    font-size: 30px;
  }

  .amount-2 {
    font-size: 24px;
  }

  .arrow-right-2 {
    top: -28%;
    bottom: auto;
    right: auto;
  }

  .margin-bottom-16px-2 {
    text-align: left;
  }

  .arrow-left-2 {
    margin-left: 10px;
    top: -28%;
    bottom: auto;
    right: auto;
  }

  .feature-card-2 {
    text-align: left;
    max-width: 100%;
    padding: 40px 20px;
  }

  .typography-size-2 {
    line-height: 1.9em;
  }
}

#w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-88a40b29, #w-node-_4114f974-ef97-e426-aaf0-4defc44df797-88a40b29, #w-node-_7f899efa-18bb-a46e-1cc0-1774e2fd5e8c-88a40b29, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-88a40b29, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-c4a40b2f, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-c4a40b2f, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-88a40b30, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-88a40b30, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-b9a40b31, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-b9a40b31, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-4fa40b32, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-4fa40b32, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-74a40b33, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-74a40b33, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-9da40b36, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-85a40b38, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-85a40b38, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-c1a40b3a, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-12a40b3b, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-12a40b3b, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-a4a40b3c, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-a4a40b3c, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-14a40b3d, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-14a40b3d, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-d9a40b3e, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-d9a40b3e, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-83a40b40, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-83a40b40, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-4ca40b41, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-4ca40b41, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-1aa40b43, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-1aa40b43, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-b8a40b44, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-b8a40b44, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-a2a40b46, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-a2a40b46, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-eea40b47, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-eea40b47, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-4aa40b48, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-4aa40b48, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-baa40b49, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-baa40b49, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-f7a40b4c, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-f7a40b4c, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-45a40b4d, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-45a40b4d, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-5ea40b4e, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-5ea40b4e, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-58a40b4f, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-58a40b4f, #w-node-e687b735-249f-a3a1-8b34-7f1c67f6b39b-a49e7dc3, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-a49e7dc3, #w-node-d3f4c4f5-ec25-3ff8-a571-062b90a2849b-9493de03, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-9493de03, #w-node-daf0de5a-1530-14ea-a9d5-0fa89e4782b4-1693e87b, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-1693e87b, #w-node-cab88c3d-ce7e-9972-88eb-5a8e218c3167-5dba8271, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-5dba8271, #w-node-_2262be68-f399-4772-a531-17156b9dbeec-fcb8dc0f, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-fcb8dc0f, #w-node-_9e092f92-e3e8-e63c-b709-77783c76f8be-8a69e921, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-8a69e921, #w-node-fd3b11a4-a202-0a7a-a563-1e993d29de81-38387e17, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-38387e17, #w-node-_012170ff-7ac7-86cc-6f9d-8b08c5142c08-2eb908a3, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-2eb908a3, #w-node-_8141feef-17d6-2635-62e8-e23ce240ae8b-c9af6bfe, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-c9af6bfe, #w-node-b237902b-da9b-66cf-b97e-97b755f33861-ad24a99b, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-ad24a99b, #w-node-ee3edf1a-ab59-21c3-acdc-f3993b105d24-8c19b8c0, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-8c19b8c0, #w-node-ccf48e42-90e2-c35f-c6dd-eceeeb578285-bb73b8cd, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-bb73b8cd, #w-node-ccb61967-9958-8af1-2ec2-b38a8dbd06cd-c139702b, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-c139702b, #w-node-_3db2a922-ff99-0ab5-5377-4858aaa01cf5-a3251c0c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: baseline;
}

@media screen and (min-width: 1920px) {
  #w-node-d3f4c4f5-ec25-3ff8-a571-062b90a2849b-9493de03, #w-node-daf0de5a-1530-14ea-a9d5-0fa89e4782b4-1693e87b, #w-node-cab88c3d-ce7e-9972-88eb-5a8e218c3167-5dba8271, #w-node-_2262be68-f399-4772-a531-17156b9dbeec-fcb8dc0f, #w-node-_9e092f92-e3e8-e63c-b709-77783c76f8be-8a69e921, #w-node-fd3b11a4-a202-0a7a-a563-1e993d29de81-38387e17, #w-node-_012170ff-7ac7-86cc-6f9d-8b08c5142c08-2eb908a3, #w-node-_8141feef-17d6-2635-62e8-e23ce240ae8b-c9af6bfe, #w-node-b237902b-da9b-66cf-b97e-97b755f33861-ad24a99b, #w-node-ee3edf1a-ab59-21c3-acdc-f3993b105d24-8c19b8c0, #w-node-ccf48e42-90e2-c35f-c6dd-eceeeb578285-bb73b8cd {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: baseline;
  }
}

@media screen and (max-width: 991px) {
  #w-node-b590a632-0b58-d840-ca48-60b185f872d6-88a40b29, #w-node-_673c255e-9698-cd94-4e13-5b5411e6d106-88a40b29, #w-node-d08a0c1b-570e-410b-44e2-f904f3db3c8e-c4a40b2f, #w-node-_2451ee41-7bff-f033-695d-c2685c4d91cf-88a40b30, #w-node-_37f7a6a8-4514-695c-685a-dbcde17f1a87-b9a40b31, #w-node-_0b0adc47-2bd5-6dd9-dfd2-7d922afd0331-4fa40b32, #w-node-e4555887-614f-990b-6efc-32b0f01e540c-74a40b33, #w-node-d08a0c1b-570e-410b-44e2-f904f3db3c8e-9da40b36, #w-node-_0b0adc47-2bd5-6dd9-dfd2-7d922afd0331-85a40b38, #w-node-d13be9aa-81ea-ea73-ae4a-d582d7fdb43b-03a40b39, #w-node-d08a0c1b-570e-410b-44e2-f904f3db3c8e-c1a40b3a, #w-node-_0b0adc47-2bd5-6dd9-dfd2-7d922afd0331-12a40b3b, #w-node-_0b0adc47-2bd5-6dd9-dfd2-7d922afd0331-a4a40b3c, #w-node-_98dde674-bf96-58e4-3a76-733f5008586f-14a40b3d, #w-node-_2cc24774-94c8-b7c2-ee11-54e73b8da8b8-d9a40b3e, #w-node-d7d565d3-d49e-68f0-6194-58c80781ff19-83a40b40, #w-node-_0b0adc47-2bd5-6dd9-dfd2-7d922afd0331-4ca40b41, #w-node-_7697ea23-6773-8268-4114-f236b0824f83-1aa40b43, #w-node-_0b0adc47-2bd5-6dd9-dfd2-7d922afd0331-b8a40b44, #w-node-f48a140f-4c58-85ea-0485-e29fa4600992-a2a40b46, #w-node-_0b0adc47-2bd5-6dd9-dfd2-7d922afd0331-eea40b47, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-4aa40b48, #w-node-_8c7b047c-f4d2-c480-435a-09001dfccf9b-baa40b49, #w-node-_0b0adc47-2bd5-6dd9-dfd2-7d922afd0331-f7a40b4c, #w-node-_05b76394-88be-050b-a7a4-e270db34ecb1-45a40b4d, #w-node-_0b0adc47-2bd5-6dd9-dfd2-7d922afd0331-5ea40b4e, #w-node-_4c1d5f49-7551-4d92-c74c-46599251b6ee-58a40b4f, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-a49e7dc3, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-9493de03, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-1693e87b, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-5dba8271, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-fcb8dc0f, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-8a69e921, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-38387e17, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-2eb908a3, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-c9af6bfe, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-ad24a99b, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-8c19b8c0, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-bb73b8cd, #w-node-_84eb1849-4beb-6d83-c596-78ada03fe4c2-c139702b, #w-node-d08a0c1b-570e-410b-44e2-f904f3db3c8e-a3251c0c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-c4a40b2f, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-88a40b30, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-b9a40b31, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-4fa40b32, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-74a40b33, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-9da40b36, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-85a40b38, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-c1a40b3a, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-12a40b3b, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-a4a40b3c, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-d9a40b3e, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-83a40b40, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-4ca40b41, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-1aa40b43, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-b8a40b44, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-a2a40b46, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-eea40b47, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-4aa40b48, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-baa40b49, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-f7a40b4c, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-45a40b4d, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-5ea40b4e, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-58a40b4f, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-a49e7dc3, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-9493de03, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-1693e87b, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-5dba8271, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-fcb8dc0f, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-8a69e921, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-38387e17, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-2eb908a3, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-c9af6bfe, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-ad24a99b, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-8c19b8c0, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-bb73b8cd, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-c139702b, #w-node-_4bb1bc49-6f20-83ef-520d-d99f51b53a23-a3251c0c {
    align-self: stretch;
  }
}


@font-face {
  font-family: 'Playfairdisplay';
  src: url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-ExtraBoldItalic.ttf') format('truetype'), url('../fonts/Mulish-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-ExtraBold.ttf') format('truetype'), url('../fonts/Mulish-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/Mulish-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}