*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
  font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
  font-feature-settings: var(--default-font-feature-settings, normal);
  font-variation-settings: var(--default-font-variation-settings, normal);
  -webkit-tap-highlight-color: transparent;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
  font-feature-settings: var(--default-mono-font-feature-settings, normal);
  font-variation-settings: var(--default-mono-font-variation-settings, normal);
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

:-moz-focusring {
  outline: auto;
}

progress {
  vertical-align: baseline;
}

summary {
  display: list-item;
}

ol,
ul,
menu {
  list-style: none;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
  opacity: 1;
}

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

::file-selector-button {
  margin-inline-end: 4px;
}

::-moz-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
  ::-moz-placeholder {
    color: currentcolor;
  }
  ::placeholder {
    color: currentcolor;
  }
  @supports (color: color-mix(in lab, red, red)) {
    ::-moz-placeholder {
      color: color-mix(in oklab, currentcolor 50%, transparent);
    }
    ::placeholder {
      color: color-mix(in oklab, currentcolor 50%, transparent);
    }
  }
}
textarea {
  resize: vertical;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-date-and-time-value {
  min-height: 1lh;
  text-align: inherit;
}

::-webkit-datetime-edit {
  display: inline-flex;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

:-moz-ui-invalid {
  box-shadow: none;
}

button,
input:where([type=button], [type=reset], [type=submit]),
::file-selector-button {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[hidden]:where(:not([hidden=until-found])) {
  display: none !important;
}

:root {
  --color-blue-200: #050a50;
  --color-blue-150: #1e2364;
  --color-blue-100: #0014b4;
  --color-blue-80: #a9cdff;
  --color-blue-60: #cfe5ff;
  --color-blue-40: #e5f1ff;
  --color-blue-20: #f6f6f9;
  --color-orange: #f08c00;
  --color-orange-hovered: #e08403;
  --color-gray: #ceced1;
}

body {
  font-family: "Outfit", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button {
  text-box-trim: trim-both !important;
  text-box-edge: cap alphabetic !important;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  padding: 120px 0;
}
@media screen and (width <= 1440px) {
  .section {
    padding: 80px 0;
  }
}
@media screen and (width <= 768px) {
  .section {
    padding: 50px 0;
  }
}

.title__big {
  color: var(--color-blue-200);
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (width <= 1440px) {
  .title__big {
    font-size: 54px;
  }
}
@media screen and (width <= 1024px) {
  .title__big {
    font-size: 46px;
  }
}
@media screen and (width <= 768px) {
  .title__big {
    font-size: 25px;
  }
}

.section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.section__header.section__header-gap--40 {
  gap: 40px;
}
@media screen and (width <= 768px) {
  .section__header.section__header-gap--40 {
    gap: 25px;
  }
}
@media screen and (width <= 1440px) {
  .section__header {
    gap: 40px;
  }
}
@media screen and (width <= 768px) {
  .section__header {
    gap: 25px;
  }
}
.section__title {
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 118%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .section__title {
    font-size: 44px;
  }
}
@media screen and (width <= 1024px) {
  .section__title {
    font-size: 36px;
  }
}
@media screen and (width <= 768px) {
  .section__title {
    font-size: 25px;
  }
}
.section__subtitle {
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 123%;
  color: var(--color-blue-100);
}
@media screen and (width <= 1440px) {
  .section__subtitle {
    font-size: 22px;
  }
}
@media screen and (width <= 768px) {
  .section__subtitle {
    font-size: 18px;
  }
}
@media screen and (width <= 480px) {
  .section__subtitle {
    font-size: 12px;
  }
}

.link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-style: normal;
  font-weight: 700;
  color: var(--color-blue-100);
  transition: 0.3s color;
  font-size: 21px;
  line-height: 180.952%;
  flex-shrink: 0;
}
@media screen and (width <= 768px) {
  .link {
    font-size: 12px;
  }
  .link svg {
    width: 7px;
  }
}
.link.link-sm {
  font-size: 12px;
}
.link.link-blue-80 {
  color: var(--color-blue-80);
}
.link.link-blue-200 {
  color: var(--color-blue-200);
}
.link.link-orange {
  color: var(--color-orange);
}
.link.link-orange:hover {
  color: var(--color-blue-200);
}
.link.link-white {
  color: #fff;
}
.link path {
  transition: all 0.3s;
}
.link:hover {
  color: var(--color-orange);
}
.link:hover path {
  stroke: currentColor;
}

.btn {
  padding: 22.6px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 152.381%;
  cursor: pointer;
  transition: 0.3s all;
}
@media screen and (width <= 1440px) {
  .btn {
    padding: 20px 18px;
    font-size: 20px;
  }
}
@media screen and (width <= 992px) {
  .btn {
    padding: 16px 18px;
    font-size: 16px;
  }
}
@media screen and (width <= 768px) {
  .btn {
    padding: 11px 15px;
    font-size: 12px;
  }
}
.btn.btn-primary {
  background: var(--color-orange);
  color: #fff;
}
.btn.btn-primary:hover {
  background: var(--color-orange-hovered);
}

.p-inner {
  padding: 40px;
  background: var(--color-blue-40);
}
@media screen and (width <= 1440px) {
  .p-inner {
    padding: 30px;
  }
}
@media screen and (width <= 992px) {
  .p-inner {
    padding: 20px;
  }
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.text-white {
  color: #fff !important;
}

.text-blue-200 {
  color: var(--color-blue-200) !important;
}

.text-blue-100 {
  color: var(--color-blue-100) !important;
}

.text-blue-80 {
  color: var(--color-blue-80) !important;
}

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

.hidden {
  display: none !important;
}

.gap-40 {
  gap: 40px;
}

.bg-blue-20 {
  background: var(--color-blue-20) !important;
}

.bg-blue-40 {
  background: var(--color-blue-40) !important;
}

.bg-blue-60 {
  background: var(--color-blue-60) !important;
}

.bg-blue-200 {
  background: var(--color-blue-200) !important;
}

.w-full {
  width: 100%;
}

.max-w-fit {
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
}

.underline {
  text-decoration: underline;
}

.space-y-10 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.logo {
  position: absolute;
  left: 20px;
  top: 0;
  z-index: 20;
}
.logo img {
  max-width: 140px;
}
@media screen and (width <= 1280px) {
  .logo img {
    max-width: 100px;
  }
}
@media screen and (width <= 768px) {
  .logo img {
    max-width: 80px;
  }
}

.header__menus {
  position: relative;
  z-index: 10;
}

.top__menu-wrapper {
  background: #fff;
}
@media screen and (width <= 1280px) {
  .top__menu-wrapper {
    background: var(--color-blue-80);
  }
}
.top__menu-container {
  display: flex;
  justify-content: space-between;
  max-width: 1800px;
  margin: 0 auto;
  padding: 28px 20px 28px 180px;
  align-items: center;
}
@media screen and (width <= 1280px) {
  .top__menu-container {
    padding: 24.5px 20px 24.5px 140px;
  }
}
@media screen and (width <= 992px) {
  .top__menu-container {
    padding: 16px 20px 16px 140px;
  }
}
@media screen and (width <= 768px) {
  .top__menu-container {
    padding: 16px 20px 16px 125px;
  }
}
@media screen and (width <= 374px) {
  .top__menu-container {
    padding: 16px 20px 16px 115px;
  }
}
@media screen and (width <= 1280px) {
  .top__menu {
    display: none;
  }
}
.top__menu-list {
  display: flex;
  gap: 40px;
}
@media screen and (width <= 768px) {
  .top__menu-list {
    gap: 25px;
  }
}
.top__menu-link {
  font-size: 17px;
  color: var(--color-blue-200);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s color;
}
.top__menu-link:hover {
  color: var(--color-orange);
}
.top__menu-link svg {
  transition: 0.3s transform;
}
.top__menu-link:hover > svg {
  transform: translate(3px, -3px);
}
.top__menu-link:hover path {
  stroke: currentColor;
}

.bussiness__type-list {
  display: flex;
  gap: 40px;
}
@media screen and (width <= 768px) {
  .bussiness__type-list {
    gap: 25px;
  }
}
@media screen and (width <= 374px) {
  .bussiness__type-list {
    gap: 20px;
  }
}
.bussiness__type-link {
  font-size: 21px;
  line-height: 1;
  color: var(--color-blue-200);
  font-weight: 600;
  transition: 0.3s color;
  cursor: pointer;
}
@media screen and (width <= 1520px) {
  .bussiness__type-link {
    font-size: 18px;
  }
}
@media screen and (width <= 768px) {
  .bussiness__type-link {
    font-size: 16px;
  }
}
@media screen and (width <= 480px) {
  .bussiness__type-link {
    font-size: 12px;
  }
}
.bussiness__type-link.active {
  color: var(--color-blue-100);
  cursor: default;
}
.bussiness__type-link.active:hover {
  color: var(--color-blue-100);
}
.bussiness__type-link:hover {
  color: var(--color-orange);
}

.main__menu-wrapper {
  background: var(--color-blue-80);
}
@media screen and (width <= 1280px) {
  .main__menu-wrapper {
    display: none;
  }
}
.main__menu-container {
  display: flex;
  justify-content: space-between;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px 0 180px;
}
@media screen and (width <= 1280px) {
  .main__menu-container {
    padding: 0 20px 0 120px;
  }
}
.main__menu {
  width: 100%;
  transition: 0.3s all;
}
.main__menu-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
.main__menu-list .main__menu-list--item {
  position: relative;
}
.main__menu-list .main__menu-list--item:last-child .submenu {
  left: unset;
  right: 0;
}
.main__menu-list .main__menu-list--item:hover .submenu {
  display: block;
  opacity: 1;
  visibility: visible;
}
.main__menu-link {
  font-size: 21px;
  color: var(--color-blue-200);
  letter-spacing: -0.042px;
  line-height: 1;
  display: flex;
  transition: 0.3s all;
}
.main__menu-link span {
  padding: 28px 0;
  transition: 0.3s all;
}
.main__menu-link span:hover {
  color: var(--color-orange);
}
@media screen and (width <= 1520px) {
  .main__menu-link {
    font-size: 16px;
  }
}

.submenu {
  position: absolute;
  left: 0;
  top: 70px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 20px;
  background: #fff;
  transition: 0.3s all;
  visibility: hidden;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
  opacity: 0;
}
.submenu__list li:not(:last-child) {
  margin-bottom: 20px;
}
.submenu__link {
  font-size: 21px;
  letter-spacing: -0.042px;
  color: var(--color-blue-200);
  transition: 0.3s color;
  line-height: 1;
}
.submenu__link:hover {
  color: var(--color-orange);
}

.burger__btn {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 40;
  position: relative;
  display: none;
}
@media screen and (width <= 1280px) {
  .burger__btn {
    display: block;
  }
}
.burger__btn.active .burger__icon:before {
  background: var(--color-blue-200);
  transform: rotate(45deg);
  transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  top: 8px;
}
.burger__btn.active .burger__icon:after {
  background: var(--color-blue-200);
  transform: rotate(-45deg);
  bottom: 8px;
  transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
}
.burger__btn.active .burger__icon span {
  transform: scale(0);
}
.burger__icon {
  background: transparent;
  z-index: 3;
  display: flex;
  width: 20px;
  height: 18px;
  position: relative;
}
.burger__icon:before, .burger__icon:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-blue-200);
  transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
}
.burger__icon:before {
  top: 0;
}
.burger__icon::after {
  bottom: 0;
}
.burger__icon span {
  position: absolute;
  top: 8px;
  right: 0;
  width: 100%;
  background: var(--color-blue-200);
  height: 2px;
  transform: scale(1);
  transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
}

.mobile__menu {
  position: fixed;
  left: 0;
  top: 0;
  min-height: screen;
  width: 100%;
  height: 100%;
  background: var(--color-blue-40);
  z-index: 5;
  padding: 140px 20px 40px;
  transform: translateX(-100%);
  transition: 0.3s transform;
}
.mobile__menu.is-open {
  transform: translateX(0);
}
.mobile__menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
  overflow: auto;
}
.mobile__submenu-container {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile__menu-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  color: var(--color-blue-200);
}
.mobile__submenu {
  display: flex;
  width: 100%;
  gap: 15px;
}
@media screen and (width <= 374px) {
  .mobile__submenu {
    flex-direction: column;
  }
}
.mobile__submenu-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: var(--color-blue-200);
}
.mobile__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile__cta-link {
  font-size: 12px;
  gap: 5px;
}

.mobile__menu .accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.mobile__menu .accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s all;
}
.mobile__menu .accordion__item.active .accordion__trigger-icon--line1 {
  transform: rotate(0deg) translate(0, 2px);
}
.mobile__menu .accordion__item.active .accordion__content {
  grid-template-rows: 1fr;
}
.mobile__menu .accordion__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile__menu .accordion__trigger-text {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  color: var(--color-blue-200);
}
.mobile__menu .accordion__trigger-icon {
  width: 10px;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mobile__menu .accordion__trigger-icon--line1 {
  display: flex;
  height: 2px;
  width: 10px;
  background: var(--color-blue-200);
  transition: 0.3s all;
  transform: rotate(90deg) translate(2px, 0);
}
.mobile__menu .accordion__trigger-icon--line2 {
  display: flex;
  height: 2px;
  width: 10px;
  background: var(--color-blue-200);
  transition: 0.3s all;
}
.mobile__menu .accordion .mobile__menu-list {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  gap: 20px;
}
.mobile__menu .accordion .mobile__menu-link {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.03px;
  color: var(--color-blue-100);
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 60px;
       column-gap: 60px;
  margin-top: 60px;
  width: 100%;
}
@media screen and (width <= 1440px) {
  .faq {
    margin-top: 40px;
  }
}
@media screen and (width <= 992px) {
  .faq {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-top: 35px;
  }
}
.faq__item {
  width: 100%;
}
@media screen and (width <= 992px) {
  .faq__item.right__item .accordion__item:first-child {
    border-top: none;
  }
}

.faq .accordion {
  width: 100%;
}
.faq .accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s all;
}
.faq .accordion__item {
  border-top: 2.5px solid var(--color-blue-60); 
}
.faq .accordion__item:last-child {
/*  border-bottom: 2.5px solid var(--color-blue-60); */
}
@media screen and (width <= 992px) {
  .faq .accordion__item:last-child {
    border-bottom-width: 1.5px;
  }
}
@media screen and (width <= 992px) {
  .faq .accordion__item {
    border-top-width: 1.5px;
  }
}
.faq .accordion__item.active .accordion__trigger-icon {
  rotate: 180deg;
}
.faq .accordion__item.active .accordion__content {
  grid-template-rows: 1fr;
}
.faq .accordion__trigger {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  padding: 35px 0;
  width: 100%;
  align-items: center;
  text-align: left;
}
@media screen and (width <= 1440px) {
  .faq .accordion__trigger {
    padding: 25px 0;
  }
}
@media screen and (width <= 992px) {
  .faq .accordion__trigger {
    padding: 20px 0;
  }
}
@media screen and (width <= 480px) {
  .faq .accordion__trigger {
    padding: 15px 0;
  }
}
.faq .accordion__trigger-text {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .faq .accordion__trigger-text {
    font-size: 28px;
  }
}
@media screen and (width <= 480px) {
  .faq .accordion__trigger-text {
    font-size: 15px;
  }
}
.faq .accordion__trigger-text.small-text {
  font-size: 25px;
}
@media screen and (width <= 480px) {
  .faq .accordion__trigger-text.small-text {
    font-size: 15px;
  }
}
.faq .accordion__trigger-icon {
  width: 20px;
  transition: 0.3s rotate;
}
@media screen and (width <= 768px) {
  .faq .accordion__trigger-icon {
    width: 15px;
  }
}
@media screen and (width <= 480px) {
  .faq .accordion__trigger-icon {
    width: 8px;
  }
}
.faq .accordion__content-text {
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 123%;
  padding-bottom: 45px;
  color: var(--color-blue-200);
}
.faq .accordion__content-text.small-text {
  font-size: 22px;
}
@media screen and (width <= 992px) {
  .faq .accordion__content-text.small-text {
    font-size: 18px;
  }
}
@media screen and (width <= 480px) {
  .faq .accordion__content-text.small-text {
    font-size: 13px;
  }
}
@media screen and (width <= 1440px) {
  .faq .accordion__content-text {
    padding-bottom: 35px;
    font-size: 22px;
  }
}
@media screen and (width <= 992px) {
  .faq .accordion__content-text {
    font-size: 18px;
    padding-bottom: 20px;
  }
}
@media screen and (width <= 480px) {
  .faq .accordion__content-text {
    font-size: 13px;
    padding-bottom: 15px;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer.top__footer {
  padding: 60px 0;
}
@media screen and (width <= 768px) {
  .footer.top__footer {
    padding: 40px 0;
  }
}
.footer.bottom__footer {
  padding: 60px 0;
}
@media screen and (width <= 768px) {
  .footer.bottom__footer {
    padding: 40px 0;
  }
}
.footer.bottom__footer .footer__title {
  color: var(--color-blue-200);
}
.footer.bottom__footer .footer__link {
  font-weight: 400;
}
@media screen and (width <= 1280px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}
@media screen and (width <= 768px) {
  .footer {
    gap: 35px 20px;
  }
}
@media screen and (width <= 320px) {
  .footer {
    gap: 35px 10px;
  }
}
.footer__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-shrink: 1;
  max-width: 286px;
}
@media screen and (width <= 1280px) {
  .footer__item {
    max-width: 100%;
  }
}
.footer__title {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 128%;
  color: #fff;
}
@media screen and (width <= 768px) {
  .footer__title {
    font-size: 20px;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  margin-top: 25px;
}
@media screen and (width <= 768px) {
  .footer__list {
    gap: 10px;
    margin-top: 15px;
  }
}
.footer__social {
  display: flex;
  align-items: end;
  gap: 30px;
  margin-top: auto;
  padding-top: 45px;
}
@media screen and (width <= 768px) {
  .footer__social {
    padding-top: 26px;
    margin-top: auto;
    gap: 20px;
  }
}
.footer__social-link {
  flex-shrink: 0;
  display: flex;
}
.footer__social-link:hover path {
  fill: var(--color-orange) !important;
}
.footer__social-link.x-icon {
  width: 27px;
  height: 27px;
}
@media screen and (width <= 768px) {
  .footer__social-link.x-icon {
    width: 15px;
    height: 15px;
  }
}
.footer__social-link.f-icon {
  width: 19px;
  height: 34px;
}
.footer__social-link.g-icon {
  width: 27px;
  height: 27px;
}
@media screen and (width <= 768px) {
  .footer__social-link.g-icon {
    width: 15px;
    height: 15px;
  }
}
.footer__social-link.y-icon {
  width: 33px;
  height: 23px;
}
@media screen and (width <= 768px) {
  .footer__social-link.y-icon {
    width: 19px;
    height: 13px;
  }
}
.footer__social-link.l-icon {
  width: 25px;
  height: 27px;
}
@media screen and (width <= 768px) {
  .footer__social-link.l-icon {
    width: 14px;
    height: 15px;
  }
}
.footer__social-link:hover path {
  fill: currentColor;
}

.copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 14px 0;
}
@media screen and (width <= 992px) {
  .copy {
    flex-direction: column;
    padding: 25px 0 50px 0;
  }
}
.copy__text {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 205.882%;
  color: #fff;
}
@media screen and (width <= 992px) {
  .copy__text {
    font-size: 15px;
    text-align: center;
  }
}
.copy__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (width <= 992px) {
  .copy__list {
    gap: 15px;
    flex-direction: column;
  }
}
.copy__link {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 205.882%;
  color: #fff;
}
@media screen and (width <= 992px) {
  .copy__link {
    font-size: 15px;
  }
}
.copy__link svg {
  transition: 0.3s all;
}
.copy__link:hover > svg {
  transform: translate(3px, -3px);
}

.select__trigger {
  width: 100%;
  outline: none !important;
  background: #fff;
  width: 100%;
  display: flex;
  cursor: pointer;
  position: relative;
}
.select__trigger.select__large {
  padding: 28px 30px;
}
@media screen and (width <= 1440px) {
  .select__trigger.select__large {
    padding: 21px 20px;
  }
}
@media screen and (width <= 992px) {
  .select__trigger.select__large {
    padding: 16px 18px;
    font-size: 16px;
  }
}
@media screen and (width <= 768px) {
  .select__trigger.select__large {
    padding: 12px 18px;
  }
}
.select__trigger.select__small {
  padding: 23px 20px;
}
@media screen and (width <= 992px) {
  .select__trigger.select__small {
    padding: 16px 18px;
    font-size: 16px;
  }
}
@media screen and (width <= 768px) {
  .select__trigger.select__small {
    padding: 12px 18px;
    font-size: 16px;
  }
}
.select__trigger.without-icon .select__arrow {
  display: none;
}
.select__trigger.active .select__selected-option {
  color: var(--color-orange);
}
.select__trigger.active .select__arrow {
  transform: rotate(180deg) translate(-50%, 50%);
}
.select__trigger.active .select__arrow path {
  stroke: var(--color-orange);
}
.select__selected-option {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 128.571%;
  color: var(--color-blue-200);
  transition: color 0.3s;
  position: relative;
}
.select__selected-option.gray-first {
  color: var(--color-gray);
}
@media screen and (width <= 1440px) {
  .select__selected-option {
    font-size: 18px;
  }
}
@media screen and (width <= 992px) {
  .select__selected-option {
    font-size: 16px;
  }
}
@media screen and (width <= 480px) {
  .select__selected-option {
    font-size: 12px;
  }
}
.select__arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(50%, -50%);
  transition: 0.3s transform;
}
@media screen and (width <= 1440px) {
  .select__arrow {
    right: 20px;
  }
}
@media screen and (width <= 992px) {
  .select__arrow {
    right: 15px;
  }
}
@media screen and (width <= 992px) {
  .select__arrow svg {
    width: 10px;
  }
}
.select__options {
  position: absolute;
  left: 20px;
  top: 100%;
  right: 0px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}
.select__option {
  font-size: 21px;
  font-weight: 600;
  line-height: 128.571%;
  width: 100%;
  text-align: left;
  color: var(--color-blue-200);
  background: var(--color-blue-20);
  transition: 0.3s color;
  cursor: pointer;
  padding: 22px 20px;
}
.select__option:hover {
  background: #f0f0f0;
}
@media screen and (width <= 1440px) {
  .select__option {
    font-size: 16px;
    padding: 16px 20px;
  }
}
@media screen and (width <= 992px) {
  .select__option {
    font-size: 14px;
    padding: 14px 20px;
  }
}
@media screen and (width <= 480px) {
  .select__option {
    font-size: 12px;
    padding: 12px 15px;
  }
}
.select__option:hover {
  color: var(--color-orange);
}
.select__options-list {
  display: flex;
  flex-direction: column;
}
.select__options-list li:not(:first-child) {
  border-top: 1.5px solid var(--color-gray);
}

.categories {
  max-width: 1336px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 0 auto;
  margin-top: 60px;
}
@media screen and (width <= 1440px) {
  .categories {
    margin-top: 40px;
  }
}
@media screen and (width <= 768px) {
  .categories {
    gap: 15px;
    margin-top: 25px;
  }
}
.categories.categories__result {
  max-width: 1645px;
}
.categories__item {
  background: var(--color-blue-20);
}
.categories__item-gray {
  background: var(--color-blue-20);
}
.categories__item-gray .categories__item-link {
  color: var(--color-blue-200);
}
.categories__item-gray .categories__item-link:hover {
  color: var(--color-orange);
}
.categories__item-blue {
  background: var(--color-blue-200);
}
.categories__item-blue .categories__item-link {
  color: #fff;
}
.categories__item-blue .categories__item-link:hover {
  color: var(--color-orange);
}
.categories__item-lightblue {
  background: var(--color-blue-40);
}
.categories__item-lightblue .categories__item-link {
  color: var(--color-blue-200);
}
.categories__item-lightblue .categories__item-link:hover {
  color: var(--color-orange);
}
.categories__item-link {
  padding: 25px;
}
@media screen and (width <= 768px) {
  .categories__item-link {
    font-size: 12px;
    padding: 13px;
  }
}

.section__breadcrumbs {
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media screen and (width <= 1280px) {
  .section__breadcrumbs {
    padding-bottom: 30px;
  }
}
@media screen and (width <= 768px) {
  .section__breadcrumbs {
    padding-top: 60px;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (width <= 768px) {
  .breadcrumbs {
    gap: 15px;
  }
}
.breadcrumbs__list {
  display: flex;
  gap: 20px;
  align-items: center;
}
.breadcrumbs__list-item:last-child img {
  display: none;
}
.breadcrumbs__list-item:last-child a {
  color: var(--color-blue-100);
  cursor: default;
}
.breadcrumbs__list-link {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 3180.952% 8px;
  transition: 0.3s color;
  color: var(--color-blue-200);
}
@media screen and (width <= 768px) {
  .breadcrumbs__list-link {
    font-size: 12px;
  }
  .breadcrumbs__list-link img {
    width: 7px;
  }
}
.breadcrumbs__list-link:hover {
  color: var(--color-orange);
}
.breadcrumbs__back {
  display: flex;
  gap: 7px;
  align-items: center;
}
@media screen and (width <= 480px) {
  .breadcrumbs__back span {
    display: none;
  }
}

.section__inner {
  padding-top: 0;
  position: relative;
  z-index: 0;
}

.inner__container {
  display: flex;
  gap: 122px;
  align-items: start;
  width: 100%;
}
@media screen and (width <= 1600px) {
  .inner__container {
    gap: 60px;
  }
}
@media screen and (width <= 1440px) {
  .inner__container {
    gap: 40px;
  }
}
@media screen and (width <= 992px) {
  .inner__container {
    flex-direction: column;
    gap: 0;
  }
}
.inner__container-left {
  max-width: 485px;
  width: 100%;
  position: sticky;
  left: 0;
  top: 40px;
  flex-shrink: 0;
  z-index: 1;
}
@media screen and (width <= 992px) {
  .inner__container-left.laws-container {
    position: static;
    margin-bottom: 20px;
  }
}
@media screen and (width <= 1440px) {
  .inner__container-left {
    max-width: 430px;
  }
}
@media screen and (width <= 992px) {
  .inner__container-left {
    max-width: 100%;
  }
}
.inner__container-right {
  width: 100%;
}
.inner__header {
  display: flex;
  justify-content: space-between;
  margin-top: -90px;
  margin-bottom: 70px;
  position: relative;
}
@media screen and (width <= 1280px) {
  .inner__header {
    margin-top: -60px;
  }
}
@media screen and (width <= 992px) {
  .inner__header {
    margin-top: 0;
    margin-bottom: 30px;
    align-items: end;
  }
}
.inner__header-filters {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 250%;
  color: #fff;
  padding: 11px 20px;
  background: var(--color-blue-200);
  cursor: pointer;
  display: none;
  transition: 0.3s all;
}
.inner__header-filters.active {
  background: var(--color-orange);
}
@media screen and (width <= 992px) {
  .inner__header-filters {
    display: flex;
    margin-left: -20px;
  }
}
.inner__header-text {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 144.444%;
  color: var(--color-blue-200);
  margin-left: auto;
  pointer-events: none !important;
}
@media screen and (width <= 1440px) {
  .inner__header-text {
    font-size: 38px;
  }
}
@media screen and (width <= 992px) {
  .inner__header-text {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
@media screen and (width <= 768px) {
  .inner__header-text span {
    display: none;
  }
}

.filters {
  background: var(--color-blue-40);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.filters__wrapper {
  position: relative;
}
.filters.filters-drawer {
  z-index: 10;
  position: relative;
}
@media screen and (width <= 992px) {
  .filters.filters-drawer {
    position: fixed;
    left: -100%;
    bottom: 20px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    max-width: 440px;
    width: 100%;
    flex-shrink: 1;
    background: var(--color-blue-60);
    transition: 0.3s all linear;
  }
  .filters.filters-drawer.active {
    left: 20px;
  }
}
@media screen and (width <= 768px) {
  .filters.filters-drawer {
    max-width: 339px;
  }
}
@media screen and (width <= 374px) {
  .filters.filters-drawer {
    max-width: 280px;
  }
}
.filters.filters__laws .filters-close {
  display: none;
}
@media screen and (width <= 1440px) {
  .filters {
    padding: 30px;
  }
}
@media screen and (width <= 992px) {
  .filters {
    gap: 20px;
  }
}
@media screen and (width <= 768px) {
  .filters {
    gap: 15px;
    padding: 20px;
  }
}
.filters-close {
  position: absolute;
  right: 0;
  top: 0;
  display: none;
}
@media screen and (width <= 992px) {
  .filters-close {
    display: block;
  }
}
.filters__group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (width <= 992px) {
  .filters__group {
    gap: 20px;
    display: none;
  }
}
.filters__row-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (width <= 1024px) {
  .filters__row-columns {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}
.filters__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.filters__more-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 316.667%;
  color: var(--color-blue-200);
  display: none;
}
@media screen and (width <= 992px) {
  .filters__more-btn {
    display: flex;
  }
}
.filters__more-btn svg {
  transition: 0.3s all;
}
.filters__more-btn.active {
  color: var(--color-orange);
}
.filters__more-btn.active svg {
  rotate: 180deg;
}
.filters__more-btn.active path {
  stroke: var(--color-orange);
}
.filters__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.lawyers {
  display: grid;
  gap: 60px;
}
.lawyers__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
@media screen and (width <= 480px) {
  .lawyers__header {
    flex-direction: column;
    align-items: start;
  }
}
.lawyers.lawyers__home {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}
@media screen and (width <= 1440px) {
  .lawyers.lawyers__home {
    gap: 40px;
    margin-top: 60px;
  }
}
@media screen and (width <= 1320px) {
  .lawyers.lawyers__home {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 992px) {
  .lawyers.lawyers__home {
    gap: 20px;
    margin-top: 35px;
  }
}
@media screen and (width <= 768px) {
  .lawyers.lawyers__home {
    grid-template-columns: repeat(1, 1fr);
  }
}
.lawyers.lawyers__results {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
  margin-bottom: 55px;
}
@media screen and (width <= 1439px) {
  .lawyers.lawyers__results {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 35px;
  }
}
@media screen and (width <= 992px) {
  .lawyers.lawyers__results {
    margin-bottom: 25px;
  }
}
.lawyers.lawyers__results .lawyers__item-link {
  font-size: 17px;
}
@media screen and (width <= 480px) {
  .lawyers.lawyers__results .lawyers__item-link {
    font-size: 12px;
  }
}
.lawyers.lawyers__results .lawyers__item-footer {
  background: var(--color-blue-60);
}
@media screen and (width <= 992px) {
  .lawyers.lawyers__results .lawyers__item-footer {
    min-height: auto;
    padding: 12px 15px;
  }
}
.lawyers.lawyers__profile {
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (width <= 1320px) {
  .lawyers.lawyers__profile {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 992px) {
  .lawyers.lawyers__profile {
    gap: 20px;
    margin-top: 35px;
  }
}
@media screen and (width <= 768px) {
  .lawyers.lawyers__profile {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (width <= 1440px) {
  .lawyers {
    gap: 40px;
    margin-top: 60px;
  }
}
@media screen and (width <= 1320px) {
  .lawyers {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (width <= 992px) {
  .lawyers {
    gap: 20px;
    margin-top: 35px;
  }
}
@media screen and (width <= 768px) {
  .lawyers {
    grid-template-columns: repeat(1, 1fr);
  }
}
.lawyers__item {
  background: #fff;
  transition: 0.3s all;
  position: relative;
}
@media screen and (width <= 768px) {
  .lawyers__item.lawyers__item-hidden {
    display: none;
  }
}
.lawyers__item-body {
  background: var(--color-blue-40);
  padding: 30px;
  display: flex;
  gap: 30px;
  height: 100%;
  max-height: 235px;
}
@media screen and (width <= 1440px) {
  .lawyers__item-body {
    gap: 20px;
    padding: 20px;
    max-height: 200px;
  }
}
@media screen and (width <= 992px) {
  .lawyers__item-body {
    padding: 15px;
    max-height: 170px;
  }
}
@media screen and (width <= 768px) {
  .lawyers__item-body {
    max-height: 100%;
    height: auto;
  }
}
.lawyers__item-image {
  max-width: 170px;
  width: 100%;
}
.lawyers__item-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
@media screen and (width <= 1440px) {
  .lawyers__item-image {
    max-width: 140px;
  }
}
@media screen and (width <= 992px) {
  .lawyers__item-image {
    max-width: 120px;
  }
}
@media screen and (width <= 480px) {
  .lawyers__item-image {
    max-width: 110px;
  }
}
.lawyers__item-link {
  margin-left: auto;
  padding-bottom: 5px;
}
.lawyers__item-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.lawyers__links {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-bottom: 20px;
}
.lawyers__item-badge {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 188%;
  padding: 9px 10px;
  background: var(--color-blue-100);
  color: #fff;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (width <= 1320px) {
  .lawyers__item-badge {
    font-size: 14px;
  }
}
@media screen and (width <= 768px) {
  .lawyers__item-badge {
    font-size: 12px;
  }
}
.lawyers__name {
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-top: 15px;
  color: var(--color-blue-200);
  transition: 0.3s color;
}
.lawyers__name:hover {
  color: var(--color-orange);
}
@media screen and (width <= 1440px) {
  .lawyers__name {
    font-size: 22px;
  }
}
@media screen and (width <= 992px) {
  .lawyers__name {
    font-size: 20px;
    margin-top: 10px;
  }
}
.lawyers__position {
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 129%;
  margin-top: 15px;
  color: var(--color-blue-200);
  transition: 0.3s color;
}
.lawyers__position:hover {
  color: var(--color-orange);
}
@media screen and (width <= 992px) {
  .lawyers__position {
    font-size: 14px;
    margin-top: 7px;
  }
}
@media screen and (width <= 768px) {
  .lawyers__position {
    font-size: 12px;
  }
}
.lawyers__city {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 129%;
  margin-top: 10px;
  color: var(--color-blue-100);
  transition: 0.3s color;
}
.lawyers__city:hover {
  color: var(--color-orange);
}
@media screen and (width <= 768px) {
  .lawyers__city {
    font-size: 12px;
    margin-top: 7px;
  }
}
.lawyers__item-footer {
  display: flex;
  padding: 0 20px;
  align-items: center;
  height: 96px;
  gap: 20px;
}
@media screen and (width <= 768px) {
  .lawyers__item-footer {
    height: auto;
    min-height: 64px;
  }
}
.lawyers__item-footer--text {
  display: -webkit-box;
  font-size: 17px;
  color: var(--color-blue-200);
  line-height: 129%;
}
@media screen and (width <= 768px) {
  .lawyers__item-footer--text {
    font-size: 12px;
  }
}
.lawyers__item-footer--text strong {
  padding-right: 4px;
}
.lawyers__item-footer--link {
  transition: 0.3s color;
}
.lawyers__item-footer--link:hover {
  color: var(--color-orange);
}
.lawyers__item-price {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 4px;
  align-items: end;
}
.lawyers__item-num {
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 72%;
  color: var(--color-blue-200);
}
@media screen and (width <= 768px) {
  .lawyers__item-num {
    font-size: 15px;
  }
}
.lawyers__item-text {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-blue-200);
}
@media screen and (width <= 768px) {
  .lawyers__item-text {
    font-size: 12px;
  }
}

.pagination {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (width <= 768px) {
  .pagination {
    gap: 0px;
  }
}
.pagination__item.active .pagination__item-btn {
  font-size: 35px;
  color: var(--color-blue-200);
}
@media screen and (width <= 768px) {
  .pagination__item.active .pagination__item-btn {
    font-size: 20px;
  }
}
.pagination__item-btn {
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 260%;
  color: var(--color-blue-60);
  cursor: pointer;
  transition: 0.3s color;
  width: 25px;
}
@media screen and (width <= 768px) {
  .pagination__item-btn {
    font-size: 15px;
  }
  .pagination__item-btn svg {
    width: 10px;
    height: 10px;
  }
}
.pagination__item-btn:hover {
  color: var(--color-orange);
}
.pagination__item-btn:hover path {
  stroke: currentColor;
}

.section__info {
  background: var(--color-blue-200);
}

.info {
  display: flex;
  align-items: center;
  gap: 122px;
}
@media screen and (width <= 1440px) {
  .info {
    gap: 80px;
  }
}
@media screen and (width <= 992px) {
  .info {
    flex-direction: column;
    gap: 50px;
  }
}
.info__image {
  max-width: 485px;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (width <= 1440px) {
  .info__image {
    max-width: 400px;
  }
}
@media screen and (width <= 992px) {
  .info__image {
    max-width: 100%;
  }
}
.info__image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (width <= 992px) {
  .info__image img {
    aspect-ratio: 16/9;
  }
}
@media screen and (width <= 992px) {
  .info__texts {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.info__title {
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 118.182%;
  color: #fff;
}
@media screen and (width <= 1440px) {
  .info__title {
    font-size: 48px;
  }
}
@media screen and (width <= 992px) {
  .info__title {
    text-align: center;
    font-size: 36px;
  }
}
@media screen and (width <= 768px) {
  .info__title {
    font-size: 25px;
  }
}
.info__text {
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 123.077%;
  margin-top: 60px;
  color: #fff;
}
@media screen and (width <= 1440px) {
  .info__text {
    font-size: 24px;
    margin-top: 40px;
  }
}
@media screen and (width <= 992px) {
  .info__text {
    text-align: center;
    margin-top: 25px;
    font-size: 20px;
  }
}
@media screen and (width <= 768px) {
  .info__text {
    font-size: 12px;
  }
}
.info__link {
  margin-top: 40px;
  align-items: end;
}
@media screen and (width <= 1440px) {
  .info__link {
    margin-top: 30px;
  }
}
@media screen and (width <= 992px) {
  .info__link {
    margin-top: 20px;
  }
}

.laws {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}
@media screen and (width <= 992px) {
  .laws {
    gap: 20px;
  }
}
.laws__container {
  width: 100%;
}
.laws__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
@media screen and (width <= 992px) {
  .laws__item {
    gap: 20px;
  }
}
.laws__item-title {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 144.444%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .laws__item-title {
    font-size: 38px;
  }
}
@media screen and (width <= 992px) {
  .laws__item-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
@media screen and (width <= 768px) {
  .laws__item-title span {
    display: none;
  }
}
.laws__item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: space-between;
  width: 100%;
}
@media screen and (width <= 1280px) {
  .laws__item-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 992px) {
  .laws__item-grid {
    gap: 15px;
  }
}
@media screen and (width <= 374px) {
  .laws__item-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.laws__item-link {
  flex-shrink: 0;
  display: flex;
  line-height: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  justify-content: start;
}
.laws__item-link p {
  display: inline-block;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  max-width: fit-content;
}

.block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 30px;
}
@media screen and (width <= 768px) {
  .block {
    gap: 20px;
  }
}
.block__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (width <= 768px) {
  .block__container {
    gap: 20px;
  }
}
.block__title {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 185.714%;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .block__title {
    font-size: 28px;
  }
}
@media screen and (width <= 768px) {
  .block__title {
    font-size: 20px;
  }
}
.block__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (width <= 768px) {
  .block__item {
    gap: 10px;
  }
}
.block__subtitle {
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 128.571%;
  color: var(--color-blue-200);
}
@media screen and (width <= 768px) {
  .block__subtitle {
    font-size: 15px;
  }
}
.block__text {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 128.571%;
  color: var(--color-blue-200);
}
@media screen and (width <= 768px) {
  .block__text {
    font-size: 12px;
  }
}
.block__list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding-left: 15px;
}
@media screen and (width <= 992px) {
  .block__list {
    padding-left: 10px;
    gap: 15px;
  }
}
.block__list-item {
  position: relative;
  padding-left: 17px;
}
@media screen and (width <= 992px) {
  .block__list-item {
    padding-left: 10px;
  }
}
.block__list-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background: var(--color-blue-200);
  border-radius: 100%;
}
@media screen and (width <= 992px) {
  .block__list-item::after {
    width: 3.5px;
    height: 3.5px;
    top: 4px;
  }
}
.block__list-item--text {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 153.846%;
  color: var(--color-blue-200);
}
@media screen and (width <= 992px) {
  .block__list-item--text {
    font-size: 15px;
  }
}

.input {
  padding: 16.5px 20px;
  background: #fff;
  width: 100%;
  display: flex;
  color: var(--color-blue-200);
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}
.input.input-home {
  padding: 21.79px 30px;
}
@media screen and (width <= 1440px) {
  .input.input-home {
    font-size: 18px;
    padding: 13.75px 20px;
  }
}
@media screen and (width <= 992px) {
  .input.input-home {
    font-size: 16px;
    padding: 8px 18px;
  }
}
@media screen and (width <= 768px) {
  .input.input-home {
    font-size: 16px;
    padding: 4px 15px;
  }
}
@media screen and (width <= 480px) {
  .input.input-home {
    font-size: 12px;
    padding: 1.7px 15px;
  }
}
.input:focus {
  outline: 1px solid var(--color-orange);
}
.input ::-moz-placeholder {
  color: var(--color-gray);
}
.input ::placeholder {
  color: var(--color-gray);
}
@media screen and (width <= 1440px) {
  .input {
    font-size: 18px;
  }
}
@media screen and (width <= 992px) {
  .input {
    font-size: 16px;
    padding: 8px 18px;
  }
}
@media screen and (width <= 768px) {
  .input {
    font-size: 16px;
    padding: 4px 15px;
  }
}
@media screen and (width <= 480px) {
  .input {
    font-size: 12px;
    padding: 2.7px 15px;
  }
}
.input.readonly-input {
  outline: none;
}
.input.readonly-input::-moz-placeholder {
  color: var(--color-blue-100);
}
.input.readonly-input::placeholder {
  color: var(--color-blue-100);
}

.label {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 144%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .label {
    font-size: 22px;
  }
}
@media screen and (width <= 992px) {
  .label {
    gap: 15px;
  }
}
@media screen and (width <= 768px) {
  .label {
    font-size: 16px;
  }
}
@media screen and (width <= 480px) {
  .label {
    font-size: 14px;
    gap: 10px;
  }
}

.autocomplete-label {
  position: relative;
  width: 100%;
}
.autocomplete-label .autocomplete-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 20px;
  right: 0;
  z-index: 1;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 2px;
}
.autocomplete-label .autocomplete-list li {
  font-size: 21px;
  font-weight: 600;
  line-height: 128.571%;
  width: 100%;
  text-align: left;
  color: var(--color-blue-200);
  background: var(--color-blue-20);
  transition: 0.3s color;
  cursor: pointer;
  padding: 22px 20px;
}
.autocomplete-label .autocomplete-list li:hover {
  background: #f0f0f0;
}
@media screen and (width <= 1440px) {
  .autocomplete-label .autocomplete-list li {
    font-size: 16px;
    padding: 16px 20px;
  }
}
@media screen and (width <= 992px) {
  .autocomplete-label .autocomplete-list li {
    font-size: 14px;
    padding: 14px 20px;
  }
}
@media screen and (width <= 480px) {
  .autocomplete-label .autocomplete-list li {
    font-size: 12px;
    padding: 12px 15px;
  }
}
.autocomplete-label .autocomplete-list li:hover {
  color: var(--color-orange);
}
.autocomplete-label .autocomplete-list::-webkit-scrollbar {
  width: 4px;
}
.autocomplete-label .autocomplete-list::-webkit-scrollbar-track {
  background: var(--color-blue-20);
}
.autocomplete-label .autocomplete-list::-webkit-scrollbar-thumb {
  background-color: var(--color-blue-200);
}
.autocomplete-label .autocomplete-list::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}
.autocomplete-label.active .autocomplete-list {
  display: block;
}

.textarea {
  min-height: 240px;
  resize: vertical;
  margin-top: 10px;
}
@media screen and (width <= 992px) {
  .textarea {
    min-height: 160px;
  }
}

.modal {
  max-width: 1154px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  animation: 0.3s fade linear;
}
@media screen and (width <= 992px) {
  .modal {
    padding: 40px 20px;
  }
}
.modal__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 80, 0.7);
  z-index: 20;
  padding: 0;
  margin: 0;
  padding: 80px 20px;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all;
  display: none;
}
.modal__wrapper.active {
  visibility: visible;
  opacity: 1;
  display: block;
}
.modal__wrapper::-webkit-scrollbar {
  width: 4px;
}
.modal__wrapper::-webkit-scrollbar-track {
  background: rgba(5, 10, 80, 0.7);
}
.modal__wrapper::-webkit-scrollbar-thumb {
  background-color: var(--color-blue-200);
}
.modal__wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}
.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  padding: 20px;
  transition: 0.3s background;
}
@media screen and (width <= 992px) {
  .modal__close {
    right: 0;
    top: 0;
    padding: 10px;
  }
  .modal__close svg {
    width: 20px;
  }
}
@media screen and (width <= 768px) {
  .modal__close svg {
    width: 16px;
  }
}
.modal__close:hover path {
  fill: var(--color-orange);
}
.modal__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
  color: var(--color-blue-200);
  margin-bottom: 40px;
}
@media screen and (width <= 992px) {
  .modal__title {
    font-size: 28px;
  }
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (width <= 992px) {
  .modal__form {
    gap: 30px;
  }
}
@media screen and (width <= 768px) {
  .modal__form {
    gap: 20px;
  }
  .modal__form .auth__form-inputs {
    gap: 20px;
  }
}
@media screen and (width <= 480px) {
  .modal__form .auth__form-inputs {
    grid-template-columns: repeat(1, 1fr);
  }
}
.modal__form .auth__form-text {
  margin-top: 20px;
}
.modal__form .auth__form-title {
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 144%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .modal__form .auth__form-title {
    font-size: 22px;
  }
}
@media screen and (width <= 992px) {
  .modal__form .auth__form-title {
    font-size: 18px;
    gap: 15px;
  }
}
@media screen and (width <= 768px) {
  .modal__form .auth__form-title {
    font-size: 16px;
  }
}
@media screen and (width <= 480px) {
  .modal__form .auth__form-title {
    font-size: 14px;
    gap: 10px;
  }
}
.modal__form .auth__form-buttons {
  margin-top: 0;
}
@media screen and (width <= 480px) {
  .modal__form .auth__form-buttons {
    flex-direction: column;
    align-items: start;
  }
}
.modal__form-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (width <= 768px) {
  .modal__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.modal__form-text {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 141.176%;
  color: var(--color-blue-200);
}
@media screen and (width <= 992px) {
  .modal__form-text {
    font-size: 14px;
  }
}
@media screen and (width <= 768px) {
  .modal__form-text {
    font-size: 10px;
  }
}
.modal__form-text a {
  color: var(--color-blue-200);
  font-weight: 700;
  transition: 0.3s color;
}
.modal__form-text a:hover {
  color: var(--color-orange);
}
.modal__form-copy {
  color: var(--color-blue-200);
  font-weight: 700;
}
@media screen and (width <= 768px) {
  .modal__form-copy {
    font-size: 12px;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section__hero {
  overflow: hidden;
  padding-top: 156px;
}
@media screen and (width <= 768px) {
  .section__hero {
    padding-top: 150px;
    padding-bottom: 40px;
  }
}

.hero {
  position: relative;
  z-index: 0;
}
.hero__image {
  position: absolute;
  top: -155px;
  right: 264px;
  z-index: -1;
}
@media screen and (width <= 1440px) {
  .hero__image {
    right: 20px;
    max-width: 520px;
  }
}
@media screen and (width <= 992px) {
  .hero__image {
    max-width: 550px;
    right: 0;
  }
}
@media screen and (width <= 768px) {
  .hero__image {
    max-width: 400px;
    right: -90px;
  }
}
@media screen and (width <= 555px) {
  .hero__image {
    max-width: 420px;
  }
}
@media screen and (width <= 480px) {
  .hero__image {
    max-width: 430px;
  }
}
@media screen and (width <= 375px) {
  .hero__image {
    right: -130px;
    max-width: 450px;
  }
}
.hero__tabs {
  margin-top: 80px;
}
@media screen and (width <= 1440px) {
  .hero__tabs {
    margin-top: 60px;
  }
}
@media screen and (width <= 768px) {
  .hero__tabs {
    margin-top: 40px;
  }
}
.hero__tabs-header {
  display: flex;
}
.hero__tab-trigger {
  cursor: pointer;
  padding: 28px 30px;
  background: var(--color-blue-80);
  color: var(--color-blue-200);
  transition: 0.3s all;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 152.381%;
  text-align: left;
}
.hero__tab-trigger:hover {
  color: var(--color-orange);
}
@media screen and (width <= 1440px) {
  .hero__tab-trigger {
    padding: 20px 18px;
    font-size: 20px;
  }
}
@media screen and (width <= 992px) {
  .hero__tab-trigger {
    font-size: 18px;
    padding: 18px 14px;
  }
}
@media screen and (width <= 768px) {
  .hero__tab-trigger {
    padding: 11px 15px;
    font-size: 12px;
  }
}
.hero__tab-trigger.active {
  background: var(--color-blue-200);
  color: #fff;
}
.hero__tab-content {
  padding: 30px;
  background: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .hero__tab-content {
    padding: 20px;
  }
}
@media screen and (width <= 768px) {
  .hero__tab-content {
    padding: 15px;
  }
}
.hero__title {
  max-width: 847px;
}
.hero__cta {
  margin-top: 146px;
  max-width: 759px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (width <= 1440px) {
  .hero__cta {
    margin-top: 120px;
    gap: 15px;
  }
}
.hero__cta-title {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 128.571%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .hero__cta-title {
    font-size: 28px;
  }
}
@media screen and (width <= 768px) {
  .hero__cta-title {
    font-size: 20px;
  }
}
.hero__form {
  display: flex;
  gap: 30px;
  width: 100%;
}
@media screen and (width <= 1440px) {
  .hero__form {
    gap: 20px;
  }
}
@media screen and (width <= 992px) {
  .hero__form {
    gap: 15px;
    flex-direction: column;
  }
}
.hero__form-group {
  display: flex;
  max-width: 820px;
  width: 100%;
  gap: 30px;
}
@media screen and (width <= 1440px) {
  .hero__form-group {
    gap: 20px;
  }
}
@media screen and (width <= 992px) {
  .hero__form-group {
    gap: 15px;
    max-width: 100%;
  }
}
.hero__input-item {
  width: 100%;
}
.hero__input-item.legal__item {
  max-width: 100%;
}
.hero__input-item.city__item {
  max-width: 543px;
}
@media screen and (width <= 992px) {
  .hero__input-item.city__item {
    width: 100%;
    max-width: 100%;
  }
}
.hero__input-btn {
  flex-shrink: 0;
}
@media screen and (width <= 480px) {
  .hero__input-btn {
    max-width: 135px;
    padding: 11px 13px !important;
  }
}

.section__title-steps {
  max-width: 911px;
}
.section__subtitle-steps {
  max-width: 1291px;
}

.steps {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1600px;
  margin: 0 auto;
  margin-top: 80px;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (width <= 1650px) {
  .steps {
    margin-top: 60px;
    gap: 20px;
    max-width: 1367px;
  }
}
@media screen and (width <= 1440px) {
  .steps {
    max-width: 1000px;
  }
}
@media screen and (width <= 992px) {
  .steps {
    margin-top: 35px;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (width <= 480px) {
  .steps {
    max-width: 353px;
    align-items: start;
  }
}
.steps__item {
  padding: 30px;
}
@media screen and (width <= 1650px) {
  .steps__item {
    padding: 20px;
  }
}
.steps__item-1 {
  background: var(--color-blue-20);
  max-width: 555px;
  width: 100%;
  margin-top: 118px;
}
@media screen and (width <= 1650px) {
  .steps__item-1 {
    max-width: 450px;
    margin-top: 84px;
  }
}
@media screen and (width <= 992px) {
  .steps__item-1 {
    margin-top: 0;
    max-width: 400px;
  }
}
@media screen and (width <= 480px) {
  .steps__item-1 {
    max-width: 229px;
    margin-left: auto;
    margin-right: 40px;
  }
}
.steps__item-2 {
  background: var(--color-blue-40);
  max-width: 410px;
  width: 100%;
}
@media screen and (width <= 992px) {
  .steps__item-2 {
    max-width: 500px;
  }
}
@media screen and (width <= 480px) {
  .steps__item-2 {
    max-width: 100%;
  }
}
.steps__item-3 {
  background: var(--color-blue-200);
  max-width: 555px;
  width: 100%;
  margin-top: 10px;
}
.steps__item-3 .steps__item-subtitle {
  color: var(--color-blue-80);
}
.steps__item-3 .steps__item-title,
.steps__item-3 .steps__item-text {
  color: #fff;
}
@media screen and (width <= 1650px) {
  .steps__item-3 {
    max-width: 450px;
  }
}
@media screen and (width <= 992px) {
  .steps__item-3 {
    max-width: 380px;
    margin-right: 60px;
  }
}
@media screen and (width <= 480px) {
  .steps__item-3 {
    max-width: 229px;
    margin-right: 0;
    margin-left: 30px;
    margin-top: 0;
  }
}
.steps__item-4 {
  background: var(--color-blue-20);
  max-width: 555px;
  width: 100%;
  margin-left: auto;
  margin-top: -140px;
}
@media screen and (width <= 1650px) {
  .steps__item-4 {
    max-width: 450px;
    margin-top: -100px;
  }
}
@media screen and (width <= 1440px) {
  .steps__item-4 {
    margin-top: 0;
    margin-left: 0;
  }
}
@media screen and (width <= 992px) {
  .steps__item-4 {
    max-width: 400px;
    margin-left: 50px;
  }
}
@media screen and (width <= 480px) {
  .steps__item-4 {
    max-width: 281px;
    margin-right: 10px;
    margin-left: auto;
  }
}
.steps__item-subtitle {
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  color: var(--color-blue-100);
}
@media screen and (width <= 1650px) {
  .steps__item-subtitle {
    font-size: 18px;
  }
}
@media screen and (width <= 480px) {
  .steps__item-subtitle {
    font-size: 12px;
  }
}
.steps__item-title {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
  color: var(--color-blue-200);
  margin-top: 15px;
}
@media screen and (width <= 1650px) {
  .steps__item-title {
    font-size: 28px;
  }
}
@media screen and (width <= 480px) {
  .steps__item-title {
    font-size: 17px;
    margin-top: 10px;
  }
}
.steps__item-text {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  margin-top: 20px;
  color: var(--color-blue-200);
}
@media screen and (width <= 1650px) {
  .steps__item-text {
    font-size: 18px;
  }
}
@media screen and (width <= 480px) {
  .steps__item-text {
    font-size: 12px;
    margin-top: 10px;
  }
}
.steps__item-link {
  margin-top: 20px;
}
.steps__question {
  padding: 30px;
  background: var(--color-blue-200);
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 225px;
  margin-top: -88px;
}
@media screen and (width <= 1750px) {
  .steps__question {
    margin-left: 180px;
  }
}
@media screen and (width <= 1650px) {
  .steps__question {
    margin-left: 100px;
    margin-top: -96px;
  }
}
@media screen and (width <= 1550px) {
  .steps__question {
    margin-left: 80px;
    margin-top: -96px;
  }
}
@media screen and (width <= 1450px) {
  .steps__question {
    margin-left: 164px;
    max-width: 740px;
    margin-top: -96px;
  }
}
@media screen and (width <= 1440px) {
  .steps__question {
    max-width: 100%;
    margin: 60px 56px 0;
  }
}
@media screen and (width <= 992px) {
  .steps__question {
    margin: 40px 26px 0;
    gap: 10px;
  }
}
@media screen and (width <= 768px) {
  .steps__question {
    margin-top: 20px;
    padding: 15px;
  }
}
.steps__question-title {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
  color: #fff;
}
@media screen and (width <= 1650px) {
  .steps__question-title {
    font-size: 28px;
  }
}
@media screen and (width <= 480px) {
  .steps__question-title {
    font-size: 17px;
  }
}
.section__lawyers {
  background: var(--color-blue-200);
}

.lawyer__more-btn {
  display: none;
  max-width: -moz-fit-content;
  max-width: fit-content;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (width <= 768px) {
  .lawyer__more-btn {
    display: flex;
    margin-top: 25px;
  }
}

.section__help {
  padding: 80px 0;
  overflow: hidden;
}
@media screen and (width <= 992px) {
  .section__help {
    padding: 40px 0;
  }
}

.help {
  background: var(--color-blue-40);
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  z-index: 0;
}
@media screen and (width <= 992px) {
  .help {
    flex-direction: column;
    align-items: start;
  }
}
.help__img--mob {
  display: none;
}
@media screen and (width <= 992px) {
  .help__img--mob {
    display: block;
    position: absolute;
    top: -38px;
    right: -20px;
    z-index: -1;
  }
}
.help__img--desktop {
  position: absolute;
  top: -80px;
  right: 173px;
  z-index: -1;
}
@media screen and (width <= 1440px) {
  .help__img--desktop {
    right: 120px;
  }
}
@media screen and (width <= 992px) {
  .help__img--desktop {
    display: none;
  }
}
.help__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (width <= 992px) {
  .help__info {
    gap: 12px;
  }
}
.help__title {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 133%;
}
@media screen and (width <= 1440px) {
  .help__title {
    font-size: 36px;
  }
}
@media screen and (width <= 1280px) {
  .help__title {
    font-size: 30px;
  }
}
@media screen and (width <= 992px) {
  .help__title {
    font-size: 25px;
    line-height: 120%;
  }
}

.section__subtitle-categories {
  color: var(--color-blue-200);
  max-width: 1274px;
  margin: 0 auto;
}
.section__categories-link {
  display: flex;
  margin: 0 auto;
  margin-top: 30px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (width <= 768px) {
  .section__categories-link {
    margin-top: 20px;
  }
}

.section__header-faq {
  align-items: start;
  gap: 40px;
}
@media screen and (width <= 992px) {
  .section__header-faq {
    gap: 25px;
  }
}
.section__subtitle-faq {
  max-width: 1338px;
}
.section__subtitle-faq.subtitle-small {
  max-width: 850px;
}

.section__magazine-header {
  max-width: 850px;
  margin: 0 auto;
}

.magazine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}
@media screen and (width <= 1440px) {
  .magazine {
    margin-top: 40px;
    gap: 40px;
  }
}
@media screen and (width <= 992px) {
  .magazine {
    gap: 20px;
  }
}
@media screen and (width <= 768px) {
  .magazine {
    grid-template-columns: repeat(1, 1fr);
    max-width: 342px;
    margin: 0 auto;
    margin-top: 35px;
  }
}
.magazine__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (width <= 768px) {
  .magazine__item {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.magazine__item-1 {
  padding: 52px 54px;
}
@media screen and (width <= 1440px) {
  .magazine__item-1 {
    padding: 40px;
  }
}
@media screen and (width <= 768px) {
  .magazine__item-1 {
    padding: 22px 40px;
    margin-left: 20px;
  }
  .magazine__item-1 img {
    max-width: 117px;
  }
}
.magazine__item-2 {
  padding: 52px 54px;
}
@media screen and (width <= 1440px) {
  .magazine__item-2 {
    padding: 40px;
  }
}
@media screen and (width <= 768px) {
  .magazine__item-2 {
    padding: 22px;
    margin-left: auto;
    margin-right: 20px;
  }
  .magazine__item-2 img {
    max-width: 173px;
  }
}
.magazine__item-3 {
  padding: 50px 54px 42px 54px;
}
@media screen and (width <= 1440px) {
  .magazine__item-3 {
    padding: 34px 40px 42px 40px;
  }
}
@media screen and (width <= 768px) {
  .magazine__item-3 {
    padding: 20px 40px 16px 40px;
    margin-left: 67px;
  }
  .magazine__item-3 img {
    max-width: 138px;
  }
}
.section__news {
  background: var(--color-blue-20);
}
.section__news-header {
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
@media screen and (width <= 480px) {
  .section__news-header {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}

.news {
  display: grid;
  margin-top: 80px;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media screen and (width <= 1440px) {
  .news {
    gap: 40px;
  }
}
@media screen and (width <= 1280px) {
  .news {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
}
@media screen and (width <= 768px) {
  .news {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 35px;
  }
}
.news__item {
  background: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (width <= 1280px) {
  .news__item:last-child {
    grid-column: 1/-1;
  }
}
.news__item:hover .news__item-link {
  color: var(--color-orange);
}
.news__item:hover .news__item-title {
  color: var(--color-orange);
}
.news__item-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.news__item-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (width <= 480px) {
  .news__item-info {
    padding: 15px;
  }
}
.news__item-date {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-blue-100);
}
@media screen and (width <= 992px) {
  .news__item-date {
    font-size: 18px;
  }
}
@media screen and (width <= 768px) {
  .news__item-date {
    font-size: 16px;
  }
}
@media screen and (width <= 480px) {
  .news__item-date {
    font-size: 12px;
  }
}
.news__item-title {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
  color: var(--color-blue-200);
  margin-top: 15px;
  transition: 0.3s color;
}
@media screen and (width <= 992px) {
  .news__item-title {
    font-size: 26px;
  }
}
@media screen and (width <= 768px) {
  .news__item-title {
    font-size: 20px;
    margin-top: 10px;
  }
}
.news__item-text {
  margin-top: 20px;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  color: var(--color-blue-200);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}
@media screen and (width <= 992px) {
  .news__item-text {
    font-size: 18px;
  }
}
@media screen and (width <= 768px) {
  .news__item-text {
    font-size: 14px;
    margin-top: 15px;
  }
}
@media screen and (width <= 480px) {
  .news__item-text {
    font-size: 12px;
  }
}
.news__item-link {
  display: flex;
  margin-top: auto;
  padding-top: 20px;
}
@media screen and (width <= 768px) {
  .news__item-link {
    padding-top: 15px;
  }
}

.stats {
  max-width: 1248px;
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  gap: 40px;
  align-items: start;
}
@media screen and (width <= 1280px) {
  .stats {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (width <= 768px) {
  .stats {
    max-width: 326px;
    margin-top: 35px;
    gap: 20px;
  }
}
@media screen and (width <= 367px) {
  .stats {
    max-width: 100%;
    gap: 10px;
  }
}
.stats__item {
  padding: 40px;
  width: 100%;
}
@media screen and (width <= 768px) {
  .stats__item {
    padding: 15px;
  }
}
@media screen and (width <= 367px) {
  .stats__item {
    padding: 10px;
  }
}
.stats__item-1 {
  max-width: 438px;
  width: 100%;
  margin-top: 81px;
}
@media screen and (width <= 768px) {
  .stats__item-1 {
    max-width: 187px;
    margin-top: 0;
  }
}
@media screen and (width <= 367px) {
  .stats__item-1 {
    max-width: 147px;
  }
}
.stats__item-1 .stats__item-titles {
  flex-direction: row;
  align-items: end;
  gap: 25px;
}
@media screen and (width <= 768px) {
  .stats__item-1 .stats__item-titles {
    gap: 10px;
  }
}
.stats__item-2 {
  max-width: 294px;
  width: 100%;
}
@media screen and (width <= 768px) {
  .stats__item-2 {
    max-width: 119px;
  }
}
.stats__item-3 {
  max-width: 438px;
  width: 100%;
  margin-top: 62px;
}
@media screen and (width <= 1280px) {
  .stats__item-3 {
    margin-top: 0px;
  }
}
@media screen and (width <= 768px) {
  .stats__item-3 {
    max-width: 125px;
    margin-top: -40px;
    margin-left: -76px;
  }
}
@media screen and (width <= 367px) {
  .stats__item-3 {
    margin-top: -30px;
    margin-left: -110px;
  }
}
.stats__item-3 .stats__item-num {
  font-size: 80px;
}
@media screen and (width <= 768px) {
  .stats__item-3 .stats__item-num {
    font-size: 35px;
    line-height: 114%;
  }
}
@media screen and (width <= 367px) {
  .stats__item-3 .stats__item-num {
    font-size: 25px;
  }
}
.stats__item-subtitle {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 123%;
}
@media screen and (width <= 768px) {
  .stats__item-subtitle {
    font-size: 12px;
    line-height: 316px;
  }
}
.stats__item-titles {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  flex-direction: column;
}
@media screen and (width <= 768px) {
  .stats__item-titles {
    gap: 10px;
    margin-top: 10px;
  }
}
.stats__item-num {
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 54%;
}
@media screen and (width <= 768px) {
  .stats__item-num {
    font-size: 50px;
    line-height: 80%;
  }
}
@media screen and (width <= 367px) {
  .stats__item-num {
    font-size: 35px;
  }
}
.stats__item-text {
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 123.077%;
}
@media screen and (width <= 768px) {
  .stats__item-text {
    font-size: 12px;
    line-height: 133%;
  }
}
@media screen and (width <= 367px) {
  .stats__item-text {
    font-size: 10px;
  }
}
.stats__item-link {
  margin-top: 30px;
}
@media screen and (width <= 768px) {
  .stats__item-link {
    display: none;
  }
}

.section__cta {
  overflow: hidden;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 0;
}
@media screen and (width <= 768px) {
  .cta {
    gap: 25px;
  }
}
.cta__image {
  position: absolute;
  top: -120px;
  right: 172px;
  z-index: -1;
}
@media screen and (width <= 1440px) {
  .cta__image {
    top: -80px;
    right: 80px;
  }
}
@media screen and (width <= 1280px) {
  .cta__image {
    right: 0;
  }
}
@media screen and (width <= 768px) {
  .cta__image {
    top: -50px;
    max-width: 348px;
  }
}
@media screen and (width <= 480px) {
  .cta__image {
    height: 250px;
    right: -30px;
  }
}
@media screen and (width <= 768px) {
  .cta__title {
    font-size: 30px;
  }
}
.cta__text {
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 123.077%;
  color: var(--color-blue-200);
  max-width: 1153px;
  width: 100%;
}
@media screen and (width <= 768px) {
  .cta__text {
    font-size: 18px;
  }
}
@media screen and (width <= 480px) {
  .cta__text {
    font-size: 12px;
  }
}
.help__desk {
  padding: 40px;
  background: var(--color-blue-40);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (width <= 992px) {
  .help__desk {
    padding: 20px;
  }
}
@media screen and (width <= 768px) {
  .help__desk {
    gap: 15px;
  }
}
.help__desk-title {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 144.444%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .help__desk-title {
    font-size: 38px;
  }
}
@media screen and (width <= 992px) {
  .help__desk-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
@media screen and (width <= 768px) {
  .help__desk-title span {
    display: none;
  }
}
.help__desk-text {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 128.571%;
  color: var(--color-blue-200);
}
@media screen and (width <= 992px) {
  .help__desk-text {
    font-size: 16px;
  }
}
@media screen and (width <= 768px) {
  .help__desk-text {
    font-size: 12px;
  }
}
.help__desk-btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.section__profile {
  padding-top: 0;
  padding-bottom: 80px;
}
@media screen and (width <= 768px) {
  .section__profile {
    padding-bottom: 50px;
  }
}

.profile__container-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (width <= 1700px) {
  .profile__container-wrapper {
    gap: 30px;
  }
}
@media screen and (width <= 992px) {
  .profile__container-wrapper {
    gap: 20px;
  }
}

.profile {
  display: flex;
  gap: 60px;
  position: relative;
}
@media screen and (width <= 1700px) {
  .profile {
    gap: 30px;
  }
}
@media screen and (width <= 992px) {
  .profile {
    gap: 20px;
  }
}
.profile__bussiness {
  display: flex;
  align-items: center;
}
.profile__container {
  display: flex;
  gap: 60px;
}
@media screen and (width <= 1440px) {
  .profile__container {
    gap: 40px;
  }
}
@media screen and (width <= 1320px) {
  .profile__container {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (width <= 768px) {
  .profile__container {
    gap: 20px;
  }
}
@media screen and (width <= 1320px) {
  .profile__container.profile__container--bussiness {
    flex-direction: column-reverse;
  }
}
.profile__container-left {
  width: 100%;
  max-width: 1153px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (width <= 1440px) {
  .profile__container-left {
    gap: 40px;
  }
}
@media screen and (width <= 1320px) {
  .profile__container-left {
    max-width: 100%;
  }
}
@media screen and (width <= 992px) {
  .profile__container-left {
    gap: 20px;
  }
}
.profile__container-left.profile__container-left--bussiness {
  flex-direction: column-reverse;
}
.profile__container-right {
  max-width: 547px;
  width: 100%;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (width <= 1440px) {
  .profile__container-right {
    gap: 40px;
  }
}
@media screen and (width <= 1320px) {
  .profile__container-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}
@media screen and (width <= 992px) {
  .profile__container-right {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media screen and (width <= 768px) {
  .profile__container-right {
    gap: 20px;
  }
}
@media screen and (width <= 1320px) {
  .profile__container-right.profile__container-right--bussiness {
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
  }
}
.profile_image {
  max-width: 320px;
  width: 100%;
  position: relative;
  height: 100%;
}
@media screen and (width <= 1440px) {
  .profile_image {
    max-width: 200px;
  }
}
@media screen and (width <= 992px) {
  .profile_image {
    max-width: 140px;
  }
}
@media screen and (width <= 768px) {
  .profile_image {
    max-width: 110px;
  }
}
.profile_image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
@media screen and (width <= 768px) {
  .profile_image img {
    height: 123px;
  }
}
.profile_image .profile__badge {
  background: var(--color-blue-100);
  color: #fff;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  cursor: default;
  position: absolute;
  left: -40px;
  bottom: 0;
}
@media screen and (width <= 1440px) {
  .profile_image .profile__badge {
    left: -30px;
  }
}
@media screen and (width <= 992px) {
  .profile_image .profile__badge {
    left: -20px;
  }
}
.profile__info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.profile__name {
  margin-top: 2px;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 108.333%;
}
@media screen and (width <= 1440px) {
  .profile__name {
    font-size: 46px;
  }
  .profile__name.no-margin {
    margin-top: 0;
  }
}
@media screen and (width <= 1320px) {
  .profile__name {
    margin-top: 0;
  }
}
@media screen and (width <= 992px) {
  .profile__name {
    font-size: 32px;
  }
}
@media screen and (width <= 768px) {
  .profile__name {
    font-size: 20px;
  }
}
.profile__position {
  font-weight: 400;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  margin-top: 25px;
  line-height: 30px;
}
@media screen and (width <= 1440px) {
  .profile__position {
    font-size: 22px;
    margin-top: 15px;
  }
}
@media screen and (width <= 992px) {
  .profile__position {
    font-size: 16px;
  }
}
@media screen and (width <= 768px) {
  .profile__position {
    font-size: 12px;
    margin-top: 10px;
    line-height: 1;
  }
}
.profile__text {
  margin-top: 30px;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .profile__text {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media screen and (width <= 992px) {
  .profile__text {
    font-size: 16px;
    margin-top: 15px;
    display: none;
  }
}
.profile__text-mob {
  display: none;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding: 20px;
  background: var(--color-blue-40);
  color: var(--color-blue-200);
}
@media screen and (width <= 992px) {
  .profile__text-mob {
    display: block;
    padding-top: 0;
  }
}
.profile__list {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media screen and (width <= 1700px) {
  .profile__list {
    gap: 20px;
  }
}
@media screen and (width <= 992px) {
  .profile__list {
    display: none;
  }
}
@media screen and (width <= 992px) {
  .profile__list {
    margin-top: 15px;
    gap: 11px;
  }
}
.profile__list.profile__list-mob {
  display: none;
}
@media screen and (width <= 992px) {
  .profile__list.profile__list-mob {
    display: flex;
    background: var(--color-blue-40);
    margin-top: 0px;
    padding-left: 20px;
    padding-bottom: 20px;
  }
}
.profile__list-item {
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
}
.profile__list-link {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (width <= 1280px) {
  .profile__list-link .profile__list-link--phone {
    display: none;
  }
}
@media screen and (width <= 1440px) {
  .profile__list-link .profile__list-link--contact {
    display: none;
  }
}
.profile__list-link .profile__list-link--text {
  display: none;
}
@media screen and (width <= 1280px) {
  .profile__list-link .profile__list-link--text {
    display: block;
  }
}
@media screen and (width <= 768px) {
  .profile__list-link {
    padding: 11px;
    font-size: 14px;
  }
}

@media screen and (width <= 992px) {
  .cost__container {
    order: 1;
  }
}

.quote {
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}
.quote__container {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (width <= 992px) {
  .quote__container {
    order: 2;
  }
}
.quote__img {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: -1;
  height: 308px;
}
@media screen and (width <= 1320px) {
  .quote__img {
    height: 330px;
  }
}
@media screen and (width <= 992px) {
  .quote__img {
    max-width: 194px;
    height: auto;
  }
}
@media screen and (width <= 768px) {
  .quote__img {
    max-width: 203px;
  }
}
.quote__title {
  color: #fff;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 116%;
  letter-spacing: -0.6px;
}
@media screen and (width <= 1440px) {
  .quote__title {
    font-size: 54px;
    display: flex;
    margin: auto 0;
  }
}
@media screen and (width <= 992px) {
  .quote__title {
    font-size: 34px;
    max-width: 420px;
  }
}
@media screen and (width <= 768px) {
  .quote__title {
    font-size: 30px;
    max-width: 220px;
    text-wrap: balance;
  }
}

.block__more {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (width <= 1440px) {
  .block__more {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (width <= 1320px) {
  .block__more {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 374px) {
  .block__more {
    grid-template-columns: repeat(1, 1fr);
  }
}

.block__expirience {
  gap: 10px;
  grid-template-columns: repeat(1, 1fr);
}
.block__item-expirience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.block__course {
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.block__description {
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media screen and (width <= 768px) {
  .block__description {
    gap: 20px;
  }
}

.block__hours {
  margin-top: -15px;
}

@media screen and (width <= 1320px) {
  .advocatuur__container {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.advocatuur__container .advocatuur__link {
  transition: 0.3s color;
}
.advocatuur__container .advocatuur__link svg {
  transition: transform 0.3s;
}
.advocatuur__container .advocatuur__link svg path {
  transition: stroke 0.3s;
}
.advocatuur__container .advocatuur__link:hover {
  color: var(--color-orange);
}
.advocatuur__container .advocatuur__link:hover svg {
  transform: translate(2px, -2px);
}
.advocatuur__container .advocatuur__link:hover path {
  stroke: currentColor;
}

.block__map {
  margin-top: 10px;
}
.block__map img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.map {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.map__item {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (width <= 992px) {
  .map__item {
    padding: 20px;
  }
}
.map__item img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
@media screen and (width <= 1320px) {
  .map {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 992px) {
  .map {
    gap: 20px;
    margin-top: 35px;
  }
}
@media screen and (width <= 768px) {
  .map {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section__lawyers-profile {
  padding: 80px 0;
}
@media screen and (width <= 992px) {
  .section__lawyers-profile {
    padding: 50px 0;
  }
}

.title__lawyers-profile {
  font-size: 60px;
}
@media screen and (width <= 1440px) {
  .title__lawyers-profile {
    font-size: 54px;
  }
}
@media screen and (width <= 1320px) {
  .title__lawyers-profile {
    font-size: 48px;
  }
}
@media screen and (width <= 992px) {
  .title__lawyers-profile {
    font-size: 40px;
  }
}
@media screen and (width <= 768px) {
  .title__lawyers-profile {
    font-size: 25px;
  }
}

@media screen and (width <= 992px) {
  .section__vacancies {
    padding-top: 90px;
  }
}

.vacancies {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}
@media screen and (width <= 1440px) {
  .vacancies {
    gap: 40px;
    margin-top: 60px;
  }
}
@media screen and (width <= 1280px) {
  .vacancies {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 992px) {
  .vacancies {
    gap: 20px;
    margin-top: 35px;
  }
}
@media screen and (width <= 768px) {
  .vacancies {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (width <= 1440px) {
  .vacancies {
    gap: 40px;
    margin-top: 60px;
  }
}
@media screen and (width <= 1280px) {
  .vacancies {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 992px) {
  .vacancies {
    gap: 20px;
    margin-top: 35px;
  }
}
@media screen and (width <= 768px) {
  .vacancies {
    grid-template-columns: repeat(1, 1fr);
  }
}
.vacancies__title {
  font-size: 60px;
}
@media screen and (width <= 1440px) {
  .vacancies__title {
    font-size: 54px;
  }
}
@media screen and (width <= 1280px) {
  .vacancies__title {
    font-size: 48px;
  }
}
@media screen and (width <= 992px) {
  .vacancies__title {
    font-size: 40px;
    text-align: center;
  }
}
@media screen and (width <= 768px) {
  .vacancies__title {
    font-size: 25px;
  }
}
.vacancies__item {
  background: var(--color-blue-60);
  transition: 0.3s all;
  position: relative;
}
@media screen and (width <= 768px) {
  .vacancies__item.vacancies__item-hidden {
    display: none;
  }
}
.vacancies__item-body {
  background: var(--color-blue-40);
  padding: 30px;
  display: flex;
  gap: 30px;
}
@media screen and (width <= 1440px) {
  .vacancies__item-body {
    gap: 20px;
    padding: 20px;
  }
}
@media screen and (width <= 992px) {
  .vacancies__item-body {
    padding: 15px;
  }
}
.vacancies__item-image {
  max-width: 170px;
  width: 100%;
  aspect-ratio: 1/1;
}
.vacancies__item-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
@media screen and (width <= 1440px) {
  .vacancies__item-image {
    max-width: 140px;
  }
}
@media screen and (width <= 480px) {
  .vacancies__item-image {
    max-width: 110px;
  }
}
.vacancies__item-link {
  margin-left: auto;
  padding-bottom: 32px;
  font-size: 17px !important;
}
@media screen and (width <= 768px) {
  .vacancies__item-link {
    font-size: 12px !important;
  }
}
.vacancies__item-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.vacancies__links {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-bottom: 20px;
}
.vacancies__item-badge {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 188%;
  padding: 9px 10px;
  background: var(--color-blue-60);
  color: var(--color-blue-200);
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (width <= 768px) {
  .vacancies__item-badge {
    font-size: 12px;
  }
}
.vacancies__position {
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 129%;
  margin-top: 15px;
  color: var(--color-blue-200);
  transition: 0.3s color;
}
.vacancies__position:hover {
  color: var(--color-orange);
}
@media screen and (width <= 768px) {
  .vacancies__position {
    font-size: 12px;
    margin-top: 7px;
  }
}
.vacancies__city {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 129%;
  margin-top: 10px;
  color: var(--color-blue-100);
  transition: 0.3s color;
}
.vacancies__city:hover {
  color: var(--color-orange);
}
@media screen and (width <= 768px) {
  .vacancies__city {
    font-size: 12px;
    margin-top: 7px;
  }
}
.vacancies__item-footer {
  display: flex;
  padding: 0 30px;
  align-items: center;
  min-height: 96px;
  gap: 30px;
}
.vacancies__item-footer--text {
  font-size: 17px;
  color: var(--color-blue-200);
  line-height: 129%;
}
@media screen and (width <= 768px) {
  .vacancies__item-footer--text {
    font-size: 12px;
  }
}
.vacancies__item-price {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 4px;
  align-items: end;
}
.vacancies__item-num {
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 72%;
  color: var(--color-blue-200);
}
@media screen and (width <= 768px) {
  .vacancies__item-num {
    font-size: 15px;
  }
}
.vacancies__item-text {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-blue-200);
}
@media screen and (width <= 768px) {
  .vacancies__item-text {
    font-size: 12px;
  }
}

.method h1 {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .method h1 {
    font-size: 38px;
  }
}
@media screen and (width <= 992px) {
  .method h1 {
    font-size: 20px;
  }
}
.method h2 {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .method h2 {
    font-size: 28px;
  }
}
@media screen and (width <= 768px) {
  .method h2 {
    font-size: 15px;
  }
}
.method h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .method h3 {
    font-size: 26px;
  }
}
@media screen and (width <= 768px) {
  .method h3 {
    font-size: 14px;
  }
}
.method h4 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .method h4 {
    font-size: 24px;
  }
}
@media screen and (width <= 768px) {
  .method h4 {
    font-size: 14px;
  }
}
.method h5 {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .method h5 {
    font-size: 22px;
  }
}
@media screen and (width <= 768px) {
  .method h5 {
    font-size: 13px;
  }
}
.method h6 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .method h6 {
    font-size: 20px;
  }
}
@media screen and (width <= 768px) {
  .method h6 {
    font-size: 13px;
  }
}
.method p {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  color: var(--color-blue-200);
}
@media screen and (width <= 992px) {
  .method p {
    font-size: 18px;
  }
}
@media screen and (width <= 768px) {
  .method p {
    font-size: 12px;
  }
}
.method a {
  font-weight: 700;
  transition: 0.3s color;
}
.method a:hover {
  color: var(--color-orange);
}
.method ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: disc;
  padding-left: 20px;
}
.method ol {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: decimal;
  padding-left: 20px;
}

@media screen and (width <= 1440px) {
  .section__auth {
    padding: 90px 0 80px;
  }
}
@media screen and (width <= 768px) {
  .section__auth {
    padding: 90px 0 50px;
  }
}

.auth__header {
  max-width: 1153px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (width <= 992px) {
  .auth__title {
    text-align: center;
    gap: 25px;
  }
}
.auth__subtitle {
  color: var(--color-blue-100);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
}
.auth__subtitle a {
  font-weight: 700;
  transition: 0.3s color;
}
.auth__subtitle a:hover {
  color: var(--color-orange);
}
@media screen and (width <= 992px) {
  .auth__subtitle {
    text-align: center;
    font-size: 16px;
  }
}
@media screen and (width <= 768px) {
  .auth__subtitle {
    font-size: 12px;
  }
}
.auth__container {
  display: flex;
  gap: 60px;
  margin-top: 64px;
}
@media screen and (width <= 1440px) {
  .auth__container {
    gap: 40px;
  }
}
@media screen and (width <= 1280px) {
  .auth__container {
    flex-direction: column-reverse;
    margin-top: 50px;
  }
}
@media screen and (width <= 768px) {
  .auth__container {
    gap: 20px;
  }
}
.auth__container-left {
  width: 100%;
  max-width: 1153px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (width <= 1440px) {
  .auth__container-left {
    gap: 40px;
  }
}
@media screen and (width <= 1280px) {
  .auth__container-left {
    max-width: 100%;
  }
}
@media screen and (width <= 768px) {
  .auth__container-left {
    gap: 20px;
  }
}
.auth__container-right {
  max-width: 547px;
  width: 100%;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (width <= 1440px) {
  .auth__container-right {
    gap: 40px;
  }
}
@media screen and (width <= 1280px) {
  .auth__container-right {
    max-width: 100%;
  }
}
@media screen and (width <= 768px) {
  .auth__container-right {
    gap: 20px;
  }
}
.auth__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.auth__form-title {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 185.714%;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .auth__form-title {
    font-size: 28px;
  }
}
@media screen and (width <= 768px) {
  .auth__form-title {
    font-size: 15px;
  }
}
.auth__form-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  gap: 30px;
  width: 100%;
}
@media screen and (width <= 992px) {
  .auth__form-inputs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 768px) {
  .auth__form-inputs {
    gap: 20px;
    margin-top: 20px;
  }
}
.auth__form-text {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 141.176%;
  margin-top: 50px;
  color: var(--color-blue-200);
}
@media screen and (width <= 992px) {
  .auth__form-text {
    font-size: 14px;
    margin-top: 30px;
  }
}
@media screen and (width <= 768px) {
  .auth__form-text {
    font-size: 10px;
    margin-top: 20px;
  }
}
.auth__form-buttons {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  align-items: center;
}
@media screen and (width <= 992px) {
  .auth__form-buttons {
    margin-top: 30px;
  }
}
@media screen and (width <= 768px) {
  .auth__form-buttons {
    margin-top: 20px;
    gap: 14px;
  }
}
.auth__form-copy {
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: var(--color-blue-200);
}
@media screen and (width <= 1440px) {
  .auth__form-copy {
    font-size: 20px;
  }
}
@media screen and (width <= 992px) {
  .auth__form-copy {
    font-size: 18px;
  }
}
@media screen and (width <= 768px) {
  .auth__form-copy {
    font-size: 12px;
  }
}

.block__title-auth {
  line-height: 114.286%;
}
.block__text {
  letter-spacing: -0.21px;
}/*# sourceMappingURL=main.css.map */