html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

.cookie-banner {
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  width: min(560px, calc(100vw - 32px));
  min-height: 86px;
  padding: 16px 28px;
  border-radius: 8px;
  background: #033756;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(44px);
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s linear 0.6s;
  gap: 14px;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.cookie-banner-logo {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.cookie-banner-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.cookie-banner-text {
  margin: 0 0 6px;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.cookie-banner-link {
  color: #6E7191;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  line-height: 1.25;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-link:hover,
.cookie-banner-link:focus-visible {
  color: #8a8daa;
  text-decoration: underline;
}

.cookie-banner-mobile-break {
  display: none;
}

.cookie-banner-actions {
  display: flex;
  flex: 0 0 104px;
  flex-direction: column;
  gap: 7px;
}

.cookie-banner-button {
  box-sizing: border-box;
  min-height: 31px;
  padding: 5px 14px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
}

.cookie-banner-button-accept {
  background: #ffffff;
  color: #647085;
}

.cookie-banner.is-visible [data-cookie-accept] {
  animation: cookieAcceptPulse 2.2s ease-in-out 0.8s infinite;
}

.cookie-banner-button:hover,
.cookie-banner-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
  outline: none;
}

@keyframes cookieAcceptPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: none;
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
  }
}

@media screen and (max-width: 479px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
    min-height: 0;
    padding: 14px;
    align-items: flex-start;
    column-gap: 12px;
    row-gap: 12px;
    flex-wrap: wrap;
    transform: translateY(44px);
  }

  .cookie-banner.is-visible {
    transform: translateY(0);
  }

  .cookie-banner-logo {
    order: 1;
    flex: 0 0 68px;
    flex-shrink: 0;
    align-self: flex-start;
    width: 68px;
    height: 68px;
    max-width: 68px;
    margin-top: 0;
    object-fit: contain;
  }

  .cookie-banner-copy {
    order: 1;
    flex: 1 1 calc(100% - 80px);
    min-width: 0;
  }

  .cookie-banner-text {
    margin-bottom: 2px;
    font-size: 13px;
    line-height: 1.25;
    overflow-wrap: normal;
  }

  .cookie-banner-mobile-break {
    display: block;
  }

  .cookie-banner-link {
    font-size: 11px;
    line-height: 1.15;
  }

  .cookie-banner-actions {
    flex: 1 1 100%;
    width: 100%;
    margin-top: 0;
    flex-direction: column;
    gap: 8px;
    order: 3;
  }

  .cookie-banner-button {
    flex: 1 1 0;
    width: 100%;
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transform: translateX(-50%) translateY(0);
    transition: none;
  }

  .cookie-banner.is-visible {
    transform: translateX(-50%) translateY(0);
  }

  .cookie-banner.is-visible [data-cookie-accept] {
    animation: none;
  }
}

@media screen and (max-width: 479px) and (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-banner.is-visible {
    transform: translateY(0);
  }
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  vertical-align: baseline;
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden], template {
  display: none;
}

a {
  background-color: #0000;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

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

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

@font-face {
  font-family: icons;
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format("truetype");
  font-weight: normal;
  font-style: normal;
}

[class^="w-icon-"], [class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: icons !important;
}

.w-icon-slider-right:before {
  content: "";
}

.w-icon-slider-left:before {
  content: "";
}

.w-icon-nav-menu:before {
  content: "";
}

.w-icon-arrow-down:before, .w-icon-dropdown-toggle:before {
  content: "";
}

.w-icon-file-upload-remove:before {
  content: "";
}

.w-icon-file-upload-icon:before {
  content: "";
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before, .w-clearfix:after {
  content: " ";
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

input.w-button {
  -webkit-appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
  color: #0000 !important;
}

.w-code-block {
  margin: unset;
}

pre.w-code-block code {
  all: inherit;
}

.w-optimization {
  display: contents;
}

.w-webflow-badge, .w-webflow-badge > img {
  -webkit-box-sizing: unset;
          box-sizing: unset;
  width: unset;
  height: unset;
  max-height: unset;
  max-width: unset;
  min-height: unset;
  min-width: unset;
  margin: unset;
  padding: unset;
  float: unset;
  clear: unset;
  border: unset;
  border-radius: unset;
  background: unset;
  background-image: unset;
  background-position: unset;
  background-size: unset;
  background-repeat: unset;
  background-origin: unset;
  background-clip: unset;
  background-attachment: unset;
  background-color: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
  direction: unset;
  font-family: unset;
  font-weight: unset;
  color: unset;
  font-size: unset;
  line-height: unset;
  font-style: unset;
  font-variant: unset;
  text-align: unset;
  letter-spacing: unset;
  -webkit-text-decoration: unset;
  text-decoration: unset;
  text-indent: unset;
  text-transform: unset;
  list-style-type: unset;
  text-shadow: unset;
  vertical-align: unset;
  cursor: unset;
  white-space: unset;
  word-break: unset;
  word-spacing: unset;
  word-wrap: unset;
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
}

.w-webflow-badge {
  white-space: nowrap;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
          box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  color: #aaadb0 !important;
  overflow: unset !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 6px !important;
  font-size: 12px !important;
  line-height: 14px !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: fixed !important;
  inset: auto 12px 12px auto !important;
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.w-webflow-badge > img {
  position: unset;
  visibility: unset !important;
  opacity: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0 0 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.w-embed:before, .w-embed:after {
  content: " ";
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-embed:after {
  clear: both;
}

.w-video {
  width: 100%;
  padding: 0;
  position: relative;
}

.w-video iframe, .w-video object, .w-video embed {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

button, [type="button"], [type="reset"] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: none;
}

.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: none;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.w-input, .w-select {
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}

.w-input::-webkit-input-placeholder, .w-select::-webkit-input-placeholder {
  color: #999;
}

.w-input::-moz-placeholder, .w-select::-moz-placeholder {
  color: #999;
}

.w-input:-ms-input-placeholder, .w-select:-ms-input-placeholder {
  color: #999;
}

.w-input::-ms-input-placeholder, .w-select::-ms-input-placeholder {
  color: #999;
}

.w-input::placeholder, .w-select::placeholder {
  color: #999;
}

.w-input:focus, .w-select:focus {
  border-color: #3898ec;
  outline: 0;
}

.w-input[disabled], .w-select[disabled], .w-input[readonly], .w-select[readonly], fieldset[disabled] .w-input, fieldset[disabled] .w-select {
  cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled), .w-select[disabled]:not(.w-input-disabled), .w-input[readonly], .w-select[readonly], fieldset[disabled]:not(.w-input-disabled) .w-input, fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eee;
}

textarea.w-input, textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: normal;
  display: inline-block;
}

.w-radio {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-radio:before, .w-radio:after {
  content: " ";
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal;
}

.w-file-upload {
  margin-bottom: 10px;
  display: block;
}

.w-file-upload-input {
  opacity: 0;
  z-index: -100;
  width: .1px;
  height: .1px;
  position: absolute;
  overflow: hidden;
}

.w-file-upload-default, .w-file-upload-uploading, .w-file-upload-success {
  color: #333;
  display: inline-block;
}

.w-file-upload-error {
  margin-top: 10px;
  display: block;
}

.w-file-upload-default.w-hidden, .w-file-upload-uploading.w-hidden, .w-file-upload-error.w-hidden, .w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.w-file-upload-file {
  background-color: #fafafa;
  border: 1px solid #ccc;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.w-file-remove-link {
  cursor: pointer;
  width: auto;
  height: auto;
  margin-top: 3px;
  margin-left: 10px;
  padding: 3px;
  display: block;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  color: #ea384c;
  padding: 2px 0;
  display: inline-block;
}

.w-file-upload-info {
  padding: 0 12px;
  line-height: 38px;
  display: inline-block;
}

.w-file-upload-label {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
}

.w-icon-file-upload-icon, .w-icon-file-upload-uploading {
  width: 20px;
  margin-right: 8px;
  display: inline-block;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before, .w-container:after {
  content: " ";
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before, .w-row:after {
  content: " ";
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333%;
}

.w-col-2 {
  width: 16.6667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.3333%;
}

.w-col-5 {
  width: 41.6667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.3333%;
}

.w-col-8 {
  width: 66.6667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.3333%;
}

.w-col-11 {
  width: 91.6667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333%;
  }

  .w-col-medium-2 {
    width: 16.6667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.3333%;
  }

  .w-col-medium-5 {
    width: 41.6667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.3333%;
  }

  .w-col-medium-8 {
    width: 66.6667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.3333%;
  }

  .w-col-medium-11 {
    width: 91.6667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .w-hidden-main, .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row, .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333%;
  }

  .w-col-small-2 {
    width: 16.6667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.3333%;
  }

  .w-col-small-5 {
    width: 41.6667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.3333%;
  }

  .w-col-small-8 {
    width: 66.6667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.3333%;
  }

  .w-col-small-11 {
    width: 91.6667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main, .w-hidden-medium, .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333%;
  }

  .w-col-tiny-2 {
    width: 16.6667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.3333%;
  }

  .w-col-tiny-5 {
    width: 41.6667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.3333%;
  }

  .w-col-tiny-8 {
    width: 66.6667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.3333%;
  }

  .w-col-tiny-11 {
    width: 91.6667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw > button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  vertical-align: top;
  text-align: center;
  background: #fff;
  border: 1px solid #758696;
  border-radius: 3px;
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  text-align: center;
  color: #999;
  font-family: serif;
  font-size: 15px;
  line-height: 12px;
  position: relative;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  display: block;
  position: relative;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before, .w-widget-twitter-count-shim:not(.w--vertical):after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-width: 4px;
  border-color: #75869600 #5d6c7b #75869600 #75869600;
  margin-top: -4px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -10px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-width: 4px;
  border-color: #fff0 #fff #fff0 #fff0;
  margin-top: -4px;
  margin-left: -8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before, .w-widget-twitter-count-shim.w--vertical:after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-width: 5px;
  border-color: #5d6c7b #75869600 #75869600;
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-width: 4px;
  border-color: #fff #fff0 #fff0;
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-background-video {
  color: #fff;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.w-background-video > video {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.w-background-video--control {
  background-color: #0000;
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.w-background-video--control > [hidden] {
  display: none !important;
}

.w-slider {
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  background: #ddd;
  height: 300px;
  position: relative;
}

.w-slider-mask {
  z-index: 1;
  white-space: nowrap;
  height: 100%;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-slide {
  vertical-align: top;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.w-slider-nav {
  z-index: 2;
  text-align: center;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  height: 40px;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  inset: auto 0 0;
}

.w-slider-nav.w-round > div {
  border-radius: 100%;
}

.w-slider-nav.w-num > div {
  font-size: inherit;
  line-height: inherit;
  width: auto;
  height: auto;
  padding: .2em .5em;
}

.w-slider-nav.w-shadow > div {
  -webkit-box-shadow: 0 0 3px #3336;
          box-shadow: 0 0 3px #3336;
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert > div {
  background-color: #2226;
}

.w-slider-nav-invert > div.w-active {
  background-color: #222;
}

.w-slider-dot {
  cursor: pointer;
  background-color: #fff6;
  width: 1em;
  height: 1em;
  margin: 0 3px .5em;
  -webkit-transition: background-color .1s, color .1s;
  -o-transition: background-color .1s, color .1s;
  transition: background-color .1s, color .1s;
  display: inline-block;
  position: relative;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-dot:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px #fff;
          box-shadow: 0 0 0 2px #fff;
}

.w-slider-dot:focus.w-active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.w-slider-arrow-left, .w-slider-arrow-right {
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  width: 80px;
  margin: auto;
  font-size: 40px;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.w-slider-arrow-left [class^="w-icon-"], .w-slider-arrow-right [class^="w-icon-"], .w-slider-arrow-left [class*=" w-icon-"], .w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}

.w-slider-arrow-left:focus, .w-slider-arrow-right:focus {
  outline: 0;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left, .w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  inset: 0;
}

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

.w-slider-force-show {
  display: block !important;
}

.w-dropdown {
  text-align: left;
  z-index: 900;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
}

.w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  width: 1em;
  height: 1em;
  margin: auto 20px auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.w-dropdown-list {
  background: #ddd;
  min-width: 100%;
  display: none;
  position: absolute;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  color: #222;
  padding: 10px 20px;
  display: block;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

.w-lightbox-backdrop {
  cursor: auto;
  letter-spacing: normal;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  color: #fff;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #000000e6;
  outline: 0;
  font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  list-style: disc;
  position: fixed;
  inset: 0;
  -webkit-transform: translate(0);
}

.w-lightbox-backdrop, .w-lightbox-container {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow: auto;
}

.w-lightbox-content {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-view {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.w-lightbox-view:before {
  content: "";
  height: 100vh;
}

.w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame, .w-lightbox-view:before {
  vertical-align: middle;
  display: inline-block;
}

.w-lightbox-figure {
  margin: 0;
  position: relative;
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

.w-lightbox-img {
  width: auto;
  max-width: none;
  height: auto;
}

.w-lightbox-image {
  float: none;
  max-width: 100vw;
  max-height: 100vh;
  display: block;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  text-align: left;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  background: #0006;
  padding: .5em 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-lightbox-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.w-lightbox-control {
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 4em;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: absolute;
  top: 0;
}

.w-lightbox-left {
  background-image: url("../img/");
  display: none;
  bottom: 0;
  left: 0;
}

.w-lightbox-right {
  background-image: url("../img/");
  display: none;
  bottom: 0;
  right: 0;
}

.w-lightbox-close {
  background-image: url("../img/");
  background-size: 18px;
  height: 2.6em;
  right: 0;
}

.w-lightbox-strip {
  white-space: nowrap;
  padding: 0 1vh;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto hidden;
}

.w-lightbox-item {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  cursor: pointer;
  width: 10vh;
  padding: 2vh 1vh;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
}

.w-lightbox-active {
  opacity: .3;
}

.w-lightbox-thumbnail {
  background: #222;
  height: 10vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
  width: 100%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
  height: 100%;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
}

.w-lightbox-spinner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 5px solid #0006;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  -webkit-animation: .8s linear infinite spin;
          animation: .8s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%;
}

.w-lightbox-spinner:after {
  content: "";
  border: 3px solid #0000;
  border-bottom-color: #fff;
  border-radius: 50%;
  position: absolute;
  inset: -4px;
}

.w-lightbox-hide {
  display: none;
}

.w-lightbox-noscroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }

  .w-lightbox-view, .w-lightbox-view:before {
    height: 96vh;
  }

  .w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }

  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }

  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }

  .w-lightbox-left, .w-lightbox-right {
    opacity: .5;
    display: block;
  }

  .w-lightbox-close {
    opacity: .8;
  }

  .w-lightbox-control:hover {
    opacity: 1;
  }
}

.w-lightbox-inactive, .w-lightbox-inactive:hover {
  opacity: 0;
}

.w-richtext:before, .w-richtext:after {
  content: " ";
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-richtext:after {
  clear: both;
}

.w-richtext[contenteditable="true"]:before, .w-richtext[contenteditable="true"]:after {
  white-space: initial;
}

.w-richtext ol, .w-richtext ul {
  overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after, .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after, .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video > div:after, .w-richtext figure[data-rt-type="video"] > div:after {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
}

.w-richtext figure {
  max-width: 60%;
  position: relative;
}

.w-richtext figure > div:before {
  cursor: default !important;
}

.w-richtext figure img {
  width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: .6;
}

.w-richtext figure div {
  color: #0000;
  font-size: 0;
}

.w-richtext figure.w-richtext-figure-type-image, .w-richtext figure[data-rt-type="image"] {
  display: table;
}

.w-richtext figure.w-richtext-figure-type-image > div, .w-richtext figure[data-rt-type="image"] > div {
  display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image > figcaption, .w-richtext figure[data-rt-type="image"] > figcaption {
  caption-side: bottom;
  display: table-caption;
}

.w-richtext figure.w-richtext-figure-type-video, .w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe, .w-richtext figure[data-rt-type="video"] iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.w-richtext figure.w-richtext-figure-type-video > div, .w-richtext figure[data-rt-type="video"] > div {
  width: 100%;
}

.w-richtext figure.w-richtext-align-center {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
  clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
  text-align: center;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-richtext figure.w-richtext-align-fullwidth > div {
  padding-bottom: inherit;
  display: inline-block;
}

.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  clear: none;
  margin-right: 15px;
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  clear: none;
  margin-left: 15px;
}

.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}

.w-nav:before, .w-nav:after {
  content: " ";
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  float: right;
  position: relative;
}

[data-nav-menu-open] {
  text-align: center;
  background: #c8c8c8;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-left"] .w-nav-overlay, .w-nav[data-animation="over-left"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay, .w-nav[data-animation="over-right"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto;
}

.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}

.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse="all"] .w-nav-button, .w--nav-dropdown-open, .w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}

.w-tabs {
  position: relative;
}

.w-tabs:before, .w-tabs:after {
  content: " ";
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-tabs:after {
  clear: both;
}

.w-tab-menu {
  position: relative;
}

.w-tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-tab-link.w--current {
  background-color: #c8c8c8;
}

.w-tab-link:focus {
  outline: 0;
}

.w-tab-content {
  display: block;
  position: relative;
  overflow: hidden;
}

.w-tab-pane {
  display: none;
  position: relative;
}

.w--tab-active {
  display: block;
}

@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}

.w-ix-emptyfix:after {
  content: "";
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.w-dyn-empty {
  background-color: #ddd;
  padding: 10px;
}

.w-dyn-hide, .w-dyn-bind-empty, .w-condition-invisible {
  display: none !important;
}

.wf-layout-layout {
  display: -ms-grid;
  display: grid;
}

.w-code-component > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

:root {
  --black: #333;
  --blue: #1871b5;
  --blue-white: #1490c9;
  --white: white;
  --red: #eb3020;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  -ms-grid-rows: auto 16px auto;
  grid-template-rows: auto auto;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: -ms-grid;
  display: grid;
}

.w-layout-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.w-layout-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.w-layout-grid > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.w-layout-grid > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

body {
  color: #333;
  background-color: #fff;
  height: 100%;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

h1 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  color: #000;
  margin-bottom: 5px;
}

a {
  display: block;
}

img {
  max-width: 100%;
  display: inline-block;
}

.body {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.center {
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.grid-hero {
  z-index: 1;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.grid-hero > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid-hero > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.bluewh-h1 {
  color: #1490c900;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--blue);
}

.red-logo {
  color: #eb3020;
}

.h1 {
  color: #222;
  width: 590px;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Oswald, sans-serif;
  font-size: 75px;
  font-weight: 700;
  line-height: 100%;
}

.blue-h1 {
  color: var(--blue-white);
}

.logo {
  -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;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.img-bg-line-hero-left {
  position: absolute;
  top: -78px;
  left: -78px;
}

.container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.container.hero {
  min-height: 500px;
  padding-top: 50px;
}

.container.priem {
  padding-bottom: 0;
}

.container.comm {
  z-index: 10;
  width: 100%;
  height: 100%;
  min-height: 500px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.container.comanda {
  padding-top: 50px;
  padding-bottom: 0;
  padding-left: 0;
}

.container.footer {
  padding-top: 0;
  padding-bottom: 0;
}

.bolt {
  color: var(--blue);
  font-weight: 700;
}

.subtitle {
  color: #3d3d3d;
  width: 370px;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 400;
  line-height: 102%;
}

.btn-hero {
  background-color: #333;
  border-radius: 5px;
  padding: 12px 64px 13px;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
}

.btn-hero:hover {
  background-color: #eb3020;
  -webkit-transform: translate(0, -5px);
      -ms-transform: translate(0, -5px);
          transform: translate(0, -5px);
  -webkit-box-shadow: 0 8px 6px #0003;
          box-shadow: 0 8px 6px #0003;
}

.item-menu {
  color: var(--blue-white);
  background-color: #1490c900;
  border-radius: 6px;
  -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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 112px;
  height: 34px;
  margin-right: 7px;
  padding-bottom: 0;
  font-family: Moscowmetro, sans-serif;
  line-height: 0;
  text-decoration: none;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.item-menu:hover {
  background-color: #1871b5;
  color: #fff;
  -webkit-transform: translate(0, -3px);
      -ms-transform: translate(0, -3px);
          transform: translate(0, -3px);
}

.img-bg-hero {
  z-index: 1;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  max-width: 140%;
  position: absolute;
}

.img-bg-slider {
  z-index: 1;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  max-width: none;
  position: absolute;
  bottom: auto;
  left: 0;
  right: auto;
  -webkit-transform: rotate(-42deg);
      -ms-transform: rotate(-42deg);
          transform: rotate(-42deg);
}

.text-logo {
  color: #1490c9;
  margin-left: 15px;
  font-family: Moscowmetro, sans-serif;
  font-size: 22px;
}

.all {
  z-index: 100;
  overflow: hidden;
}

.img-phone {
  z-index: 4;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.img-bg-abstract {
  position: absolute;
  inset: auto auto -7% 0;
  -webkit-transform: rotate(134deg);
      -ms-transform: rotate(134deg);
          transform: rotate(134deg);
}

.bg-menu-item {
  -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;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ride {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.ride.slider-nav {
  height: 500px;
  padding-top: 90px;
}

.img-bg-abstract-2 {
  position: absolute;
  inset: -10px auto 0% 60%;
}

.red-h1 {
  color: var(--red);
}

.description-dropdown {
  color: #474747;
  text-align: justify;
  margin: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.img-item-menu {
  position: absolute;
  inset: auto;
}

.img-item-menu:hover {
  color: #fff;
}

.video-hero {
  border-radius: 20px;
  -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-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: auto;
  max-width: 95%;
  height: auto;
  max-height: 100%;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.container-menu {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 50px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.grid-onas {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 50px minmax(350px, 1.5fr);
  grid-template-columns: 1fr minmax(350px, 1.5fr);
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
}

.grid-onas > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid-onas > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.btn-navbar {
  color: #fff;
  background-color: #1871b5;
  border-radius: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 33px;
  padding: 13px 20px;
  font-family: Moscowmetro, sans-serif;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-navbar:hover {
  /* background-color: var(--blue-white); */
  color: #fff;
  -webkit-transform: translate(0, -3px);
      -ms-transform: translate(0, -3px);
          transform: translate(0, -3px);
}

.left {
  z-index: 2;
  -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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.side-ride-hero {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.img-bg-line-hero {
  position: absolute;
  inset: 175px -63px 0% auto;
}

.bg-img-hero {
  z-index: 5;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  border-radius: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 190px;
  height: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-shadow: 0 50px 20px -20px #0003, -2px 9px 20px 5px #0c0c0c33;
          box-shadow: 0 50px 20px -20px #0003, -2px 9px 20px 5px #0c0c0c33;
}

.section {
  z-index: 2;
  background-color: #fff;
  position: relative;
}

.section.anim {
  z-index: 1;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: auto;
  min-height: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section.team {
  z-index: 20;
  position: relative;
}

.section.footer {
  background-color: var(--blue);
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.zayvka {
  -webkit-filter: blur(15px);
          filter: blur(15px);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffffa6), to(#ffffffa6)), url("../img/46.png");
  background-image: -o-linear-gradient(#ffffffa6, #ffffffa6), url("img/46.png");
  /* background-image: linear-gradient(#ffffffa6, #ffffffa6), url("img/46.png"); */
  background-position: 0 0, 50%;
  background-size: auto, cover;
  position: absolute;
  inset: 0%;
  z-index: 99999;
}

.pr {
  z-index: 98;
  background-color: #fff;
  padding-bottom: 0;
  padding-right: 0;
  position: fixed;
  inset: 0%;
}

.title-dropdown {
  color: #fff;
  white-space: pre-wrap;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Moscowmetro, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  position: relative;
}

.slider-priem {
  background-color: #0000;
  -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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 580px;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.mask-slider {
  width: 38%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  overflow: visible;
}

.slide {
  z-index: 1;
  width: 220px;
  height: auto;
  margin-left: -18px;
  padding-top: 90px;
}

.bg-slider {
  z-index: 0;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.img-slider {
  width: 240px;
  max-width: none;
  position: relative;
}

.nav {
  display: none;
}

.bgdropdown {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.bgdropdown.active {
  margin-top: 1px;
}

.bg-slider-not {
  z-index: -1;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: auto;
  height: auto;
  position: absolute;
  inset: auto auto 0 -200px;
  -webkit-transform: scale(.8);
      -ms-transform: scale(.8);
          transform: scale(.8);
}

.bg-slider-not.out {
  left: auto;
  right: -225px;
}

.img-logo-icon {
  z-index: 10;
  position: absolute;
  inset: 3px auto auto -127px;
}

.img-logo-icon.dinamo {
  inset: 57px -121px auto auto;
}

.img-logo-icon.cska {
  inset: auto -71% 10% auto;
}

.img-logo-icon.crystal {
  inset: auto -78px 0 auto;
  -webkit-transform: rotate(9deg);
      -ms-transform: rotate(9deg);
          transform: rotate(9deg);
}

.img-logo-icon.scka {
  inset: auto auto 51px -84px;
  -webkit-transform: rotate(-12deg);
      -ms-transform: rotate(-12deg);
          transform: rotate(-12deg);
}

.dropdown_component {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: auto;
  margin-bottom: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-wrapper {
  z-index: 3;
  background-color: var(--blue);
  cursor: pointer;
  border-radius: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 20px 42px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.header-2click {
  z-index: 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  inset: 0%;
}

.description-wrapper {
  z-index: 0;
  -webkit-box-shadow: inset 0 0 0 2px var(--blue);
          box-shadow: inset 0 0 0 2px var(--blue);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 100%;
  height: auto;
  padding-top: 20px;
  position: relative;
  top: -20px;
  overflow: hidden;
}

.img-icon-3d {
  z-index: 5;
  display: none;
  position: absolute;
}

.img-icon-3d.gamepad {
  max-width: 60%;
  display: none;
  inset: auto -1% -5% auto;
}

.img-icon-3d.world {
  max-width: 60%;
  display: none;
  inset: -9% auto auto -15%;
}

.img-icon-3d.coin {
  z-index: 5;
  max-width: 50%;
  display: none;
  inset: auto -6% -1% auto;
}

.img-icon-3d.cup {
  max-width: 80%;
  display: none;
  inset: -15% auto auto -23%;
}

.img-icon-3d.svistok {
  max-width: 50%;
  display: none;
  inset: -4% auto auto -9%;
}

.img-icon-3d.gromlko {
  z-index: 5;
  max-width: 48%;
  display: none;
  inset: auto -2% 2% auto;
}

.img-icon-3d.rocket {
  max-width: 80%;
  display: none;
  inset: -10% auto auto -24%;
}

.img-icon-3d.celi {
  z-index: 5;
  max-width: 50%;
  display: none;
  inset: auto -10% 0% auto;
}

.tabs-priem {
  width: 100%;
}

.tabs-menu {
  -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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tab {
  border: 2px solid var(--blue);
  color: var(--blue);
  background-color: #fff;
  border-radius: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 310px;
  height: 60px;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 6px 20px #0003;
          box-shadow: 0 6px 20px #0003;
}

.tab:hover {
  -webkit-box-shadow: 0 6px 20px #1871b599;
          box-shadow: 0 6px 20px #1871b599;
}

.tab.w--current {
  background-color: var(--blue);
  color: #fff;
  width: 330px;
}

.tab.centr {
  z-index: 2;
  margin-left: -50px;
  margin-right: -50px;
}

.tab.centr:hover {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.tabss {
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 40px;
  overflow: visible;
}

.name-tab-priem {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: Moscowmetro, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.icon-drop {
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 10px;
}

.grid-priem {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 0px 1fr 0px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  place-content: center;
  place-items: center stretch;
  width: 100%;
}

.grid-priem > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid-priem > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.grid-priem > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.bg-priem {
  border-radius: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 300px;
  height: 400px;
  margin-left: auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-shadow: -10px 14px 20px 2px #0003;
          box-shadow: -10px 14px 20px 2px #0003;
}

.bg-priem._2 {
  margin-left: auto;
  margin-right: auto;
}

.bg-priem._1 {
  margin-left: 0;
  margin-right: auto;
}

.title-priem {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 auto;
          flex: 0 auto;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.animation-bg {
  z-index: -1;
  opacity: .65;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -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-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: absolute;
  left: -21%;
  right: -21%;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.bg-anim-volna {
  z-index: 20;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -1% -100% auto;
  -webkit-transform: rotateX(0)rotateY(-180deg)rotateZ(0);
          transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.bg-anim-volna._2 {
  z-index: 20;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  inset: auto -100% -1%;
  -webkit-transform: rotateX(-180deg)rotateY(0)rotateZ(0);
          transform: rotateX(-180deg)rotateY(0)rotateZ(0);
}

.description-priem {
  color: #515151;
  text-align: center;
  border-top: 2px solid #e2e2e2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: auto;
  padding-top: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
}

.bg-comm-title-section {
  z-index: 10;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 300px;
  height: 300px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-shadow: 9px 8px 20px 8px #0003;
          box-shadow: 9px 8px 20px 8px #0003;
}

.grid-comm {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: .25fr 50px minmax(625px, 1fr);
  grid-template-columns: .25fr minmax(625px, 1fr);
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  width: 100%;
}

.grid-comm > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid-comm > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.container-tab {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-priem {
  z-index: 10;
  background-color: #333;
  border-radius: 5px;
  margin-top: 50px;
  padding: 12px 60px 13px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  position: relative;
}

.btn-priem:hover {
  background-color: #eb3020;
  -webkit-transform: translate(0, -5px);
      -ms-transform: translate(0, -5px);
          transform: translate(0, -5px);
  -webkit-box-shadow: 0 8px 6px #0003;
          box-shadow: 0 8px 6px #0003;
}

.number-priem {
  color: #3336;
  font-family: Moscowmetro, sans-serif;
  font-size: 75px;
  font-weight: 400;
  line-height: 100%;
  position: absolute;
  inset: -8% auto auto 1%;
}

.title-section-comm {
  z-index: 2;
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  height: 60px;
  margin-bottom: 20px;
  padding: 12px 60px;
  font-family: Moscowmetro, sans-serif;
  font-size: 30px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.otz-ava {
  border-radius: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-shadow: 0 11px 20px -10px #0973c457;
          box-shadow: 0 11px 20px -10px #0973c457;
}

.otz-ava.color {
  -webkit-box-shadow: 0 11px 20px -10px var(--black);
          box-shadow: 0 11px 20px -10px var(--black);
  color: #fff;
  background-color: #0973c4;
  width: 70px;
  height: 70px;
  -webkit-box-shadow: 0 11px 20px -10px #333;
          box-shadow: 0 11px 20px -10px #333;
}

.left-arrow-slider {
  background-color: var(--blue);
  color: var(--black);
  border-radius: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  inset: 0% auto 0% -45px;
}

.left-arrow-slider:hover {
  background-color: #0f3d60;
  -webkit-transform: translate(0, -2px);
      -ms-transform: translate(0, -2px);
          transform: translate(0, -2px);
}

.left-arrow-slider.mobile {
  display: none;
}

.description-comm {
  z-index: 0;
  color: #000;
  text-align: justify;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 120%;
}

.logo-footer {
  -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;
  /* margin-left: auto;
  margin-right: auto; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo-footer.w--current {
  margin-left: 0;
}

.mask-team {
  width: 57.5%;
  height: 140%;
  overflow: visible;
}

.nav-slider {
  display: none;
}

.img-3d-icon-priem {
  width: 120px;
}

.text-adress {
  color: #333;
  margin-top: 10px;
  line-height: 150%;
  text-decoration: none;
  -webkit-transition: all .444s;
  -o-transition: all .444s;
  transition: all .444s;
  display: inline-block;
}

.fon-for-items {
  color: var(--white);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fon-for-items._55 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 20px;
}

.fon-for-items._55-copy {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 20px;
  padding-right: 20px;
}

.fon-for-items.left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.link-social {
  border-radius: 5px;
  width: 50px;
  height: 50px;
  margin-top: 10px;
  -webkit-transition: all .444s;
  -o-transition: all .444s;
  transition: all .444s;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 30px -7px #329dff;
          box-shadow: 0 8px 30px -7px #329dff;
}

.link-social:hover {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 4px #ffffff40;
          box-shadow: 0 0 0 4px #ffffff40;
}

.link-social:active {
  -webkit-box-shadow: 0 0 0 18px #fff0;
          box-shadow: 0 0 0 18px #fff0;
}

.bg-social-link {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 100%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.phone-numbaer-link {
  color: #333;
  text-align: center;
  letter-spacing: 1.02px;
  -webkit-box-flex: 0;
      -ms-flex: 0 auto;
          flex: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 252px;
  min-width: 252px;
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 27px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
}

.phone-numbaer-link:hover {
  color: var(--blue);
}

.grid-footer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--white);
  border-radius: 30px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1.75fr 20px 1fr 20px 1.75fr 20px minmax(252px, 1fr);
  grid-template-columns: 1.75fr 1fr 1.75fr minmax(252px, 1fr);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.grid-footer > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid-footer > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.grid-footer > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.grid-footer > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.btn-footer {
  background-color: #333;
  border-radius: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 21px 13px;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-footer:hover {
  background-color: #eb3020;
  -webkit-transform: translate(0, -5px);
      -ms-transform: translate(0, -5px);
          transform: translate(0, -5px);
  -webkit-box-shadow: 0 8px 6px #0003;
          box-shadow: 0 8px 6px #0003;
}

.item-menu-fotter {
  z-index: 1;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 0 1px var(--blue);
          box-shadow: 0 0 0 1px var(--blue);
  color: var(--blue);
  text-align: center;
  border-radius: 5px;
  -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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px;
  padding: 7px 7px 8px;
  font-weight: 500;
  line-height: 0;
  text-decoration: none;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.item-menu-fotter:hover {
  background-color: var(--blue);
  color: var(--white);
}

.text-meny-footer {
  z-index: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.text-mail {
  color: #333;
  margin-top: 5px;
  line-height: 150%;
  text-decoration: none;
  -webkit-transition: all .444s;
  -o-transition: all .444s;
  transition: all .444s;
  display: inline-block;
}

.link-mail {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.link-play-market {
  border-radius: 5px;
  width: 50px;
  height: 50px;
  margin-top: 10px;
  -webkit-transition: all .444s;
  -o-transition: all .444s;
  transition: all .444s;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 30px -7px #33333357;
          box-shadow: 0 8px 30px -7px #33333357;
}

.link-play-market:hover {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 4px #ffffff40;
          box-shadow: 0 0 0 4px #ffffff40;
}

.link-play-market:active {
  -webkit-box-shadow: 0 0 0 18px #fff0;
          box-shadow: 0 0 0 18px #fff0;
}

.text-play-market {
  color: #333;
  margin-top: 0;
  margin-left: 10px;
  line-height: 100%;
  text-decoration: none;
  -webkit-transition: all .444s;
  -o-transition: all .444s;
  transition: all .444s;
  display: inline-block;
}

.bg-play-market {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.link-app-store {
  -webkit-box-shadow: 0 8px 30px -7px var(--blue);
          box-shadow: 0 8px 30px -7px var(--blue);
  border-radius: 5px;
  width: 50px;
  height: 50px;
  margin-top: 10px;
  -webkit-transition: all .444s;
  -o-transition: all .444s;
  transition: all .444s;
  overflow: hidden;
}

.link-app-store:hover {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 4px #ffffff40;
          box-shadow: 0 0 0 4px #ffffff40;
}

.link-app-store:active {
  -webkit-box-shadow: 0 0 0 18px #fff0;
          box-shadow: 0 0 0 18px #fff0;
}

.text-prava {
  color: var(--black);
  margin-top: 10px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  -webkit-transition: all .444s;
  -o-transition: all .444s;
  transition: all .444s;
  display: inline-block;
}

.link-privat {
  color: #333;
  width: 240px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
  -webkit-transition: all .444s;
  -o-transition: all .444s;
  transition: all .444s;
  display: inline-block;
}

.link-privat:hover {
  color: #ff053b;
}

.text-footer-small {
  color: var(--blue);
  margin-top: 0;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
  -webkit-transition: all .444s;
  -o-transition: all .444s;
  transition: all .444s;
  display: inline-block;
}

.title-section-team {
  z-index: 2;
  color: #fff;
  text-align: center;
  background-color: #1871b5;
  border-radius: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  height: 60px;
  margin-bottom: 20px;
  padding: 12px 60px;
  font-family: Moscowmetro, sans-serif;
  font-size: 30px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-team {
  z-index: 1;
  background-color: #333;
  border-radius: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.btn-team:hover {
  background-color: #eb3020;
  -webkit-transform: translate(0, -5px);
      -ms-transform: translate(0, -5px);
          transform: translate(0, -5px);
  -webkit-box-shadow: 0 8px 6px #0003;
          box-shadow: 0 8px 6px #0003;
}

.grid-team-container {
  grid-column-gap: 54px;
  grid-row-gap: 54px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: minmax(650px, 1fr) 54px .25fr;
  grid-template-columns: minmax(650px, 1fr) .25fr;
  grid-auto-flow: row;
  place-content: space-between space-around;
  place-items: stretch stretch;
}

.grid-team-container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid-team-container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.bg-title-section-team {
  z-index: 10;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 300px;
  height: 400px;
  margin-top: 10px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-shadow: 0 12px 20px 8px #0003;
          box-shadow: 0 12px 20px 8px #0003;
}

.subtitle-section-teams {
  color: #515151;
  text-align: center;
  border-top: 2px solid #e2e2e2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  padding-top: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
}

.text-footer-blue {
  color: var(--blue);
  margin-top: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
  -webkit-transition: all .444s;
  -o-transition: all .444s;
  transition: all .444s;
  display: inline-block;
}

.img-team {
  position: absolute;
  inset: auto auto 0% -6px;
}

.subtitle-team {
  color: #333;
  text-align: right;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 130%;
}

.fon-team {
  background-color: #fff;
  border-radius: 30px;
  -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;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 300px;
  min-width: 300px;
  height: 400px;
  margin-top: 10px;
  padding: 20px;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-shadow: 1px 17px 20px 2px #0003;
          box-shadow: 1px 17px 20px 2px #0003;
}

.bg-title-team {
  border-bottom: 2px solid #1871b5;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.title-team {
  color: #1871b5;
  text-align: right;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
}

.stepdiv {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.box-slider {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider-team {
  background-color: #0000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
}

.description-team {
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 100%;
  word-wrap: break-word;
  hyphens: auto;
}

.right-slider-arrow {
  background-color: var(--blue);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--black);
  border-radius: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  inset: 0% -45px 0% auto;
}

.right-slider-arrow:hover {
  background-color: #0f3d60;
  -webkit-transform: translate(0, -2px);
      -ms-transform: translate(0, -2px);
          transform: translate(0, -2px);
}

.right-slider-arrow.mobile {
  display: none;
}

.title-comm {
  color: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fon-comm {
  z-index: 2;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 30px;
  width: auto;
  height: 300px;
  min-height: 300px;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 13px 12px 9px 1px #0003;
          box-shadow: 13px 12px 9px 1px #0003;
}

.subtitle-comm {
  color: #fff;
  text-align: left;
  border-top: 1px solid #dfdfdf;
  width: 90%;
  margin-top: 10px;
  padding-top: 5px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid-title-comm {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #1871b5;
  border-radius: 30px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: .25fr 20px 2fr;
  grid-template-columns: .25fr 2fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 120px;
  padding: 20px;
}

.grid-title-comm > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid-title-comm > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.slide-comm {
  margin-right: 50%;
}

.bg-slider-comm {
  z-index: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-35 {
  margin-left: 10%;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.icon-slider-left {
  margin-right: 10%;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.bg-slider-team {
  z-index: 0;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 80px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
  overflow: hidden;
}

.box-slider-out {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  background-color: #ffffff42;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mask-slider-comm {
  width: 100%;
  height: 140%;
  overflow: visible;
}

.slider-comm {
  background-color: #0000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
}

.img-ava-comm {
  border-radius: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-shadow: 0 11px 20px -10px #0973c457;
          box-shadow: 0 11px 20px -10px #0973c457;
}

.description-section-comm {
  color: #515151;
  text-align: center;
  border-top: 2px solid #e2e2e2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: auto;
  padding-top: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
}

.slide-nav {
  display: none;
}

.fon-footer {
  background-color: #fff;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  position: relative;
  -webkit-box-shadow: 0 7px 18px 6px #0003;
          box-shadow: 0 7px 18px 6px #0003;
}

.open-forma {
  z-index: 99;
  border: 2px solid var(--blue);
  background-color: var(--white);
  border-radius: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  inset: auto;
}

.bg-forma-up {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 480px;
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}

.bg-blur-forma {
  z-index: 90;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background-color: #ffffff6e;
  position: fixed;
  inset: 0%;
}

.subtitle-form-up {
  font-size: 18px;
  font-weight: 500;
}

.pole-name {
  border: 1px solid var(--blue);
  border-radius: 5px;
}

.subtitle-form-comm {
  font-size: 18px;
  font-weight: 500;
}

.forma-centr {
  z-index: 100;
  background-color: #0000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.close-form {
  z-index: 99;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  inset: 1% 1% auto auto;
}

/* Комментарии (textarea) — корректные переносы и рост по содержимому */
.pole-comm{
  border: 1px solid var(--blue);
  border-radius: 5px;

  /* вместо фиксированной высоты делаем минимальную */
  min-height: 112px;

  /* обычные отступы, без огромного padding-bottom */
  padding: 8px 12px;

  /* текст переносится и сохраняет переводы строк */
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;

  /* пусть можно тянуть уголком */
  resize: vertical;

  line-height: 1.45;
  display: block;
  /* на всякий случай: */
  overflow-y: auto;
}

.forma-up {
  z-index: 99;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.pole-familia {
  border: 1px solid var(--blue);
  border-radius: 5px;
}

.title-form {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 22px;
  margin-bottom: 40px;
  font-size: 48px;
  line-height: 100%;
}

.btn-form {
  background-color: #333;
  border-radius: 5px;
  padding: 12px 64px 13px;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
}

.btn-form:hover {
  background-color: #eb3020;
  -webkit-transform: translate(0, -5px);
      -ms-transform: translate(0, -5px);
          transform: translate(0, -5px);
  -webkit-box-shadow: 0 8px 6px #0003;
          box-shadow: 0 8px 6px #0003;
}

.form-main-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  -webkit-transition: opacity .36s ease, visibility .36s ease, -webkit-transform .42s ease;
  transition: opacity .36s ease, visibility .36s ease, -webkit-transform .42s ease;
  -o-transition: transform .42s ease, opacity .36s ease, visibility .36s ease;
  transition: transform .42s ease, opacity .36s ease, visibility .36s ease;
  transition: transform .42s ease, opacity .36s ease, visibility .36s ease, -webkit-transform .42s ease;
}

.bg-forma-up.is-doc-open .form-main-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-42px);
      -ms-transform: translateY(-42px);
          transform: translateY(-42px);
}

.bg-forma-up.is-doc-closing .form-main-content {
  -webkit-transition-duration: .16s;
       -o-transition-duration: .16s;
          transition-duration: .16s;
}

.form-doc-view {
  opacity: 0;
  pointer-events: none;
  background-color: var(--white);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  inset: 78px 20px 24px;
  z-index: 2;
  -webkit-transform: translateY(48px);
      -ms-transform: translateY(48px);
          transform: translateY(48px);
  -webkit-transition: opacity .18s ease, -webkit-transform .18s ease;
  transition: opacity .18s ease, -webkit-transform .18s ease;
  -o-transition: transform .18s ease, opacity .18s ease;
  transition: transform .18s ease, opacity .18s ease;
  transition: transform .18s ease, opacity .18s ease, -webkit-transform .18s ease;
}

.bg-forma-up.is-doc-open .form-doc-view {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-duration: .38s;
       -o-transition-duration: .38s;
          transition-duration: .38s;
}

.bg-forma-up.is-doc-closing .form-doc-view {
  -webkit-transition-duration: .16s;
       -o-transition-duration: .16s;
          transition-duration: .16s;
}

.form-doc-panel {
  min-height: 0;
  height: 100%;
}

.form-doc-panel.is-active {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-doc-title {
  color: var(--blue);
  margin-top: 0;
  margin-bottom: 18px;
  padding-right: 48px;
  font-size: 26px;
  line-height: 1.1;
}

.form-doc-scroll {
  min-height: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding-right: 10px;
}

.form-doc-copy {
  color: #2d3a45;
  white-space: pre-line;
  font-size: 14px;
  line-height: 1.45;
}

.form-doc-back {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 18px;
}

.privacy-consent {
  margin-top: 16px;
}

.privacy-consent-label {
  grid-column-gap: 12px;
  grid-row-gap: 8px;
  color: #2d3a45;
  cursor: pointer;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 12px 1fr;
  grid-template-columns: 20px minmax(0, 1fr);
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.privacy-consent-input {
  margin: 0;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
}

.privacy-consent-box {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  background-color: #d9ecfb;
  border: 1px solid var(--blue);
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  position: relative;
  -webkit-transition: background-color .2s ease, border-color .2s ease;
  -o-transition: background-color .2s ease, border-color .2s ease;
  transition: background-color .2s ease, border-color .2s ease;
}

.privacy-consent-input:checked + .privacy-consent-box {
  background-color: var(--blue);
  border-color: var(--blue);
}

.privacy-consent-input:checked + .privacy-consent-box::after {
  content: "";
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  width: 5px;
  height: 10px;
  position: absolute;
  left: 7px;
  top: 2px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.privacy-consent-input:focus-visible + .privacy-consent-box {
  outline: 2px solid #6fb5ea;
  outline-offset: 2px;
}

.privacy-consent-text {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2px;
  min-width: 0;
  margin: 0;
}

.privacy-consent-line {
  display: block;
}

.privacy-consent-link {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
  white-space: normal;
  display: inline;
}

.privacy-consent-link:hover {
  color: #0f5c95;
}

.privacy-consent-link:focus-visible {
  outline: none;
  color: #0f5c95;
}

.pole-mail, .pole-nomer-tel {
  border: 1px solid var(--blue);
  border-radius: 5px;
}

.bg-pole-name {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bg-img-form {
  -webkit-box-shadow: 0 1px 0 0 var(--blue), 6px 0 10px 0 #0003;
          box-shadow: 0 1px 0 0 var(--blue), 6px 0 10px 0 #0003;
  background-color: #1871b5;
  border-radius: 15px 20px 20px 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 480px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.text-logo-form {
  color: var(--white);
  text-align: center;
  margin-top: 40px;
  margin-left: 15px;
  font-family: Moscowmetro, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 100%;
}

.img-form {
  background-color: var(--white);
  border-radius: 50%;
  width: 340px;
  height: 340px;
  padding: 60px;
  -webkit-box-shadow: 0 9px 14px #0003;
          box-shadow: 0 9px 14px #0003;
}

.pole-klub, .pole-doljnost, .pole-lub-club {
  border: 1px solid var(--blue);
  border-radius: 5px;
}

.bg-pole-dly-obshestv, .bg-dly-bolelshikov {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.line-10 {
  background-color: var(--blue);
  width: 100%;
  height: 2px;
  margin-top: 13px;
  margin-bottom: 20px;
}

.text-span {
  color: var(--blue-white);
}

.btn-close {
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  inset: 0%;
}

.btn-close:hover {
  -webkit-box-shadow: 0 0 0 12px #ffffff87;
          box-shadow: 0 0 0 12px #ffffff87;
}

.btn-close:active {
  -webkit-box-shadow: 0 0 0 30px #fff0;
          box-shadow: 0 0 0 30px #fff0;
}

.ok-text {
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
}

.line-o2-2 {
  background-color: #55bf6a;
  border-radius: 5px;
  width: 60px;
  height: 10px;
  position: absolute;
  top: 16px;
  left: 16px;
  -webkit-transform: translate(-19px, 19px)rotate(-45deg);
      -ms-transform: translate(-19px, 19px)rotate(-45deg);
          transform: translate(-19px, 19px)rotate(-45deg);
}

.text-social {
  color: #333;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.yes-copy-2 {
  z-index: 92;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  background-color: #f7f7f7;
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.yes-copy-2:hover {
  -webkit-transform: translate(5px, -5px);
      -ms-transform: translate(5px, -5px);
          transform: translate(5px, -5px);
  -webkit-box-shadow: 0 0 0 -4px #2ca8db1a, -11px 17px 50px 2px #1b96c982;
          box-shadow: 0 0 0 -4px #2ca8db1a, -11px 17px 50px 2px #1b96c982;
}

.yes-copy-2:active {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-box-shadow: 0 0 0 20px #2ca8db1a, -11px 17px 50px 2px #1b96c982;
          box-shadow: 0 0 0 20px #2ca8db1a, -11px 17px 50px 2px #1b96c982;
}

.tittle-zayvka {
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 34px;
}

.link-glavnay {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: inline;
  -webkit-box-shadow: 0 1px #2ca8db80;
          box-shadow: 0 1px #2ca8db80;
}

.link-glavnay:hover {
  color: #333;
  -webkit-box-shadow: 6px 9px 0 -9px #2ca8db80;
          box-shadow: 6px 9px 0 -9px #2ca8db80;
}

.line-11 {
  background-color: #55bf6a;
  border-radius: 5px 0 0 5px;
  width: 20px;
  height: 10px;
  position: absolute;
  top: 27px;
  left: 11px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bg-ok-form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bg-zyvka-ok {
  border: 2px solid var(--blue);
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 530px;
  padding: 30px 20px 35px;
  position: relative;
  -webkit-box-shadow: 0 13px 16px #0003;
          box-shadow: 0 13px 16px #0003;
  z-index: 999999;
}

.bg-social-link-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 100%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.success-modal {
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  inset: 0%;
  -webkit-transition: opacity .24s ease;
  -o-transition: opacity .24s ease;
  transition: opacity .24s ease;
}

.success-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.success-modal-card {
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  min-height: 450px;
  max-width: 530px;
  overflow: visible;
  padding-top: 32px;
  padding-bottom: 24px;
  position: relative;
  -webkit-transform: translateY(18px);
      -ms-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: -webkit-transform .24s ease;
  transition: -webkit-transform .24s ease;
  -o-transition: transform .24s ease;
  transition: transform .24s ease;
  transition: transform .24s ease, -webkit-transform .24s ease;
}

.success-modal.is-open .success-modal-card {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.success-modal-backdrop {
  z-index: 0;
  cursor: default;
  border: 0;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background-color: #ffffff6e;
  padding: 0;
  position: absolute;
  inset: 0%;
}

.success-modal .yes-copy-2 {
  cursor: default;
  position: relative;
  inset: auto;
  margin: -4px auto 18px;
}

.success-modal .center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media screen and (max-height: 560px) {
  .success-modal-card {
    min-height: auto;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }
}

@media screen and (max-width: 767px) {
  .success-modal {
    padding: 16px;
  }

  .success-modal-card {
    min-height: auto;
    padding: 28px 18px 24px;
  }

  .success-modal .yes-copy-2 {
    z-index: 1;
    width: 56px;
    height: 56px;
    margin: -2px auto 14px;
    inset: auto;
  }

  .success-modal .tittle-zayvka {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.14;
  }

  .success-modal .ok-text {
    max-width: 320px;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.32;
  }

  .success-modal .bg-social-link-copy {
    grid-column-gap: 10px;
    grid-row-gap: 14px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 0;
    max-width: 240px;
    margin-bottom: 22px;
  }

  .success-modal .link-social {
    width: 44px;
    height: 44px;
    margin-top: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .success-modal-card {
    padding: 24px 16px 22px;
  }

  .success-modal .tittle-zayvka {
    font-size: 18px;
    line-height: 1.12;
  }

  .success-modal .ok-text {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.3;
  }

  .success-modal .bg-social-link-copy {
    grid-column-gap: 8px;
    grid-row-gap: 12px;
    max-width: 210px;
  }

  .success-modal .link-social {
    width: 40px;
    height: 40px;
  }

  .success-modal .link-glavnay {
    font-size: 16px;
    line-height: 1.25;
  }
}

.line-btn-close {
  background-color: var(--red);
  width: 35px;
  height: 3px;
}

.bg-pole-dly-club {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ykor {
  position: absolute;
  inset: 70px 0% auto;
}

.ykor.comm, .ykor.team {
  top: -100px;
}

.ykor.onas {
  top: 60px;
}

.line-btn-close-copy {
  background-color: var(--red);
  width: 35px;
  height: 3px;
  margin-bottom: 1px;
}

.menu {
  background-color: #fff;
}

.logo-link {
  -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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container-2-copy {
  text-align: left;
  -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;
  max-width: 1140px;
  min-height: 500px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.container-2-copy.ok {
  z-index: 99;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  margin-bottom: auto;
  position: relative;
}

.btn-navbar-mobile {
  background-color: var(--blue);
  color: #fff;
  border-radius: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 33px;
  padding: 13px 20px;
  font-family: Moscowmetro, sans-serif;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all .555s;
  -o-transition: all .555s;
  transition: all .555s;
  display: none;
}

.btn-navbar-mobile:hover {
  background-color: var(--blue-white);
  color: #fff;
  -webkit-transform: translate(0, -3px);
      -ms-transform: translate(0, -3px);
          transform: translate(0, -3px);
}

.img-icon-3d-mobile, .img-icon-3d-copy {
  z-index: 5;
  display: none;
  position: absolute;
}

.bgdropdown-mobile {
  border-radius: 20px;
  width: 100%;
  height: auto;
  display: none;
}

.icon-arrow-ride {
  margin-left: 10%;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.dont-scroll-slider-on-pc {
  z-index: 80;
  position: absolute;
  inset: 0%;
}

.bg-title-priem-mobile {
  z-index: 3;
  background-color: var(--blue);
  cursor: pointer;
  border-radius: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 20px 42px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.description-priem-mobile {
  color: #474747;
  text-align: justify;
  margin: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.grid-priem-mobile {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: auto;
  margin-bottom: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.text-menu-item {
  font-family: Moscowmetro, sans-serif;
}

.bg-text-otzivi {
  width: 100%;
  height: 130px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  overflow: auto;
}

.div-block {
  overflow: hidden;
}

.ztemnenit-otzivi {
  background-color: var(--white);
  opacity: .68;
  width: 88%;
  height: 100px;
  margin-left: 0;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0%;
}

.ztemnenit-otzivi._2 {
  z-index: 2;
  width: 90%;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  inset: auto 0% 0;
}

.bg-text-comanda {
  width: 100%;
  height: 46%;
  min-height: 127px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 5px;
  position: relative;
  overflow: auto;
}

.grid-comm-in {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-rows: auto 0px auto;
  grid-template-rows: auto auto;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.grid-comm-in > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid-comm-in > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

@media screen and (min-width: 1920px) {
  .section.anim {
    min-height: 1100px;
  }

  .bg-anim-volna._2 {
    bottom: -1%;
  }

  .tittle-zayvka {
    line-height: 130%;
  }

  .bg-zyvka-ok {
    max-width: 620px;
    height: 410px;
  }

  .container-2-copy.ok {
    margin-top: 140px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    padding-left: 10px;
    font-size: 30px;
  }

  .grid-hero {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .h1 {
    padding-left: 0;
  }

  .img-bg-line-hero-left {
    display: none;
  }

  .container {
    z-index: 1;
    padding: 0 20px 50px;
  }

  .container.hero {
    -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;
    padding-top: 170px;
    padding-bottom: 100px;
  }

  .container.priem {
    z-index: 10;
    background-color: var(--white);
    padding: 50px 20px;
  }

  .container.comm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .container.comanda {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding-right: 0;
  }

  .subtitle {
    border-left: 2px solid var(--blue);
    width: 380px;
    padding-left: 10px;
  }

  .item-menu {
    border-radius: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: auto;
    height: auto;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    font-size: 22px;
  }

  .item-menu:hover, .item-menu.w--current:hover {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .img-bg-slider {
    z-index: -1;
    -webkit-filter: blur(6px);
            filter: blur(6px);
    width: 72%;
    inset: -40px auto auto;
    -webkit-transform: rotate(42deg);
        -ms-transform: rotate(42deg);
            transform: rotate(42deg);
  }

  .text-logo {
    line-height: 100%;
  }

  .bg-menu-item {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #e6e6e6d1;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-top: 88px;
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    inset: 0% 0% auto;
    -webkit-box-shadow: 0 9px 18px -1px #0003;
            box-shadow: 0 9px 18px -1px #0003;
  }

  .ride.slider-nav {
    height: auto;
    padding-top: 0;
    display: none;
  }

  .img-item-menu {
    display: none;
  }

  .container-menu {
    z-index: 90;
    background-color: var(--white);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 20px;
  }

  .grid-onas {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .btn-navbar {
    height: 50px;
    font-size: 16px;
  }

  .btn-navbar:hover {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .side-ride-hero {
    margin-bottom: 50px;
  }

  .img-bg-line-hero {
    display: none;
  }

  .section {
    z-index: auto;
  }

  .section.anim {
    min-height: 900px;
  }

  .section.footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .slider-priem {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .mask-slider {
    width: 100% !important;
  }

  .slide {
    width: 100%;
    margin-left: 0;
    margin-right: 50px;
    padding-top: 60px;
  }

  .bg-slider {
    -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }

  .bg-slider-video{
    background-size: cover;
  }

  .img-slider {
    width: 209px;
    max-width: none;
    /* position: relative; */
    /* height: 400px; */
    border-radius: 26px;
  }

  .bg-slider-not {
    height: 420px;
    display: none;
    top: 0;
  }

  .description-wrapper {
    background-color: var(--white);
  }

  .img-icon-3d.gamepad, .img-icon-3d.world, .img-icon-3d.coin {
    display: block;
  }

  .img-icon-3d.cup {
    display: block;
    left: -16%;
  }

  .img-icon-3d.svistok {
    display: block;
    left: -6%;
  }

  .img-icon-3d.gromlko, .img-icon-3d.rocket, .img-icon-3d.celi {
    display: block;
  }

  .tabs-menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .tab {
    width: 263px;
  }

  .tab.w--current {
    width: 280px;
  }

  .tab.centr.w--current {
    width: 280px;
    margin-left: -55px;
    margin-right: -55px;
  }

  .tabss {
    padding-bottom: 0;
  }

  .name-tab-priem {
    font-size: 18px;
  }

  .grid-priem {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .bg-priem, .bg-priem._2 {
    width: auto;
  }

  .title-priem {
    font-size: 22px;
  }

  .animation-bg {
    inset: 0% -50%;
  }

  .description-priem {
    font-size: 16px;
  }

  .bg-comm-title-section {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: 250px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .grid-comm {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .title-section-comm {
    width: 400px;
    margin-top: 0;
  }

  .left-arrow-slider {
    width: 50px;
    height: 50px;
    inset: auto auto 25% -19px;
  }

  .left-arrow-slider.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 400px;
    bottom: auto;
  }

  .logo-footer.w--current {
    margin-left: auto;
  }

  .mask-team {
    width: 47%;
    height: 100%;
  }

  .slide-team {
    margin-right: 50px;
  }

  .text-adress {
    text-align: center;
    width: 320px;
  }

  .fon-for-items {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .fon-for-items._55 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }

  .fon-for-items._55-copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .fon-for-items.left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .bg-social-link {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 252px;
    min-width: 252px;
  }

  .grid-footer {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-rows: auto 30px auto;
    grid-template-rows: auto auto;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .grid-footer > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .grid-footer > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .grid-footer > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .grid-footer > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .btn-footer {
    width: 252px;
  }

  .item-menu-fotter {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 252px;
    padding-bottom: 7px;
  }

  .link-play-market {
    margin-top: 0;
  }

  .bg-play-market {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .link-app-store {
    margin-top: 0;
  }

  .text-prava {
    width: 252px;
  }

  .link-privat {
    text-align: center;
    width: auto;
    max-width: none;
  }

  .text-footer-small {
    margin-bottom: 10px;
  }

  .title-section-team {
    width: 400px;
  }

  .grid-team-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    grid-auto-columns: 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .bg-title-section-team {
    width: auto;
    height: auto;
    min-height: 250px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .subtitle-section-teams {
    width: 400px;
    padding-left: 8px;
    padding-right: 8px;
  }

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

  .img-team {
    left: -18px;
  }

  .subtitle-team {
    margin-bottom: 0;
  }

  .fon-team {
    width: auto;
    min-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .bg-title-team {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .box-slider {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .slider-team {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    margin-left: 20px;
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .right-slider-arrow {
    width: 50px;
    height: 50px;
    inset: auto -19px 25% auto;
  }

  .right-slider-arrow.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 400px;
    bottom: auto;
  }

  .fon-comm {
    width: auto;
    min-height: 250px;
  }

  .bg-slider-comm {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 50px 20px;
  }

  .icon-slider-left {
    width: 30px;
    height: 30px;
  }

  .bg-slider-team {
    padding: 50px 0;
  }

  .box-slider-out {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .description-section-comm {
    width: 400px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
  }

  .fon-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .open-forma {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90%;
  }

  .bg-forma-up {
    width: auto;
  }

  .close-form {
    z-index: 99;
    margin-top: 0;
    margin-bottom: 0;
  }

  .forma-up {
    width: auto;
  }

  .title-form {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 32px;
  }

  .bg-img-form {
    width: auto;
  }

  .text-logo-form {
    font-size: 40px;
  }

  .img-form {
    width: 250px;
    height: 250px;
    padding: 40px;
  }

  .yes-copy-2 {
    margin-left: auto;
    margin-right: auto;
    inset: -69px 0% auto;
  }

  .line-btn-close {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .ykor {
    top: -50px;
  }

  .line-btn-close-copy {
    -webkit-transform: translate(0, -3px)rotate(-45deg);
        -ms-transform: translate(0, -3px)rotate(-45deg);
            transform: translate(0, -3px)rotate(-45deg);
  }

  .menu {
    z-index: 90;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    position: fixed;
    inset: 0% 0% auto;
    -webkit-box-shadow: 0 2px 9px #0003;
            box-shadow: 0 2px 9px #0003;
  }

  .line3-2 {
    background-color: var(--blue);
    border-radius: 2px;
    width: 100%;
    height: 3px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-btn-burger-2 {
    border: 2px solid var(--blue);
    cursor: pointer;
    background-color: #fff;
    border-radius: 7px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50px;
    height: 50px;
    margin-left: 20px;
    padding: 14px 11px;
    overflow: hidden;
  }

  .menu-btn-burger-2.w--open {
    background-color: #e9ebed;
  }

  .line2-2 {
    background-color: var(--blue);
    border-radius: 2px;
    width: 100%;
    height: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .logo-link.w--current {
    margin-right: auto;
  }

  .line1-2 {
    background-color: var(--blue);
    border-radius: 2px;
    width: 100%;
    height: 3px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .container-2-copy {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .btn-navbar-mobile {
    height: 50px;
    font-size: 16px;
  }

  .btn-navbar-mobile:hover {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .img-icon-3d-mobile {
    display: block;
    inset: auto 0% 0% auto;
  }

  .img-icon-3d-copy {
    display: block;
    inset: -10% auto auto -18%;
  }

  .bgdropdown-mobile {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .div-slide {
    margin-right: px;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .icon-arrow-ride {
    width: 30px;
    height: 30px;
  }

  .dont-scroll-slider-on-pc {
    display: none;
  }

  .text-menu-item {
    line-height: 100%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 20px;
  }

  .h1 {
    width: auto;
    font-size: 12.6vw;
  }

  .logo.w--current {
    padding-left: 0;
  }

  .container {
    padding-top: 0;
    padding-bottom: 25px;
  }

  .container.hero {
    z-index: 2;
  }

  .container.priem, .container.comm {
    padding-top: 25px;
  }

  .item-menu {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .img-bg-slider {
    width: 80%;
  }

  .text-logo {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 10px;
    font-size: 18px;
  }

  .logo-img {
    max-width: 30%;
  }

  .btn-navbar {
    height: 42px;
    padding-left: 13px;
    padding-right: 13px;
    font-size: 14px;
  }

  .section.footer {
    padding-bottom: 25px;
  }

  .slide {
    padding-bottom: 38px;
  }

  .img-slider {
    width: 260px;
  }

  .bg-slider-not {
    left: -156px;
  }

  .bg-slider-not.out {
    right: -160px;
  }

  .img-icon-3d.gamepad {
    max-width: 60%;
  }

  .img-icon-3d.world {
    max-width: 60%;
    top: 0%;
  }

  .img-icon-3d.coin {
    max-width: 46%;
  }

  .tabs-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
    margin-bottom: 25px;
  }

  .tab {
    width: auto;
    height: 55px;
  }

  .tab.w--current {
    width: auto;
  }

  .tab.centr {
    margin-left: 0;
    margin-right: 0;
  }

  .tab.centr.w--current {
    width: auto;
    height: 55px;
    margin-left: 0;
    margin-right: 0;
  }

  .grid-priem {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .bg-priem {
    width: auto;
    margin-left: 0;
  }

  .bg-priem._2 {
    width: auto;
  }

  .bg-priem._1 {
    width: auto;
    margin-right: 0;
  }

  .animation-bg {
    left: -130%;
    right: -130%;
  }

  .container-tab {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .btn-priem {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
  }

  .mask-team {
    width: 100%;
  }

  .stepdiv {
    min-height: auto;
  }

  .fon-comm {
    height: auto;
    min-height: auto;
  }

  .grid-title-comm {
    height: 140px;
  }

  .slide-comm {
    width: 210%;
  }

  .bg-slider-comm {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .bg-slider-team {
    padding-top: 25px;
  }

  .mask-slider-comm {
    width: 47.4%;
  }

  .open-forma {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 90%;
    margin-top: 0;
  }

  .bg-forma-up {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .form-doc-view {
    inset: 38px 20px 24px;
  }

  .form-doc-back {
    width: calc(100% + 40px);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
  }

  .subtitle-form-up {
    line-height: 100%;
  }

  .forma-centr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .close-form {
    inset: 0% 0% auto auto;
  }

  .pole-comm {
    height: auto;
  }

  .title-form {
    color: var(--black);
    text-transform: uppercase;
    font-size: 35px;
  }

  .bg-img-form {
    -webkit-box-shadow: 0 -2px 0 0 var(--blue), 6px 0 10px 0 #0003;
            box-shadow: 0 -2px 0 0 var(--blue), 6px 0 10px 0 #0003;
    height: 40%;
    display: none;
  }

  .text-logo-form {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
    margin-left: 0;
    font-size: 28px;
  }

  .img-form {
    width: 160px;
    height: 160px;
    padding: 20px;
  }

  .yes-copy-2 {
    z-index: 0;
    margin-left: auto;
    margin-right: auto;
    inset: -60px 0% 0%;
  }

  .bg-zyvka-ok {
    padding: 25px 20px;
  }

  .line-btn-close-copy {
    margin-bottom: 0;
  }

  .menu {
    z-index: 90;
    border-bottom-right-radius: 20px;
  }

  .menu-btn-burger-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 42px;
    height: 42px;
    margin-left: 10px;
    padding: 10px 6px;
  }

  .menu-btn-burger-2.w--open {
    margin-left: 10px;
  }

  .logo-link.w--current {
    margin-right: auto;
  }

  .container-2-copy {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .btn-navbar-mobile {
    height: 42px;
    padding-left: 13px;
    padding-right: 13px;
    font-size: 14px;
  }

  .div-slide {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .bg-text-otzivi {
    height: 210px;
    min-height: auto;
    margin-bottom: 0;
  }

  .ztemnenit-otzivi._2 {
    width: 87%;
    height: 40px;
  }

  .bg-text-comanda {
    height: 50%;
    min-height: auto;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 13px;
    line-height: 20px;
  }

  a {
    float: none;
    width: auto;
    padding-left: 1px;
    padding-right: 1px;
    display: inline-block;
    position: static;
  }

  .center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .bluewh-h1 {
    -webkit-text-stroke-width: 1px;
  }

  .privacy-consent-text{
    display: inline;
    font-size: 12px;
  }
  .privacy-consent-line{
    display: inline;
  }
  .privacy-consent-link{
    display: inline;
  }
  .h1 {
    margin-bottom: 20px;
    font-size: 12vw;
  }

  .logo.w--current {
    margin-left: 9px;
    padding-right: 0;
  }

  .container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .container.hero {
    padding: 150px 20px 60px;
  }

  .container.priem {
    padding-top: 50px;
    padding-bottom: 15px;
  }

  .container.comm {
    z-index: 11;
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .container.comanda {
    padding-top: 15px;
  }

  .subtitle {
    width: 80vw;
    margin-bottom: 25px;
    font-size: 4.5vw;
  }

  .btn-hero {
    padding: 2.5vw 12vw;
    font-size: 4vw;
  }

  .item-menu {
    padding-top: 16px;
  }

  .img-bg-hero {
    max-width: 115vw;
  }

  .img-bg-slider {
    width: 290px;
    margin-top: -451px;
    top: auto;
    -webkit-transform: rotate(37deg);
        -ms-transform: rotate(37deg);
            transform: rotate(37deg);
  }

  .text-logo {
    font-size: 6vw;
  }

  .img-bg-abstract {
    max-width: 40%;
    left: 15px;
  }

  .bg-menu-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 70px;
    padding-top: 30px;
  }

  .ride.slider-nav {
    margin-bottom: -10px;
  }

  .img-bg-abstract-2 {
    max-width: 40%;
    left: 57%;
  }

  .description-dropdown {
    margin: 0 20px 20px;
    font-size: 4vw;
    line-height: 120%;
  }

  .container-menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px 0 15px 10px;
  }

  .btn-navbar {
    display: none;
  }

  .side-ride-hero {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }

  .bg-img-hero {
    min-width: 150px;
    height: 300px;
  }

  .section.anim {
    z-index: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 400;
  }

  .section.footer {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .pr {
    display: none;
  }

  .title-dropdown {
    width: auto;
    font-size: 5.5vw;
    line-height: 130%;
  }

  .title-dropdown._1 {
    text-align: center;
    font-size: 5.5vw;
  }

  .slide {
    margin-left: 0;
    margin-right: 90px;
    padding-top: 25px;
    padding-bottom: 40px;
  }

  .bg-slider {
    bottom: -28px;
  }

  .img-slider {
    width: 210px;
  }

  .img-logo-icon {
    max-width: 60%;
    left: -90px;
  }

  .img-logo-icon.dinamo {
    max-width: 60%;
    right: -85px;
  }

  .img-logo-icon.crystal {
    right: -64px;
  }

  .img-logo-icon.scka {
    left: -60px;
  }

  .dropdown_component {
    border-radius: 30px;
    margin-bottom: 0;
    -webkit-box-shadow: 0 4px 15px 9px #0003;
            box-shadow: 0 4px 15px 9px #0003;
  }

  .header-wrapper {
    border-radius: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 80px;
    padding-right: 20px;
  }

  .description-wrapper {
    -webkit-box-shadow: none;
            box-shadow: none;
    top: 0;
  }

  .img-icon-3d.gamepad {
    bottom: 1%;
    right: -5%;
  }

  .img-icon-3d.world {
    top: -9%;
  }

  .img-icon-3d.coin {
    right: -3%;
  }

  .img-icon-3d.cup {
    left: -20%;
  }

  .img-icon-3d.svistok {
    max-width: 55%;
    left: -10%;
  }

  .img-icon-3d.gromlko {
    max-width: 50%;
    bottom: 2%;
  }

  .img-icon-3d.rocket {
    max-width: 82%;
    left: -24%;
  }

  .img-icon-3d.celi {
    max-width: 50%;
    right: -12%;
  }

  .tabs-menu {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .tab {
    border-radius: 15px;
    height: 60px;
    margin-right: 0;
    padding: 2vw 20px;
  }

  .tab.centr.w--current {
    height: 60px;
  }

  .tabss {
    padding-top: 10px;
  }

  .name-tab-priem {
    font-size: 5vw;
    line-height: 100%;
  }

  .icon-drop {
    width: 20px;
    height: 20px;
    display: none;
    right: 5px;
  }

  .bg-priem {
    height: 50%;
    padding-bottom: 30px;
    -webkit-box-shadow: -8px -1px 20px 2px #0003;
            box-shadow: -8px -1px 20px 2px #0003;
  }

  .bg-priem._2 {
    height: 50%;
  }

  .title-priem {
    font-size: 8vw;
  }

  .animation-bg {
    z-index: 0;
    opacity: .68;
    -webkit-filter: blur(1px);
            filter: blur(1px);
    min-width: 100%;
    inset: auto -121%;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .bg-anim-volna {
    z-index: 10;
    min-width: 100%;
    display: block;
    inset: -2px 0% auto;
  }

  .bg-anim-volna._2 {
    z-index: 10;
    min-width: 100%;
    display: block;
    position: absolute;
    inset: auto 0% -2px;
  }

  .description-priem {
    font-size: 4.5vw;
  }

  .bg-comm-title-section {
    height: 300px;
    margin-top: 0;
    margin-bottom: 0;
    -webkit-box-shadow: 9px 10px 20px 8px #0003;
            box-shadow: 9px 10px 20px 8px #0003;
  }

  .grid-comm {
    z-index: 50;
    position: relative;
  }

  .btn-priem {
    margin-top: 40px;
    padding: 3vw 12vw;
    font-size: 4vw;
  }

  .number-priem {
    font-size: 70px;
  }

  .title-section-comm {
    width: 100%;
    height: auto;
    padding: 10px 40px;
    font-size: 8vw;
  }

  .text-title-comm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .left-arrow-slider {
    width: 40px;
    height: 40px;
    left: -14px;
  }

  .left-arrow-slider.mobile {
    top: 280px;
  }

  .description-comm {
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 4.5vw;
    line-height: 110%;
  }

  .logo-footer.w--current {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .slide-team {
    margin-right: 100px;
  }

  .text-adress {
    max-width: 324px;
  }

  .fon-for-items._55 {
    border-top: 2px solid #eae5e5;
    border-bottom: 2px solid #eae5e5;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .fon-for-items._55-copy {
    display: none;
  }

  .fon-for-items.left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .link-social {
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .link-social.vk, .link-social.youtube, .link-social.vc, .link-social.tg {
    margin-right: 0;
  }

  .bg-social-link {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -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;
    width: 100%;
    min-width: auto;
    max-width: 310px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .phone-numbaer-link {
    letter-spacing: 0;
    width: auto;
    min-width: 240px;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-footer {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -ms-grid-rows: auto 20px auto 20px auto 20px auto;
    grid-template-rows: auto auto auto auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .grid-footer > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .grid-footer > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .grid-footer > *:nth-child(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .grid-footer > *:nth-child(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }

  .btn-footer {
    width: 100%;
    max-width: 310px;
    padding: 10px 20px;
    font-size: 5vw;
  }

  .link-play-market {
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .bg-play-market {
    width: 195px;
  }

  .link-app-store {
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .text-prava {
    text-align: center;
    width: auto;
  }

  .text-footer-small {
    margin-bottom: 0;
  }

  .title-section-team {
    width: 100%;
    height: auto;
    margin-top: 0;
    padding: 10px 40px;
    font-size: 8vw;
  }

  .btn-team {
    font-size: 4vw;
  }

  .bg-title-section-team {
    opacity: 1;
    background-color: #fff0;
    min-height: 300px;
    -webkit-box-shadow: 0 5px 20px 8px #0003;
            box-shadow: 0 5px 20px 8px #0003;
  }

  .subtitle-section-teams {
    width: auto;
    font-size: 4.5vw;
  }

  .img-team {
    width: auto;
    height: 200px;
    left: -24px;
  }

  .subtitle-team {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 4.3vw;
  }

  .fon-team {
    height: 520px;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-box-shadow: 1px -2px 20px 2px #0003;
            box-shadow: 1px -2px 20px 2px #0003;
  }

  .bg-title-team {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .title-team {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 8.5vw;
    line-height: 100%;
  }

  .description-team {
    margin-top: 0;
    font-size: 4.5vw;
    font-weight: 500;
  }

  .right-slider-arrow {
    width: 40px;
    height: 40px;
    right: -14px;
  }

  .right-slider-arrow.mobile {
    top: 280px;
  }

  .title-comm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 5.6vw;
    line-height: 26px;
  }

  .fon-comm {
    z-index: 50;
    height: 550px;
    position: relative;
    -webkit-box-shadow: 13px 0 9px 1px #0003;
            box-shadow: 13px 0 9px 1px #0003;
  }

  .subtitle-comm {
    text-align: center;
    width: 100%;
    font-size: 3vw;
  }

  .grid-title-comm {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-flex-line-pack: center;
        align-content: center;
    place-items: center;
    height: 230px;
  }

  .slide-comm {
    width: 100%;
  }

  .bg-slider-comm {
    z-index: 50;
    padding-top: 50px;
    padding-bottom: 0;
    overflow: visible;
  }

  .image-35, .icon-slider-left {
    max-width: 60%;
  }

  .bg-slider-team {
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: visible;
  }

  .box-slider-out {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .mask-slider-comm {
    width: 100%;
    overflow: hidden;
  }

  .slider-comm {
    z-index: 50;
  }

  .img-ava-comm {
    width: 80px;
    height: 80px;
    overflow: hidden;
  }

  .description-section-comm {
    width: auto;
    font-size: 4.5vw;
  }

  .fon-footer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .open-forma {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 95%;
    padding: 20px;
  }

  .bg-forma-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }

  .form-doc-view {
    inset: 26px 20px 24px;
  }

  .subtitle-form-up, .subtitle-form-comm {
    font-size: 16px;
  }

  .forma-centr {
    margin-left: auto;
    margin-right: auto;
  }

  .close-form {
    width: 30px;
    height: 30px;
  }

  .forma-up {
    margin-bottom: 0;
  }

  .title-form {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 9vw;
  }

  .bg-pole-name, .bg-pole-dly-obshestv {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .text-span {
    display: block;
  }

  .yes-copy-2 {
    inset: -63px 0% auto;
  }

  .tittle-zayvka {
    font-size: 8vw;
    line-height: 130%;
  }

  .bg-social-link-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -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;
    width: 100%;
    min-width: auto;
    max-width: 310px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .bg-pole-dly-club {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .img-3d-icon-priem {
    width: 36%;
  }

  .ykor {
    top: -75px;
  }

  .ykor.comm {
    top: -35px;
  }

  .ykor.team {
    top: 16px;
  }

  .ykor.onas {
    top: -80px;
  }

  .menu {
    border-bottom-right-radius: 20px;
  }

  .menu-btn-burger-2 {
    margin-left: auto;
    margin-right: 10px;
    right: 10px;
  }

  .container-2-copy {
    min-height: auto;
    padding-top: 7vh;
    padding-bottom: 8vh;
  }

  .btn-navbar-mobile {
    background-color: var(--blue-white);
    border-radius: 0 5px 5px 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 305px;
    height: auto;
    margin-top: 0;
    padding: 16px 20px 15px;
    font-size: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .bg-slide {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .bgdropdown-mobile {
    border-radius: 30px;
    -webkit-box-shadow: -3px -8px 15px -16px #0003;
            box-shadow: -3px -8px 15px -16px #0003;
  }

  .div-slide {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .icon-arrow-ride {
    max-width: 60%;
  }

  .bg-title-priem-mobile {
    border-radius: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 80px;
    padding-right: 20px;
  }

  .description-priem-mobile {
    margin: 0 20px 20px;
    font-size: 4vw;
    line-height: 120%;
  }

  .grid-priem-mobile {
    border-radius: 30px;
    margin-bottom: 0;
    -webkit-box-shadow: 0 4px 15px 9px #0003;
            box-shadow: 0 4px 15px 9px #0003;
  }

  .text-menu-item {
    line-height: 100%;
  }

  .bg-text-otzivi {
    width: 98%;
    height: 260px;
    margin-top: 20px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: auto;
  }

  .ztemnenit-otzivi._2 {
    opacity: .66;
    width: 82%;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    right: 14px;
  }

  .bg-text-comanda {
    width: 98%;
    height: 210px;
    padding-left: 8px;
    padding-right: 5px;
    overflow: auto;
  }
}

textarea.w-input.pole-comm {
  height: auto;
  min-height: 112px; /* совпадает с .pole-comm */
}


#w-node-_1b758a1a-6894-664f-de67-f6e7e0b08878-ca4689f9, #w-node-_1b758a1a-6894-664f-de67-f6e7e0b08887-ca4689f9, #w-node-_03a3cfff-2a8e-7224-c48e-870987222fcd-ca4689f9, #w-node-_03a3cfff-2a8e-7224-c48e-870987222fd2-ca4689f9, #w-node-_37742bbb-e154-ee79-242c-15fa113221b1-ca4689f9, #w-node-_37742bbb-e154-ee79-242c-15fa113221ba-ca4689f9, #w-node-_37742bbb-e154-ee79-242c-15fa113221c3-ca4689f9, #w-node-_52714591-104d-859f-3e77-62f9f9653470-ca4689f9, #w-node-d232e773-bc7d-3fca-da7b-c315a55f855c-ca4689f9, #w-node-_074148a4-e4d0-4575-600d-609b3809935e-ca4689f9, #w-node-f1574c66-85e1-8d1c-5276-1530c9ec1cc5-ca4689f9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f1574c66-85e1-8d1c-5276-1530c9ec1cce-ca4689f9 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f1574c66-85e1-8d1c-5276-1530c9ec1cd7-ca4689f9, #w-node-_57386ecd-cf4b-75d0-9b15-167eebf68ff1-ca4689f9, #w-node-_400c0a73-ae06-15d8-22cc-bd0a2f25e007-ca4689f9, #w-node-_8ab6d542-f724-f1ec-2723-ace6c9dc9625-ca4689f9, #w-node-c4508f7f-c8db-6996-dfda-73aff09d224e-ca4689f9, #w-node-cd4fc3ec-a93a-5ffc-826f-bb23f5457cdd-ca4689f9, #w-node-cd4fc3ec-a93a-5ffc-826f-bb23f5457d23-ca4689f9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-cd4fc3ec-a93a-5ffc-826f-bb23f5457d23-ca4689f9 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-cd4fc3ec-a93a-5ffc-826f-bb23f5457d4a-ca4689f9 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2 / 2 / 3 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-cd4fc3ec-a93a-5ffc-826f-bb23f5457cfc-ca4689f9 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-cd4fc3ec-a93a-5ffc-826f-bb23f5457d4a-ca4689f9 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 4 / 1 / 5 / 2;
  }
}

@font-face {
  font-family: 'Moscowmetro';
  src: url('../fonts/MoscowMetro.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.cookie-banner-button {
  border: 2px solid #ffffff;
}

.cookie-banner-copy,
.cookie-banner-text {
  max-width: 100%;
}

.cookie-banner-text {
  white-space: normal;
  overflow-wrap: break-word;
}

.cookie-banner .cookie-banner-text {
  margin: 0 0 -2px;
  line-height: 1.05;
}

.cookie-banner .cookie-banner-link,
.cookie-banner .cookie-banner-link:visited {
  display: inline-block;
  margin-top: 0;
  color: #6E7191;
  line-height: 1.16;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-banner .cookie-banner-link:hover,
.cookie-banner .cookie-banner-link:focus-visible {
  color: #6E7191;
  text-decoration-line: underline;
}

@media screen and (max-width: 479px) {
  .cookie-banner .cookie-banner-text {
    margin: 0 0 2px;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
  }

  .cookie-banner .cookie-banner-link {
    font-size: 11px;
    line-height: 1;
    color: #6E7191;
    text-decoration-line: underline;
  }
}
