@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter18pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter18pt-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter18pt-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter18pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("./fonts/PPNeueMontreal-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("./fonts/PPNeueMontreal-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("./fonts/PPNeueMontreal-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #1B1B1B;
  line-height: 150%;
  font-weight: 400;
  background: #1B1B1B;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #1B1B1B;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  width: calc(100% - 64px);
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 64px;
}

body {
  position: relative;
}

.pageLines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 4;
  --edge: max(32px, calc((100% - 1344px) / 2));
}
.pageLines::before, .pageLines::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: var(--draw, 0%);
  background-image: var(--lineBg, linear-gradient(rgba(27, 27, 27, 0.15), rgba(27, 27, 27, 0.15)));
  background-size: 1px var(--docHeight, 100%);
  background-repeat: no-repeat;
  background-position: top left;
  will-change: height;
}
.pageLines::before {
  left: var(--edge);
}
.pageLines::after {
  right: var(--edge);
}

@media (max-width: 1380px) {
  .pageLines {
    --edge: 24px;
  }
}
@media (max-width: 1250px) {
  .pageLines {
    --edge: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pageLines::before,
  .pageLines::after {
    height: 100%;
  }
}
.js-blur-in {
  opacity: 0;
  -webkit-filter: blur(16px);
          filter: blur(16px);
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  will-change: opacity, filter, transform;
}

@media (prefers-reduced-motion: reduce) {
  .js-blur-in {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
    -webkit-transform: none;
            transform: none;
  }
}
h1 {
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 130%;
}
h1.sm {
  font-size: 54px;
}
h1.xsm {
  font-size: 42px;
}

h2 {
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 150%;
}
h2.sm {
  font-size: 32px;
}

h3 {
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 150%;
}

h4 {
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0.1em;
}

h5 {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
}

p.lg {
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
}
p.big {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
p.sm {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

.main {
  overflow: hidden;
  background: #fff;
}

.anchor {
  position: relative;
  top: -83.47px;
}

.noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.noise img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  opacity: 0.1;
}

.button {
  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;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  border-radius: 5px;
  padding: 14px 36px;
}
.button.primary {
  background: #1B1B1B;
  color: #fff;
}
.button.primary:hover {
  background: #ED1C24;
  opacity: 1;
}
.button.secondary {
  color: #1B1B1B;
  background: #fff;
}
.button svg {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.input label {
  pointer-events: none;
  position: absolute;
  top: 11px;
  left: 20px;
  display: block;
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #5d5d5d;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  background: #fff;
}
.input label.top {
  top: 4px;
  font-size: 11px;
}
.input label span {
  color: #ED1C24;
}
.input input,
.input textarea {
  width: 100%;
  padding: 14px 20px 4px;
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #1B1B1B;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  resize: unset;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.input input:focus,
.input textarea:focus {
  border-color: #1B1B1B;
}
.input input:focus + label,
.input textarea:focus + label {
  top: 4px;
  font-size: 11px;
}
.input__msg {
  display: none;
  width: 100%;
  margin-top: 6px;
  padding-left: 4px;
  color: #d04040;
  font-family: "PP Neue Montreal", sans-serif;
  font-size: 12px;
  line-height: 1.4;
}
.input.error input,
.input.error textarea {
  border-color: #d04040;
}
.input.error .input__msg {
  display: block;
}
.formStatus {
  display: none;
  margin-top: 20px;
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.formStatus.is-visible {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.formStatus__msg {
  display: none;
  text-align: center;
  padding: 24px 20px;
  border-radius: 10px;
}
.formStatus__msg h3 {
  margin-bottom: 8px;
}
.formStatus__msg p {
  opacity: 0.85;
}
.formStatus__msg--success {
  background: rgba(40, 160, 80, 0.08);
  border: 1px solid rgba(40, 160, 80, 0.25);
  color: #1f6b35;
}
.formStatus__msg--error {
  background: rgba(208, 64, 64, 0.08);
  border: 1px solid rgba(208, 64, 64, 0.25);
  color: #9a2929;
}
form.is-success .formStatus__msg--success,
form.is-error .formStatus__msg--error {
  display: block;
}
form.is-success .profileForm__col,
form.is-success .profileForm__foot,
form.is-success .contactForm__row,
form.is-success .contactForm__foot {
  display: none;
}

.arrowDown {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 56px;
  height: 90px;
  z-index: 4;
  background: #f4f4f4;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  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;
}
.arrowDown:hover {
  opacity: 1;
  background: #5D5D5D;
  color: #fff;
}
.arrowDown:hover svg {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.arrowDown img {
  width: 10px;
}
.arrowDown svg {
  width: 11px;
  height: 25px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-animation: arrowDownBob 1.8s ease-in-out infinite;
          animation: arrowDownBob 1.8s ease-in-out infinite;
  will-change: transform;
}

@-webkit-keyframes arrowDownBob {
  0%, 100% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

@keyframes arrowDownBob {
  0%, 100% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .arrowDown svg {
    -webkit-animation: none;
            animation: none;
  }
}
.map {
  border-top: 1px solid rgba(27, 27, 27, 0.3);
  position: relative;
  z-index: 5;
}
.map__inner {
  width: 100%;
  position: relative;
  min-height: 422px;
  height: 600px;
}
.map__inner img,
.map__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.map__inner iframe {
  z-index: 2;
}

@media (max-width: 1380px) {
  .auto__container {
    width: calc(100% - 48px);
    padding: 0 48px;
  }
  h1 {
    font-size: 60px;
  }
  h1.sm {
    font-size: 45px;
  }
}
@media (max-width: 1250px) {
  .auto__container {
    width: calc(100% - 32px);
    padding: 0 32px;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 24px;
  }
  h1 {
    font-size: 55px;
  }
  h1.sm {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  h2.sm {
    font-size: 28px;
  }
  .map__inner {
    height: unset;
    padding-bottom: 42%;
  }
  .arrowDown {
    width: 50px;
    height: 82px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 930px) {
  .auto__container {
    padding: 0 16px;
  }
  h1 {
    font-size: 50px;
  }
  h1.sm {
    font-size: 35px;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0;
  }
  h1 {
    font-size: 46px;
  }
  h1.sm {
    font-size: 40px;
  }
  h2 {
    font-size: 28px;
  }
  h2.sm {
    font-size: 26px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 42px;
  }
  body {
    font-size: 14px;
    line-height: 150%;
  }
  .button {
    font-size: 14px;
    padding: 14px 36px;
  }
  .input label {
    font-size: 14px;
  }
  .input input {
    font-size: 14px;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .auto__container {
  border: unset;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  background: #1B1B1B;
}
.header__inner {
  padding: 16px 0 14px;
  height: 83px;
  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__inner-logo {
  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;
  width: 176px;
  padding-right: 72px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.header__inner-logo img {
  width: 100%;
}

@media (max-width: 1024px) {
  .header.active {
    background: #1B1B1B;
  }
  .header__inner-logo {
    width: 90px;
    padding: 0;
    border: unset;
  }
}
@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner li {
  margin-right: 48px;
}
.nav__inner li:last-child {
  margin: 0;
}
.nav__inner li a {
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}
.nav__inner li a:hover {
  opacity: 0.8;
}

.burger {
  display: none;
}

@media (max-width: 1024px) {
  body.active {
    overflow: hidden;
  }
  .nav {
    position: fixed;
    top: 83px;
    left: 0;
    width: 100%;
    height: calc(100% - 83px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 430px;
    z-index: 1;
    padding: 40px 20px 20px 20px;
    height: 100%;
    overflow-y: auto;
    background: #1B1B1B;
  }
  .nav__inner li {
    margin: 0 0 28px 0;
  }
  .nav__inner li a {
    font-size: 20px;
  }
  .burger {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 28px;
    height: 28px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 15%;
    width: 75%;
    height: 3px;
    border-radius: 3px;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    right: 0;
  }
  .burger span {
    top: 50%;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger::after {
    bottom: 15%;
    width: 56%;
    height: 3px;
    border-radius: 3px;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    right: 0;
  }
  .burger.active::before {
    width: 100%;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%) rotate(45deg);
            transform: translate(50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    width: 100%;
    bottom: 50%;
    right: 50%;
    -webkit-transform: translate(50%, 50%) rotate(-45deg);
            transform: translate(50%, 50%) rotate(-45deg);
  }
}
.footer {
  padding: 28px 0 24px;
  color: #fff;
  background: #1B1B1B;
  position: relative;
  z-index: 5;
}
.footer::before {
  position: absolute;
  top: 28px;
  left: 0;
  content: "";
  background: #404040;
  height: 1px;
  width: 100%;
}
.footer .auto__container {
  max-width: 1416px;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 36px;
}
.footer__inner-row {
  padding-top: 70px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-main {
  max-width: 340px;
}
.footer__inner-main p {
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
}
.footer__inner-logo {
  width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 34px;
}
.footer__inner-logo img {
  width: 100%;
}
.footer__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__inner-links a {
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #a3a3a3;
  margin-bottom: 17px;
}
.footer__inner-links a:last-child {
  margin: 0;
}
.footer__inner-links a:hover {
  color: #fff;
  opacity: 1;
}
.footer__inner-info {
  background: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 70px 16px 77px 40px;
  max-width: 424px;
  margin-left: 100px;
}
.footer__inner h5 {
  margin-bottom: 30px;
  text-transform: uppercase;
}
.footerInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 26px;
}
.footerInfo:last-child {
  margin: 0;
}
.footerInfo__content {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footerInfo span {
  width: 20px;
  height: 20px;
  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;
  align-items: center;
  margin-right: 12px;
  margin-top: 3px;
}
.footerInfo span img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footerInfo p {
  color: #a3a3a3;
  margin-bottom: 10px;
}
.footerInfo p:last-child {
  margin: 0;
}
.footerInfo a {
  color: #a3a3a3;
}
.footerInfo a:hover {
  color: #fff;
}

.copy {
  padding-top: 28px;
  position: relative;
}
.copy::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #404040;
  height: 1px;
  width: 100%;
}

@media (max-width: 1380px) {
  .footer__inner {
    padding: 0;
  }
}
@media (max-width: 1180px) {
  .footer__inner-row {
    padding-top: 55px;
  }
  .footer__inner-logo {
    width: 140px;
  }
  .footer__inner-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .footer__inner-info {
    margin-left: 50px;
    padding: 50px 12px 50px 24px;
    max-width: 375px;
  }
}
@media (max-width: 930px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__inner-row {
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
  }
  .footer__inner-main {
    margin-right: 30px;
  }
  .footer__inner-links {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .footer__inner-info {
    margin: 0;
    width: 100%;
    max-width: unset;
    padding: 40px 30px;
  }
}
@media (max-width: 540px) {
  .footer {
    padding: 35px 0 46px;
    font-size: 14px;
    line-height: 150%;
  }
  .footer::before {
    top: 35px;
  }
  .footer__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding-top: 28px;
  }
  .footer__inner-logo {
    width: 117px;
    margin-bottom: 28px;
  }
  .footer__inner-main {
    width: 100%;
    max-width: unset;
    margin: 0 0 32px 0;
    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;
  }
  .footer__inner-links {
    width: 100%;
  }
  .footer__inner-links h5 {
    margin-bottom: 25px;
  }
  .footer__inner-links a {
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 20px;
  }
  .footer__inner-info {
    padding: 28px 28px 35px 28px;
  }
  .footer__inner-info h5 {
    text-align: center;
    margin-bottom: 28px;
  }
  .footer__inner h5 {
    font-size: 18px;
    line-height: 150%;
  }
  .footerInfo {
    margin-bottom: 28px;
  }
  .footerInfo p {
    margin-bottom: 16px;
  }
  .copy {
    text-align: center;
  }
}
@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;
  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;
  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;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.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: 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: 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: 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: 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-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.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.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.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;
  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;
  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-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.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);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-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%);
          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;
  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%);
          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;
  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;
  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);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-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-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .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%;
          transform-origin: 50%;
  -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-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  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;
          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;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-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;
          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;
          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;
  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;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.hero {
  position: relative;
  z-index: 6;
}
.hero.big .hero__bg::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(21, 21, 21, 0.5)), to(rgba(21, 21, 21, 0)));
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.5) 0%, rgba(21, 21, 21, 0) 100%);
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#151515), to(rgba(21, 21, 21, 0)));
  background: linear-gradient(180deg, #151515 0%, rgba(21, 21, 21, 0) 100%);
  z-index: 1;
}
.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-touch-callout: none;
}
.hero__bg video::-webkit-media-controls, .hero__bg video::-webkit-media-controls-start-playback-button, .hero__bg video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 76px);
  padding: 140px 0 100px;
  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;
}
.hero__inner-title {
  width: 100%;
  max-width: 972px;
  margin: 0 auto;
  text-align: center;
}
.hero__inner-title h1 {
  color: #fff;
}

@media (max-width: 540px) {
  .hero.big .hero__bg::before {
    background: -webkit-gradient(linear, left top, left bottom, from(#151515), to(rgba(21, 21, 21, 0)));
    background: linear-gradient(180deg, #151515 0%, rgba(21, 21, 21, 0) 100%);
  }
  .hero__inner {
    padding: 120px 0;
  }
}
.profile {
  position: relative;
  z-index: 5;
}
.profile.uniq {
  background: #1B1B1B;
  z-index: 4;
}
.profile.uniq .profile__inner {
  padding: 110px 0 120px;
}
.profile.uniq .profileForm {
  padding: 0 20px;
  background: transparent;
  color: #fff;
  max-width: 528px;
  position: relative;
  z-index: 5;
  width: 100%;
}
.profile.uniq .profileForm__title {
  text-align: center;
}
.profile.uniq .profileForm__foot {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.profile.uniq .profileForm .input input,
.profile.uniq .profileForm .input textarea {
  background: #1f1f1f;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  color: #fff;
}
.profile.uniq .profileForm .input input:focus,
.profile.uniq .profileForm .input textarea:focus {
  border-color: #fff;
}
.profile.uniq .profileForm .input label {
  background: #1f1f1f;
  color: #fff;
}
.profile.light {
  position: relative;
}
.profile.light .profileForm {
  padding: 40px 30px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.profile.light .profileForm__title {
  text-align: center;
}
.profile.light .profileForm__foot {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.profile.light .profileForm__col {
  max-width: 488px;
  margin: 0 auto 20px;
}
.profile__inner {
  padding: 121px 0 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.profile__inner-wrapper {
  width: 100%;
  padding: 76px 0 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.profile__inner-wrapper::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% + 128px);
  height: 1px;
  content: "";
  background: #404040;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.profile__inner-wrapper::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% + 128px);
  height: 1px;
  content: "";
  background: #404040;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.profileContent {
  width: calc(50% - 12px);
  max-width: 592px;
  background: #1B1B1B;
  border-radius: 15px;
  padding: 35px 50px 60px;
}
.profileContent__title {
  max-width: 448px;
  margin: 0 auto 55px;
}
.profileContent__row {
  max-width: 448px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 70px 40px 70px 35px;
}
.profileContent__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 154px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.profileContent__logo img {
  width: 100%;
}
.profileContent .button {
  margin-left: 30px;
  padding-left: 24px;
  padding-right: 24px;
}
.profileContent h2 {
  color: #fff;
  line-height: 130%;
}
.profileForm {
  width: calc(50% - 12px);
  max-width: 581px;
  background: #fff;
  border-radius: 15px;
  padding: 35px 50px;
}
.profileForm__title {
  margin-bottom: 12px;
}
.profileForm__col {
  margin-bottom: 16px;
}
.profileForm__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.profileForm .input {
  margin-bottom: 8px;
}
.profileForm .input:last-child {
  margin: 0;
}
.profileForm h2 {
  line-height: 110%;
}

@media (max-width: 1380px) {
  .profile.uniq .profile__inner {
    padding: 100px 0;
  }
  .profile__inner {
    padding: 100px 0;
  }
  .profile__inner-wrapper::before {
    width: calc(100% + 96px);
  }
  .profile__inner-wrapper::after {
    width: calc(100% + 96px);
  }
  .profileContent {
    padding: 30px 40px;
  }
  .profileForm {
    padding: 30px 40px;
  }
}
@media (max-width: 1250px) {
  .profile__inner-wrapper::before {
    width: calc(100% + 64px);
  }
  .profile__inner-wrapper::after {
    width: calc(100% + 64px);
  }
}
@media (max-width: 1180px) {
  .profile.uniq .profile__inner {
    padding: 80px 0;
  }
  .profile__inner {
    padding: 80px 0;
  }
  .profile__inner-wrapper::before {
    width: calc(100% + 48px);
  }
  .profile__inner-wrapper::after {
    width: calc(100% + 48px);
  }
  .profileContent {
    padding: 30px;
    width: calc(53% - 10px);
  }
  .profileContent__row {
    padding: 50px 24px;
  }
  .profileContent .button {
    padding: 15px 24px;
  }
  .profileForm {
    width: calc(47% - 10px);
    padding: 30px;
  }
}
@media (max-width: 930px) {
  .profile__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 60px 0;
  }
  .profile__inner-wrapper::before {
    width: calc(100% + 32px);
  }
  .profile__inner-wrapper::after {
    width: calc(100% + 32px);
  }
  .profileContent {
    width: 100%;
    max-width: unset;
    margin-bottom: 32px;
  }
  .profileContent__title {
    margin-bottom: 40px;
    max-width: unset;
  }
  .profileContent__row {
    max-width: unset;
    padding: 50px;
  }
  .profileForm {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 750px) {
  .profile__inner-wrapper::before {
    width: 100%;
  }
  .profile__inner-wrapper::after {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .profile.uniq .profile__inner {
    padding: 68px 0;
  }
  .profile.uniq .profileForm__title {
    margin-bottom: 28px;
  }
  .profile.light .profile__inner {
    padding: 50px 0;
  }
  .profile.light .profileForm {
    padding: 28px 28px 38px;
  }
  .profile__inner {
    padding: 90px 0 48px;
  }
  .profile__inner-wrapper {
    padding: 42px 0;
  }
  .profileContent {
    margin-bottom: 12px;
    padding: 28px;
    border-radius: 8px;
  }
  .profileContent__title {
    margin-bottom: 16px;
  }
  .profileContent__row {
    padding: 50px 22px;
  }
  .profileContent__logo {
    max-width: 120px;
  }
  .profileContent .button {
    padding: 14px 22px;
    margin-left: 18px;
  }
  .profileForm {
    padding: 28px 28px 38px;
  }
  .profileForm__title {
    margin-bottom: 12px;
  }
}
.fields {
  background: #1B1B1B;
  color: #fff;
}
.fields__inner {
  padding: 110px 0 125px;
}
.fields__inner-title {
  text-align: center;
  margin-bottom: 48px;
}
.fields__inner-title h4 {
  margin-bottom: 16px;
}
.fields__inner-title h2 {
  line-height: 130%;
}
.fields__inner-title h2 span {
  position: relative;
}
.fields__inner-title h2 span::before {
  position: absolute;
  top: 100%;
  right: 18px;
  width: 183px;
  height: 3px;
  content: "";
  background: url("../images/icons/underline.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.fields__inner-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -16px;
}
.fields__inner-foot {
  display: none;
}
.fieldsItem {
  width: calc(33.3% - 32px);
  margin: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 35px 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  position: relative;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.fieldsItem:hover {
  background: #fff;
  color: #1B1B1B;
}
.fieldsItem:hover p {
  color: #5D5D5D;
}
.fieldsItem:nth-child(1) .fieldsItem__image {
  width: 85%;
  margin: auto auto 0 auto;
}
.fieldsItem:nth-child(2) {
  padding-bottom: 28px;
}
.fieldsItem:nth-child(2) .fieldsItem__image {
  width: 75%;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin: 0 auto 10px;
}
.fieldsItem:nth-child(3) .fieldsItem__content {
  margin-bottom: 12px;
}
.fieldsItem:nth-child(3) .fieldsItem__image {
  width: 71%;
  margin: auto auto 0 auto;
}
.fieldsItem:nth-child(4) {
  width: calc(58% - 32px);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 55px 30px 55px 25px;
}
.fieldsItem:nth-child(4) .fieldsItem__content {
  width: 45%;
  max-width: 265px;
}
.fieldsItem:nth-child(4) .fieldsItem__image {
  width: 55%;
}
.fieldsItem:nth-child(5) {
  width: calc(42% - 32px);
  padding: 42px 25px;
}
.fieldsItem:nth-child(5) .fieldsItem__content {
  width: 80%;
  max-width: 230px;
}
.fieldsItem:nth-child(5) .fieldsItem__image {
  position: absolute;
  bottom: 0;
  right: 14px;
  width: 50%;
}
.fieldsItem:nth-child(5) p {
  color: #5D5D5D;
}
.fieldsItem:nth-child(6) .fieldsItem__content {
  margin-bottom: 5px;
}
.fieldsItem:nth-child(6) .fieldsItem__image {
  width: 76%;
  margin: auto auto 0;
}
.fieldsItem:nth-child(7) {
  padding: 50px 25px 28px;
}
.fieldsItem:nth-child(7) .fieldsItem__content {
  margin: auto 0 0 0;
}
.fieldsItem:nth-child(7) .fieldsItem__image {
  width: 85%;
  margin: 0 auto 4px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.fieldsItem:nth-child(8) .fieldsItem__image {
  width: 78%;
  margin: auto auto -8px;
}
.fieldsItem:nth-child(9) {
  width: calc(42% - 32px);
  padding: 42px 25px;
}
.fieldsItem:nth-child(9) .fieldsItem__content {
  width: 80%;
  max-width: 232px;
}
.fieldsItem:nth-child(9) .fieldsItem__image {
  position: absolute;
  bottom: 0;
  right: 24px;
  width: 44%;
}
.fieldsItem:nth-child(10) {
  width: calc(58% - 32px);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 70px 40px 70px 25px;
}
.fieldsItem:nth-child(10) .fieldsItem__content {
  width: 45%;
  max-width: 267px;
}
.fieldsItem:nth-child(10) .fieldsItem__image {
  width: 55%;
  max-width: 318px;
}
.fieldsItem__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fieldsItem__image img {
  width: 100%;
}
.fieldsItem__content {
  position: relative;
  z-index: 2;
}
.fieldsItem h3 {
  margin-bottom: 10px;
}
.fieldsItem p {
  color: #a3a3a3;
}

@media (max-width: 1380px) {
  .fields__inner {
    padding: 100px 0;
  }
}
@media (max-width: 1180px) {
  .fields__inner {
    padding: 80px 0;
  }
  .fields__inner-grid {
    margin: 0 -12px;
  }
  .fieldsItem {
    background: #1f1f1f;
    width: calc(33.3% - 24px);
    margin: 12px;
  }
  .fieldsItem:nth-child(4), .fieldsItem:nth-child(10) {
    width: calc(58% - 24px);
  }
  .fieldsItem:nth-child(5), .fieldsItem:nth-child(9) {
    width: calc(42% - 24px);
  }
}
@media (max-width: 930px) {
  .fields__inner {
    padding: 60px 0;
  }
  .fields__inner-title {
    margin-bottom: 32px;
  }
  .fields__inner-title h2 span::before {
    width: 140px;
    right: 2px;
  }
  .fieldsItem:nth-child(n) {
    width: calc(50% - 24px);
    padding: 24px 20px 0;
  }
  .fieldsItem:nth-child(2) {
    padding-bottom: 20px;
  }
  .fieldsItem:nth-child(4) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fieldsItem:nth-child(4) .fieldsItem__content {
    width: 100%;
    max-width: unset;
  }
  .fieldsItem:nth-child(4) .fieldsItem__image {
    width: 90%;
  }
  .fieldsItem:nth-child(10) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fieldsItem:nth-child(10) .fieldsItem__content {
    width: 100%;
    max-width: unset;
  }
  .fieldsItem:nth-child(10) .fieldsItem__image {
    width: 90%;
  }
}
@media (max-width: 650px) {
  .fields__inner-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .fields__inner-grid.active .fieldsItem:nth-child(n) {
    display: block;
    -webkit-animation: fadeIn 0.3s;
            animation: fadeIn 0.3s;
  }
  .fields__inner-foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 16px;
  }
  .fieldsItem:nth-child(n+4) {
    display: none;
  }
  .fieldsItem:nth-child(n) {
    width: 100%;
    margin: 0 0 12px 0;
    padding: 20px 20px 0;
  }
  .fieldsItem:nth-child(1) .fieldsItem__content {
    margin-bottom: 24px;
  }
  .fieldsItem:nth-child(1) .fieldsItem__image {
    width: 87%;
  }
  .fieldsItem:nth-child(2) .fieldsItem__content {
    margin-bottom: 12px;
  }
  .fieldsItem:nth-child(2) .fieldsItem__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .fieldsItem:nth-child(3) .fieldsItem__content {
    margin-bottom: 14px;
  }
  .fieldsItem:nth-child(3) .fieldsItem__image {
    width: 62%;
  }
  .fieldsItem:nth-child(4) {
    padding-bottom: 12px;
  }
  .fieldsItem:nth-child(4) .fieldsItem__content {
    margin-bottom: 10px;
  }
  .fieldsItem:nth-child(4) .fieldsItem__image {
    width: 80%;
  }
  .fieldsItem:nth-child(5) .fieldsItem__content {
    margin-bottom: 12px;
    max-width: unset;
    width: 100%;
  }
  .fieldsItem:nth-child(5) .fieldsItem__image {
    width: 60%;
    position: static;
    margin: 0 auto;
  }
  .fieldsItem:nth-child(7) {
    padding-bottom: 16px;
  }
  .fieldsItem:nth-child(7) .fieldsItem__image {
    margin-bottom: 10px;
  }
  .fieldsItem:nth-child(7) .fieldsItem__content {
    margin-bottom: 10px;
  }
  .fieldsItem:nth-child(8) .fieldsItem__content {
    margin-bottom: 12px;
  }
  .fieldsItem:nth-child(9) .fieldsItem__content {
    margin-bottom: 12px;
    max-width: unset;
    width: 100%;
  }
  .fieldsItem:nth-child(9) .fieldsItem__image {
    width: 60%;
    position: static;
    margin: 0 auto;
  }
  .fieldsItem:nth-child(10) .fieldsItem__content {
    margin-bottom: 16px;
  }
  .fieldsItem h3 {
    margin-bottom: 8px;
  }
}
@media (max-width: 540px) {
  .fields__inner {
    padding: 44px 0 54px;
  }
  .fields__inner-title h4 {
    margin-bottom: 10px;
  }
}
.team__inner {
  padding: 90px 0 112px;
}
.team__inner-title {
  margin-bottom: 30px;
  padding-right: 180px;
}
.team__inner-title h4 {
  margin-bottom: 16px;
  text-transform: uppercase;
}
.team__inner-title h2 {
  line-height: 130%;
}
.team__inner-wrapper {
  position: relative;
}
.team__inner-slider {
  overflow: hidden;
  padding-bottom: 30px;
  position: relative;
}
.team__inner-action {
  position: absolute;
  bottom: calc(100% + 40px);
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.team__inner-action button {
  position: static;
  width: 70px;
  height: 70px;
  background: #fcfbfb;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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: #000;
  border-radius: 50%;
  margin: 0 15px 0 0;
}
.team__inner-action button:hover {
  background: #1B1B1B;
  color: #fff;
  border-color: #1B1B1B;
}
.team__inner-action button.swiper-button-prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.team__inner-action button.swiper-button-disabled {
  opacity: 0.7;
}
.team__inner-action button::after {
  display: none;
}
.team__inner-action button:last-child {
  margin: 0;
}
.team__inner-action button svg {
  width: 14px;
  height: 8px;
}
.team__inner .swiper-pagination {
  top: unset;
  bottom: 0;
}
.team__inner .swiper-pagination-progressbar {
  opacity: 1 !important;
  height: 3px;
  background: rgba(27, 27, 27, 0.2);
}
.team__inner .swiper-pagination-progressbar-fill {
  background: #1B1B1B !important;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.teamItem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.teamItem__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.teamItem__image {
  width: 100%;
  padding-bottom: 60%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(116.83deg, #2b2b2b 0%, #0b0b0b 100%);
  margin-bottom: 12px;
}
.teamItem__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.teamItem h3 {
  margin-bottom: 10px;
  line-height: 120%;
}
.teamItem p {
  max-width: 448px;
  color: #5D5D5D;
}

@media (max-width: 1180px) {
  .team__inner {
    padding: 80px 0;
  }
}
@media (max-width: 930px) {
  .team__inner {
    padding: 60px 0;
  }
}
@media (max-width: 750px) {
  .team__inner {
    padding: 60px 16px;
  }
  .team__inner-slider {
    padding-bottom: 20px;
  }
  .profileForm {
    margin: 0 -1px;
    width: calc(100% + 2px);
    position: relative;
    z-index: 5;
  }
}
@media (max-width: 540px) {
  .team__inner {
    padding: 48px 16px;
  }
  .team__inner-title {
    padding: 0;
    margin-bottom: 34px;
  }
  .team__inner-title h4 {
    margin-bottom: 11px;
  }
  .team__inner-slider {
    padding: 0;
  }
  .team__inner-action {
    position: static;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 28px;
  }
  .team__inner .swiper-pagination {
    display: none !important;
  }
  .teamItem h3 {
    margin-bottom: 10px;
  }
}
.intro {
  background: #1B1B1B;
  padding-top: 83px;
  color: #fff;
  position: relative;
}
.intro.law .auto__container::before {
  z-index: 1;
}
.intro.law .intro__inner {
  max-width: unset;
  padding: 0;
  z-index: 0;
}
.intro.law .intro__inner-content {
  z-index: 2;
}
.intro__inner {
  padding: 40px 0 54px;
  max-width: 1070px;
  margin: 0 auto;
}
.intro__inner-main {
  position: relative;
  padding: 38px 50px;
}
.intro__inner-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.intro__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.intro__inner-content {
  width: calc(47% + 64px);
  max-width: 635px;
  padding: 50px 0;
}
.intro__inner-image {
  width: 53%;
  max-width: 640px;
  margin-right: -64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #1B1B1B;
}
.intro__inner-image img {
  width: 100%;
  mix-blend-mode: lighten;
}
.intro__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.intro__shape.right {
  left: unset;
  right: 0;
  top: unset;
  bottom: 0;
}
.intro__shape.right img {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
.intro__shape img {
  width: 100%;
}

@media (max-width: 1380px) {
  .intro__inner-content {
    width: calc(47% + 48px);
  }
  .intro__inner-image {
    margin-right: -48px;
  }
}
@media (max-width: 1250px) {
  .intro__inner-content {
    width: calc(47% + 32px);
  }
  .intro__inner-image {
    margin-right: -32px;
  }
}
@media (max-width: 1180px) {
  .intro__inner-content {
    width: calc(47% + 24px);
  }
  .intro__inner-image {
    margin-right: -24px;
  }
}
@media (max-width: 930px) {
  .intro__inner-content {
    width: calc(50% + 16px);
    padding: 40px 0;
  }
  .intro__inner-image {
    width: 50%;
    margin-right: -16px;
  }
}
@media (max-width: 750px) {
  .intro.law .intro__inner {
    padding: 60px 0 0 0;
  }
  .intro__shape {
    display: none;
  }
  .intro__inner {
    padding: 60px 0 116px;
  }
  .intro__inner-main {
    padding: 0;
  }
  .intro__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .intro__inner-content {
    width: 100%;
    padding: 0;
    margin-bottom: 140px;
    text-align: center;
  }
  .intro__inner-image {
    width: 100%;
    margin: 0;
  }
}
.industry__inner {
  padding: 96px 0;
}
.industry__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -12px 50px;
}
.industry__inner-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 -33px;
}
.industryCard {
  width: calc(20% - 24px);
  margin: 14px 12px;
  background: #f4f4f4;
  border-radius: 8px;
  padding: 12px 12px 34px;
  color: #1B1B1B;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.industryCard:hover {
  opacity: 1;
  background: #1B1B1B;
  color: #fff;
  -webkit-box-shadow: 0px 17.0888px 17.0888px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 17.0888px 17.0888px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.industryCard:nth-child(1) {
  padding-top: 30px;
}
.industryCard:nth-child(1) .industryCard__image {
  margin-bottom: 46px;
}
.industryCard:nth-child(2) .industryCard__image {
  width: 78%;
}
.industryCard:nth-child(3) .industryCard__image {
  width: 74%;
}
.industryCard:nth-child(4) .industryCard__image {
  width: 86%;
}
.industryCard:nth-child(5) .industryCard__image {
  width: 70%;
}
.industryCard:nth-child(6) .industryCard__image {
  width: 75%;
}
.industryCard:nth-child(7) .industryCard__image {
  width: 83%;
}
.industryCard:nth-child(8) .industryCard__image {
  width: 78%;
}
.industryCard:nth-child(9) .industryCard__image {
  width: 95%;
  padding-right: 13%;
  margin-bottom: 22px;
}
.industryCard:nth-child(10) .industryCard__image {
  width: 78%;
}
.industryCard__image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 38px;
}
.industryCard__image img {
  width: 100%;
}
.industryCard__content {
  width: 100%;
}
.industryCard h5 {
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.industryItem {
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 90px;
  min-height: 353px;
  background: #fff;
}
.industryItem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.industryItem__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  opacity: 0.1;
}
.industryItem:last-child {
  margin: 0;
}
.industryItem__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(40% - 10px);
  position: relative;
  z-index: 2;
}
.industryItem__title span {
  width: 60px;
  height: 60px;
  background: #1B1B1B;
  border-radius: 5px;
  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;
  margin-right: 20px;
}
.industryItem__title span img {
  width: 29px;
}
.industryItem__title h2 {
  color: #000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 110%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.industryItem__text {
  width: calc(60% - 10px);
  max-width: 598px;
  position: relative;
  z-index: 2;
}
.industryItem__text p {
  color: #5D5D5D;
  margin-bottom: 20px;
}
.industryItem__text p:last-child {
  margin: 0;
}

@media (max-width: 1380px) {
  .industry__inner-col {
    margin: 0 -18px;
  }
  .industryCard h5 {
    font-size: 18px;
  }
  .industryItem h2 {
    font-size: 30px;
  }
}
@media (max-width: 1250px) {
  .industry__inner-col {
    margin: 0;
  }
}
@media (max-width: 1180px) {
  .industry__inner {
    padding: 80px 0;
  }
  .industry__inner-row {
    margin: 0 -8px 45px;
  }
  .industryCard {
    width: calc(20% - 16px);
    margin: 8px;
    padding-bottom: 24px;
  }
  .industryCard__image {
    margin-bottom: 24px;
  }
  .industryCard:nth-child(1) .industryCard__image {
    margin-bottom: 30px;
  }
  .industryCard h5 {
    font-size: 16px;
  }
  .industryItem {
    padding: 40px;
    min-height: 320px;
  }
  .industryItem h2 {
    font-size: 26px;
  }
}
@media (max-width: 930px) {
  .industryCard {
    width: calc(25% - 16px);
  }
  .industryItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 30px;
  }
  .industryItem__title {
    width: 100%;
    margin-bottom: 20px;
  }
  .industryItem__text {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 750px) {
  .industryCard {
    width: calc(33.3% - 16px);
  }
}
@media (max-width: 540px) {
  .industry__inner {
    padding: 60px 0 70px;
  }
  .industryCard {
    width: calc(50% - 16px);
    padding: 10px 10px 22px 10px;
  }
  .industryCard h5 {
    font-size: 15px;
  }
  .industryItem {
    padding: 42px 20px;
    min-height: 343px;
  }
  .industryItem__title span {
    width: 46px;
    height: 46px;
  }
  .industryItem__title span img {
    width: 22px;
  }
  .industryItem__title h2 {
    font-size: 26px;
  }
  .industryItem__text p {
    margin-bottom: 10px;
  }
}
.quote {
  position: relative;
}
.quote.big .quote__inner {
  padding: 120px 0 100px;
}
.quote__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quote__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.quote__shape {
  position: absolute;
  top: 56px;
  left: 0;
  width: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quote__shape.right {
  top: unset;
  bottom: 74px;
  left: unset;
  right: 90px;
}
.quote__shape.right img {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
.quote__shape img {
  width: 100%;
}
.quote__inner {
  padding: 96px 0 100px;
  position: relative;
}
.quote__inner-title {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.quote__inner-title h2 {
  font-family: "Inter", sans-serif;
}

@media (max-width: 1180px) {
  .quote.big .quote__inner {
    padding: 90px 0;
  }
  .quote__shape {
    top: 30px;
    width: 100px;
  }
  .quote__shape.right {
    right: 30px;
    bottom: 30px;
  }
  .quote__inner {
    padding: 80px 0;
  }
}
@media (max-width: 750px) {
  .quote__bg img {
    -o-object-position: 12%;
       object-position: 12%;
  }
  .quote__inner {
    padding: 68px 0;
  }
}
@media (max-width: 540px) {
  .quote.big .quote__inner {
    padding: 120px 0;
  }
  .quote__shape {
    top: 80px;
    left: 6px;
    width: 67px;
  }
  .quote__shape.right {
    right: 13px;
    bottom: 87px;
  }
}
.about {
  background: #1B1B1B;
  color: #fff;
}
.about__inner {
  padding: 98px 0 82px;
}
.about__inner-title {
  text-align: center;
  margin-bottom: 30px;
}
.about__inner-title h4 {
  margin-bottom: 16px;
  text-transform: uppercase;
}
.about__inner-title h2 {
  line-height: 130%;
}
.about__inner-title h2 span {
  position: relative;
}
.about__inner-title h2 span::before {
  position: absolute;
  top: 100%;
  right: 4px;
  width: 141px;
  height: 3px;
  content: "";
  background: url("../images/icons/underline.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.about__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -16px;
}
.aboutItem {
  width: calc(50% - 32px);
  margin: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 26px 26px 42px 26px;
}
.aboutItem__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.aboutItem__top span {
  width: 54px;
  height: 54px;
  background: #ffffff;
  border-radius: 10px;
  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;
  margin-right: 16px;
}
.aboutItem__top span img {
  width: 28px;
}
.aboutItem__top h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.aboutItem p {
  color: #a3a3a3;
}

@media (max-width: 1180px) {
  .about__inner {
    padding: 80px 0 70px;
  }
  .about__inner-row {
    margin: 0 -12px;
  }
  .aboutItem {
    margin: 12px;
    width: calc(50% - 24px);
    padding: 24px 24px 28px;
  }
}
@media (max-width: 750px) {
  .about__inner {
    padding: 60px 0;
  }
  .about__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .aboutItem {
    width: 100%;
    margin: 0 0 16px 0;
  }
  .aboutItem:last-child {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .about__inner {
    padding: 46px 0;
  }
  .about__inner-title h4 {
    margin-bottom: 12px;
  }
  .about__inner-title h2 span::before {
    width: 110px;
  }
  .aboutItem__top {
    margin-bottom: 14px;
  }
  .aboutItem__top span {
    width: 40px;
    height: 40px;
    margin-right: 14px;
  }
}
.banner {
  position: relative;
  z-index: 5;
}
.banner__inner {
  width: 100%;
  position: relative;
  min-height: calc(100vh - 76px);
}
.banner__inner img,
.banner__inner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.banner__inner img::-webkit-media-controls,
.banner__inner video::-webkit-media-controls {
  display: none;
}

.video {
  width: 100%;
  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;
  position: relative;
  min-height: calc(100vh - 76px);
}
.video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(21, 21, 21, 0.5)), to(rgba(21, 21, 21, 0)));
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.5) 0%, rgba(21, 21, 21, 0) 100%);
}
.video.active::after {
  display: none;
}
.video video,
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
}
.video video [poster],
.video iframe [poster] {
  width: 100%;
  height: 100%;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  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;
  z-index: 6;
  background: #1B1B1B;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.video__play:hover {
  opacity: 1;
  pointer-events: auto;
}
.video__play.active {
  opacity: 0;
}
.video__play.active span img {
  opacity: 0;
}
.video__play.active span::after {
  display: block;
}
.video__play.active span::before {
  display: block;
}
.video__play.active:hover {
  opacity: 1;
  pointer-events: auto;
}
.video__play span {
  width: 80%;
  height: 80%;
  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;
  position: relative;
  z-index: 2;
}
.video__play span::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 35%;
  width: 4px;
  height: 50%;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 3px;
}
.video__play span::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  right: 35%;
  width: 4px;
  height: 50%;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 3px;
}
.video__play span img {
  width: 100%;
}

@media (max-width: 1380px) {
  .video {
    padding-bottom: 56.2%;
    min-height: unset;
  }
}
@media (max-width: 1180px) {
  .video {
    padding-bottom: 66%;
  }
}
@media (max-width: 540px) {
  .banner__inner {
    padding-bottom: 70%;
  }
  .banner .video {
    padding-bottom: 70%;
  }
  .banner .video__play {
    width: 40px;
    height: 40px;
  }
}
.lawyers__inner {
  padding: 80px 0 115px;
}
.lawyers__inner-foot {
  display: none;
}
.lawyersItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.lawyersItem:last-child {
  margin: 0;
}
.lawyersItem__profile {
  width: calc(52% - 15px);
  max-width: 592px;
}
.lawyersItem__text {
  width: calc(48% - 15px);
  max-width: 572px;
}
.lawyersItem__text p {
  margin-bottom: 20px;
}
.lawyersItem__text p:last-child {
  margin: 0;
}
.lawyersItem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.lawyersItem__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.lawyersItem__image {
  width: 100%;
  padding-bottom: 71%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(116.83deg, #2b2b2b 0%, #0b0b0b 100%);
  margin-bottom: 16px;
}
.lawyersItem__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.lawyersItem__content {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 25px 32px;
}
.lawyersItem__content p {
  max-width: 448px;
}
.lawyersItem h3 {
  margin-bottom: 14px;
}
.lawyersItem p {
  color: #5D5D5D;
}

@media (max-width: 1180px) {
  .lawyers__inner {
    padding: 80px 0;
  }
  .lawyersItem__content {
    padding: 20px 24px;
  }
}
@media (max-width: 930px) {
  .lawyers__inner {
    padding: 60px 0;
  }
  .lawyersItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lawyersItem__profile {
    width: 100%;
    max-width: unset;
    margin-bottom: 32px;
  }
  .lawyersItem__text {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 750px) {
  .lawyers__inner {
    padding: 60px 16px;
  }
}
@media (max-width: 540px) {
  .lawyers__inner {
    padding: 85px 16px 40px;
  }
  .lawyers__inner-col.active .lawyersItem:nth-child(n) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: fadeIn 0.3s;
            animation: fadeIn 0.3s;
  }
  .lawyers__inner-foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .lawyersItem {
    margin-bottom: 28px;
  }
  .lawyersItem:last-child {
    margin-bottom: 28px;
  }
  .lawyersItem:nth-child(n+3) {
    display: none;
  }
  .lawyersItem__image {
    margin-bottom: 12px;
  }
  .lawyersItem__content {
    padding: 18px;
  }
  .lawyersItem__profile {
    margin-bottom: 16px;
  }
  .lawyersItem__text p {
    margin-bottom: 14px;
  }
  .lawyersItem h3 {
    margin-bottom: 10px;
  }
}
.contact {
  padding-top: 83px;
  background: #1B1B1B;
  color: #fff;
  position: relative;
}
.contact__inner {
  padding: 102px 0 156px;
}
.contact__inner-title {
  text-align: center;
  max-width: 790px;
  margin: 0 auto 30px;
}
.contact__inner h1 {
  margin-bottom: 28px;
}
.contactForm {
  max-width: 800px;
  margin: 0 auto;
}
.contactForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.contactForm__foot {
  padding-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contactForm .input {
  width: calc(50% - 20px);
  margin: 10px;
}
.contactForm .input.big {
  width: calc(100% - 20px);
}
.contactForm .input input,
.contactForm .input textarea {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px 20px 8px;
  font-family: "Inter", sans-serif;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contactForm .input input:focus,
.contactForm .input textarea:focus {
  border-color: #fff;
}
.contactForm .input label {
  top: 15px;
  background: #1f1f1f;
  color: #fff;
}
.contactForm .input label.top {
  top: 5px;
}

@media (max-width: 1380px) {
  .contact__inner {
    padding: 100px 0 120px;
  }
}
@media (max-width: 1180px) {
  .contact__inner {
    padding: 80px 0 100px;
  }
}
@media (max-width: 930px) {
  .contact__inner {
    padding: 60px 0 92px;
  }
  .contactForm .input input,
  .contactForm .input textarea {
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
  }
}
@media (max-width: 540px) {
  .contact__inner-title {
    margin-bottom: 28px;
  }
  .contact__inner-title p {
    max-width: 288px;
    margin: 0 auto;
  }
  .contact__inner h1 {
    margin-bottom: 14px;
    line-height: 130%;
  }
  .contactForm__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 85%;
    margin: 0 auto;
  }
  .contactForm .input {
    width: 100% !important;
    margin: 0 0 12px 0;
  }
}
.info__inner {
  padding: 120px 0 100px;
}
.info__inner-title {
  text-align: center;
  margin-bottom: 42px;
}
.info__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.infoItem {
  border: 1px solid rgba(27, 27, 27, 0.2);
  border-radius: 10px;
  width: calc(33.3% - 14px);
  max-width: 384px;
  color: #5D5D5D;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 28px 24px 30px;
  font-family: "PP Neue Montreal", sans-serif;
}
.infoItem:hover {
  background: #1B1B1B;
  border-color: #1B1B1B;
  color: #fff;
  opacity: 1;
}
.infoItem:hover span {
  background: #fff;
  color: #1B1B1B;
}
.infoItem:hover .infoItem__top {
  border-color: rgba(255, 255, 255, 0.15);
}
.infoItem__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(27, 27, 27, 0.15);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-bottom: 20px;
}
.infoItem__content {
  text-align: center;
}
.infoItem__content p {
  max-width: 277px;
  margin: 0 auto 10px;
}
.infoItem__content p:last-child {
  margin-bottom: 0;
}
.infoItem span {
  width: 54px;
  height: 54px;
  background: #1b1b1b;
  border-radius: 5px;
  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;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #fff;
}
.infoItem span.sm svg {
  width: 15px;
}
.infoItem span svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1180px) {
  .info__inner {
    padding: 90px 0 80px;
  }
}
@media (max-width: 930px) {
  .info__inner {
    padding: 90px 0 60px;
  }
  .info__inner-title {
    margin-bottom: 28px;
  }
  .info__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .infoItem {
    width: 100%;
    max-width: unset;
    margin-bottom: 12px;
  }
}
@media (max-width: 540px) {
  .info__inner {
    padding: 90px 0 48px;
  }
  .infoItem {
    padding: 30px 28px;
    min-height: 190px;
  }
  .infoItem__top {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
  .infoItem__content p {
    margin-bottom: 16px;
  }
  .infoItem span {
    width: 44px;
    height: 44px;
  }
  .infoItem span svg {
    width: 16px;
    height: 16px;
  }
}