@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300italic,regular,italic,700,700italic&display=swap);

@charset "UTF-8";

@font-face {
  font-family: "icons";
  font-display: swap;
  src: url("../fonts/icons.woff2") format("woff2"), url("../fonts/icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

[class*=_icon-]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=_icon-]:before {
  display: block;
}

._icon-loupe:before {
  content: "\e900";
}

._icon-medal:before {
  content: "\e901";
}

._icon-minus:before {
  content: "\e902";
}

._icon-phone:before {
  content: "\e903";
}

._icon-play:before {
  content: "\e904";
}

._icon-plus:before {
  content: "\e905";
}

._icon-quotes:before {
  content: "\e906";
}

._icon-scales:before {
  content: "\e907";
}

._icon-arms:before {
  content: "\e908";
}

._icon-arrow-down:before {
  content: "\e909";
}

._icon-arrow-left:before {
  content: "\e90a";
}

._icon-arrow-right:before {
  content: "\e90b";
}

._icon-close:before {
  content: "\e90c";
}

._icon-contract:before {
  content: "\e90d";
}

._icon-copyright:before {
  content: "\e90e";
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "Roboto Condensed";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Roboto Condensed";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*=__container] {
  max-width: 73.75rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

.button {
  background: #dba88a;
  -webkit-box-shadow: 0px 0.25rem 0.4375rem rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0.25rem 0.4375rem rgba(0, 0, 0, 0.25);
  border-radius: 1.875rem;
  color: #fff;
  max-width: 12.5rem;
  width: 100%;
  padding: 1rem 0.9375rem;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button_second {
  background: -o-linear-gradient(1.55deg, #344254 4.33%, #dba88a 81.3%);
  background: linear-gradient(88.45deg, #344254 4.33%, #dba88a 81.3%);
}

.light-theme .button {
  background: #548cdc;
}

.light-theme .button_second {
  background: #ffa028;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.promo-video__content {
  background-color: transparent;
  max-width: 45.625rem;
  padding: 0;
}

.full-solution .popup__wrapper {
  display: block;
}

.full-solution__content {
  position: relative;
  background: #344254;
  color: #ffffff;
  padding: 1.5rem 1.5rem 2.125rem 1.5rem;
  max-width: 73.125rem;
  margin: 0 auto;
}

.full-solution__number {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.full-solution__title {
  font-size: 1.25rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.full-solution__block {
  margin-bottom: 1.25rem;
}

.full-solution__sub-title {
  font-size: 1.125rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
}

.full-solution__text {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 134%;
  letter-spacing: 0.01em;
}

.full-solution__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.full-solution__close-btn {
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #dba88a;
  border-bottom: 0.0625rem dashed #dba88a;
}

.full-solution__icon-close {
  position: absolute;
  right: 1.5rem;
  top: 0.875rem;
  cursor: pointer;
}

.full-solution__icon-close::before {
  font-size: 24px;
  color: #dba88a;
}

.light-theme .full-solution .full-solution__content {
  background: #548cdc;
}

.light-theme .full-solution .full-solution__icon-close::before {
  color: #000;
}

.light-theme .full-solution .full-solution__close-btn {
  color: #000;
  border-bottom: 0.0625rem dashed #000000;
}

.full-publication__content {
  position: relative;
  padding: 3.75rem 1.875rem;
  max-width: 73.125rem;
}

.full-publication__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.full-publication__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26.25rem;
          flex: 0 0 26.25rem;
  border-radius: 0.625rem;
  overflow: hidden;
}

.full-publication__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.full-publication__title {
  font-weight: 600;
  line-height: 134%;
  letter-spacing: 0.01em;
}

.full-publication__main-row {
  margin-bottom: 2.875rem;
}

.full-publication__descr {
  font-size: 0.875rem;
  line-height: 134%;
  letter-spacing: 0.01em;
}

.full-publication__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.full-publication__close-btn {
  font-size: 1rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #344254;
  border-bottom: 1px dashed #344254;
}

.full-publication__number {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 134%;
  letter-spacing: 0.01em;
}

.full-publication__icon-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.full-publication__icon-close::before {
  font-size: 1.5rem;
  color: #344254;
}

.popup-payment__content {
  max-width: 55rem;
  padding: 6.25rem 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.popup-payment__title {
  font-size: 2rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #000000;
}

.popup-payment__sub-title {
  font-size: 1.5rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #000000;
  text-align: center;
}

.popup-payment__list-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem 2rem;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-payment__btn {
  display: block;
  font-size: 16px;
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: #cc7f31;
  border-radius: 6px;
  padding: 1rem 0.9375rem;
  max-width: 12.5rem;
  width: 100%;
}

.popup-payment__btn:disabled {
  background: rgba(204, 127, 49, 0.75);
}

.popup-payment__icon-close {
  position: absolute;
  font-size: 1.5rem;
  top: 1.5rem;
  right: 1.5rem;
}

[data-showmore-button] span:last-child {
  display: none;
}

._showmore-active [data-showmore-button] span {
  display: none;
}

._showmore-active [data-showmore-button] span:last-child {
  display: block;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.promo-video__video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.promo-video__video video,
.promo-video__video iframe,
.promo-video__video object,
.promo-video__video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery__list::-webkit-scrollbar {
  display: none;
}

.h2 {
  font-size: 2rem;
  line-height: 134%;
  letter-spacing: 0.01em;
}

.block-title {
  font-size: 1.25rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 0.75rem;
}

.block-title_footer {
  color: #ffffff;
}

.address-block__text {
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #344254;
  font-style: italic;
}

.address-block_footer .address-block__text {
  color: #ffffff;
}

.address-block_footer__title {
  color: #ffffff;
}

.phones-block__phone {
  display: block;
  font-style: italic;
  font-weight: 300;
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #000000;
}

.phones-block__phone:not(:last-child) {
  margin-bottom: 0.75rem;
}

.phones-block_footer .phones-block__phone {
  color: #ffffff;
}

.email-block__email {
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1rem;
  text-decoration: underline !important;
  color: #344254;
}

.schedule-block__text {
  font-style: italic;
  font-weight: 300;
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #000000;
}

.schedule-block_footer .schedule-block__text {
  color: #ffffff;
}

.social-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.social-block__item {
  display: block;
  width: 1.8125rem;
  height: 1.8125rem;
}

.social-block__item img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 20;
  top: 0;
}

.header__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25.9375rem;
  grid-template-columns: 1fr 25.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.875rem 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header__nav-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  background-color: transparent;
  height: 3.75rem;
  width: 11.25rem;
  position: relative;
  z-index: 1;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__info {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.25rem;
  gap: 4.375rem;
  min-width: 25.625rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  position: relative;
  z-index: 2;
}

.header__contact {
  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;
  gap: 0.4375rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
  max-width: 8.125rem;
}

.header__go-chat {
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
  border-bottom: 0.0625rem dashed #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__address {
  max-width: 10.625rem;
  text-align: center;
  font-style: italic;
  font-weight: 300;
  line-height: 134%;
  letter-spacing: 0.01em;
}

.header._header-scroll::after {
  content: "";
  width: 100%;
  height: 4.625rem;
  background-color: rgba(52, 66, 84, 0.9);
  position: absolute;
  top: 0;
  left: 0;
}

.header._header-scroll .header__content {
  padding: 0.3125rem 0;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.menu__body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(51, 51, 51, 0.95);
  padding: 6.25rem 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
}

.menu-open .menu__body {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.menu-open .menu__body::after {
  content: "";
  width: 100%;
  height: 6.25rem;
  background: rgba(51, 51, 51, 0.8);
  position: fixed;
  top: 0;
  left: 0;
}

.menu__list {
  max-width: 75.625rem;
  margin: 0 auto;
}

.menu__item {
  display: block;
  font-size: 1.5rem;
  line-height: 1.75rem;
  color: #ffffff;
  text-align: left;
  padding: 0.25rem 0.75rem;
  position: relative;
  max-width: 22.5rem;
}

.menu__item:not(:last-child) {
  margin-bottom: 0.75rem;
}

.icon-menu {
  display: block;
  position: relative;
  width: 2.25rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 5;
}

.icon-menu span,
.icon-menu::before,
.icon-menu::after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  right: 0;
  position: absolute;
  width: 100%;
  height: 0.1875rem;
  background-color: #dba88a;
}

.icon-menu::before {
  top: 0;
}

.icon-menu::after {
  bottom: 0;
}

.icon-menu span {
  top: calc(50% - 0.0625rem);
}

.menu-open .icon-menu span {
  width: 0;
  background-color: #ffffff;
}

.menu-open .icon-menu::before,
.menu-open .icon-menu::after {
  background-color: #ffffff;
}

.menu-open .icon-menu::before {
  top: calc(50% - 0.0625rem);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-open .icon-menu::after {
  bottom: calc(50% - 0.0625rem);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.light-theme .icon-menu span,
.light-theme .icon-menu::before,
.light-theme .icon-menu::after {
  background-color: #000;
}

.menu-open .light-theme .icon-menu span,
.menu-open .light-theme .icon-menu::before,
.menu-open .light-theme .icon-menu::after {
  background-color: #ffffff;
}

.light-theme .header__info {
  color: #000;
}

.light-theme .header__go-chat {
  border: none;
}

.light-theme ._header-scroll::after {
  background-color: rgba(250, 251, 252, 0.8901960784);
}

.footer {
  background: #344254;
}

.footer__content {
  padding: 2rem 0rem 3.375rem 0rem;
  color: #ffffff;
}

.footer__logo-row {
  margin-bottom: 2rem;
}

.footer__logo {
  width: 11.25rem;
  height: 3.75rem;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.75rem;
  margin-bottom: 2rem;
}

.footer__info-block_address {
  margin-bottom: 2rem;
}

.footer__copyright-row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;

 
  gap: 0.25rem;
  font-size: 0.75rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.footer__copyright-icon::before {
  font-size: 0.875rem;
}

.introduce{
  background: url("/domains/img/dark/femida.png") 0% 60%/contain no-repeat, url("/domains/img/dark/scales.png") 95% 50%/29.375rem 29.1875rem no-repeat, -o-radial-gradient(108.85% -7.72%, 78.52% 348.04%, #d6a488 0%, #324052 80.73%); }

.introduce{
  background: url("/domains/img/dark/femida.png") 0% 60%/contain no-repeat, url("/domains/img/dark/scales.png") 95% 50%/29.375rem 29.1875rem no-repeat, radial-gradient(78.52% 348.04% at 108.85% -7.72%, #d6a488 0%, #324052 80.73%); }

.introduce__container {
  position: relative;
  height: 100%;
}

.introduce__content {
  color: #ffffff;
  max-width: 38.75rem;
}

.introduce__lawyer-name {
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.01em;
  margin-bottom: 2.5rem;
}

.introduce__lawyer-slogan {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  line-height: 134%;
  letter-spacing: 0.01em;
}

.introduce__lawyer-btn {
  display: block;
}

.introduce__lawyer-btn:not(:last-child) {
  margin-bottom: 0.75rem;
}

.introduce__lawyer-play {
  position: absolute;
  -webkit-animation: increase 2s infinite linear;
          animation: increase 2s infinite linear;
}

.introduce__lawyer-play::before {
  font-size: 5.25rem;
 background-color: #f3ec78;
    background-image: linear-gradient(45deg, #059DDE, #04DC74);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

@-webkit-keyframes increase {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes increase {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.introduce__lawyer-arrow {
  font-size: 1.5rem;
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0px);
      -ms-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  color: #a99067;
  -webkit-animation: float 2s infinite ease-in-out;
          animation: float 2s infinite ease-in-out;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }

  50% {
    -webkit-transform: translate(-50%, -0.625rem);
            transform: translate(-50%, -0.625rem);
  }

  100% {
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }

  50% {
    -webkit-transform: translate(-50%, -0.625rem);
            transform: translate(-50%, -0.625rem);
  }

  100% {
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
}

.light-theme .introduce {
  background: #ffffff !important;
}

.no-webp .light-theme .introduce .introduce__container{
  background: url("/domains/img/light/femida.png") 95% 50%/23.625rem 29.75rem no-repeat; }

.light-theme .introduce .introduce__lawyer-name {
  color: #548cdc;
}

.light-theme .introduce .introduce__lawyer-slogan {
  color: #000;
}

.light-theme .introduce .introduce__lawyer-play::before {
  color: #ffa028;
}

.light-theme .introduce .introduce__lawyer-arrow {
  color: #548cdc;
}

.statistics {
  position: relative;
  z-index: 5;
  -webkit-transform: translate(0px, -5rem);
      -ms-transform: translate(0px, -5rem);
          transform: translate(0px, -5rem);
}

.statistics__content {
  background: #ffffff;
  -webkit-box-shadow: 0px 0.25rem 0.4375rem rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0.25rem 0.4375rem rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.statistics__card {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0.125rem 0.25rem 4 0.125rem rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0.125rem 0.25rem 4 0.125rem rgba(0, 0, 0, 0.08);
  width: 10rem;
  text-align: center;
}

.statistics__icon {
  color: #a99067;
  margin-bottom: 0.9375rem;
}

.statistics__icon._icon-arms {
  font-size: 3.75rem;
}

.statistics__icon._icon-medal {
  font-size: 3rem;
}

.statistics__icon._icon-phone {
  font-size: 3.375rem;
}

.statistics__icon._icon-contract {
  font-size: 3.375rem;
}

.statistics__amount {
  font-size: 1.75rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  margin-bottom: 0.375rem;
}

.statistics__named {
  font-size: 0.875rem;
  line-height: 134%;
  letter-spacing: 0.01em;
}

.statistics__icon-close {
  display: block;
  font-size: 1.5rem;
  position: absolute;
  bottom: 2.1875rem;
  left: 50%;
  color: #a99067;
  -webkit-transform: translate(-50%, 0px);
      -ms-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
}

.statistics__icon-close::before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.light-theme .statistics .statistics__icon {
  color: #ffa028;
}

.light-theme .statistics .statistics__icon-close {
  color: #548cdc;
}

.about-me__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-me__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23.125rem;
          flex: 0 0 23.125rem;
  position: relative;
  z-index: 1;
  max-width: 23.125rem;
  max-height: 23.75rem;
}

.about-me__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-me__image::after {
  content: "";
  width: 33.75rem;
  height: 33.75rem;
  background: -o-radial-gradient(97.1% 0%, 100% 100%, #dba88a 0%, #334153 72.92%);
  background: radial-gradient(100% 100% at 97.1% 0%, #dba88a 0%, #334153 72.92%);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
      -ms-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  left: -8.4375rem;
  z-index: -1;
}

.no-webp .about-me__info{
  background: url("/domains/img/dark/femida.png") 50%/contain no-repeat; }

.about-me__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 41.875rem;
          flex: 0 1 41.875rem;
}

.about-me__text {
  line-height: 134%;
  letter-spacing: 0.01em;
}

.about-me__text:last-child {
  margin-bottom: 4.375rem;
}

.about-me__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 auto;
}

.light-theme .about-me {
  background: url("/domains/img/light/about-bg-pc.svg") center no-repeat;
  position: relative;
  margin-top: -13.875rem;
  height: 57.25rem;
  padding-top: 13.875rem;
}

.light-theme .about-me .about-me__image::after {
  display: none;
}

.light-theme .about-me .about-me__info {
  background: none;
  color: #ffffff;
}

.light-theme .about-me .about-me__title {
  color: #ffffff;
}

.services {
  background: #344254;
}

.services__content {
  padding: 2.5rem 0;
}

.services__title {
  color: #ffffff;
}

.services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23.125rem;
          flex: 0 1 23.125rem;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 0 0.75rem;
  height: 5.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.services__icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border: 0.125rem solid #dba88a;
  border-radius: 50%;
  width: 3.75rem;
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services__icon::before {
  font-size: 1.875rem;
  color: #dba88a;
}

.services__price {
  color: #ffffff;
}

.services__price-top-row {
  display: -ms-grid;
  display: grid;
  grid-gap: 1.875rem;
  -ms-grid-columns: 20% 60% 20%;
  grid-template-columns: 20% 60% 20%;
  border-bottom: 0.125rem solid #ffffff;
  padding-bottom: 0.625rem;
}

.services__price-top-item {
  font-size: 1.25rem;
  line-height: 134%;
  letter-spacing: 0.01em;
}

.services__price-item {
  display: -ms-grid;
  display: grid;
  grid-gap: 1.875rem;
  -ms-grid-columns: 20% 60% 20%;
  grid-template-columns: 20% 60% 20%;
  border-bottom: 0.0625rem solid #dba88a;
  padding: 1.25rem 0;
}

.services__price-btn {
  display: block;
  margin: 0 auto;
}

.light-theme .services {
  background: url("/domains/img/light/waves-bg.svg") 50%/cover no-repeat;
}

.light-theme .services .services__title {
  color: #000;
}

.light-theme .services .services__item {
  border: 0.125rem solid #548cdc;
  -webkit-box-shadow: 0px 0.25rem 0.4375rem rgba(84, 140, 220, 0.55);
          box-shadow: 0px 0.25rem 0.4375rem rgba(84, 140, 220, 0.55);
}

.light-theme .services .services__icon {
  border: 0.125rem solid #000;
}

.light-theme .services .services__icon::before {
  color: #000;
}

.light-theme .services .services__price {
  color: #000;
}

.light-theme .services .services__price-top-row {
  border-bottom: 0.125rem solid #000;
}

.light-theme .services .services__price-item {
  border-bottom: 0.0625rem solid #548cdc;
}

.examples__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}

.examples__tabs-navigation {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23.125rem;
          flex: 0 1 23.125rem;
  max-height: 26.25rem;
  overflow: auto;
  padding-right: 0.625rem;
}

.examples__tabs-title {
  background: #e0e0e0;
  padding: 0.625rem 0.625rem;
  max-width: 23.125rem;
  width: 100%;
  position: relative;
}

.examples__tabs-title:not(:last-child) {
  margin-bottom: 0.75rem;
}

.examples__tabs-title._tab-active {
  background: #344254;
  color: #ffffff;
}

.examples__tabs-icon {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #dba88a;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
      -ms-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
}

.examples__tabs-body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.125rem;
          flex: 0 1 48.125rem;
  background: #344254;
  color: #ffffff;
  padding: 1.5rem;
  height: 26.25rem;
}

.examples__slider {
  position: relative;
}

.examples__case-top-line {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: 3.75rem;
  height: 17.875rem;
}

.examples__case-number {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.examples__case-title {
  font-size: 1.25rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}

.examples__case-subtitle {
  font-size: 1.125rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.examples__case-text {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}

.examples__case-bottom-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
}

.examples__case-button {
  display: block;
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #dba88a;
  border-bottom: 0.0625rem dashed #dba88a;
}

.examples__slider-button-prev {
  position: absolute;
  top: 0;
  right: 3.125rem;
  z-index: 5;
}

.examples__slider-button-prev.swiper-button-disabled {
  opacity: 0.3;
}

.examples__slider-button-prev::before {
  color: #dba88a;
  font-size: 0.9375rem;
}

.examples__slider-button-next {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}

.examples__slider-button-next.swiper-button-disabled {
  opacity: 0.3;
}

.examples__slider-button-next::before {
  color: #dba88a;
  font-size: 0.9375rem;
}

.light-theme .examples {
  background: url("/domains/img/light/waves-bg.svg") 50%/cover no-repeat;
}

.light-theme .examples .examples__tabs-body {
  background: #548cdc;
}

.light-theme .examples .examples__case-button {
  color: #000;
  border-bottom: 0.0625rem dashed #000000;
}

.light-theme .examples ._tab-active {
  background-color: #548cdc;
}

.light-theme .examples ._icon-arrow-right::before,
.light-theme .examples ._icon-arrow-left::before,
.light-theme .examples ._icon-arrow-down::before {
  color: #000;
}

.documents {
  background: -o-linear-gradient(7.92deg, #344254 55.73%, #dba88a 100%);
  background: linear-gradient(82.08deg, #344254 55.73%, #dba88a 100%);
}

.documents__top-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  gap: 0.625rem;
}

.documents__counter {
  font-size: 2rem;
  line-height: 134%;
  letter-spacing: 0.01em;
}

.documents__list-img {
  display: -ms-grid;
  display: grid;
  grid-gap: 1.25rem;
  -ms-grid-columns: (minmax(7.5rem, 13.75rem))[5];
  grid-template-columns: repeat(5, minmax(7.5rem, 13.75rem));
}

.documents__image {
  display: none;
  position: relative;
}

.documents__image._active {
  display: block;
}

.documents__image::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 3.25rem;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.documents__image::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0deg, 0%, 0%, 0.5);
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.documents__preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.documents__show-more {
  margin-top: 2.5rem;
  display: block;
  margin: 0 auto;
}

.documents__show-more._hidden {
  display: none;
}

.documents__slider-content {
  margin: 0px -1.5625rem;
}

.documents__slider {
  position: relative;
}

.documents__slider-wrapper {
  padding: 2.5rem 0rem;
}

.documents__slider-fraction {
  color: #ffffff;
  margin-left: 1.5625rem;
  font-size: 2rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.9375rem;
}

.documents__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.documents__slide-image {
  width: 13.75rem;
  height: 16.25rem;
}

.documents__slide-preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.documents__slider-progressbar {
  top: 23.4375rem !important;
  max-width: 10rem;
  left: 50% !important;
  -webkit-transform: translate(-50%, 0px) !important;
      -ms-transform: translate(-50%, 0px) !important;
          transform: translate(-50%, 0px) !important;
  background-color: #e0e0e0 !important;
}

.documents__slider-progressbar .swiper-pagination-progressbar-fill {
  background-color: #a99067 !important;
}

.no-webp .light-theme .documents{
  background: url("/domains/img/light/doc-bg-pc.png") 50%/cover no-repeat, url("/domains/img/light/waves-bg.svg") 50% 100% no-repeat; }

.light-theme .documents {
  padding: 7.1875rem 0rem;
}

.light-theme .documents .documents__content {
  padding: 0rem 0rem;
}

.light-theme .documents .documents__show-more {
  background-color: #ffa028;
}

.publications__top-line {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.75rem;
  font-size: 2rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #344254;
}

.no-webp .publications__list{
  background: url("/domains/img/dark/scales-lite.png") 16.25rem 0/34.375rem 31.875rem no-repeat; }

.publications__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
}

.publications__item {
  display: none;
  background: transparent;
  gap: 1rem 1.5rem;
  border-bottom: 0.0625rem solid #e0e0e0;
  padding: 0.875rem 1.25rem 0.875rem 0rem;
}

.publications__item._active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.publications__item-img {
  width: 11.25rem;
  height: 8.75rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.publications__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.publications__item-descr {
  line-height: 1.1875rem;
  text-align: left;
}

.publications__btn {
  display: block;
  margin: 0 auto;
}

.publications__btn._hidden {
  display: none;
}

.light-theme .publications {
  background: url("/domains/img/light/waves-bg.svg") 50%/100% no-repeat;
}

.light-theme .publications .publications__list {
  background: none;
}

.gallery__container {
  max-width: 75.625rem;
}

.gallery__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}

.gallery__main-photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22.5rem;
          flex: 0 0 22.5rem;
}

.gallery__main-item {
  height: 30rem;
}

.gallery__main-preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
  max-height: 30rem;
  overflow: auto;
  width: 100%;
}

.gallery__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.75rem;
          flex: 0 0 8.75rem;
  height: 8.75rem;
}

.gallery__preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__main-item,
.gallery__item {
  display: block;
  position: relative;
}

.gallery__main-item::before,
.gallery__item::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 3.25rem;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.gallery__main-item::after,
.gallery__item::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0deg, 0%, 0%, 0.5);
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.light-theme .gallery {
  background: url("/domains/img/light/waves-bg.svg") 50%/100% no-repeat;
}

.reviews__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16.875rem, 1fr));
  grid-gap: 1.875rem;
}

.reviews__item {
  display: none;
  background: #344254;
  padding: 3.4375rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 16rem;
}

.reviews__item._active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reviews__icon {
  font-size: 5.125rem;
  letter-spacing: 0;
  color: #dba88a;
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
}

.reviews__item-text {
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.reviews__author {
  font-size: 0.875rem;
  line-height: 134%;
  text-align: right;
  letter-spacing: 0.01em;
  color: #dba88a;
  margin-bottom: 0.25rem;
}

.reviews__city {
  font-weight: 300;
  font-size: 0.625rem;
  text-align: right;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.reviews__btn {
  display: block;
  margin: 0 auto;
}

.reviews__btn._hidden {
  display: none;
}

.light-theme .reviews {
  background: url("/domains/img/light/waves-bg.svg") 0 0/100% no-repeat;
}

.light-theme .reviews .reviews__item {
  background: #548cdc;
  color: #ffffff;
}

.light-theme .reviews .reviews__icon {
  color: #000;
}

.light-theme .reviews .reviews__author {
  color: #000;
}

.light-theme .reviews ._icon-plus::before,
.light-theme .reviews ._icon-minus::before {
  color: #e58e13;
}

.no-webp .faq{
  background: url("/domains/img/dark/femida-lite.png") 50% 100%/32.0625rem 35.625rem no-repeat; }

.faq__spollers-item {
  width: 100%;
}

.faq__spollers-item:not(:last-child) {
  margin-bottom: 1rem;
}

.faq__spollers-title {
  text-align: left;
  width: 100%;
  position: relative;
  padding: 0.5rem 0rem 0.5rem 0rem;
  border-bottom: 0.0625rem solid #e0e0e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  font-size: 1.125rem;
}

.faq__spollers-title._spoller-active {
  border-bottom: none;
}

.faq__spollers-title._spoller-active ._icon-plus {
  display: none;
}

.faq__spollers-title._spoller-active ._icon-minus {
  display: block;
}

.faq__spollers-title ._icon-minus {
  display: none;
}

.faq__spollers-body {
  border-bottom: 0.0625rem solid #e0e0e0;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 134%;
  letter-spacing: 0.01em;
  color: #000000;
  padding: 0.625rem 1.875rem;
}

.light-theme .faq ._icon-plus,
.light-theme .faq ._icon-minus {
  color: #e58e13;
}

.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}

.contact__block:not(:last-child) {
  margin-bottom: 1.5rem;
}

.contact__map-wrap {
  max-width: 48.125rem;
  height: 25.8125rem;
}

.contact__map-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.light-theme .home__about-me {
  margin-bottom: 0rem;
}

.light-theme .home__documents {
  margin-bottom: 0rem;
}

.light-theme .home__publications {
  margin-bottom: 0;
}

.light-theme .home__gallery {
  margin-bottom: 0;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  -o-transition-property: transform, opacity, height;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@font-face {
  font-family: "lg";
  src: url(data:font/woff2;base64,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) format("woff2"), url(data:font/woff;base64,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) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: none;
  border: none;
}

.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}

.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}

.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}

.lg-next:before {
  content: "\e095";
}

.lg-prev {
  left: 20px;
}

.lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

@keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.lg-media-overlap .lg-toolbar {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
}

.lg-toolbar .lg-close:after {
  content: "\e070";
}

.lg-toolbar .lg-maximize {
  font-size: 22px;
}

.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}

.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  -o-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

.lg-sub-html a {
  color: inherit;
}

.lg-sub-html a:hover {
  text-decoration: underline;
}

.lg-media-overlap .lg-sub-html {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -webkit-transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  -o-transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}

.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}

.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-zoom-from-image {
  opacity: 1;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  -webkit-transition-duration: inherit !important;
  -o-transition-duration: inherit !important;
     transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  -o-transition-timing-function: inherit !important;
     transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
     transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  -o-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}

.lg-outer .lg-item {
  will-change: transform, opacity;
  display: none !important;
}

.no-webp .lg-outer .lg-item:not(.lg-start-end-progress){
  background: url(data:image/gif;base64,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) no-repeat scroll center center transparent; }

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}

.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}

.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}

.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out 0.15s;
  -o-transition: opacity 0.2s ease-out 0.15s;
  transition: opacity 0.2s ease-out 0.15s;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: rgba(51, 51, 51, 0.95);
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  -o-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-container {
  display: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
     transition-duration: 0s !important;
}

.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
     transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}

.lg-inline .lg-backdrop {
  z-index: 1;
}

.lg-inline .lg-outer {
  z-index: 2;
}

.lg-inline .lg-maximize:after {
  content: "\e909";
}

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  -o-transition: -o-transform 0.35s ease-out 0s;
  transition: -webkit-transform 0.35s ease-out 0s;
  -o-transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a;
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  float: left;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
     transition-duration: 0s !important;
}

.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
     transition-duration: 0s !important;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-middle {
  text-align: center;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-left {
  text-align: left;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-right {
  text-align: right;
}

.lg-outer.lg-single-item .lg-thumb-outer {
  display: none;
}

.lg-outer .lg-thumb {
  padding: 5px 0;
  height: 100%;
  margin-bottom: -5px;
  display: inline-block;
  vertical-align: middle;
}

.lg-outer .lg-thumb-item {
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border-radius: 2px;
  margin-bottom: 5px;
  will-change: border-color;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: rgb(169, 7, 7);
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}

.lg-outer.lg-animate-thumb .lg-thumb {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
     transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lg-medium-zoom-item {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.lg-medium-zoom .lg-outer {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.lg-medium-zoom .lg-outer.lg-grab img.lg-object {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.lg-medium-zoom .lg-outer.lg-grabbing img.lg-object {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

@media (min-width: 47.99875em) {
  .statistics__icon-close {
    display: none;
  }

  .documents__slider-content {
    display: none;
  }
}

@media (min-width: 61.99875em) {
  .examples__tabs-icon {
    display: none;
  }
}

@media (min-width: 75.625em) {
  .full-publication__image {
    height: 13.75rem;
  }

  .full-publication__title {
    font-size: 1.5rem;
  }

  .introduce {
    height: 41.3125rem;
  }

  .introduce__content {
    padding-top: 12.5rem;
  }

  .introduce__lawyer-name {
    font-size: 3rem;
  }

  .introduce__lawyer-play {
    right: 3.75rem;
  }

  .introduce__lawyer-play {
    bottom: 6.9375rem;
  }

  .about-me__title {
    margin-bottom: 1.5rem;
  }

  .about-me__text:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .services__title {
    margin-bottom: 3.75rem;
  }

  .services__list {
    margin-bottom: 3.75rem;
  }

  .services__price-title {
    margin-bottom: 3.75rem;
  }

  .services__price-list {
    margin-bottom: 3.75rem;
  }

  .examples__title {
    margin-bottom: 3.75rem;
  }

  .examples__wrapper {
    max-width: 48.125rem;
  }

  .documents__content {
    padding-top: 2.5rem;
  }

  .documents__content {
    padding-bottom: 2.5rem;
  }

  .documents__top-line {
    margin-bottom: 3.75rem;
  }

  .documents__list-img {
    margin-bottom: 2.5rem;
  }

  .publications__top-line {
    margin-bottom: 3.75rem;
  }

  .publications__list {
    margin-bottom: 2.5rem;
  }

  .gallery__title {
    margin-bottom: 3.75rem;
  }

  .reviews__title {
    margin-bottom: 3.75rem;
  }

  .reviews__list {
    margin-bottom: 3.75rem;
  }

  .faq__title {
    margin-bottom: 3.75rem;
  }

  .contact__title {
    margin-bottom: 3.75rem;
  }

  .home__about-me {
    margin-bottom: 6.25rem;
  }

  .light-theme .home__services {
    padding-top: 6.25rem;
  }

  .light-theme .home__services {
    margin-top: -6.25rem;
  }

  .home__examples {
    padding-top: 6.25rem;
  }

  .home__examples {
    padding-bottom: 6.25rem;
  }

  .light-theme .home__examples {
    margin-top: -4.375rem;
  }

  .light-theme .home__examples {
    margin-bottom: -4.375rem;
  }

  .home__documents {
    margin-bottom: 7.5rem;
  }

  .home__publications {
    margin-bottom: 6.25rem;
  }

  .light-theme .home__publications {
    padding-bottom: 6.25rem;
  }

  .home__gallery {
    margin-bottom: 6.25rem;
  }

  .light-theme .home__reviews {
    padding-top: 6.25rem;
  }

  .home__faq {
    padding-top: 6.25rem;
  }

  .home__faq {
    padding-bottom: 6.25rem;
  }

  .home__contact {
    margin-bottom: 6.25rem;
  }
}

@media (min-width: 768px) {
  .lg-outer .lg-thumb {
    padding: 10px 0;
  }

  .lg-outer .lg-thumb-item {
    border-radius: 4px;
    border: 2px solid #fff;
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}

@media (min-width: 90em) {
  .header__content {
    grid-gap: 7.5rem;
  }

  .statistics__content {
    padding-left: 5rem;
  }

  .statistics__content {
    padding-right: 5rem;
  }

  .about-me__content {
    gap: 8.125rem;
  }
}

@media (max-width: 20em) {
  .full-publication__image {
    height: 10rem;
  }

  .full-publication__title {
    font-size: 1.125rem;
  }

  .introduce {
    height: 46.25rem;
  }

  .introduce__content {
    padding-top: 13.25rem;
  }

  .introduce__lawyer-name {
    font-size: 2.625rem;
  }

  .introduce__lawyer-play {
    right: 0.9375rem;
  }

  .introduce__lawyer-play {
    bottom: 2.625rem;
  }

  .about-me__title {
    margin-bottom: 0.0000000625rem;
  }

  .about-me__text:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .services__title {
    margin-bottom: 1.875rem;
  }

  .services__list {
    margin-bottom: 2rem;
  }

  .services__price-title {
    margin-bottom: 2rem;
  }

  .services__price-list {
    margin-bottom: 2rem;
  }

  .examples__title {
    margin-bottom: 2rem;
  }

  .examples__wrapper {
    max-width: 18.125rem;
  }

  .documents__content {
    padding-top: 2rem;
  }

  .documents__content {
    padding-bottom: 2rem;
  }

  .documents__top-line {
    margin-bottom: 2rem;
  }

  .documents__list-img {
    margin-bottom: 2rem;
  }

  .publications__top-line {
    margin-bottom: 2rem;
  }

  .publications__list {
    margin-bottom: 2rem;
  }

  .gallery__title {
    margin-bottom: 2rem;
  }

  .reviews__title {
    margin-bottom: 2rem;
  }

  .reviews__list {
    margin-bottom: 2rem;
  }

  .faq__title {
    margin-bottom: 2rem;
  }

  .contact__title {
    margin-bottom: 2rem;
  }

  .home__about-me {
    margin-bottom: 3.75rem;
  }

  .light-theme .home__services {
    padding-top: 3.75rem;
  }

  .light-theme .home__services {
    margin-top: -3.75rem;
  }

  .home__examples {
    padding-top: 3.75rem;
  }

  .home__examples {
    padding-bottom: 3.75rem;
  }

  .light-theme .home__examples {
    margin-top: 0.0000000625rem;
  }

  .light-theme .home__examples {
    margin-bottom: -3.75rem;
  }

  .home__documents {
    margin-bottom: 3.75rem;
  }

  .home__publications {
    margin-bottom: 3.75rem;
  }

  .light-theme .home__publications {
    padding-bottom: 3.75rem;
  }

  .home__gallery {
    margin-bottom: 3.75rem;
  }

  .light-theme .home__reviews {
    padding-top: 3.75rem;
  }

  .home__faq {
    padding-top: 3.75rem;
  }

  .home__faq {
    padding-bottom: 3.75rem;
  }

  .home__contact {
    margin-bottom: 3.75rem;
  }
}

@media (max-width: 61.99875em) {
  .full-publication__content {
    display: block;
  }

  .full-publication__top-row {
    display: block;
  }

  .full-publication__image {
    max-width: 26.25rem;
    margin: 0rem auto 0.9375rem auto;
  }

  .header__info {
    gap: 1.875rem;
  }

  .no-webp .introduce{
    background: url("/domains/img/dark/femida.png") 0% 60%/contain no-repeat, -o-radial-gradient(108.85% -7.72%, 78.52% 348.04%, #d6a488 0%, #324052 80.73%); }

  .no-webp .introduce{
    background: url("/domains/img/dark/femida.png") 0% 60%/contain no-repeat, radial-gradient(78.52% 348.04% at 108.85% -7.72%, #d6a488 0%, #324052 80.73%); }

  .light-theme .introduce {
    background: #ffffff !important;
  }

  .light-theme .introduce .introduce__container {
    background: #ffffff !important;
  }

  .statistics {
    -webkit-transform: translate(0px, -2.5rem);
        -ms-transform: translate(0px, -2.5rem);
            transform: translate(0px, -2.5rem);
  }

  .about-me__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }

  .about-me__image::after {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 27.5rem;
    height: 27.5rem;
  }

  .about-me__info {
    text-align: center;
    max-width: 35.625rem;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }

  .about-me__button {
    margin: 0 auto;
  }

  .light-theme .about-me {
    background: url("/domains/img/light/about-bg-mob.svg") top/cover no-repeat;
    height: auto;
    padding-bottom: 7.5rem;
    margin-top: 0rem;
  }

  .services__list {
    gap: 0.75rem;
  }

  .examples__tabs {
    display: block;
  }

  .examples__tabs-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }

  .examples__tabs-title:not(:last-child) {
    margin-bottom: 0;
  }

  .examples__tabs-title {
    background: #344254;
    color: #ffffff;
  }

  .examples__tabs-title._tab-active .examples__tabs-icon::before {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .examples__tabs-content {
    height: auto;
    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;
    gap: 0.9375rem;
  }

  .examples__tabs-body {
    max-height: 40.625rem;
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    padding: 0.75rem 0.75rem 1.625rem 0.75rem;
  }

  .examples__slide {
    min-height: 40rem;
    max-height: 40rem;
  }

  .examples__case-top-line {
    height: 30.625rem;
  }

  .examples__case-title {
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }

  .examples__case-text {
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }

  .examples__case-bottom-line {
    gap: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1.5rem;
  }

  .light-theme .examples .examples__tabs-title {
    background: #548cdc;
  }

  .gallery__block {
    display: block;
  }

  .gallery__main-photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .gallery__main-item {
    margin-bottom: 1.5625rem;
  }

  .gallery__list {
    gap: 1.25rem;
  }

  .gallery__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.25rem;
            flex: 0 0 6.25rem;
    height: 6.25rem;
  }

  .contact__row {
    display: block;
  }

  .contact__block-map {
    margin-bottom: 2rem;
  }
}

@media (max-width: 61.99875em) and (max-width: 20em) {
  .about-me__info {
    padding-top: 0.0000000625rem;
  }

  .light-theme .about-me {
    padding-top: 5.9375rem;
  }
}

@media (max-width: 61.99875em) and (max-width: 23.125em) {
  .gallery__main-item {
    width: 21.5625rem;
  }
}

@media (max-width: 47.99875em) {
  .full-solution__main-row {
    margin-bottom: 3.875rem;
  }

  .full-solution__bottom-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1.5rem;
  }

  .full-solution__icon-close {
    right: 0.875rem;
  }

  .popup-payment__content {
    padding: 3.75rem 1.5625rem;
    gap: 2.625rem;
  }

  .popup-payment__title {
    font-size: 1.75rem;
  }

  .popup-payment__sub-title {
    font-size: 1.125rem;
  }

  .popup-payment__list-buttons {
    -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;
  }

  .header__content {
    display: block;
    padding: 0;
  }

  .header__nav-logo {
    -webkit-box-orient: horizontal;

    border-bottom: 0.0625rem solid #dba88a;
    padding: 1.5rem 0;
    gap: 1.25rem;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }

  .header__info {
    border-bottom: 0.0625rem solid #dba88a;
    padding: 0.75rem 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: auto;
    gap: 1.25rem;
  }

  .header__contact {
    max-width: 6.25rem;
    font-size: 0.75rem;
  }

  .header__go-chat {
    font-size: 0.875rem;
  }

  .header__address {
    font-size: 0.75rem;
  }

  .header._header-scroll .header__info {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }

  .header._header-scroll .header__nav-logo {
    padding: 0.3125rem 0;
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    border: none;
  }

  .menu__list {
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .menu__item {
    max-width: none;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    background-color: #000;
  }

  .footer__content {
    padding: 1.5625rem 0rem 3.375rem 0rem;
  }

  .footer__info-row {
    display: block;
  }

  .footer__info-block_schedule {
    margin-bottom: 2rem;
  }

  .footer__info-block_phones {
    margin-bottom: 2rem;
  }

  .introduce__content {
    text-align: center;
    max-width: none;
  }

  .introduce__lawyer-btn {
    margin: 0 auto;
  }

  .statistics {
    max-width: 25rem;
    width: 100%;
    margin: 0 auto;
    visibility: hidden;
    -webkit-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    max-height: 0px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0px);
        -ms-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
    z-index: 10;
  }

  .statistics.open {
    visibility: visible;
    -webkit-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    max-height: 54.75rem;
  }

  .statistics__container {
    padding-bottom: 0.625rem;
  }

  .statistics__content {
    -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;
    gap: 2rem;
    padding-bottom: 6rem;
    border-radius: 1.25rem;
  }

  .about-me__content {
    margin-top: 3.75rem;
  }

  .about-me__image::after {
    background: none;
  }

  .services__price-top-row {
    display: none;
  }

  .services__price-item {
    display: block;
  }

  .services__price-col {
    line-height: 1.3125;
  }

  .services__price-col:not(:last-child) {
    margin-bottom: 0.9375rem;
  }

  .services__price-col:last-child {
    text-align: right;
  }

  .light-theme .services .services__content {
    padding: 0;
  }

  .examples__tabs-title {
    padding: 0.625rem 2.1875rem;
  }

  .documents__showmore-content {
    display: none;
  }

  .publications__list {
    background: none;
  }

  .publications__list {
    display: block;
  }

  .publications__item {
    -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;
    margin: 0 auto;
  }

  .publications__item-descr {
    font-weight: 600;
  }

  .gallery__list {
    max-height: 22.5rem;
  }

  .faq {
    background: none;
  }

  .faq__spollers-body {
    font-size: 1rem;
    padding: 0.625rem 0.9375rem;
  }
}

@media (max-width: 47.9375em) {
  .header__content {
    grid-gap: 1.25rem;
  }

  .statistics__content {
    padding-left: 0.9375rem;
  }

  .statistics__content {
    padding-right: 0.9375rem;
  }

  .about-me__content {
    gap: 2.5rem;
  }
}

@media (max-width: 47.99875em) and (max-width: 20em) {
  .statistics {
    top: 44.0625rem;
  }

  .publications__item-img {
    width: 18.125rem;
  }
}

@media (max-width: 37.5em) {
  .reviews__list {
    display: block;
  }

  .reviews__item {
    max-width: 16.875rem;
    margin: 0rem auto 1rem auto;
  }

  .reviews__item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 29.99875em) {
  .about-me__image {
    margin: 0px -0.9375rem;
  }

  .about-me__info {
    text-align: left;
  }

  .contact__map-wrap {
    height: 17.75rem;
  }
}

@media (max-width: 23.75em) {
  .no-webp .light-theme .documents{
    background: url("/domains/img/light/doc-bg-mob.png") 50%/100% no-repeat, url("/domains/img/light/waves-bg.svg") 50% 100% no-repeat; }
}

@media (max-width: 23.18625em) {
  .gallery__main-item {
    height: 20.625rem;
  }

  .gallery__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 5rem;
            flex: 0 0 5rem;
    height: 5rem;
  }
}

@media (min-width: 20em) and (max-width: 75.625em) {
@supports (height: clamp( 10rem , 8.6516853933rem  +  6.7415730337vw , 13.75rem )) {
    .full-publication__image {
      height: clamp( 10rem , 8.6516853933rem  +  6.7415730337vw , 13.75rem );
    }
}

@supports not (height: clamp( 10rem , 8.6516853933rem  +  6.7415730337vw , 13.75rem )) {
    .full-publication__image {
      height: calc(10rem + 3.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (font-size: clamp( 1.125rem , 0.9901685393rem  +  0.6741573034vw , 1.5rem )) {
    .full-publication__title {
      font-size: clamp( 1.125rem , 0.9901685393rem  +  0.6741573034vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 1.125rem , 0.9901685393rem  +  0.6741573034vw , 1.5rem )) {
    .full-publication__title {
      font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 55.625);
    }
}

@supports (height: clamp( 41.3125rem , 48.0252808989rem  +  -8.8764044944vw , 46.25rem )) {
    .introduce {
      height: clamp( 41.3125rem , 48.0252808989rem  +  -8.8764044944vw , 46.25rem );
    }
}

@supports not (height: clamp( 41.3125rem , 48.0252808989rem  +  -8.8764044944vw , 46.25rem )) {
    .introduce {
      height: calc(46.25rem + -4.9375 * (100vw - 20rem) / 55.625);
    }
}

@supports (padding-top: clamp( 12.5rem , 13.5196629213rem  +  -1.3483146067vw , 13.25rem )) {
    .introduce__content {
      padding-top: clamp( 12.5rem , 13.5196629213rem  +  -1.3483146067vw , 13.25rem );
    }
}

@supports not (padding-top: clamp( 12.5rem , 13.5196629213rem  +  -1.3483146067vw , 13.25rem )) {
    .introduce__content {
      padding-top: calc(13.25rem + -0.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (font-size: clamp( 2.625rem , 2.4901685393rem  +  0.6741573034vw , 3rem )) {
    .introduce__lawyer-name {
      font-size: clamp( 2.625rem , 2.4901685393rem  +  0.6741573034vw , 3rem );
    }
}

@supports not (font-size: clamp( 2.625rem , 2.4901685393rem  +  0.6741573034vw , 3rem )) {
    .introduce__lawyer-name {
      font-size: calc(2.625rem + 0.375 * (100vw - 20rem) / 55.625);
    }
}

@supports (right: clamp( 0.9375rem , -0.0737359551rem  +  5.0561797753vw , 3.75rem )) {
    .introduce__lawyer-play {
      right: clamp( 0.9375rem , -0.0737359551rem  +  5.0561797753vw , 3.75rem );
    }
}

@supports not (right: clamp( 0.9375rem , -0.0737359551rem  +  5.0561797753vw , 3.75rem )) {
    .introduce__lawyer-play {
      right: calc(0.9375rem + 2.8125 * (100vw - 20rem) / 55.625);
    }
}

@supports (bottom: clamp( 2.625rem , 1.0744382022rem  +  7.7528089888vw , 6.9375rem )) {
    .introduce__lawyer-play {
      bottom: clamp( 2.625rem , 1.0744382022rem  +  7.7528089888vw , 6.9375rem );
    }
}

@supports not (bottom: clamp( 2.625rem , 1.0744382022rem  +  7.7528089888vw , 6.9375rem )) {
    .introduce__lawyer-play {
      bottom: calc(2.625rem + 4.3125 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 0.0000000625rem , -0.5393257577rem  +  2.6966291011vw , 1.5rem )) {
    .about-me__title {
      margin-bottom: clamp( 0.0000000625rem , -0.5393257577rem  +  2.6966291011vw , 1.5rem );
    }
}

@supports not (margin-bottom: clamp( 0.0000000625rem , -0.5393257577rem  +  2.6966291011vw , 1.5rem )) {
    .about-me__title {
      margin-bottom: calc(0.0000000625rem + 1.4999999375 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 1.0252808989rem  +  1.1235955056vw , 1.875rem )) {
    .about-me__text:not(:last-child) {
      margin-bottom: clamp( 1.25rem , 1.0252808989rem  +  1.1235955056vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 1.0252808989rem  +  1.1235955056vw , 1.875rem )) {
    .about-me__text:not(:last-child) {
      margin-bottom: calc(1.25rem + 0.625 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 1.875rem , 1.2008426966rem  +  3.3707865169vw , 3.75rem )) {
    .services__title {
      margin-bottom: clamp( 1.875rem , 1.2008426966rem  +  3.3707865169vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 1.875rem , 1.2008426966rem  +  3.3707865169vw , 3.75rem )) {
    .services__title {
      margin-bottom: calc(1.875rem + 1.875 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .services__list {
      margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .services__list {
      margin-bottom: calc(2rem + 1.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .services__price-title {
      margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .services__price-title {
      margin-bottom: calc(2rem + 1.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .services__price-list {
      margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .services__price-list {
      margin-bottom: calc(2rem + 1.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .examples__title {
      margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .examples__title {
      margin-bottom: calc(2rem + 1.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (max-width: clamp( 18.125rem , 7.3384831461rem  +  53.9325842697vw , 48.125rem )) {
    .examples__wrapper {
      max-width: clamp( 18.125rem , 7.3384831461rem  +  53.9325842697vw , 48.125rem );
    }
}

@supports not (max-width: clamp( 18.125rem , 7.3384831461rem  +  53.9325842697vw , 48.125rem )) {
    .examples__wrapper {
      max-width: calc(18.125rem + 30 * (100vw - 20rem) / 55.625);
    }
}

@supports (padding-top: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem )) {
    .documents__content {
      padding-top: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem );
    }
}

@supports not (padding-top: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem )) {
    .documents__content {
      padding-top: calc(2rem + 0.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (padding-bottom: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem )) {
    .documents__content {
      padding-bottom: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem );
    }
}

@supports not (padding-bottom: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem )) {
    .documents__content {
      padding-bottom: calc(2rem + 0.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .documents__top-line {
      margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .documents__top-line {
      margin-bottom: calc(2rem + 1.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem )) {
    .documents__list-img {
      margin-bottom: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem )) {
    .documents__list-img {
      margin-bottom: calc(2rem + 0.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .publications__top-line {
      margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .publications__top-line {
      margin-bottom: calc(2rem + 1.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem )) {
    .publications__list {
      margin-bottom: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.8202247191rem  +  0.8988764045vw , 2.5rem )) {
    .publications__list {
      margin-bottom: calc(2rem + 0.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .gallery__title {
      margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .gallery__title {
      margin-bottom: calc(2rem + 1.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .reviews__title {
      margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .reviews__title {
      margin-bottom: calc(2rem + 1.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .reviews__list {
      margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .reviews__list {
      margin-bottom: calc(2rem + 1.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .faq__title {
      margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .faq__title {
      margin-bottom: calc(2rem + 1.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .contact__title {
      margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 2rem , 1.3707865169rem  +  3.1460674157vw , 3.75rem )) {
    .contact__title {
      margin-bottom: calc(2rem + 1.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__about-me {
      margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem );
    }
}

@supports not (margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__about-me {
      margin-bottom: calc(3.75rem + 2.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (padding-top: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .light-theme .home__services {
      padding-top: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem );
    }
}

@supports not (padding-top: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .light-theme .home__services {
      padding-top: calc(3.75rem + 2.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-top: clamp( -6.25rem , -2.8511235955rem  +  -4.4943820225vw , -3.75rem )) {
    .light-theme .home__services {
      margin-top: clamp( -6.25rem , -2.8511235955rem  +  -4.4943820225vw , -3.75rem );
    }
}

@supports not (margin-top: clamp( -6.25rem , -2.8511235955rem  +  -4.4943820225vw , -3.75rem )) {
    .light-theme .home__services {
      margin-top: calc(-3.75rem + -2.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (padding-top: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__examples {
      padding-top: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem );
    }
}

@supports not (padding-top: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__examples {
      padding-top: calc(3.75rem + 2.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (padding-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__examples {
      padding-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem );
    }
}

@supports not (padding-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__examples {
      padding-bottom: calc(3.75rem + 2.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-top: clamp( -4.375rem , 1.5730337928rem  +  -7.8651686517vw , 0.0000000625rem )) {
    .light-theme .home__examples {
      margin-top: clamp( -4.375rem , 1.5730337928rem  +  -7.8651686517vw , 0.0000000625rem );
    }
}

@supports not (margin-top: clamp( -4.375rem , 1.5730337928rem  +  -7.8651686517vw , 0.0000000625rem )) {
    .light-theme .home__examples {
      margin-top: calc(0.0000000625rem + -4.3750000625 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( -4.375rem , -3.5252808989rem  +  -1.1235955056vw , -3.75rem )) {
    .light-theme .home__examples {
      margin-bottom: clamp( -4.375rem , -3.5252808989rem  +  -1.1235955056vw , -3.75rem );
    }
}

@supports not (margin-bottom: clamp( -4.375rem , -3.5252808989rem  +  -1.1235955056vw , -3.75rem )) {
    .light-theme .home__examples {
      margin-bottom: calc(-3.75rem + -0.625 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 3.75rem , 2.4016853933rem  +  6.7415730337vw , 7.5rem )) {
    .home__documents {
      margin-bottom: clamp( 3.75rem , 2.4016853933rem  +  6.7415730337vw , 7.5rem );
    }
}

@supports not (margin-bottom: clamp( 3.75rem , 2.4016853933rem  +  6.7415730337vw , 7.5rem )) {
    .home__documents {
      margin-bottom: calc(3.75rem + 3.75 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__publications {
      margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem );
    }
}

@supports not (margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__publications {
      margin-bottom: calc(3.75rem + 2.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (padding-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .light-theme .home__publications {
      padding-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem );
    }
}

@supports not (padding-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .light-theme .home__publications {
      padding-bottom: calc(3.75rem + 2.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__gallery {
      margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem );
    }
}

@supports not (margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__gallery {
      margin-bottom: calc(3.75rem + 2.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (padding-top: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .light-theme .home__reviews {
      padding-top: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem );
    }
}

@supports not (padding-top: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .light-theme .home__reviews {
      padding-top: calc(3.75rem + 2.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (padding-top : clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__faq {
      padding-top: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem );
    }
}

@supports not (padding-top : clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__faq {
      padding-top: calc(3.75rem + 2.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (padding-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__faq {
      padding-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem );
    }
}

@supports not (padding-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__faq {
      padding-bottom: calc(3.75rem + 2.5 * (100vw - 20rem) / 55.625);
    }
}

@supports (margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__contact {
      margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem );
    }
}

@supports not (margin-bottom: clamp( 3.75rem , 2.8511235955rem  +  4.4943820225vw , 6.25rem )) {
    .home__contact {
      margin-bottom: calc(3.75rem + 2.5 * (100vw - 20rem) / 55.625);
    }
}
}

@media (min-width: 47.9375em) and (max-width: 90em) {
@supports (grid-gap: clamp( 1.25rem , -5.8729569094rem  +  14.8588410104vw , 7.5rem )) {
    .header__content {
      grid-gap: clamp( 1.25rem , -5.8729569094rem  +  14.8588410104vw , 7.5rem );
    }
}

@supports not (grid-gap: clamp( 1.25rem , -5.8729569094rem  +  14.8588410104vw , 7.5rem )) {
    .header__content {
      grid-gap: calc(1.25rem + 6.25 * (100vw - 47.9375rem) / 42.0625);
    }
}

@supports (padding-left: clamp( 0.9375rem , -3.6924219911rem  +  9.6582466568vw , 5rem )) {
    .statistics__content {
      padding-left: clamp( 0.9375rem , -3.6924219911rem  +  9.6582466568vw , 5rem );
    }
}

@supports not (padding-left: clamp( 0.9375rem , -3.6924219911rem  +  9.6582466568vw , 5rem )) {
    .statistics__content {
      padding-left: calc(0.9375rem + 4.0625 * (100vw - 47.9375rem) / 42.0625);
    }
}

@supports (padding-right: clamp( 0.9375rem , -3.6924219911rem  +  9.6582466568vw , 5rem )) {
    .statistics__content {
      padding-right: clamp( 0.9375rem , -3.6924219911rem  +  9.6582466568vw , 5rem );
    }
}

@supports not (padding-right: clamp( 0.9375rem , -3.6924219911rem  +  9.6582466568vw , 5rem )) {
    .statistics__content {
      padding-right: calc(0.9375rem + 4.0625 * (100vw - 47.9375rem) / 42.0625);
    }
}

@supports (gap: clamp( 2.5rem , -3.9106612184rem  +  13.3729569094vw , 8.125rem )) {
    .about-me__content {
      gap: clamp( 2.5rem , -3.9106612184rem  +  13.3729569094vw , 8.125rem );
    }
}

@supports not (gap: clamp( 2.5rem , -3.9106612184rem  +  13.3729569094vw , 8.125rem )) {
    .about-me__content {
      gap: calc(2.5rem + 5.625 * (100vw - 47.9375rem) / 42.0625);
    }
}
}

@media (max-width: 47.99875em) and (min-width: 75.625em) {
  .statistics {
    top: 39.375rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 20em) and (max-width: 75.625em) {
@supports (top: clamp( 39.375rem , 45.7478932584rem  +  -8.4269662921vw , 44.0625rem )) {
    .statistics {
      top: clamp( 39.375rem , 45.7478932584rem  +  -8.4269662921vw , 44.0625rem );
    }
}

@supports not (top: clamp( 39.375rem , 45.7478932584rem  +  -8.4269662921vw , 44.0625rem )) {
    .statistics {
      top: calc(44.0625rem + -4.6875 * (100vw - 20rem) / 55.625);
    }
}
}

@media (max-width: 61.99875em) and (min-width: 61.9375em) {
  .about-me__info {
    padding-top: 1.25rem;
  }

  .gallery__main-item {
    width: 34.375rem;
  }
}

@media (max-width: 61.99875em) and (min-width: 20em) and (max-width: 61.9375em) {
@supports (padding-top: clamp( 0.0000000625rem , -0.596125094rem  +  2.9806257824vw , 1.25rem )) {
    .about-me__info {
      padding-top: clamp( 0.0000000625rem , -0.596125094rem  +  2.9806257824vw , 1.25rem );
    }
}

@supports not (padding-top: clamp( 0.0000000625rem , -0.596125094rem  +  2.9806257824vw , 1.25rem )) {
    .about-me__info {
      padding-top: calc(0.0000000625rem + 1.2499999375 * (100vw - 20rem) / 41.9375);
    }
}
}

@media (max-width: 61.99875em) and (min-width: 47.9375em) {
  .light-theme .about-me {
    padding-top: 7.5rem;
  }
}

@media (max-width: 61.99875em) and (min-width: 20em) and (max-width: 47.9375em) {
@supports (padding-top: clamp( 5.9375rem , 4.8189317673rem  +  5.5928411633vw , 7.5rem )) {
    .light-theme .about-me {
      padding-top: clamp( 5.9375rem , 4.8189317673rem  +  5.5928411633vw , 7.5rem );
    }
}

@supports not (padding-top: clamp( 5.9375rem , 4.8189317673rem  +  5.5928411633vw , 7.5rem )) {
    .light-theme .about-me {
      padding-top: calc(5.9375rem + 1.5625 * (100vw - 20rem) / 27.9375);
    }
}
}

@media (max-width: 47.99875em) and (min-width: 23.4375em) {
  .publications__item-img {
    width: 21.5625rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 20em) and (max-width: 23.4375em) {
@supports (width: clamp( 18.125rem , -1.875rem  +  100vw , 21.5625rem )) {
    .publications__item-img {
      width: clamp( 18.125rem , -1.875rem  +  100vw , 21.5625rem );
    }
}

@supports not (width: clamp( 18.125rem , -1.875rem  +  100vw , 21.5625rem )) {
    .publications__item-img {
      width: calc(18.125rem + 3.4375 * (100vw - 20rem) / 3.4375);
    }
}
}

@media (max-width: 61.99875em) and (min-width: 23.125em) and (max-width: 61.9375em) {
@supports (width: clamp( 21.5625rem , 13.9286433172rem  +  33.0112721417vw , 34.375rem )) {
    .gallery__main-item {
      width: clamp( 21.5625rem , 13.9286433172rem  +  33.0112721417vw , 34.375rem );
    }
}

@supports not (width: clamp( 21.5625rem , 13.9286433172rem  +  33.0112721417vw , 34.375rem )) {
    .gallery__main-item {
      width: calc(21.5625rem + 12.8125 * (100vw - 23.125rem) / 38.8125);
    }
}
}

@media (any-hover: hover) {
  .button:hover {
    background: #aa826a;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }

  .button_second:hover {
    background: -o-linear-gradient(1.55deg, #344254 10%, #dba88a 100%);
    background: linear-gradient(88.45deg, #344254 10%, #dba88a 100%);
  }

  .lock .header {
    padding-right: 17px;
  }

  .menu__item:hover {
    background: #dba88a;
  }

  .menu__item:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 0;
    height: 0;
    border-left: 1.125rem solid #dba88a;
    border-top: 1.125rem solid transparent;
    border-bottom: 1.125rem solid transparent;
  }

  .light-theme .menu__item:hover {
    background: #548cdc;
  }

  .light-theme .menu__item:hover::before {
    border-left: 1.125rem solid #548cdc;
  }

  .documents__image:hover::before,
  .documents__image:hover::after {
    opacity: 1;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }

  .gallery__main-item:hover::before,
  .gallery__main-item:hover::after,
  .gallery__item:hover::before,
  .gallery__item:hover::after {
    opacity: 1;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
}

.webp .introduce{ background: url(/domains/img/dark/femida.webp) 0% 60%/contain no-repeat, url(/domains/img/dark/scales.webp) 95% 50%/29.375rem 29.1875rem no-repeat, -o-radial-gradient(108.85% -7.72%, 78.52% 348.04%, #d6a488 0%, #324052 80.73%); }

.webp .introduce{ background: url(/domains/img/dark/femida.webp) 0% 60%/contain no-repeat, url(/domains/img/dark/scales.webp) 95% 50%/29.375rem 29.1875rem no-repeat, radial-gradient(78.52% 348.04% at 108.85% -7.72%, #d6a488 0%, #324052 80.73%); }

.webp .light-theme .introduce .introduce__container{ background: url(/domains/img/light/femida.webp) 95% 50%/23.625rem 29.75rem no-repeat; }

.webp .about-me__info{ background: url(/domains/img/dark/femida.webp) 50%/contain no-repeat; }

.webp .light-theme .documents{ background: url(/domains/img/light/doc-bg-pc.webp) 50%/cover no-repeat, url(/domains/img/light/waves-bg.svg) 50% 100% no-repeat; }

.webp .publications__list{ background: url(/domains/img/dark/scales-lite.webp) 16.25rem 0/34.375rem 31.875rem no-repeat; }

.webp .faq{ background: url(/domains/img/dark/femida-lite.webp) 50% 100%/32.0625rem 35.625rem no-repeat; }

.webp .lg-outer .lg-item:not(.lg-start-end-progress){ background: url(data:image/webp;base64,UklGRs4AAABXRUJQVlA4IMIAAACwBQCdASogACAAPpFCnEolo6KhqAgAsBIJaQAD5dDxrXM99232GfVDjLF0EQDwsC0CXKtWlgAA/vV76pcYbjjsL88+3qb/4UfhRX+dwASYANdOF+J5Nu61NxB7TUbHeCQeee2d4nX3M/8oPzSbTnBOl/xCNiQkRhkYBtGvv3/fXfn2CbNj/EPmnHMb/H7zFQx28TJK5yXYt1B6zlKYbIeBfYPo1h1tsfJDbPjNrzTs7O1elyh7eF4fdYd8hFly7AAAAA==) no-repeat scroll center center transparent; }

@media (max-width: 61.99875em){

  .webp .introduce{ background: url(/domains/img/dark/femida.webp) 0% 60%/contain no-repeat, -o-radial-gradient(108.85% -7.72%, 78.52% 348.04%, #d6a488 0%, #324052 80.73%); }
}

@media (max-width: 61.99875em){

  .webp .introduce{ background: url(/domains/img/dark/femida.webp) 0% 60%/contain no-repeat, radial-gradient(78.52% 348.04% at 108.85% -7.72%, #d6a488 0%, #324052 80.73%); }
}

@media (max-width: 23.75em){

  .webp .light-theme .documents{ background: url(/domains/img/light/doc-bg-mob.webp) 50%/100% no-repeat, url(/domains/img/light/waves-bg.svg) 50% 100% no-repeat; }
}