@charset "UTF-8";
:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "Inter Display", sans-serif;
  --content-width: 1300px;
  --container-offset: 150px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --black: #000;
  --text-black: #051824;
  --green: #38b282;
  --presentation-blue-bg: #032437;
  --presentation-white-text: #ededed;
  --system-lines: #e5e5e5;
  --system-white: #fff;
  --system-900: #04131c;
  --system-ocean-blue: #5cb1e0;
  --system-dark-sea-blue: #3b728f;
  --system-sea-blue: #5c9dbb;
  --system-sea-blue-hover: #538da8;
  --system-stroke-button: rgba(107, 141, 160, 0.2);
  --system-gray-system: #f5f6f7;
  --ostalnye-100: #e0e2e2;
  --ostalnye-200: #cfd5d6;
  --ostalnye-300: #9da8ab;
  --ostalnye-400: #7998a3;
  --ostalnye-500: #6b8da0;
  --ostalnye-600: #4e6c7c;
  --ostalnye-700: #636466;
  --ostalnye-800: #083544;
  --ostalnye-08a045: #08a045;
  --ostalnye-08a045: rgba(8, 160, 69, 0.1);
}

@media (max-width: 1600px) {
  :root {
    --container-offset: 60px;
  }
}
@media (max-width: 1300px) {
  :root {
    --container-offset: 40px;
  }
}
@media (max-width: 1000px) {
  :root {
    --container-offset: 30px;
  }
}
@media (max-width: 768px) {
  :root {
    --container-offset: 20px;
  }
}
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field.just-validate-error-field + .custom-checkbox__content::before {
  border: 1px solid #ff0000;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: none;
}

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

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

.custom-radio__field:focus + .custom-radio__content::before {
  outline: none;
}

.custom-radio__field:disabled + .custom-radio__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter Display";
  src: url("../fonts/../fonts/InterDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter Display";
  src: url("../fonts/../fonts/InterDisplay-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

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

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

video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

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

.site-container {
  overflow: hidden;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
}

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

.btn-transparent {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 13px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--system-white);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
.btn-transparent:hover {
  border: 1px solid var(--system-white);
  background: rgba(255, 255, 255, 0.25);
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
.btn-transparent:disabled {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.5;
}

.btn-secondary {
  border-radius: 12px;
  padding: 13px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 115%;
  letter-spacing: -0.01em;
  color: #000;
  background: var(--system-gray-system);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn-secondary:hover {
  background: #e4ebf0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn-secondary:disabled {
  background: var(--system-gray-system);
  opacity: 0.5;
}

.btn-primary {
  border-radius: 12px;
  padding: 13px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 115%;
  letter-spacing: -0.01em;
  color: var(--system-white);
  background: var(--system-sea-blue);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn-primary:hover {
  background: var(--system-sea-blue-hover);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn-primary:disabled {
  opacity: 0.5;
}

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

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

.graph-modal__close {
  top: 20px;
  right: 20px;
}

.form-classic input:not([type=checkbox]) {
  width: 100%;
  padding: 18px;
  border-radius: 10px;
  background: #f4f4f4;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-classic input:not([type=checkbox])::-webkit-input-placeholder {
  opacity: 0.8;
  color: #909090;
}
.form-classic input:not([type=checkbox])::-moz-placeholder {
  opacity: 0.8;
  color: #909090;
}
.form-classic input:not([type=checkbox]):-ms-input-placeholder {
  opacity: 0.8;
  color: #909090;
}
.form-classic input:not([type=checkbox])::-ms-input-placeholder {
  opacity: 0.8;
  color: #909090;
}
.form-classic input:not([type=checkbox])::placeholder {
  opacity: 0.8;
  color: #909090;
}
.form-classic input:not([type=checkbox]):hover::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-classic input:not([type=checkbox]):hover::-moz-placeholder {
  opacity: 1;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.form-classic input:not([type=checkbox]):hover:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-classic input:not([type=checkbox]):hover::-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-classic input:not([type=checkbox]):hover::placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-classic input:not([type=checkbox]):focus::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-classic input:not([type=checkbox]):focus::-moz-placeholder {
  opacity: 1;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.form-classic input:not([type=checkbox]):focus:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-classic input:not([type=checkbox]):focus::-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-classic input:not([type=checkbox]):focus::placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-classic textarea {
  width: 100%;
  padding: 18px;
  resize: none;
  border-radius: 10px;
  background: #f4f4f4;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-classic textarea::-webkit-input-placeholder {
  opacity: 0.8;
  color: #909090;
}
.form-classic textarea::-moz-placeholder {
  opacity: 0.8;
  color: #909090;
}
.form-classic textarea:-ms-input-placeholder {
  opacity: 0.8;
  color: #909090;
}
.form-classic textarea::-ms-input-placeholder {
  opacity: 0.8;
  color: #909090;
}
.form-classic textarea::placeholder {
  opacity: 0.8;
  color: #909090;
}
.form-classic textarea:hover::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-classic textarea:hover::-moz-placeholder {
  opacity: 1;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.form-classic textarea:hover:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-classic textarea:hover::-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-classic textarea:hover::placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-classic textarea:focus::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-classic textarea:focus::-moz-placeholder {
  opacity: 1;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.form-classic textarea:focus:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-classic textarea:focus::-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-classic textarea:focus::placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-classic .label {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
}

.form-transparent input:not([type=checkbox]) {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--system-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent input:not([type=checkbox])::-webkit-input-placeholder {
  opacity: 0.6;
  color: var(--system-white);
}
.form-transparent input:not([type=checkbox])::-moz-placeholder {
  opacity: 0.6;
  color: var(--system-white);
}
.form-transparent input:not([type=checkbox]):-ms-input-placeholder {
  opacity: 0.6;
  color: var(--system-white);
}
.form-transparent input:not([type=checkbox])::-ms-input-placeholder {
  opacity: 0.6;
  color: var(--system-white);
}
.form-transparent input:not([type=checkbox])::placeholder {
  opacity: 0.6;
  color: var(--system-white);
}
.form-transparent input:not([type=checkbox]):hover::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent input:not([type=checkbox]):hover::-moz-placeholder {
  opacity: 1;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent input:not([type=checkbox]):hover:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent input:not([type=checkbox]):hover::-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent input:not([type=checkbox]):hover::placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent input:not([type=checkbox]):focus::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent input:not([type=checkbox]):focus::-moz-placeholder {
  opacity: 1;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent input:not([type=checkbox]):focus:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent input:not([type=checkbox]):focus::-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent input:not([type=checkbox]):focus::placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent textarea {
  width: 100%;
  padding: 18px;
  resize: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--system-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent textarea::-webkit-input-placeholder {
  opacity: 0.6;
}
.form-transparent textarea::-moz-placeholder {
  opacity: 0.6;
}
.form-transparent textarea:-ms-input-placeholder {
  opacity: 0.6;
}
.form-transparent textarea::-ms-input-placeholder {
  opacity: 0.6;
}
.form-transparent textarea::placeholder {
  opacity: 0.6;
}
.form-transparent textarea:hover::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent textarea:hover::-moz-placeholder {
  opacity: 1;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent textarea:hover:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent textarea:hover::-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent textarea:hover::placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent textarea:focus::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent textarea:focus::-moz-placeholder {
  opacity: 1;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent textarea:focus:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent textarea:focus::-ms-input-placeholder {
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent textarea:focus::placeholder {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-transparent .label {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
}

input.just-validate-error-field {
  border: 1px solid rgba(255, 0, 0, 0.4);
}

textarea.just-validate-error-field {
  border: 1px solid rgba(255, 0, 0, 0.4);
}

.just-validate-error-label {
  margin-top: 5px;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 12px;
  color: #f00 !important;
}

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

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

.centered {
  text-align: center;
}

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

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

.title-h1 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 75px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--system-900);
}

.title-h2 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--system-900);
}

.title-h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--system-900);
}

.title-h4 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  text-transform: uppercase;
  color: var(--system-900);
}

.title-h4-medium {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 115%;
  letter-spacing: -0.02em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 10px 0;
  background-color: transparent;
}
.header--scrolled {
  background-color: var(--system-white);
  backdrop-filter: blur(64px);
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
}
.header--scrolled img {
  display: none;
}
.header--scrolled img.primary {
  display: block;
}
.header--scrolled .header__controls-burger {
  border-color: rgba(107, 141, 160, 0.2);
  color: #04131c;
}
.header--scrolled .header__controls-burger:hover {
  border-color: #3b728f;
}
.header--scrolled .header__controls-burger:hover .header__controls-burger-icon {
  fill: #3b728f;
  stroke: #3b728f;
}
.header--scrolled .header__controls-callback {
  border-color: rgba(107, 141, 160, 0.2);
  color: #04131c;
}
.header--scrolled .header__controls-callback:hover {
  border-color: #3b728f;
  color: #3b728f;
}
.header--scrolled .header__controls-burger-icon {
  fill: #04131c;
  stroke: #04131c;
}
.header--black {
  background-color: var(--system-white);
  backdrop-filter: blur(64px);
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
}
.header--black img {
  display: none;
}
.header--black img.primary {
  display: block;
}
.header--black .header__controls-burger {
  border-color: rgba(107, 141, 160, 0.2);
  color: #04131c;
}
.header--black .header__controls-burger:hover {
  border-color: #3b728f;
}
.header--black .header__controls-burger:hover .header__controls-burger-icon {
  fill: #3b728f;
  stroke: #3b728f;
}
.header--black .header__controls-callback {
  border-color: rgba(107, 141, 160, 0.2);
  color: #04131c;
}
.header--black .header__controls-callback:hover {
  border-color: #3b728f;
  color: #3b728f;
}
.header--black .header__controls-burger-icon {
  fill: #04131c;
  stroke: #04131c;
}
.header__inner {
  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 .primary {
  display: none;
}
.header__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.header__controls-callback {
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 42px;
  padding: 15px 25px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 115%;
  color: var(--system-white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__controls-callback:hover {
  background-color: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.header__controls-burger {
  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;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 115%;
  color: var(--system-white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__controls-burger:hover {
  background-color: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.header__controls-burger-icon {
  width: 20px;
  height: 20px;
  fill: var(--system-white);
  stroke: var(--system-white);
}

.burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  background: linear-gradient(231.67deg, #76c3e3 -36.33%, #3f87a2 76.87%);
}
.burger-menu.menu--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.burger-menu video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
  pointer-events: none;
  z-index: -1;
}
.burger-menu__inner {
  overflow-y: auto;
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}
.burger-menu__header {
  padding: 0 40px;
  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;
}
.burger-menu__close {
  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;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 115%;
  color: var(--system-white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.burger-menu__close:hover {
  background-color: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.burger-menu__close-icon {
  width: 20px;
  height: 20px;
  fill: var(--system-white);
}
.burger-menu__content {
  padding: 0 40px;
}
.burger-menu__controls {
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.burger-menu__controls-callback {
  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;
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px 25px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 115%;
  color: var(--system-white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.burger-menu__controls-callback:hover {
  background-color: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.burger-menu__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.burger-menu__item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.burger-menu__item:first-child {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.burger-menu__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: -0.01em;
  color: var(--system-white);
}
.burger-menu__footer {
  padding: 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.burger-menu__footer .footer.primary {
  background: transparent;
}
.burger-menu__footer .footer.primary .footer-top {
  border-top: none;
}

@media (max-width: 768px) {
  .header__logo {
    display: block;
    width: 120px;
  }
  .header__controls-callback {
    display: none;
  }
  .header__controls-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 500px) {
  .burger-menu__header {
    padding: 0 16px;
  }
  .burger-menu__content {
    padding: 0 16px;
  }
  .burger-menu__controls {
    padding: 0 16px;
  }
  .burger-menu__footer {
    padding: 0 16px;
  }
}
.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer__top {
  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;
  padding: 60px 0;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.footer__bottom {
  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;
  padding: 24px 0;
  gap: 50px;
}
.footer__logo.white {
  display: none;
}

.footer.primary {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}
.footer.primary .footer__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.footer.primary .footer__logo {
  display: none;
}
.footer.primary .footer__logo.white {
  display: block;
}
.footer.primary .footer-top__logo-address {
  color: rgba(255, 255, 255, 0.6);
}
.footer.primary .footer-column__title {
  color: rgba(255, 255, 255, 0.5);
}
.footer.primary .footer-column__list li a {
  color: var(--system-white);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer.primary .footer-column__list li a:hover {
  opacity: 0.5;
}
.footer.primary .footer-contacts__phone {
  color: var(--system-white);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer.primary .footer-contacts__phone:hover {
  opacity: 0.5;
}
.footer.primary .footer-contacts__email {
  color: var(--system-white);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer.primary .footer-contacts__email:hover {
  opacity: 0.5;
}
.footer.primary .footer-contacts__schedule {
  color: rgba(255, 255, 255, 0.5);
}
.footer.primary .footer-bottom__left {
  color: rgba(255, 255, 255, 0.6);
}
.footer.primary .footer-bottom__left a {
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer.primary .footer-bottom__left a:hover {
  color: var(--system-white);
}
.footer.primary .footer-bottom__right {
  color: rgba(255, 255, 255, 0.6);
}
.footer.primary .footer-bottom__right a {
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer.primary .footer-bottom__right a:hover {
  color: var(--system-white);
}

.footer-top__logo-address {
  margin-top: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--ostalnye-300);
}
.footer-top__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
.footer-top__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer-column__title {
  margin-bottom: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  text-transform: uppercase;
  color: var(--ostalnye-300);
}
.footer-column__list {
  margin-top: 10px;
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.footer-column__list li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: #000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-column__list li a:hover {
  color: var(--system-dark-sea-blue);
}

.footer-contacts {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.footer-contacts__phone {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  color: var(--system-900);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-contacts__phone:hover {
  color: var(--system-dark-sea-blue);
}
.footer-contacts__email {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  color: var(--system-900);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-contacts__email:hover {
  color: var(--system-dark-sea-blue);
}
.footer-contacts__schedule {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--ostalnye-300);
}

.footer-bottom__left {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--ostalnye-300);
}
.footer-bottom__left a {
  color: var(--ostalnye-300);
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-bottom__left a:hover {
  color: var(--system-dark-sea-blue);
}
.footer-bottom__right {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--ostalnye-300);
}
.footer-bottom__right a {
  color: var(--ostalnye-700);
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-bottom__right a:hover {
  color: var(--system-dark-sea-blue);
}

@media (max-width: 1300px) {
  .footer__top {
    padding: 40px 0;
  }
  .footer__logo {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .footer-top__logo {
    max-width: 273px;
  }
  .footer-top__columns {
    gap: 42px;
  }
  .footer-contacts__phone {
    font-size: 20px;
  }
  .footer-contacts__email {
    font-size: 20px;
  }
}
@media (max-width: 1000px) {
  .footer__top {
    padding: 32px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__bottom {
    padding: 16px 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .footer-top__logo {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 60px;
  }
  .footer-top__logo-link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
  }
  .footer-top__logo-address {
    text-align: right;
  }
  .footer-top__columns {
    gap: 32px;
  }
  .footer-contacts__phone {
    font-size: 24px;
  }
  .footer-contacts__email {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    padding: 32px 0;
    gap: 28px;
  }
  .footer__bottom {
    padding: 32px 0;
    gap: 24px;
  }
  .footer__logo {
    margin: 0 auto;
    max-width: 300px;
  }
  .footer-top__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 24px;
  }
  .footer-top__logo-link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .footer-top__logo-address {
    text-align: center;
  }
  .footer-top__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
  }
  .footer-top__contacts {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .footer-contacts__phone {
    font-size: 20px;
  }
  .footer-contacts__email {
    font-size: 20px;
  }
}
.success-modal {
  max-width: 400px;
  padding: 30px;
}
.success-modal__content {
  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;
}

.success-modal-content__icon {
  margin: 0 auto 24px auto;
  width: 100px;
  height: 100px;
  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;
  border-radius: 50%;
  background-color: var(--system-sea-blue);
}
.success-modal-content__title {
  margin-bottom: 16px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #000;
}
.success-modal-content__text {
  margin-bottom: 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #000;
}
.success-modal-content .btn {
  width: 100%;
}

.icon {
  width: 47px;
  fill: none;
  stroke: var(--system-white);
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.callback-modal {
  padding: 32px 30px;
  max-width: 500px;
}
.callback-modal__content {
  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;
}

.callback-modal-content__logo {
  margin-bottom: 11px;
}
.callback-modal-content__subtitle {
  margin-bottom: 21px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #000;
}

.form-classic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  gap: 13px;
}
.form-classic__btn {
  height: 50px;
  margin-top: 27px;
}
.form-classic__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 145%;
  text-align: center;
  color: #000;
}
.form-classic__text a {
  color: #000;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-classic__text a:hover {
  color: var(--system-sea-blue);
}

.question-modal {
  padding: 32px 30px;
  max-width: 500px;
}
.question-modal__content {
  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;
}

.question-modal-content__title {
  margin-bottom: 10px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
}
.question-modal-content__subtitle {
  margin-bottom: 18px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #7d7d7d;
}

.question-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  gap: 13px;
}
.question-form textarea[name=Тема] {
  height: 110px;
}
.question-form textarea[name=Вопрос] {
  height: 240px;
}
.question-form__btn {
  height: 50px;
  margin-top: 27px;
}
.question-form__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 145%;
  color: #000;
}
.question-form__text a {
  color: #000;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.question-form__text a:hover {
  color: var(--system-sea-blue);
}

.custom-checkbox {
  position: relative;
}
.custom-checkbox__field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}
.custom-checkbox__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: var(--text-black);
  cursor: pointer;
}
.custom-checkbox__content::before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  border-radius: 4px;
  border: 1px solid #909090;
  width: 16px;
  height: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.custom-checkbox__content::after {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url("../img/checked.svg");
  background-size: 12px 8px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.file-upload {
  width: 100%;
  padding: 24px;
  font-family: var(--font-family);
  cursor: pointer;
  background: #f4f4f4;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px dashed #d0d5dd;
}

.file-upload:hover {
  border-color: #666;
  background-color: #f9f9f9;
}

.file-upload__label {
  display: block;
  text-align: center;
}

.file-upload__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.file-upload__text {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #686868;
}

.file-upload__preview {
  margin-top: 14px;
}

.file-item {
  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;
  padding: 6px;
  margin-bottom: 8px;
  background-color: #fff;
  border-radius: 8px;
}

.file-name {
  display: inline-block;
  vertical-align: top;
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #000;
}

.file-size {
  vertical-align: middle;
  font-size: 12px;
  text-align: left;
  color: #000;
  color: var(--system-sea-blue);
}

.file-remove {
  margin: 0 10px;
  color: #ff4444;
  cursor: pointer;
  font-weight: bold;
}

.fancybox__backdrop {
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.6);
}

.fancybox__slide video,
.fancybox__slide img {
  border-radius: 18px;
}

.fancybox__container {
  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;
}

.fancybox__carousel {
  max-width: 750px;
  width: 100%;
}

.has-html5video .f-html,
.has-youtube .f-html,
.has-vimeo .f-html {
  max-width: 480px;
  max-height: 80vh;
  border-radius: 18px;
}

.fancybox__slide .f-button[data-fancybox-close] {
  top: -57.6px;
  right: -57.6px;
  border: 1px solid var(--system-white);
  width: 48px;
  height: 48px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.1);
}

.f-button.is-arrow {
  width: auto;
  height: auto;
  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;
  padding: 10px 20px;
  border: 1px solid var(--system-white);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}
.f-button.is-arrow svg {
  width: 16px;
  height: 15px;
  stroke-width: 0;
}

@media (max-width: 768px) {
  .fancybox__slide .f-button[data-fancybox-close] {
    top: 16px;
    right: 16px;
    backdrop-filter: blur(14px);
  }
}
.tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-bottom: 40px;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tabs__nav::-webkit-scrollbar {
  display: none;
}
.tabs__nav-btn {
  border-radius: 12px;
  padding: 10px 20px;
  background: var(--system-gray-system);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 115%;
  white-space: nowrap;
  color: var(--system-900);
}
.tabs__nav-btn:hover {
  background: #e4ebf0;
}
.tabs__nav-btn:focus {
  outline: none;
  background: var(--system-sea-blue);
  color: var(--system-white);
}
.tabs__nav-btn--active {
  background: var(--system-sea-blue);
  color: var(--system-white);
}
.tabs__nav-btn--active:hover {
  background: var(--system-sea-blue-hover);
}
.callback__inner {
  margin-bottom: 120px;
  padding: 60px 36px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 24px;
}
.callback__title {
  margin: 0 auto 16px auto;
  max-width: 700px;
  text-align: center;
}
.callback__subtitle {
  max-width: 540px;
  margin: 0 auto 24px auto;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: var(--system-900);
}
.form-classic--callback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 6px;
  -moz-column-gap: 6px;
  column-gap: 6px;
  row-gap: 24px;
}
.form-classic .label {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
}
.form-classic__btn {
  max-height: 58px;
  height: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  margin-top: 0px;
}
.form-classic .custom-checkbox__content {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1300px) {
  .form-classic--callback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 6px;
    -moz-column-gap: 6px;
    column-gap: 6px;
    row-gap: 12px;
  }
  .form-classic .label {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20%;
    flex: 1 1 20%;
  }
  .form-classic__btn {
    max-height: 60px;
    height: 60px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 1000px) {
  .callback__inner {
    margin-bottom: 80px;
    padding: 60px 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 24px;
  }
  .callback__title {
    margin: 0 auto 16px auto;
    max-width: 700px;
    text-align: center;
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .callback__inner {
    margin-bottom: 80px;
    padding: 32px 16px;
  }
  .callback__title {
    margin: 0 auto 16px auto;
    max-width: 700px;
    text-align: center;
    font-size: 36px;
  }
  .callback__subtitle {
    font-size: 16px;
  }
  .form-classic--callback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 8px;
  }
  .form-classic .label {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .form-classic__btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    max-height: 50px;
    height: 50px;
  }
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.slider__controls {
  margin-top: 40px;
}
.slider__controls-wrapper {
  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;
  width: 100%;
}
.slider__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: static;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.4);
}
.slider__pagination .swiper-pagination-current {
  color: #000;
}
.slider__pagination.swiper-pagination-lock {
  display: none;
}
.slider__controls-btns {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.slider__control {
  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: 0;
  width: 100%;
  height: 100%;
  position: static;
  border-radius: 13px;
  padding: 10px 20px;
  background: var(--system-gray-system);
}
.slider__control.swiper-button-lock {
  display: none;
}
.slider__control.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.slider__control svg {
  width: 15px;
  height: 15px;
  fill: #4a4a4a;
}

@media (max-width: 768px) {
  .slider__controls {
    margin-top: 32px;
  }
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  color: #fff;
}
.breadcrumbs__item a {
  color: rgba(255, 255, 255, 0.5019607843);
  border-bottom: 1px solid transparent;
  -webkit-transition: border-bottom-color 0.3s, color 0.3s;
  transition: border-bottom-color 0.3s, color 0.3s;
}
.breadcrumbs__item a:hover {
  color: rgba(255, 255, 255, 0.7019607843);
  border-bottom-color: rgba(255, 255, 255, 0.7019607843);
}
.breadcrumbs__item:not(:last-child):after {
  content: "/";
  margin-left: 5px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumbs__item.black {
  color: #000;
}
.breadcrumbs__item.black a {
  color: rgba(0, 0, 0, 0.5019607843);
  border-bottom: 1px solid transparent;
  -webkit-transition: border-bottom-color 0.3s, color 0.3s;
  transition: border-bottom-color 0.3s, color 0.3s;
}
.breadcrumbs__item.black a:hover {
  color: rgba(0, 0, 0, 0.7019607843);
  border-bottom-color: rgba(0, 0, 0, 0.7019607843);
}
.breadcrumbs__item.black:not(:last-child):after {
  content: "/";
  margin-left: 5px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.4);
}

.hero {
  background-color: #79abbf;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -100px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2));
  z-index: 2;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 1090px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}
.hero__wrapper {
  position: relative;
  z-index: 2;
  padding: 360px 0 120px 0;
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hero__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  color: var(--system-white);
}
.hero__description-text {
  max-width: 500px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 115%;
  letter-spacing: -0.01em;
  color: var(--system-white);
}
.hero__description-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 14px 30px;
}
.hero__statistic {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
}
.hero__statistic-item {
  max-width: 260px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
}
.hero__statistic-item-title {
  margin-bottom: 12px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--system-white);
}
.hero__statistic-item-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 123%;
  letter-spacing: -0.01em;
  color: var(--system-white);
}

@media (max-width: 1300px) {
  .hero__wrapper {
    padding: 220px 0 200px 0;
  }
}
@media (max-width: 1000px) {
  .hero__title {
    font-size: 60px;
  }
  .hero__description-text {
    font-size: 16px;
  }
  .hero__statistic {
    gap: 32px;
  }
  .hero__statistic-item {
    max-width: 220px;
  }
  .hero__statistic-item-title {
    font-size: 40px;
  }
  .hero__statistic-item-description {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .hero video {
    min-height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center bottom;
    object-position: center bottom;
  }
  .hero__title {
    font-size: 45px;
  }
  .hero__statistic {
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
    row-gap: 32px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .hero__statistic-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 49%;
    flex: 1 1 49%;
    max-width: 240px;
  }
}
@media (max-width: 530px) {
  .hero__statistic-item {
    max-width: unset;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
  }
}
.about {
  margin-top: -60px;
  position: relative;
  padding: 120px 0;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: var(--system-white);
  pointer-events: none;
  mask-image: url("../img/clip-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-image: url("../img/clip-mask.svg"); /* для Safari */
}

.about-content {
  position: relative;
  z-index: 2;
}
.about-content__pretitle {
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  text-transform: uppercase;
  color: #051824;
  opacity: 0.7;
}
.about-content__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}
.about-content__title {
  margin-bottom: 32px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 60%;
  flex: 1 1 60%;
  font-size: 70px;
}
.about-content__description {
  margin-top: 32px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40%;
  flex: 1 1 40%;
}
.about-content__description-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 115%;
  letter-spacing: -0.01em;
  color: #051c29;
}
.about-content__description-link {
  margin-top: 32px;
  padding: 16px 116px;
  display: inline-block;
}

.slider-about {
  padding: 0 10px 100px 10px;
}
.slider-about__item {
  width: 314px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}
.slider-about__item video {
  width: 100%;
  height: 455px;
  vertical-align: top;
}
.slider-about__item::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(62.09%, rgba(0, 0, 0, 0)), color-stop(88.17%, rgba(0, 0, 0, 0.4)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62.09%, rgba(0, 0, 0, 0.4) 88.17%);
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.slider-about__item-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
}
.slider-about__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.slider-about__item-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--system-white);
}
.slider-about__item-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.slider-about__item-location-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12px;
  flex: 0 0 12px;
  width: 12px;
  height: 16px;
  fill: var(--system-white);
}
.slider-about__item-location-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: var(--system-white);
}
.slider-about__item-fullscreen {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35px;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--system-white);
}

@media (max-width: 2000px) {
  .about::before {
    content: "";
    mask-image: url("../img/clip-mask.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-image: url("../img/clip-mask.svg"); /* для Safari */
  }
}
@media (max-width: 1300px) {
  .about {
    margin-top: -160px;
    padding: 54px 0;
  }
  .about::before {
    content: "";
    mask-image: url("../img/clip-mask-tab.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-image: url("../img/clip-mask-tab.svg"); /* для Safari */
  }
  .about-content__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .about-content__title {
    width: 60%;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
    margin-bottom: 0px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 60%;
    flex: 1 1 60%;
    font-size: 50px;
  }
  .about-content__description {
    width: 60%;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
    margin-top: 0px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
  }
  .about-content__description-text {
    font-size: 16px;
    line-height: 125%;
  }
  .about-content__description-link {
    margin-top: 32px;
    padding: 16px 116px;
    display: inline-block;
  }
}
@media (max-width: 1000px) {
  .about {
    margin-top: -140px;
    padding: 50px 0 30px 0;
  }
  .about::before {
    content: "";
    mask-image: url("../img/clip-mask-mob.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-image: url("../img/clip-mask-mob.svg"); /* для Safari */
  }
  .about-content__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
  .about-content__title {
    width: 100%;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-bottom: 0px;
    font-size: 50px;
  }
  .about-content__description {
    width: 100%;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
    margin-top: 0px;
  }
  .about-content__description-link {
    margin-top: 24px;
    padding: 16px 116px;
    display: block;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .about {
    margin-top: -160px;
    padding: 50px 0 0px 0;
  }
  .about::before {
    content: "";
    mask-image: url("../img/clip-mask-mob.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-image: url("../img/clip-mask-mob.svg"); /* для Safari */
  }
  .about-content__title {
    width: 100%;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-bottom: 0px;
    font-size: 36px;
  }
  .about-content__description-text {
    font-size: 14px;
  }
  .slider-about {
    padding: 40px 10px 100px 10px;
  }
  .slider-about__item {
    width: 248px;
    overflow: hidden;
    position: relative;
    border-radius: 9px;
  }
  .slider-about__item video {
    width: 100%;
    height: 360px;
    vertical-align: top;
  }
  .slider-about__item-wrapper {
    padding: 12px;
    gap: 24px;
  }
  .slider-about__item-content {
    gap: 10px;
  }
  .slider-about__item-title {
    font-weight: 400;
    font-size: 15px;
    line-height: 110%;
    letter-spacing: -0.02em;
  }
  .slider-about__item-location-text {
    font-weight: 400;
    font-size: 11px;
    line-height: 130%;
    letter-spacing: -0.01em;
  }
  .slider-about__item-fullscreen {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 28px;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
}
.advantages {
  padding-bottom: 150px;
}
.advantages__pretitle {
  font-size: 14px;
  line-height: 115%;
  text-transform: uppercase;
  color: #051824;
  opacity: 0.7;
  margin-bottom: 20px;
}
.advantages__title {
  margin-bottom: 32px;
}
.advantages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.advantages__item {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid var(--system-lines);
}

.advantages-item__title {
  max-width: 350px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.advantages-item__title-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--system-900);
}
.advantages-item__description {
  max-width: 560px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: #051824;
}

@media (max-width: 1000px) {
  .advantages {
    padding-bottom: 110px;
  }
  .advantages__title {
    font-size: 50x;
    margin-bottom: 32px;
  }
  .advantages__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px 16px;
  }
  .advantages__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45%;
    flex: 1 1 45%;
    padding-top: 40px;
    max-width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid var(--system-lines);
  }
  .advantages-item__title {
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20%;
    flex: 1 1 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .advantages-item__description {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .advantages {
    padding-bottom: 100px;
  }
  .advantages__title {
    font-size: 36px;
  }
  .advantages__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
  .advantages__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-top: 40px;
    max-width: 100%;
  }
}
.team {
  padding-bottom: 150px;
}
.team__pretitle {
  font-size: 14px;
  line-height: 115%;
  text-transform: uppercase;
  color: #051824;
  opacity: 0.7;
  margin-bottom: 20px;
}
.team__title {
  margin-bottom: 32px;
}
.team__slider {
  overflow: visible;
}
.team .slider__controls {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--ostalnye-100);
}
.team__slide-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.team__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide {
  opacity: 1;
}
.team__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
  opacity: 1;
}
.team__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
  opacity: 1;
}
.team__slide {
  opacity: 0.5;
  max-width: 316px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.team__slide-img {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.team__slide-img img {
  vertical-align: top;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.team__slide-name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: var(--system-900);
}
.team__slide-position {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: #8595a3;
}

@media (max-width: 1300px) {
  .team {
    padding-bottom: 120px;
  }
  .team__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
    opacity: 0.5;
  }
}
@media (max-width: 1000px) {
  .team {
    padding-bottom: 100px;
  }
  .team__title {
    font-size: 50px;
  }
  .team__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .team__title {
    font-size: 36px;
  }
  .team__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
    opacity: 0.5;
  }
}
@media (max-width: 660px) {
  .team__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide {
    opacity: 0.5;
  }
}
.certificates__title {
  margin-bottom: 32px;
}
.certificates__tabs {
  margin-bottom: 100px;
}

.certificate-slider,
.mail-slider {
  overflow: visible;
}
.certificate-slider__slide,
.mail-slider__slide {
  max-width: 316px;
}
.certificate-slider__item,
.mail-slider__item {
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
}
.certificate-slider__item:hover .certificate-slider__item-img::after,
.mail-slider__item:hover .certificate-slider__item-img::after {
  opacity: 1;
}
.certificate-slider__item:hover .certificate-slider__item-img::before,
.mail-slider__item:hover .certificate-slider__item-img::before {
  opacity: 1;
}
.certificate-slider__item-count,
.mail-slider__item-count {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: #000;
}
.certificate-slider__item-img,
.mail-slider__item-img {
  position: relative;
  height: 360px;
  padding: 40px 60px;
  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;
  width: 100%;
  background-color: var(--system-light-gray);
  border-radius: 10px;
  background: var(--system-gray-system);
}
.certificate-slider__item-img::after,
.mail-slider__item-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(5, 24, 36, 0.7);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.certificate-slider__item-img:before,
.mail-slider__item-img:before {
  content: "Открыть";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--system-white);
  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;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 115%;
  letter-spacing: -0.01em;
  color: var(--system-white);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.certificate-slider__item-img img,
.mail-slider__item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.certificate-slider__item-title,
.mail-slider__item-title {
  margin-top: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.6);
}

.certificates-carousel {
  max-width: 100%;
}
.certificates-carousel .fancybox__slide .f-button[data-fancybox-close] {
  width: var(--f-button-width);
  height: var(--f-button-height);
  top: calc(var(--f-button-height) * -1);
  right: 0;
  border: none;
  background-color: transparent;
}

@media (max-width: 1200px) {
  .certificates__tabs {
    margin-bottom: 80px;
  }
}
@media (max-width: 1000px) {
  .certificates__title {
    font-size: 50px;
  }
  .certificates__tabs {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .certificates__title {
    font-size: 36px;
  }
  .certificates__tabs-nav {
    margin-bottom: 32px;
  }
}
.about-hero {
  padding-top: 68px;
  padding-bottom: 120px;
  background: linear-gradient(234.16deg, #76c3e3 -42.65%, #3f87a2 75.04%);
}
.about-hero__wrapper {
  position: relative;
}
.about-hero__wrapper:before {
  content: "";
  background: url("../img/Region.svg") no-repeat;
  background-size: contain;
  width: 834px;
  height: 473px;
  position: absolute;
  right: -50px;
  bottom: 70px;
  pointer-events: none;
}
.about-hero__title {
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--system-white);
  margin: 32px 0 56px;
  font-weight: 400;
}
.about-hero__text {
  max-width: 550px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: var(--system-white);
}
.about-hero .hero__statistic {
  border-top: none;
}

@media (max-width: 1400px) {
  .about-hero__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-hero__wrapper:before {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    position: static;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .about-hero__title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .about-hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    gap: 32px;
  }
  .about-hero__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 400px;
  }
  .about-hero .hero__statistic {
    max-width: 462px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-hero .hero__statistic__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
  }
}
@media (max-width: 1000px) {
  .about-hero__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-hero__wrapper:before {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    position: static;
    width: 700px;
    height: 380px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .about-hero__title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 62px;
  }
  .about-hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    gap: 32px;
  }
  .about-hero__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 400px;
  }
  .about-hero .hero__statistic {
    max-width: 320px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-hero .hero__statistic__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
  }
}
@media (max-width: 769px) {
  .about-hero__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-hero__wrapper:before {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    position: static;
    background-position: center;
    width: 100%;
    height: 200px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 32px;
  }
  .about-hero__title {
    margin-top: 0;
    margin-bottom: 32px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 42px;
  }
  .about-hero__content {
    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-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    gap: 32px;
  }
  .about-hero__text {
    max-width: 100%;
  }
  .about-hero .hero__statistic {
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-hero .hero__statistic__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
  }
}
.laboratory {
  padding-bottom: 150px;
}
.laboratory__title {
  margin-bottom: 32px;
}
.laboratory__slider {
  overflow: visible;
}
.laboratory .slider__controls {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--ostalnye-100);
}
.laboratory__slide-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.laboratory__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide {
  opacity: 1;
}
.laboratory__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
  opacity: 1;
}
.laboratory__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
  opacity: 1;
}
.laboratory__slide {
  opacity: 0.5;
  max-width: 400px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.laboratory__slide-img {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.laboratory__slide-img img {
  vertical-align: top;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.laboratory__slide-name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: var(--system-900);
}
.laboratory__slide-position {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: #8595a3;
}

@media (max-width: 1300px) {
  .laboratory {
    padding-bottom: 120px;
  }
  .laboratory__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
    opacity: 0.5;
  }
}
@media (max-width: 1000px) {
  .laboratory {
    padding-bottom: 100px;
  }
  .laboratory__title {
    font-size: 50px;
  }
  .laboratory__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .laboratory__title {
    font-size: 36px;
  }
  .laboratory__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide {
    opacity: 0.5;
  }
}
@media (max-width: 660px) {
  .laboratory__slide-wrapper .swiper-slide.swiper-slide-active + .swiper-slide {
    opacity: 0.5;
  }
}
.faq {
  padding-top: 100px;
  padding-bottom: 80px;
}
.faq__title {
  margin-bottom: 60px;
}
.faq__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 42px;
}

.faq-content__nav {
  width: 316px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0;
}
.faq-content__nav .tabs__nav-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  background-color: transparent;
  border: none;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  opacity: 0.5;
  color: #051824;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-content__nav .tabs__nav-btn:hover {
  opacity: 1;
}
.faq-content__nav .tabs__nav-btn--active {
  color: #051824;
  opacity: 1;
}
.faq-content__nav .tabs__nav-btn--active:before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15px;
  flex: 0 0 15px;
  border: 1px solid #051824;
  width: 15px;
  height: 0px;
}
.faq-content__nav .tabs__nav-btn-count {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: right;
}
.faq-content__nav-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 115%;
  color: #454a4d;
  opacity: 0.5;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.faq-content__nav-btn {
  margin-top: 24px;
}
.faq-content__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 800px;
}
.faq-content__main-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 115%;
  color: #454a4d;
  opacity: 0.5;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.faq-content__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(5, 24, 36, 0.3);
}
.faq-content__item-user {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}
.faq-content__item-user-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 115%;
  color: rgba(5, 24, 36, 0.9);
  white-space: nowrap;
}
.faq-content__item-user-date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  color: rgba(5, 24, 36, 0.5);
}
.faq-content__item-user-badge {
  display: none;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  border-radius: 12px;
  padding: 10px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  line-height: 115%;
  color: var(--system-900);
  background: var(--system-gray-system);
}
.faq-content__item-qusetion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: var(--system-dark-sea-blue);
  margin-bottom: 16px;
}
.faq-content__item-answer {
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px;
  background: var(--system-gray-system);
  margin: 12px 0;
  padding: 0 24px;
}
.faq-content__item-answer.active {
  padding: 24px;
  height: auto;
}
.faq-content__item-answer-title {
  margin-bottom: 24px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: var(--system-900);
  opacity: 0.9;
}
.faq-content__item-answer-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: #051824;
  opacity: 0.8;
}
.faq-content__item-question-btn {
  width: 100%;
  margin-top: 16px;
}
.faq-content__item-badge {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  border-radius: 12px;
  padding: 10px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  line-height: 115%;
  color: var(--system-900);
  background: var(--system-gray-system);
  white-space: nowrap;
}

.faq-question-form {
  display: none;
  margin-bottom: 80px;
}

@media (max-width: 1200px) {
  .faq {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .faq__title {
    margin-bottom: 40px;
    font-size: 60px;
  }
  .faq__content {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
  }
  .faq-content__nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 0;
  }
  .faq-content__nav .tabs__nav-btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    background: var(--system-gray-system);
    border-radius: 12px;
    padding: 10px 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    opacity: 1;
    color: #051824;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .faq-content__nav .tabs__nav-btn:hover {
    background: #e4ebf0;
  }
  .faq-content__nav .tabs__nav-btn--active {
    background: var(--system-sea-blue);
    color: var(--system-white);
  }
  .faq-content__nav .tabs__nav-btn--active:hover {
    background: var(--system-sea-blue-hover);
  }
  .faq-content__nav .tabs__nav-btn--active:before {
    display: none;
  }
  .faq-content__nav .tabs__nav-btn-count {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: right;
  }
  .faq-content__nav-title {
    display: none;
  }
  .faq-content__nav-btn {
    display: none;
  }
  .faq-content__main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .faq-content__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(5, 24, 36, 0.3);
  }
  .faq-content__item-user {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
  }
  .faq-content__item-user-badge {
    display: block;
  }
  .faq-content__item-badge {
    display: none;
  }
  .faq-question-form {
    margin-bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 768px) {
  .faq {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .faq__title {
    margin-bottom: 40px;
    font-size: 45px;
  }
  .faq-content__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(5, 24, 36, 0.3);
  }
  .faq-content__item-user {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
  }
}
.services {
  padding-top: 100px;
  padding-bottom: 80px;
}
.services__video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
  pointer-events: none;
  z-index: -1;
}
.services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}
.services__title {
  margin-bottom: 60px;
  color: var(--system-white);
}
.services__tabs .tabs__nav {
  margin: 0 auto 40px auto;
  max-width: 1300px;
  gap: 12px;
}
.services__tabs-nav-btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 115%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--system-white);
  background: transparent;
  border-radius: 0;
  border-bottom: 1.5px solid var(--system-white);
  opacity: 0.5;
}
.services__tabs-nav-btn:focus {
  background: transparent;
  opacity: 1;
}
.services__tabs-nav-btn:hover {
  background: transparent;
  opacity: 1;
}
.services__tabs-nav-btn.tabs__nav-btn--active {
  opacity: 1;
}
.services__tabs-nav-btn-count {
  position: relative;
  top: -10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 115%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--system-white);
}

.service-item {
  height: 335px;
  width: 316px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--system-white);
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.service-item:hover {
  background: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.service-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 12px;
  margin-bottom: 20px;
}
.service-item__header-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: var(--system-white);
}
.service-item__header-counter {
  padding-top: 3px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  text-transform: uppercase;
  color: var(--system-white);
  white-space: nowrap;
}
.service-item__header-counter-text {
  opacity: 0.8;
}
.service-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.service-item__content-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  text-transform: uppercase;
  color: var(--system-white);
}
.service-item__content-description-subtitle {
  margin-bottom: 8px;
  opacity: 0.8;
}
.service-item__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 46px;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
}
.service-item__icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1400px) {
  .services {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .services__tabs .tabs__nav {
    margin: 0 0 40px 0;
    padding-left: 60px;
  }
  .services__title {
    font-size: 60px;
    margin-bottom: 40px;
  }
  .service-item {
    height: 250px;
    max-width: 50%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45%;
    flex: 1 1 45%;
  }
  .service-item__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1300px) {
  .services__tabs .tabs__nav {
    margin: 0 0 40px 0;
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .services__tabs .tabs__nav {
    margin: 0 0 40px 0;
    padding-left: 20px;
  }
  .services__title {
    font-size: 50px;
    margin-bottom: 40px;
  }
  .service-item {
    height: 250px;
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.contacts {
  padding-top: 100px;
  padding-bottom: 100px;
}
.contacts__title {
  margin-bottom: 40px;
}
.contacts__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 80px;
}
.contacts__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 45%;
  flex: 1 1 45%;
}
.contacts__map {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  border-radius: 12px;
  overflow: hidden;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.contacts__content-title {
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 25px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: #101010;
}
.contacts__content-item {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--system-lines);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
}
.contacts__content-item:nth-child(2) {
  margin-top: 0px;
}
.contacts__content-item:last-child {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--system-lines);
}
.contacts__content-item-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: -0.01em;
  color: #101010;
  opacity: 0.6;
}
.contacts__content-item-title {
  max-width: 316px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 115%;
  letter-spacing: -0.01em;
  color: #101010;
  text-align: right;
}

.contacts-form {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 45%;
  flex: 1 1 45%;
}
.contacts-form__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 25px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: #101010;
}
.contacts-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
.contacts-form textarea {
  height: 100%;
}

@media (max-width: 1400px) {
  .contacts {
    padding-bottom: 80px;
  }
  .contacts__title {
    margin-bottom: 40px;
    font-size: 60px;
  }
  .contacts__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 80px;
  }
  .contacts__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .contacts__map {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
  }
  .contacts__content-title {
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 125%;
    letter-spacing: -0.01em;
    color: #101010;
  }
  .contacts__content-item {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--system-lines);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
  }
  .contacts__content-item:nth-child(2) {
    margin-top: 0px;
  }
  .contacts__content-item:last-child {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--system-lines);
  }
  .contacts__content-item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: -0.01em;
    color: #101010;
    opacity: 0.6;
  }
  .contacts__content-item-title {
    max-width: 316px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 115%;
    letter-spacing: -0.01em;
    color: #101010;
    text-align: right;
  }
  .contacts-form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .contacts-form__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 125%;
    letter-spacing: -0.01em;
    color: #101010;
  }
  .contacts-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 13px;
  }
  .contacts-form textarea {
    height: 150px;
  }
}
@media (max-width: 1000px) {
  .contacts {
    padding-bottom: 80px;
  }
  .contacts__title {
    margin-bottom: 40px;
    font-size: 50px;
  }
  .contacts__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
  }
  .contacts__content-title {
    font-size: 22px;
  }
  .contacts__content-item {
    padding-top: 30px;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
  }
  .contacts__content-item:last-child {
    padding-bottom: 30px;
  }
  .contacts__content-item-title {
    max-width: 100%;
    font-size: 22px;
    text-align: left;
  }
  .contacts-form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .contacts-form__title {
    font-size: 22px;
  }
  .contacts-form textarea {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .contacts__content-item {
    padding-top: 30px;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
  .contacts-form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .contacts-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.policy {
  padding-top: 100px;
  padding-bottom: 100px;
  line-height: 115%;
}
.policy__title {
  margin-bottom: 40px;
}
.policy__subtitle {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 115%;
  color: var(--system-black);
}
.policy p {
  margin: 10px 0;
}

@media (max-width: 768px) {
  .policy {
    padding-top: 80px;
    padding-bottom: 80px;
    font-size: 14px;
  }
  .policy__title {
    margin-bottom: 30px;
    font-size: 36px;
  }
  .policy__subtitle {
    margin: 20px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--system-black);
  }
}/*# sourceMappingURL=main.css.map */
