@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
:root {
  --clr-primary-900: #1556BC;
  --clr-primary-700: #90BCFF;
  --clr-accent-700: #75B841;
  --clr-neutral-1000: #ffffff;
  --clr-neutral-700: #F5F5F5;
  --clr-dark-700: #000000;
  --clr-dark-500: #6F6F6F;
  --clr-dark-400: #707070;
  --clr-shadow: rgba(0, 0, 0, 0.05);
  --ff-primary: "Inter", sans-serif;
  --fw-regular: 400;
  --fw-medium: 600;
  --fs-700: 2.625rem;
  --fs-500: clamp(16px, 2rem, 32px);
  --fs-400: clamp(16px, 1.875rem, 30px);
  --fs-350: clamp(16px, 1.5rem, 24px);
  --fs-300: clamp(16px, 1.25rem, 20px);
  --fs-200: clamp(16px, 1.125rem, 18px);
  --fs-100: 1rem;
  --fs-50: 0.875rem;
  --fs-25: 0.75rem;
  --inline-padding: clamp(10px, 4vw, 70px);
  --transition-ease: cubic-bezier(.79, -0.02, .28, .98);
}

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

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

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

html {
  font-size: clamp(12px, 1.5vw, 16px);
  scroll-behavior: smooth;
}

html,
body {
  font-family: var(--ff-primary);
  color: var(--clr-dark-700);
  overflow-x: hidden;
}

html.locked {
  height: 100%;
  overflow-y: hidden;
}

body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background: var(--clr-neutral-1000);
  font-size: var(--fs-100);
}
body.non-scrollable {
  height: 100vh;
  overflow-y: hidden;
}

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

a {
  color: var(--clr-dark-700);
  text-decoration: none;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}

.flex-spb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.flex-spb-ais {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}

.ais {
  align-items: flex-start;
}

.flex-column {
  flex-direction: column;
}

.wrap {
  flex-wrap: wrap;
}

.wrap-reverse {
  flex-wrap: wrap-reverse;
}

.g10 {
  gap: 0.625rem;
}

.g20 {
  gap: 1.25rem;
}

.g40 {
  gap: 2.5rem;
}

.mY10 {
  margin: 0.625rem 0;
}

.mY20 {
  margin: 1.25rem 0;
}

.mY40 {
  margin: 2.5rem 0;
}

.mY60 {
  margin: 3.75rem 0;
}

.center {
  text-align: center;
}

.fw-light {
  font-weight: var(--fw-light);
}

.fw-semi-medium {
  font-weight: var(--fw-semi-medium);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fw-medium {
  font-weight: var(--fw-medium);
}

.clr-primary {
  color: var(--clr-primary-900);
}

.clr-primary700 {
  color: var(--clr-primary-700);
}

.clr-neutral {
  color: var(--clr-neutral-1000);
}

.clr-accent {
  color: var(--clr-accent-700);
}

.clr-dark {
  color: var(--clr-dark-700);
}

.fs-25 {
  font-size: var(--fs-25);
}

.fs-50 {
  font-size: var(--fs-50);
}

.fs-200 {
  font-size: var(--fs-200);
}

.fs-300 {
  font-size: var(--fs-300);
}

.fs-350 {
  font-size: var(--fs-350);
}

.fs-400 {
  font-size: var(--fs-400);
}

.fs-500 {
  font-size: var(--fs-500);
}

.fs-550 {
  font-size: var(--fs-550);
}

.fs-600 {
  font-size: var(--fs-600);
}

.fs-700 {
  font-size: var(--fs-700);
}

.pos-rel {
  position: relative;
}

:root {
  --header-height: 70px;
}

header,
main,
footer {
  padding-inline: var(--inline-padding);
}

header {
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
          backdrop-filter: blur(10px) saturate(180%);
  position: fixed;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.header-wrapper {
  width: 100%;
  max-width: 90rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.logo img {
  aspect-ratio: 1/1;
  width: 45px;
  transition: transform 0.4s var(--transition-ease);
}

.logo:hover img {
  transform: rotate(90deg);
}

.phone {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

nav a {
  margin: 0 10px;
}

nav a:not(.logo),
.phone {
  position: relative;
}
nav a:not(.logo)::before,
.phone::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--clr-dark-700);
  bottom: -2px;
  right: 0;
  opacity: 0;
  transition: 0.2s var(--transition-ease);
}

.phone::before {
  width: 80%;
}

nav a:not(.logo):hover::before,
.phone:hover::before {
  opacity: 1;
}

main {
  max-width: 90rem;
  margin-inline: auto;
  margin-top: var(--header-height);
}

.hero {
  padding-block: clamp(20px, 5vh, 100px);
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
}

.hero-text {
  width: clamp(17.5rem, 90%, 41.25rem);
}
.hero-text-subtitle {
  display: inline;
}
.hero-text-subtitle img {
  position: relative;
  bottom: -1rem;
  width: 3rem;
  display: inline-block;
}

.hero-images img {
  flex: 1;
  max-width: 80%;
  min-width: 18.75rem;
}

section:not(.hero) {
  margin-top: 4rem;
  padding-block: 3.125rem;
}

.section-title {
  font-size: var(--fs-500);
  font-weight: var(--fw-medium);
  color: var(--clr-dark-700);
  max-width: 53.75rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2.625rem;
}
.section-title em {
  color: var(--clr-primary-900);
}

.chip-wrapper {
  width: 100%;
  gap: 1rem;
}

.chip {
  font-size: var(--fs-350);
  padding: 1rem 1.25rem;
  color: var(--clr-dark-700);
  background-color: var(--clr-neutral-700);
  border: 1px solid transparent;
  transition: 0.2s var(--transition-ease);
}
.chip:hover {
  border-color: var(--clr-dark-700);
}

.law {
  min-height: 80vh;
  width: calc(100% + 2 * var(--inline-padding));
  position: relative;
  left: calc(-1 * var(--inline-padding));
  background-image: url("/assets/images/law.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.law .section-title {
  color: var(--clr-neutral-1000);
}
.law .section-title em {
  color: var(--clr-primary-700);
}

.services .flex {
  gap: 4rem;
}
.services-image {
  width: clamp(12.5rem, 40%, 22rem);
}
.services ul {
  flex: 1;
  min-width: 18.125rem;
  max-width: 43.75rem;
}

ul li {
  padding-left: 3rem;
  padding-block: 0.5rem;
  position: relative;
  list-style-type: none;
}
ul li em {
  color: var(--clr-primary-700);
}
ul li::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url("/assets/icons/check.svg");
  background-size: cover;
  max-width: 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.card-wrapper {
  gap: 1%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}

.card {
  padding: 2rem;
  text-align: center;
  max-width: 25rem;
  min-width: 18.125rem;
  flex: 1;
  font-size: var(--fs-300);
  border: 1px solid var(--clr-shadow);
  transition: 0.2s var(--transition-ease);
  margin: 1% auto 0;
}
.card:hover {
  box-shadow: 0 0 3.75rem var(--clr-shadow);
  border-color: transparent;
}
.card img {
  margin-inline: auto;
}
.card-title {
  margin-block: 1rem;
  font-weight: var(--fw-medium);
}

.pre-footer-wrapper {
  gap: 2rem;
  font-size: var(--fs-350);
}
.pre-footer-wrapper img {
  max-width: 21.5rem;
  flex: 1;
}
.pre-footer-wrapper ul {
  min-width: 18.125rem;
  max-width: 43.125rem;
  flex: 1;
}
.pre-footer-wrapper ul li:nth-child(2) {
  margin: 2rem 0 0 0;
}

footer {
  background-color: var(--clr-neutral-700);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-block: 2rem;
}
footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
}

.footer-wrapper {
  gap: 2rem;
  width: 100%;
  max-width: 90rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.footer-column {
  text-align: right;
}
.footer-column a {
  margin-left: auto;
  margin-bottom: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 765px) {
  .dn765 {
    display: none;
  }
  nav, footer nav a:not(.logo) {
    display: none;
  }
}
@media screen and (max-width: 612px) {
  .services .flex {
    flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (max-width: 360px) {
  .phone:not(.appear) span {
    display: none;
  }
  .phone:not(.appear) path {
    fill: var(--clr-primary-900);
  }
}