:root {
  --font-family: "NunitoSans", sans-serif;
  --content-width: 1320px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --white-color-100: #fff;
  --color-black-text: #000000;
  --blue-color: #4F8FF0;
  --white-color-300: #D9D9D9;
  --white-color-200: #F7F7F7;
  --color-black-100: #181818;
  --white-color-400: #8C8C8C;
  --color-black-200: #222;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "NunitoSans";
  src: url("../fonts/../fonts/NunitoSans_10ptBlack.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "NunitoSans";
  src: url("../fonts/../fonts/NunitoSans_10ptBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "NunitoSans";
  src: url("../fonts/../fonts/NunitoSans_10ptExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "NunitoSans";
  src: url("../fonts/../fonts/NunitoSans_10ptLight.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "NunitoSans";
  src: url("../fonts/../fonts/NunitoSans_10ptRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "NunitoSans";
  src: url("../fonts/../fonts/NunitoSans_10ptSemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
}

span {
  display: block;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  color: var(--color-black-text);
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media (min-width: 1025px) and (max-width: 1050px) {
  .header-nav {
    gap: 25px;
  }
}
@media (max-width: 1024px) {
  .header-nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 30px;
    gap: 15px;
  }
}
.header-nav__link {
  color: var(--white-color-100);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  position: relative;
}
.header-nav__link:hover {
  color: var(--blue-color);
}
.header-nav__link:hover:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.header-nav__link:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--blue-color);
  position: absolute;
  left: 0;
  bottom: 0px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

@media (max-width: 768px) {
  .header-nav__link:hover {
    color: black;
  }
}

.btn {
  padding: 16px 24px;
  border: 1px solid var(--blue-color);
  background: var(--blue-color);
  color: var(--white-color-100);
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 120%;
  text-transform: uppercase;
}
.btn:hover {
  color: var(--colors-black-text);
  background-color: var(--white-color-300);
  border: 1px solid var(--white-color-300);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.logo_blue {
  color: var(--blue-color);
  font-size: 28px;
  font-weight: 900;
  line-height: 150%;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .logo_blue {
    font-size: 23px;
  }
}
.logo_white {
  color: var(--white-color-100);
  font-size: 20px;
  font-weight: 900;
  line-height: 150%;
  text-transform: lowercase;
}
@media (max-width: 576px) {
  .logo_white {
    font-size: 17px;
  }
}

.title {
  font-size: 28px;
  font-weight: 800;
  line-height: 150%;
  text-transform: uppercase;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 0;
}
@media (max-width: 576px) {
  .header__top {
    padding: 3px 0;
  }
}
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
}
@media (max-width: 576px) {
  .header__contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.header__contacts a {
  color: var(--white-color-100);
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 576px) {
  .header__contacts a {
    font-size: 13px;
  }
}
.header__svg {
  color: var(--blue-color);
}
.header__order {
  color: var(--blue-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 576px) {
  .header__order {
    font-size: 13px;
  }
}
.header__order:hover {
  color: var(--white-color-100);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 19px 0;
}
.header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.header__tel:hover {
  color: var(--blue-color);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.header__mail:hover {
  color: var(--blue-color);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
    margin-left: 0;
  }
}
.header__nav--active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--blue-color);
  padding: 25px 15px;
  z-index: 100;
  width: 200px;
}

.burger {
  --burger-width: 30px;
  --burger-height: 30px;
  --burger-line-height: 4px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  display: none;
  color: var(--white-color-100);
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 769px) {
  .burger {
    display: block;
  }
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.hero {
  background-image: url(../img/bg/hero-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 870px;
  padding-top: 310px;
}
@media (max-width: 576px) {
  .hero {
    padding-top: 270px;
  }
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero__subtitle {
  color: #FFF;
  font-size: 30px;
  font-weight: 300;
  line-height: 150%;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .hero__subtitle {
    font-size: 27px;
  }
}
.hero__title {
  color: var(--blue-color);
  font-size: 56px;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  margin: 8px 0;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 46px;
    margin-top: 15px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 33px;
    margin-bottom: 50px;
  }
}
.hero__text {
  color: var(--white-color-100);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  max-width: 1090px;
  text-align: center;
  margin: 0;
}
.hero__btn {
  margin-top: 48px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.services {
  background-color: var(--white-color-200);
  padding: 80px 0;
}
.services__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.services__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.services__text {
  max-width: 920px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}
.services__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  row-gap: 38px;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  margin: 48px 0;
}
@media (max-width: 1024px) {
  .services__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 50px 32px;
  cursor: pointer;
  background-color: var(--white-color-100);
}
.services__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.services__item:hover {
  background-color: var(--blue-color);
  color: var(--white-color-100);
}
.services__item:hover svg {
  color: var(--white-color-100);
}
.services__c {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid transparent;
  width: 0;
  height: 0;
  -webkit-transition: 0s;
  transition: 0s;
}
.services__c1 {
  top: 11%;
  left: 6.2%;
  border-right: none;
  border-bottom: none;
}
.services__c2 {
  top: 11%;
  right: 6.2%;
  border-left: none;
  border-bottom: none;
}
.services__c3 {
  bottom: 11%;
  right: 6.2%;
  border-top: none;
  border-left: none;
}
.services__c4 {
  bottom: 11%;
  left: 6.2%;
  border-top: none;
  border-right: none;
}
.services__item {
  position: relative;
}
.services__item:hover .services__c {
  width: 35px;
  height: 35px;
  border-color: var(--white-color-100);
}

.item-services__title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 150%;
  margin: 15px 0 10px 0;
}
.item-services__text {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}
.item-services__svg {
  color: var(--blue-color);
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.about {
  padding: 80px 0;
}
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.about__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 576px) {
  .about__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .about__title span {
    margin: 0px;
  }
}
.about__text {
  max-width: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
  margin: 37px 0 48px 0;
}
.about__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 576px) {
  .about__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    max-width: 220px;
  }
}
.about__title_blue {
  color: var(--blue-color);
  margin-left: 6px;
}
@media (max-width: 1024px) {
  .about__right {
    display: none;
  }
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.lawyers {
  background-color: var(--white-color-200);
  padding: 80px 0;
}
.lawyers__title {
  text-align: center;
}
.lawyers__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lawyers__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (min-width: 1025px) and (max-width: 1335px) {
  .lawyers__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .lawyers__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .lawyers__list {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .lawyers__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.lawyers__item {
  background-color: var(--white-color-100);
  position: relative;
  width: 305px;
  height: 414px;
  cursor: pointer;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 768px) {
  .lawyers__item {
    width: 260px;
  }
}
.lawyers__text {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  max-width: 920px;
  margin: 0 auto 48px auto;
}
.lawyers__front-name {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  margin: 24px 0 10px 0;
}
.lawyers__front-post {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
  text-transform: lowercase;
  margin-bottom: 24px;
}
.lawyers__back-name {
  color: var(--colors-black-text);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}
.lawyers__back-post {
  color: var(--colors-black-text);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
}
.lawyers__back-text {
  color: var(--colors-black-text);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
  min-width: 265px;
  margin: 40px 0;
}
@media (max-width: 1024px) {
  .lawyers__back-text {
    min-width: 220px;
  }
}
.lawyers__back-data {
  color: var(--colors-black-text);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}
.lawyers__front {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lawyers__back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 20px;
  padding-top: 80px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
@media (max-width: 576px) {
  .lawyers__back {
    padding-top: 50px;
  }
}
.lawyers__item:hover > .lawyers__front {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.lawyers__item:hover > .lawyers__back {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.lawyers__c {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid transparent;
  width: 0;
  height: 0;
  -webkit-transition: 0s;
  transition: 0s;
}
.lawyers__c1 {
  top: 6%;
  left: 6.2%;
  border-right: none;
  border-bottom: none;
}
.lawyers__c2 {
  top: 6%;
  right: 6.2%;
  border-left: none;
  border-bottom: none;
}
.lawyers__c3 {
  bottom: 6%;
  right: 6.2%;
  border-top: none;
  border-left: none;
}
.lawyers__c4 {
  bottom: 6%;
  left: 6.2%;
  border-top: none;
  border-right: none;
}
.lawyers__item {
  position: relative;
}
.lawyers__item .lawyers__c {
  width: 25px;
  height: 25px;
  border-color: var(--blue-color);
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.reviews {
  background-image: url(../img/bg/reviews-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}
.reviews__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.reviews__text {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.reviews__user {
  margin: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.reviews__title {
  margin-bottom: 60px;
}
.reviews__firm {
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
}
.reviews__name {
  color: var(--colors-black-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
.reviews__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 576px) {
  .reviews__btns {
    margin-top: 33px;
  }
}
.reviews__feather {
  margin-left: auto;
}
@media (max-width: 576px) {
  .reviews__feather {
    display: none;
  }
}
.reviews__item {
  padding: 32px;
  max-width: 648px;
  background-color: var(--white-color-100);
  -webkit-box-shadow: 2px 2px 10px 0px rgba(33, 33, 33, 0.15);
  box-shadow: 2px 2px 10px 0px rgba(33, 33, 33, 0.15);
  min-height: 265px;
}
@media (max-width: 1024px) {
  .reviews__item {
    min-height: 306px;
    padding: 20px;
  }
}
.reviews__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.reviews__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.reviews__slider-btn {
  color: var(--blue-color);
}
.reviews__slider-btn:hover {
  color: var(--white-color-300);
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.news {
  padding: 80px 0;
}
.news__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.news__text {
  max-width: 920px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  margin: 0 0 48px 0;
}
.news__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 576px) {
  .news__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
}
.news__headline {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 24px;
}
.news__data {
  font-size: 12px;
  font-weight: 300;
  line-height: 120%;
  margin: 16px 0;
}
.news__paragraph {
  margin-bottom: 35px;
}
.news__item:hover .news__headline {
  color: var(--blue-color);
}
.news__img {
  display: block;
  position: relative;
}
.news__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news__img:hover .news__bg {
  background: rgba(79, 143, 240, 0.4);
}
.news__photo {
  width: 100%;
  height: 100%;
}
.news__c {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid transparent;
  width: 0;
  height: 0;
  -webkit-transition: 0s;
  transition: 0s;
}
.news__c1 {
  top: 10%;
  left: 6.4%;
  border-right: none;
  border-bottom: none;
}
.news__c2 {
  top: 10%;
  right: 6.4%;
  border-left: none;
  border-bottom: none;
}
.news__c3 {
  bottom: 10%;
  right: 6.4%;
  border-top: none;
  border-left: none;
}
.news__c4 {
  bottom: 10%;
  left: 6.4%;
  border-top: none;
  border-right: none;
}
.news__img {
  position: relative;
}
.news__img:hover .news__c {
  width: 35px;
  height: 35px;
  border-color: var(--white-color-100);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.news__look {
  position: absolute;
  top: 43%;
  left: 45.27%;
  visibility: hidden;
}
@media (max-width: 1024px) {
  .news__look {
    top: 35%;
    left: 40.27%;
  }
}
@media (max-width: 768px) {
  .news__look {
    top: 31%;
    left: 38%;
  }
}
@media (max-width: 576px) {
  .news__look {
    top: 37%;
    left: 42%;
  }
}
.news__img:hover .news__look {
  visibility: visible;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.contacts__paragraph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contacts__title {
  color: var(--white-color-400);
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.contacts__text {
  color: var(--white-color-100);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
.contacts__text:hover {
  color: var(--blue-color);
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.footer-nav__link {
  color: var(--white-color-100);
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.footer-nav__link:hover {
  color: var(--blue-color);
}

.director__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.director__lawyer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.director__name {
  color: var(--white-color-100);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
.director__post {
  color: var(--white-color-100);
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
}
.director__text {
  color: var(--white-color-100);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  margin: 16px 0 40px 0;
}
@media (min-width: 769px) and (max-width: 806px) {
  .director__btn {
    padding: 16px;
  }
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.footer {
  position: relative;
  background-color: var(--color-black-200);
  padding: 80px 0 130px 0;
}
.footer__text {
  max-width: 900px;
  color: var(--white-color-200);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  text-transform: lowercase;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid var(--white-color-400);
  padding-bottom: 48px;
  gap: 10px;
}
@media (max-width: 576px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
.footer__bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  padding-top: 48px;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer__bottom {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.footer__copyright {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: var(--color-black-100);
}

.copyright__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 0;
}
@media (max-width: 576px) {
  .copyright__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
  }
}
.copyright__copyright {
  color: var(--white-color-100);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}
.copyright__copyright:hover {
  color: var(--blue-color);
}
.copyright__privacy-policy {
  color: var(--white-color-100);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}
.copyright__privacy-policy:hover {
  color: var(--blue-color);
}

.hr {
  width: 50px;
  border: 3px solid var(--blue-color);
  margin: 10px 0 24px 0;
  border-radius: 30px;
  color: var(--blue-color);
}
.hr__reviews {
  margin-top: -50px;
  margin-bottom: 48px;
}
/*# sourceMappingURL=main.css.map */