@charset "UTF-8";

@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat/Montserrat-Regular.eot");
  src: url("../fonts/Montserrat/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype"), url("../fonts/Montserrat/Montserrat-Regular.svg#Montserrat") format("svg");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat/Montserrat-Medium.eot");
  src: url("../fonts/Montserrat/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Medium.ttf") format("truetype"), url("../fonts/Montserrat/Montserrat-Medium.svg#Montserrat") format("svg");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat/Montserrat-SemiBold.eot");
  src: url("../fonts/Montserrat/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype"), url("../fonts/Montserrat/Montserrat-SemiBold.svg#Montserrat") format("svg");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat/Montserrat-Bold.eot");
  src: url("../fonts/Montserrat/Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype"), url("../fonts/Montserrat/Montserrat-Bold.svg#Montserrat") format("svg");
}

@font-face {
  font-family: "Raleway";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat/Montserrat-SemiBold.eot");
  src: url("../fonts/Montserrat/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype"), url("../fonts/Montserrat/Montserrat-SemiBold.svg#Raleway") format("svg");
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

:root {
  --container-width: 1260px;
  --transition: 0.3s ease;
  --default-font-family: "Montserrat";
  --heading-font-family: "Montserrat";
  --sp: 90px;
  --accent: #2938FF;
  --bg: #fff;
  --text-color: #000000;
  --fz-default: 18px;
  --h1: 90px;
  --h2: 64px;
  --h3: 32px;
  --h4: 30px;
  --l: 27px;
  --m: 18px;
  --s: 16px;
}

body {
  font: 400 var(--fz-default) var(--default-font-family), Helvetica, Arial, sans-serif;
  background: var(--bg);
  min-width: 360px;
  color: var(--text-color);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

[class*=__container] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

form input.error {
  box-shadow: inset 0px 0px 20px 1px rgba(255, 0, 0, 0.3);
  border: 2px solid red !important;
}

form input.not_error {
  box-shadow: inset 0px 0px 20px 1px rgba(100, 255, 100, 0.3);
  border: 2px solid #99FF99 !important;
}

h1,
._h1 {
  font: 700 var(--h1) var(--heading-font-family);
  color: #fff;
  text-transform: uppercase;
}

h1 b,
._h1 b {
  color: var(--accent);
}

h2,
._h2 {
  font: 700 var(--h2) var(--heading-font-family);
}

h3,
._h3 {
  font: 700 var(--h3) var(--heading-font-family);
}

h4,
._h4 {
  font: 700 var(--h4) var(--heading-font-family);
}

a {
  color: var(--text-color);
  text-decoration: none;
}

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._accent {
  color: var(--accent);
}

._s {
  font-size: var(--s);
  line-height: 140%;
}

._m {
  font-size: var(--m);
  line-height: 140%;
}

._l {
  font-size: var(--l);
  line-height: 140%;
}

.btn {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

.subm {
  cursor: pointer;
  border: none;
  display: block;
  margin: 0 auto;
}

.form {
  max-width: 400px;
  position: relative;
}

.form__inputs {
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.form .input {
  background: #fff;
  width: 100%;
  height: 60px;
  border: 2px solid #dcdcdc;
  border-radius: 3px;
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 60px;
  display: block;
}

.form .input__wrap {
  display: block;
  text-align: left;
}

.form .input__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  display: block;
}

.form:before {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.7) url(../img/loading.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
}

.form .country-list .country-name {
  color: #333;
}

.header {
  position: relative;
  z-index: 111 !important;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 19px 0;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: block;
  width: 153px;
  height: 38px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='154' height='38' viewBox='0 0 154 38' fill='none'%3E%3Cpath d='M38.4327 24.6136V16.8409L34.5362 14.25V6.04545L26.3892 0.863636L21.9615 4.05909L15.4085 0L7.70425 5.52727V7.25454L0 12.8682V20.6409L4.42773 23.4909V31.9545L12.5747 37.1363L17.1796 33.8546L23.7327 38L31.4368 32.4728V29.8818L38.4327 24.6136ZM8.32412 14.25V8.03181L14.5229 3.54091V9.84545L8.32412 14.25ZM15.497 9.75908V3.45454L22.5814 8.03181V14.0773L15.497 9.75908ZM8.944 27.4636L15.4085 22.7999L22.2272 27.1182L15.7627 31.7818L8.944 27.4636ZM14.8771 15.8909V22.0227L8.58979 26.5999V20.4682L14.8771 15.8909ZM8.58979 15.1136L15.0543 10.5364L22.2272 14.7682L19.3049 16.9273L15.4085 14.5091L11.7777 17.1L8.58979 15.1136ZM7.61568 24.5273L1.23976 20.3819L7.79279 15.7182L10.9807 17.6181L7.61568 20.0363V24.5273ZM22.4928 23.9228V26.2545L15.8513 22.0227V15.8045L18.8621 17.7045V21.5908L22.4928 23.9228ZM7.43858 8.63636V14.8545L0.974099 19.4318V13.3L7.43858 8.63636ZM16.294 33.25L12.4862 36.0136L5.66748 31.6955L9.47533 28.9319L16.294 33.25ZM30.1086 32.2136L23.644 36.8773L16.4711 32.3001L22.9356 27.6363L30.1086 32.2136ZM34.5362 21.85V15.3727L37.547 17.3591V23.5772L34.5362 21.85ZM26.8321 8.63636V2.24545L33.5621 6.56363V13.1273L26.8321 8.63636ZM26.8321 15.9773V9.67273L33.5621 14.0773V20.209L31.9681 19.1728L26.8321 15.9773ZM33.2965 21.1591L26.9206 25.7364L20.1018 21.4181L26.3892 16.8409L33.2965 21.1591ZM23.3783 24.5273L26.9206 26.7727L30.4627 24.2682V25.1319V31.4364L23.3783 26.9454V24.5273ZM33.385 22.1954L37.1928 24.4409L31.4368 28.6727V24.7V23.5772L33.385 22.1954ZM21.1646 4.66363L20.1904 5.35455L15.8513 2.59091V1.29545L21.1646 4.66363Z' fill='white'/%3E%3Cpath d='M48.6519 17.0234V3.78564H53.372C54.6034 3.78564 55.5922 4.09018 56.3385 4.69924C57.0972 5.29587 57.4765 6.12867 57.4765 7.19764C57.4765 7.81913 57.3335 8.37847 57.0474 8.87566C56.7613 9.37286 56.3696 9.75818 55.872 10.0316V10.0689C56.5686 10.2678 57.0972 10.6593 57.4579 11.2435C57.831 11.8278 58.0176 12.4741 58.0176 13.1826C58.0176 14.438 57.5822 15.3951 56.7116 16.0539C55.841 16.7002 54.7526 17.0234 53.4467 17.0234H48.6519ZM51.0586 9.19262H53.3907C53.9006 9.19262 54.2987 9.03725 54.5847 8.72651C54.8832 8.40333 55.0325 7.99314 55.0325 7.49595C55.0325 7.01119 54.8832 6.61965 54.5847 6.32133C54.2987 6.01059 53.8882 5.85521 53.3534 5.85521H51.0586V9.19262ZM51.0586 14.9539H53.6332C54.2303 14.9539 54.6967 14.7798 55.0325 14.4318C55.3808 14.0713 55.5549 13.6052 55.5549 13.0334C55.5549 12.4741 55.3808 12.0204 55.0325 11.6724C54.6967 11.3119 54.2303 11.1317 53.6332 11.1317H51.0586V14.9539Z' fill='white'/%3E%3Cpath d='M59.9379 13.6301V7.5146H62.3073V13.1453C62.3073 13.7792 62.413 14.264 62.6245 14.5996C62.8483 14.9228 63.2339 15.0844 63.7812 15.0844C64.6021 15.0844 65.2488 14.7736 65.7215 14.1521C66.2066 13.5306 66.4491 12.7724 66.4491 11.8775V7.5146H68.7998V17.0234H66.5237V15.9047L66.5797 15.2522H66.5424C66.2936 15.7867 65.8707 16.2528 65.2737 16.6505C64.6767 17.0483 63.9988 17.2472 63.2401 17.2472C61.0386 17.2472 59.9379 16.0415 59.9379 13.6301Z' fill='white'/%3E%3Cpath d='M70.5988 15.8488L71.6622 14.2826C72.4209 14.9787 73.3226 15.3267 74.3674 15.3267C74.7903 15.3267 75.1137 15.246 75.3376 15.0844C75.5739 14.9103 75.6921 14.6742 75.6921 14.3759C75.6921 14.1024 75.5304 13.8662 75.207 13.6674C74.8836 13.4685 74.4918 13.2883 74.0316 13.1267C73.5714 12.9651 73.105 12.7786 72.6323 12.5673C72.1721 12.3436 71.7804 12.0266 71.457 11.6164C71.1336 11.2063 70.9719 10.7153 70.9719 10.1435C70.9719 9.24856 71.3139 8.55249 71.998 8.05529C72.6945 7.54567 73.5652 7.29086 74.61 7.29086C75.9284 7.29086 76.998 7.65132 77.8189 8.37225L76.9421 10.0316C76.6684 9.79547 76.3015 9.60281 75.8413 9.45365C75.3935 9.29206 74.9582 9.21127 74.5353 9.21127C73.6522 9.21127 73.2107 9.5158 73.2107 10.1249C73.2107 10.3983 73.3724 10.6345 73.6958 10.8334C74.0192 11.0322 74.411 11.2125 74.8712 11.3741C75.3438 11.5356 75.8102 11.7221 76.2704 11.9334C76.7306 12.1323 77.1224 12.4368 77.4458 12.847C77.7692 13.2572 77.9309 13.7482 77.9309 14.3199C77.9309 15.1652 77.6013 15.8674 76.9421 16.4268C76.2829 16.9737 75.4122 17.2472 74.3301 17.2472C72.8127 17.2472 71.5689 16.781 70.5988 15.8488Z' fill='white'/%3E%3Cpath d='M79.8904 5.8925V3.78564H82.2598V5.8925H79.8904ZM79.8904 17.0234V7.5146H82.2598V17.0234H79.8904Z' fill='white'/%3E%3Cpath d='M84.7914 17.0234V7.5146H87.0676V8.63328L87.0302 9.30449H87.0676C87.3163 8.79487 87.7268 8.33497 88.2989 7.92478C88.871 7.50217 89.5862 7.29086 90.4444 7.29086C92.6584 7.29086 93.7653 8.49655 93.7653 10.9079V17.0234H91.3959V11.3927C91.3959 10.7588 91.284 10.2802 91.0601 9.95706C90.8487 9.62145 90.4631 9.45365 89.9034 9.45365C89.0825 9.45365 88.4171 9.75197 87.9071 10.3486C87.4096 10.9452 87.1608 11.6848 87.1608 12.5673V17.0234H84.7914Z' fill='white'/%3E%3Cpath d='M95.6367 12.269C95.6367 10.8023 96.0844 9.60902 96.98 8.68922C97.8879 7.75698 99.0571 7.29086 100.487 7.29086C101.806 7.29086 102.838 7.71969 103.584 8.57735C104.331 9.42258 104.704 10.4978 104.704 11.8029C104.704 12.0142 104.679 12.3187 104.629 12.7165H98.0807C98.1553 13.512 98.4601 14.1335 98.9949 14.581C99.5297 15.016 100.176 15.2335 100.935 15.2335C101.88 15.2335 102.788 14.8855 103.659 14.1894L104.592 15.8861C104.119 16.3087 103.535 16.6443 102.838 16.8929C102.154 17.1291 101.464 17.2472 100.767 17.2472C99.2374 17.2472 97.9999 16.7686 97.0546 15.8115C96.1093 14.842 95.6367 13.6612 95.6367 12.269ZM98.1367 11.0944H102.334C102.322 10.4729 102.135 9.98192 101.775 9.62145C101.426 9.26099 100.979 9.08076 100.431 9.08076C99.8344 9.08076 99.3307 9.2672 98.9203 9.6401C98.5098 10.0006 98.2486 10.4853 98.1367 11.0944Z' fill='white'/%3E%3Cpath d='M105.908 15.8488L106.972 14.2826C107.73 14.9787 108.632 15.3267 109.677 15.3267C110.1 15.3267 110.423 15.246 110.647 15.0844C110.883 14.9103 111.001 14.6742 111.001 14.3759C111.001 14.1024 110.84 13.8662 110.516 13.6674C110.193 13.4685 109.801 13.2883 109.341 13.1267C108.881 12.9651 108.414 12.7786 107.942 12.5673C107.481 12.3436 107.09 12.0266 106.766 11.6164C106.443 11.2063 106.281 10.7153 106.281 10.1435C106.281 9.24856 106.623 8.55249 107.307 8.05529C108.004 7.54567 108.875 7.29086 109.919 7.29086C111.238 7.29086 112.307 7.65132 113.128 8.37225L112.251 10.0316C111.978 9.79547 111.611 9.60281 111.151 9.45365C110.703 9.29206 110.268 9.21127 109.845 9.21127C108.962 9.21127 108.52 9.5158 108.52 10.1249C108.52 10.3983 108.682 10.6345 109.005 10.8334C109.328 11.0322 109.72 11.2125 110.18 11.3741C110.653 11.5356 111.12 11.7221 111.58 11.9334C112.04 12.1323 112.432 12.4368 112.755 12.847C113.078 13.2572 113.24 13.7482 113.24 14.3199C113.24 15.1652 112.911 15.8674 112.251 16.4268C111.592 16.9737 110.722 17.2472 109.639 17.2472C108.122 17.2472 106.878 16.781 105.908 15.8488Z' fill='white'/%3E%3Cpath d='M114.435 15.8488L115.498 14.2826C116.257 14.9787 117.159 15.3267 118.203 15.3267C118.626 15.3267 118.95 15.246 119.174 15.0844C119.41 14.9103 119.528 14.6742 119.528 14.3759C119.528 14.1024 119.366 13.8662 119.043 13.6674C118.72 13.4685 118.328 13.2883 117.868 13.1267C117.407 12.9651 116.941 12.7786 116.468 12.5673C116.008 12.3436 115.616 12.0266 115.293 11.6164C114.97 11.2063 114.808 10.7153 114.808 10.1435C114.808 9.24856 115.15 8.55249 115.834 8.05529C116.531 7.54567 117.401 7.29086 118.446 7.29086C119.764 7.29086 120.834 7.65132 121.655 8.37225L120.778 10.0316C120.504 9.79547 120.138 9.60281 119.677 9.45365C119.23 9.29206 118.794 9.21127 118.371 9.21127C117.488 9.21127 117.047 9.5158 117.047 10.1249C117.047 10.3983 117.208 10.6345 117.532 10.8334C117.855 11.0322 118.247 11.2125 118.707 11.3741C119.18 11.5356 119.646 11.7221 120.106 11.9334C120.567 12.1323 120.958 12.4368 121.282 12.847C121.605 13.2572 121.767 13.7482 121.767 14.3199C121.767 15.1652 121.437 15.8674 120.778 16.4268C120.119 16.9737 119.248 17.2472 118.166 17.2472C116.649 17.2472 115.405 16.781 114.435 15.8488Z' fill='white'/%3E%3Cpath d='M47.887 26.9668C47.887 25.0277 48.5275 23.4118 49.8086 22.1191C51.0897 20.8264 52.7191 20.1801 54.6967 20.1801C56.7116 20.1801 58.341 20.7829 59.5847 21.9886L58.428 23.7785C57.9429 23.3683 57.3708 23.0327 56.7116 22.7717C56.0648 22.5107 55.4305 22.3801 54.8086 22.3801C53.4156 22.3801 52.3273 22.8152 51.5437 23.6853C50.7601 24.5554 50.3683 25.6368 50.3683 26.9295C50.3683 28.2346 50.7663 29.3533 51.5623 30.2855C52.3584 31.2053 53.4467 31.6652 54.8273 31.6652C56.2452 31.6652 57.5263 31.1059 58.6706 29.9872L59.9392 31.7212C58.5337 33.1506 56.7987 33.8653 54.734 33.8653C52.6817 33.8653 51.0275 33.2127 49.7713 31.9076C48.5151 30.6025 47.887 28.9555 47.887 26.9668Z' fill='white'/%3E%3Cpath d='M62.4034 32.467C61.3959 31.5223 60.8922 30.329 60.8922 28.8872C60.8922 27.4453 61.3959 26.2583 62.4034 25.326C63.4108 24.3813 64.6422 23.909 66.0974 23.909C67.5651 23.909 68.8026 24.3813 69.8101 25.326C70.83 26.2583 71.3399 27.4453 71.3399 28.8872C71.3399 30.329 70.8362 31.5223 69.8287 32.467C68.8213 33.3992 67.5837 33.8653 66.116 33.8653C64.6484 33.8653 63.4108 33.3992 62.4034 32.467ZM63.2989 28.8872C63.2989 29.7572 63.5663 30.472 64.1011 31.0313C64.6484 31.5782 65.32 31.8517 66.116 31.8517C66.9121 31.8517 67.5837 31.5782 68.131 31.0313C68.6782 30.472 68.9519 29.7572 68.9519 28.8872C68.9519 28.0295 68.672 27.321 68.1123 26.7617C67.5651 26.2023 66.8996 25.9226 66.116 25.9226C65.3325 25.9226 64.667 26.2023 64.1198 26.7617C63.5725 27.321 63.2989 28.0295 63.2989 28.8872Z' fill='white'/%3E%3Cpath d='M73.295 33.6416V24.1327H75.5711V25.2514L75.5338 25.9226H75.5711C75.8198 25.413 76.2303 24.9531 76.8024 24.5429C77.3746 24.1203 78.0897 23.909 78.9479 23.909C81.1619 23.909 82.2688 25.1147 82.2688 27.5261V33.6416H79.8994V28.0109C79.8994 27.3769 79.7875 26.8984 79.5636 26.5752C79.3522 26.2396 78.9666 26.0718 78.4069 26.0718C77.586 26.0718 76.9206 26.3701 76.4106 26.9668C75.9131 27.5634 75.6644 28.303 75.6644 29.1855V33.6416H73.295Z' fill='white'/%3E%3Cpath d='M83.9536 32.467L85.0171 30.9008C85.7758 31.5969 86.6775 31.9449 87.7223 31.9449C88.1452 31.9449 88.4686 31.8641 88.6924 31.7025C88.9288 31.5285 89.0469 31.2923 89.0469 30.994C89.0469 30.7206 88.8852 30.4844 88.5618 30.2855C88.2385 30.0866 87.8467 29.9064 87.3865 29.7448C86.9263 29.5832 86.4599 29.3968 85.9872 29.1855C85.527 28.9617 85.1352 28.6448 84.8118 28.2346C84.4885 27.8244 84.3268 27.3334 84.3268 26.7617C84.3268 25.8667 84.6688 25.1706 85.3529 24.6734C86.0494 24.1638 86.9201 23.909 87.9648 23.909C89.2832 23.909 90.3529 24.2695 91.1738 24.9904L90.2969 26.6498C90.0233 26.4136 89.6564 26.221 89.1962 26.0718C88.7484 25.9102 88.3131 25.8294 87.8902 25.8294C87.0071 25.8294 86.5656 26.134 86.5656 26.743C86.5656 27.0165 86.7273 27.2526 87.0506 27.4515C87.374 27.6504 87.7658 27.8306 88.226 27.9922C88.6987 28.1538 89.1651 28.3403 89.6253 28.5516C90.0855 28.7504 90.4773 29.055 90.8007 29.4651C91.124 29.8753 91.2857 30.3663 91.2857 30.9381C91.2857 31.7833 90.9561 32.4856 90.2969 33.0449C89.6377 33.5919 88.7671 33.8653 87.685 33.8653C86.1676 33.8653 84.9238 33.3992 83.9536 32.467Z' fill='white'/%3E%3Cpath d='M93.7117 30.155V26.1464H92.4803V24.2633H93.7677V21.5411H96.0811V24.2633H98.2453V26.1464H96.0811V29.8567C96.0811 30.5403 96.2739 31.0127 96.6594 31.2737C97.0575 31.5223 97.4928 31.6466 97.9654 31.6466C98.1271 31.6466 98.2701 31.6342 98.3945 31.6093V33.6789C98.0214 33.7162 97.7789 33.7348 97.6669 33.7348C97.3435 33.7348 97.0326 33.7099 96.7341 33.6602C96.4356 33.6229 96.0935 33.5297 95.708 33.3806C95.3224 33.2314 94.9866 33.0387 94.7005 32.8026C94.4269 32.554 94.1905 32.2059 93.9915 31.7585C93.805 31.2985 93.7117 30.7641 93.7117 30.155Z' fill='white'/%3E%3Cpath d='M100.205 33.6416V24.1327H102.481V25.8108L102.444 26.4633H102.481C102.705 25.7673 103.091 25.1831 103.638 24.7107C104.185 24.2384 104.807 24.0022 105.504 24.0022C105.603 24.0022 105.752 24.0147 105.951 24.0395V26.3701C105.827 26.3453 105.634 26.3328 105.373 26.3328C104.453 26.3328 103.756 26.6684 103.283 27.3396C102.811 28.0109 102.575 28.8312 102.575 29.8008V33.6416H100.205Z' fill='white'/%3E%3Cpath d='M107.509 30.2482V24.1327H109.878V29.7635C109.878 30.3974 109.984 30.8822 110.195 31.2178C110.419 31.5409 110.805 31.7025 111.352 31.7025C112.173 31.7025 112.82 31.3918 113.293 30.7703C113.778 30.1488 114.02 29.3906 114.02 28.4956V24.1327H116.371V33.6416H114.095V32.5229L114.151 31.8703H114.113C113.865 32.4048 113.442 32.8709 112.845 33.2687C112.248 33.6664 111.57 33.8653 110.811 33.8653C108.61 33.8653 107.509 32.6596 107.509 30.2482Z' fill='white'/%3E%3Cpath d='M118.356 28.8872C118.356 27.495 118.829 26.3204 119.774 25.3633C120.732 24.3938 121.982 23.909 123.524 23.909C124.208 23.909 124.88 24.0271 125.539 24.2633C126.198 24.4994 126.746 24.8537 127.181 25.326L126.118 26.9481C125.433 26.2645 124.613 25.9226 123.655 25.9226C122.797 25.9226 122.1 26.2085 121.565 26.7803C121.03 27.3396 120.763 28.0357 120.763 28.8685C120.763 29.7013 121.037 30.4098 121.584 30.994C122.131 31.5658 122.846 31.8517 123.729 31.8517C124.762 31.8517 125.695 31.4477 126.528 30.6398L127.442 32.3178C126.994 32.7901 126.416 33.1692 125.707 33.4551C125.011 33.7286 124.283 33.8653 123.524 33.8653C121.982 33.8653 120.732 33.393 119.774 32.4483C118.829 31.4912 118.356 30.3042 118.356 28.8872Z' fill='white'/%3E%3Cpath d='M129.622 30.155V26.1464H128.391V24.2633H129.678V21.5411H131.992V24.2633H134.156V26.1464H131.992V29.8567C131.992 30.5403 132.184 31.0127 132.57 31.2737C132.968 31.5223 133.403 31.6466 133.876 31.6466C134.038 31.6466 134.181 31.6342 134.305 31.6093V33.6789C133.932 33.7162 133.689 33.7348 133.577 33.7348C133.254 33.7348 132.943 33.7099 132.645 33.6602C132.346 33.6229 132.004 33.5297 131.619 33.3806C131.233 33.2314 130.897 33.0387 130.611 32.8026C130.337 32.554 130.101 32.2059 129.902 31.7585C129.716 31.2985 129.622 30.7641 129.622 30.155Z' fill='white'/%3E%3Cpath d='M136.957 32.467C135.95 31.5223 135.446 30.329 135.446 28.8872C135.446 27.4453 135.95 26.2583 136.957 25.326C137.965 24.3813 139.196 23.909 140.651 23.909C142.119 23.909 143.357 24.3813 144.364 25.326C145.384 26.2583 145.894 27.4453 145.894 28.8872C145.894 30.329 145.39 31.5223 144.383 32.467C143.375 33.3992 142.138 33.8653 140.67 33.8653C139.202 33.8653 137.965 33.3992 136.957 32.467ZM137.853 28.8872C137.853 29.7572 138.12 30.472 138.655 31.0313C139.202 31.5782 139.874 31.8517 140.67 31.8517C141.466 31.8517 142.138 31.5782 142.685 31.0313C143.232 30.472 143.506 29.7572 143.506 28.8872C143.506 28.0295 143.226 27.321 142.666 26.7617C142.119 26.2023 141.454 25.9226 140.67 25.9226C139.887 25.9226 139.221 26.2023 138.674 26.7617C138.127 27.321 137.853 28.0295 137.853 28.8872Z' fill='white'/%3E%3Cpath d='M147.849 33.6416V24.1327H150.125V25.8108L150.088 26.4633H150.125C150.349 25.7673 150.735 25.1831 151.282 24.7107C151.829 24.2384 152.451 24.0022 153.148 24.0022C153.247 24.0022 153.396 24.0147 153.595 24.0395V26.3701C153.471 26.3453 153.278 26.3328 153.017 26.3328C152.097 26.3328 151.4 26.6684 150.927 27.3396C150.455 28.0109 150.218 28.8312 150.218 29.8008V33.6416H147.849Z' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header__menu {
  display: flex;
  -moz-column-gap: 42px;
  column-gap: 42px;
  align-items: center;
}

.header__menu li a {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s all;
}

.header__menu li a:hover {
  color: var(--accent);
}

.header__hamburger {
  display: none;
}

.header__hamburger span {
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s all;
  border-radius: 2px;
}

.header__hamburger :first-child {
  width: 80%;
}

.header__hamburger :nth-child(2) {
  width: 60%;
}

#header-sticky-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-sticky .header {
  background: #000;
}

.header__hamburger.is-active span:nth-child(1) {
  transform: translate(0px, 10px) rotate(45deg);
  width: 100%;
}

.header__hamburger.is-active span:nth-child(2) {
  width: 100%;
  transform: translate(0px, -7px) rotate(-45deg);
}

.header__hamburger.is-active span:nth-child(3) {
  display: none;
}

._black {
  background: #000 !important;
}

.hero {
  padding: 211px 0 calc(var(--sp) + 129px);
  background: url("../img/hero__bg.webp") center/cover no-repeat;
}

.hero__title {
  margin-left: 217px;
}

.hero__subtitle {
  position: relative;
  display: block;
}

.hero__subtitle p {
  position: absolute;
  display: block;
  bottom: 0;
  right: 17%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(3.5px);
  backdrop-filter: blur(3.5px);
  transform: translate3d(0, 0, 0);
  color: #FFF;
  font-size: var(--m);
  font-weight: 400;
  padding: 16px 24px;
  max-width: 427px;
}

.about {
  padding: var(--sp) 0;
}

.about__container {
  display: flex;
  -moz-column-gap: 135px;
  column-gap: 135px;
  justify-content: center;
  align-items: flex-start;
}

.about__btn {
  padding: 6px 12px 6px 10px;
  border-radius: 6px;
  background: var(--accent);
  color: #FFF;
  font-size: 32px;
  display: flex;
  font-weight: 600;
  text-transform: uppercase;
}

.about__btn::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin-right: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='35' viewBox='0 0 35 35' fill='none'%3E%3Cg clip-path='url(%23clip0_295_1348)'%3E%3Crect x='34.5' y='0.5' width='34' height='34' rx='4' transform='rotate(90 34.5 0.5)' fill='white'/%3E%3Cpath d='M25.707 9.20704L22.6075 9.20704L22.5965 21.4842L9.22018 8.10792L7.02193 10.3062L20.3982 23.6825L8.12106 23.6715V26.793H25.707V9.20704Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_295_1348'%3E%3Crect x='34.5' y='0.5' width='34' height='34' rx='4' transform='rotate(90 34.5 0.5)' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat;
}

.about__text {
  max-width: 555px;
  width: 100%;
  color: #000;
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
}

.bc-ticker {
  pointer-events: none;
  padding: 14.5px 0;
  background: #F9F9F9;
}

.bc-ticker__swiper {
  width: 100%;
  overflow: hidden;
}

.bc-ticker__wrapper.swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
}

.bc-ticker__slide {
  width: auto;
  flex: 0 0 auto;
  display: inline-block;
}

.bc-ticker__string {
  width: auto;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.bc-ticker__icon {
  display: block;
  height: 36px;
  width: 36px;
}

.bc-ticker__text {
  padding-left: 30px;
  font-weight: 900;
  font-size: 24px;
  background: url(../img/logo_bc.svg) center/contain no-repeat;
  width: 374px;
  height: 29px;
}

.companies {
  padding: var(--sp) 0;
}

.companies__title {
  color: #252525;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 23px;
}

.companies__title b {
  color: var(--accent);
}

.companies__block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.companies__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #F4F4FA;
  background: #FFF;
}

.companies__item_top {
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 86px;
  padding: 10px;
}

.companies__item_bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 37px;
  width: 100%;
  background: #FAFAFF;
  min-height: 212px;
}

.companies__logo {
  display: block;
  width: 278px;
  height: 66px;
  background: center/contain no-repeat;
}

.companies__description {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.companies__link {
  font: 600 16px "Raleway";
  margin-top: 18px;
  border-radius: 28px;
  border: 1px solid #2834D9;
  background: #FFF;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  color: var(--accent);
  transition: 0.3s all;
}

.companies__link::after {
  content: "";
  display: block;
  margin-left: 10px;
  height: 19px;
  width: 19px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='11' viewBox='0 0 20 11' fill='none'%3E%3Cpath d='M1 4.8C0.613401 4.8 0.3 5.1134 0.3 5.5C0.3 5.8866 0.613401 6.2 1 6.2L1 4.8ZM19.495 5.99497C19.7683 5.72161 19.7683 5.27839 19.495 5.00502L15.0402 0.550251C14.7668 0.276884 14.3236 0.276884 14.0503 0.550251C13.7769 0.823619 13.7769 1.26683 14.0503 1.5402L18.01 5.5L14.0503 9.4598C13.7769 9.73316 13.7769 10.1764 14.0503 10.4497C14.3236 10.7231 14.7668 10.7231 15.0402 10.4497L19.495 5.99497ZM1 6.2L19 6.2L19 4.8L1 4.8L1 6.2Z' fill='%232834D9'/%3E%3C/svg%3E") center/contain no-repeat;
}

.companies__link:hover {
  color: #FFF;
  background: var(--accent);
}

.companies__link:hover::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='11' viewBox='0 0 20 11' fill='none'%3E%3Cpath d='M1 4.8C0.613401 4.8 0.3 5.1134 0.3 5.5C0.3 5.8866 0.613401 6.2 1 6.2L1 4.8ZM19.495 5.99497C19.7683 5.72161 19.7683 5.27839 19.495 5.00502L15.0402 0.550251C14.7668 0.276884 14.3236 0.276884 14.0503 0.550251C13.7769 0.823619 13.7769 1.26683 14.0503 1.5402L18.01 5.5L14.0503 9.4598C13.7769 9.73316 13.7769 10.1764 14.0503 10.4497C14.3236 10.7231 14.7668 10.7231 15.0402 10.4497L19.495 5.99497ZM1 6.2L19 6.2L19 4.8L1 4.8L1 6.2Z' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
}

.mission {
  padding: var(--sp) 0;
}

.mission__text {
  max-width: 591px;
}

.world {
  padding-bottom: 150px;
}

.world__title {
  color: #252525;
  font-size: 74px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 45px;
}

.world__title b {
  color: var(--accent);
}

.world.swiper-slide {
  width: 100%;
  height: auto;
}

.world__item {
  display: grid;
  grid-template-columns: 697px 428px;
  grid-template-rows: 201px 201px;
  -moz-column-gap: 27px;
  column-gap: 27px;
  row-gap: 13px;
  justify-content: center;
}

.world__photo {
  width: 100%;
  height: 100%;
  background: center/cover no-repeat;
}

.world__photo:first-child {
  grid-row-start: 1;
  grid-row-end: 4;
}

.world__photo:nth-child(3) {
  grid-row-start: 2;
  grid-row-end: 4;
}

.world__block {
  position: relative;
}

.swiper-pagination {
  bottom: -80px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(41, 56, 255, 0.2);
  transform: scale(0.8) !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
  transform: scale(1) !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  font-size: 0;
}

.swiper-button-prev {
  left: 21px;
  background: url("data:image/svg+xml,%3Csvg width='49' height='48' viewBox='0 0 49 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' width='48' height='48' rx='24' fill='%232938FF'/%3E%3Cpath d='M30.485 15.9675L22.4525 24L30.485 32.0325L28 34.5L17.5 24L28 13.5L30.485 15.9675Z' fill='white'/%3E%3C/svg%3E%0A") center/contain no-repeat;
}

.swiper-button-next {
  right: 21px;
  background: url("data:image/svg+xml,%3Csvg width='49' height='48' viewBox='0 0 49 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='48' height='48' rx='24' transform='matrix(-1 0 0 1 48.5 0)' fill='%232938FF'/%3E%3Cpath d='M18.515 15.9675L26.5475 24L18.515 32.0325L21 34.5L31.5 24L21 13.5L18.515 15.9675Z' fill='white'/%3E%3C/svg%3E%0A") center/contain no-repeat;
}

.footer__main {
  background: #101010;
  padding: 45px 0 34px;
}

.footer__block {
  display: flex;
  justify-content: space-between;
}

.footer__logo {
  display: block;
  width: 177px;
  height: 44px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22178%22%20height%3D%2244%22%20viewBox%3D%220%200%20178%2044%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M44.501%2028.4999V19.5L39.9893%2016.5V7L30.5559%201L25.4291%204.7L17.8414%200L8.9207%206.4V8.39999L0%2014.9V23.8999L5.12684%2027.2V36.9999L14.5602%2042.9999L19.8921%2039.2L27.4799%2044L36.4005%2037.6V34.6L44.501%2028.4999ZM9.63846%2016.5V9.29999L16.816%204.1V11.4L9.63846%2016.5ZM17.9439%2011.3V3.99999L26.1469%209.29999V16.3L17.9439%2011.3ZM10.3562%2031.8L17.8414%2026.3999L25.7367%2031.4001L18.2516%2036.7999L10.3562%2031.8ZM17.2262%2018.4V25.4999L9.94607%2030.7999V23.7L17.2262%2018.4ZM9.94607%2017.5L17.4312%2012.2L25.7367%2017.1L22.353%2019.6L17.8414%2016.8L13.6374%2019.8L9.94607%2017.5ZM8.81815%2028.4001L1.43552%2023.6001L9.02324%2018.2L12.7145%2020.3999L8.81815%2023.1999V28.4001ZM26.0443%2027.7V30.4L18.3541%2025.4999V18.3L21.8404%2020.5V24.9999L26.0443%2027.7ZM8.61309%2010V17.2L1.1279%2022.4999V15.4L8.61309%2010ZM18.8668%2038.5L14.4577%2041.7L6.56235%2036.7001L10.9714%2033.5001L18.8668%2038.5ZM34.8625%2037.3L27.3772%2042.7001L19.0718%2037.4001L26.557%2032L34.8625%2037.3ZM39.9893%2025.3V17.8L43.4755%2020.1V27.2999L39.9893%2025.3ZM31.0687%2010V2.6L38.8614%207.6V15.2L31.0687%2010ZM31.0687%2018.5V11.2L38.8614%2016.3V23.3999L37.0157%2022.2001L31.0687%2018.5ZM38.5538%2024.5001L31.1712%2029.8001L23.2758%2024.7999L30.5559%2019.5L38.5538%2024.5001ZM27.0696%2028.4001L31.1712%2030.9999L35.2727%2028.1V29.1001V36.4L27.0696%2031.1999V28.4001ZM38.6564%2025.6999L43.0654%2028.3L36.4005%2033.2V28.6V27.2999L38.6564%2025.6999ZM24.5064%205.39999L23.3783%206.2L18.3541%203V1.5L24.5064%205.39999Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M56.3338%2019.7114V4.38345H61.7992C63.225%204.38345%2064.3699%204.73606%2065.234%205.44129C66.1125%206.13213%2066.5518%207.09642%2066.5518%208.33417C66.5518%209.05379%2066.3861%209.70145%2066.0549%2010.2772C65.7237%2010.8528%2065.27%2011.299%2064.6939%2011.6156V11.6588C65.5004%2011.8891%2066.1125%2012.3425%2066.5302%2013.0189C66.9622%2013.6954%2067.1782%2014.4438%2067.1782%2015.2641C67.1782%2016.7178%2066.6742%2017.826%2065.6661%2018.5888C64.6579%2019.3372%2063.3978%2019.7114%2061.8856%2019.7114H56.3338ZM59.1205%2010.6442H61.8208C62.4113%2010.6442%2062.8721%2010.4643%2063.2034%2010.1044C63.549%209.73024%2063.7218%209.25529%2063.7218%208.67959C63.7218%208.11829%2063.549%207.66492%2063.2034%207.3195C62.8721%206.95969%2062.3969%206.77979%2061.7776%206.77979H59.1205V10.6442ZM59.1205%2017.3151H62.1016C62.7929%2017.3151%2063.333%2017.1136%2063.7218%2016.7106C64.1251%2016.2932%2064.3267%2015.7535%2064.3267%2015.0914C64.3267%2014.4438%2064.1251%2013.9184%2063.7218%2013.5155C63.333%2013.0981%2062.7929%2012.8894%2062.1016%2012.8894H59.1205V17.3151Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M69.4018%2015.7823V8.70118H72.1453V15.221C72.1453%2015.955%2072.2677%2016.5163%2072.5125%2016.9049C72.7718%2017.2791%2073.2182%2017.4662%2073.8519%2017.4662C74.8024%2017.4662%2075.5513%2017.1064%2076.0986%2016.3867C76.6602%2015.6671%2076.9411%2014.7892%2076.9411%2013.7529V8.70118H79.663V19.7114H77.0275V18.4161L77.0923%2017.6605H77.0491C76.761%2018.2794%2076.2714%2018.8191%2075.5801%2019.2796C74.8888%2019.7402%2074.1039%2019.9705%2073.2254%2019.9705C70.6763%2019.9705%2069.4018%2018.5744%2069.4018%2015.7823Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M81.7459%2018.3513L82.9773%2016.5379C83.8558%2017.3438%2084.8999%2017.7468%2086.1096%2017.7468C86.5993%2017.7468%2086.9737%2017.6533%2087.233%2017.4662C87.5066%2017.2647%2087.6434%2016.9912%2087.6434%2016.6458C87.6434%2016.3292%2087.4562%2016.0557%2087.0818%2015.8254C86.7073%2015.5952%2086.2537%2015.3865%2085.7208%2015.1994C85.1879%2015.0123%2084.6479%2014.7964%2084.1006%2014.5517C83.5677%2014.2926%2083.1141%2013.9256%2082.7397%2013.4507C82.3652%2012.9757%2082.178%2012.4072%2082.178%2011.7452C82.178%2010.7089%2082.574%209.90295%2083.3661%209.32725C84.1726%208.73716%2085.1807%208.44212%2086.3905%208.44212C87.9171%208.44212%2089.1556%208.8595%2090.1061%209.69426L89.0908%2011.6156C88.774%2011.3422%2088.3491%2011.1191%2087.8162%2010.9464C87.2978%2010.7593%2086.7937%2010.6657%2086.3041%2010.6657C85.2815%2010.6657%2084.7703%2011.0184%2084.7703%2011.7236C84.7703%2012.0402%2084.9575%2012.3137%2085.332%2012.544C85.7064%2012.7742%2086.1601%2012.9829%2086.6929%2013.17C87.2402%2013.3571%2087.7802%2013.573%2088.3131%2013.8177C88.846%2014.048%2089.2996%2014.4006%2089.6741%2014.8755C90.0485%2015.3505%2090.2357%2015.919%2090.2357%2016.581C90.2357%2017.5597%2089.8541%2018.3729%2089.0908%2019.0206C88.3275%2019.6538%2087.3194%2019.9705%2086.0664%2019.9705C84.3094%2019.9705%2082.8693%2019.4307%2081.7459%2018.3513Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M92.5047%206.82297V4.38345H95.2482V6.82297H92.5047ZM92.5047%2019.7114V8.70118H95.2482V19.7114H92.5047Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M98.1796%2019.7114V8.70118H100.815V9.9965L100.772%2010.7737H100.815C101.103%2010.1836%20101.578%209.65108%20102.241%209.17613C102.903%208.68679%20103.731%208.44212%20104.725%208.44212C107.289%208.44212%20108.57%209.83818%20108.57%2012.6303V19.7114H105.827V13.1916C105.827%2012.4576%20105.697%2011.9035%20105.438%2011.5293C105.193%2011.1407%20104.747%2010.9464%20104.099%2010.9464C103.148%2010.9464%20102.378%2011.2918%20101.787%2011.9827C101.211%2012.6735%20100.923%2013.5298%20100.923%2014.5517V19.7114H98.1796Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M110.737%2014.2063C110.737%2012.508%20111.256%2011.1263%20112.293%2010.0613C113.344%208.98183%20114.698%208.44212%20116.354%208.44212C117.88%208.44212%20119.076%208.93865%20119.94%209.93173C120.804%2010.9104%20121.236%2012.1554%20121.236%2013.6666C121.236%2013.9112%20121.207%2014.2639%20121.15%2014.7244H113.567C113.654%2015.6455%20114.006%2016.3652%20114.626%2016.8833C115.245%2017.387%20115.994%2017.6389%20116.872%2017.6389C117.967%2017.6389%20119.018%2017.2359%20120.026%2016.4299L121.106%2018.3945C120.559%2018.8838%20119.882%2019.2724%20119.076%2019.5603C118.284%2019.8337%20117.484%2019.9705%20116.678%2019.9705C114.906%2019.9705%20113.474%2019.4164%20112.379%2018.3081C111.284%2017.1855%20110.737%2015.8182%20110.737%2014.2063ZM113.632%2012.8462H118.493C118.478%2012.1266%20118.262%2011.5581%20117.844%2011.1407C117.441%2010.7233%20116.923%2010.5146%20116.289%2010.5146C115.598%2010.5146%20115.015%2010.7305%20114.539%2011.1623C114.064%2011.5797%20113.762%2012.141%20113.632%2012.8462Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M122.63%2018.3513L123.862%2016.5379C124.74%2017.3438%20125.784%2017.7468%20126.994%2017.7468C127.484%2017.7468%20127.858%2017.6533%20128.117%2017.4662C128.391%2017.2647%20128.528%2016.9912%20128.528%2016.6458C128.528%2016.3292%20128.341%2016.0557%20127.966%2015.8254C127.592%2015.5952%20127.138%2015.3865%20126.605%2015.1994C126.072%2015.0123%20125.532%2014.7964%20124.985%2014.5517C124.452%2014.2926%20123.999%2013.9256%20123.624%2013.4507C123.25%2012.9757%20123.062%2012.4072%20123.062%2011.7452C123.062%2010.7089%20123.459%209.90295%20124.251%209.32725C125.057%208.73716%20126.065%208.44212%20127.275%208.44212C128.802%208.44212%20130.04%208.8595%20130.991%209.69426L129.975%2011.6156C129.658%2011.3422%20129.234%2011.1191%20128.701%2010.9464C128.182%2010.7593%20127.678%2010.6657%20127.189%2010.6657C126.166%2010.6657%20125.655%2011.0184%20125.655%2011.7236C125.655%2012.0402%20125.842%2012.3137%20126.216%2012.544C126.591%2012.7742%20127.045%2012.9829%20127.577%2013.17C128.125%2013.3571%20128.665%2013.573%20129.198%2013.8177C129.73%2014.048%20130.184%2014.4006%20130.559%2014.8755C130.933%2015.3505%20131.12%2015.919%20131.12%2016.581C131.12%2017.5597%20130.739%2018.3729%20129.975%2019.0206C129.212%2019.6538%20128.204%2019.9705%20126.951%2019.9705C125.194%2019.9705%20123.754%2019.4307%20122.63%2018.3513Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M132.503%2018.3513L133.735%2016.5379C134.613%2017.3438%20135.657%2017.7468%20136.867%2017.7468C137.357%2017.7468%20137.731%2017.6533%20137.99%2017.4662C138.264%2017.2647%20138.401%2016.9912%20138.401%2016.6458C138.401%2016.3292%20138.214%2016.0557%20137.839%2015.8254C137.465%2015.5952%20137.011%2015.3865%20136.478%2015.1994C135.945%2015.0123%20135.405%2014.7964%20134.858%2014.5517C134.325%2014.2926%20133.872%2013.9256%20133.497%2013.4507C133.123%2012.9757%20132.935%2012.4072%20132.935%2011.7452C132.935%2010.7089%20133.332%209.90295%20134.124%209.32725C134.93%208.73716%20135.938%208.44212%20137.148%208.44212C138.675%208.44212%20139.913%208.8595%20140.864%209.69426L139.848%2011.6156C139.531%2011.3422%20139.107%2011.1191%20138.574%2010.9464C138.055%2010.7593%20137.551%2010.6657%20137.062%2010.6657C136.039%2010.6657%20135.528%2011.0184%20135.528%2011.7236C135.528%2012.0402%20135.715%2012.3137%20136.089%2012.544C136.464%2012.7742%20136.918%2012.9829%20137.45%2013.17C137.998%2013.3571%20138.538%2013.573%20139.071%2013.8177C139.603%2014.048%20140.057%2014.4006%20140.432%2014.8755C140.806%2015.3505%20140.993%2015.919%20140.993%2016.581C140.993%2017.5597%20140.612%2018.3729%20139.848%2019.0206C139.085%2019.6538%20138.077%2019.9705%20136.824%2019.9705C135.067%2019.9705%20133.627%2019.4307%20132.503%2018.3513Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M55.4481%2031.2247C55.4481%2028.9795%2056.1897%2027.1085%2057.6731%2025.6117C59.1565%2024.1149%2061.0431%2023.3665%2063.333%2023.3665C65.6661%2023.3665%2067.5527%2024.0645%2068.9928%2025.4606L67.6535%2027.5331C67.0918%2027.0581%2066.4293%2026.6695%2065.6661%2026.3673C64.9172%2026.065%2064.1827%2025.9139%2063.4626%2025.9139C61.8496%2025.9139%2060.5895%2026.4177%2059.6822%2027.4251C58.7748%2028.4326%2058.3212%2029.6847%2058.3212%2031.1815C58.3212%2032.6928%2058.782%2033.9881%2059.7038%2035.0675C60.6255%2036.1326%2061.8856%2036.6651%2063.4842%2036.6651C65.126%2036.6651%2066.6094%2036.0174%2067.9343%2034.7221L69.4033%2036.7298C67.7759%2038.385%2065.7669%2039.2125%2063.3762%2039.2125C60.9999%2039.2125%2059.0845%2038.4569%2057.6299%2036.9457C56.1753%2035.4345%2055.4481%2033.5275%2055.4481%2031.2247Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M72.2565%2037.5934C71.09%2036.4996%2070.5067%2035.1179%2070.5067%2033.4484C70.5067%2031.7788%2071.09%2030.4044%2072.2565%2029.3249C73.4231%2028.2311%2074.8488%2027.6842%2076.5338%2027.6842C78.2332%2027.6842%2079.6662%2028.2311%2080.8327%2029.3249C82.0137%2030.4044%2082.6041%2031.7788%2082.6041%2033.4484C82.6041%2035.1179%2082.0209%2036.4996%2080.8543%2037.5934C79.6878%2038.6728%2078.2548%2039.2125%2076.5554%2039.2125C74.856%2039.2125%2073.4231%2038.6728%2072.2565%2037.5934ZM73.2934%2033.4484C73.2934%2034.4558%2073.6031%2035.2834%2074.2223%2035.9311C74.856%2036.5643%2075.6337%2036.881%2076.5554%2036.881C77.4771%2036.881%2078.2548%2036.5643%2078.8885%2035.9311C79.5222%2035.2834%2079.839%2034.4558%2079.839%2033.4484C79.839%2032.4553%2079.515%2031.6349%2078.8669%2030.9873C78.2332%2030.3396%2077.4627%2030.0158%2076.5554%2030.0158C75.6481%2030.0158%2074.8776%2030.3396%2074.2439%2030.9873C73.6103%2031.6349%2073.2934%2032.4553%2073.2934%2033.4484Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M84.8678%2038.9535V27.9432H87.5033V29.2386L87.4601%2030.0158H87.5033C87.7914%2029.4257%2088.2666%2028.8932%2088.9291%2028.4182C89.5916%2027.9289%2090.4197%2027.6842%2091.4134%2027.6842C93.9769%2027.6842%2095.2587%2029.0803%2095.2587%2031.8724V38.9535H92.5151V32.4337C92.5151%2031.6997%2092.3855%2031.1456%2092.1263%2030.7714C91.8815%2030.3828%2091.435%2030.1885%2090.7869%2030.1885C89.8364%2030.1885%2089.0659%2030.5339%2088.4755%2031.2247C87.8994%2031.9156%2087.6114%2032.7719%2087.6114%2033.7938V38.9535H84.8678Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M97.2095%2037.5934L98.4408%2035.7799C99.3193%2036.5859%20100.363%2036.9889%20101.573%2036.9889C102.063%2036.9889%20102.437%2036.8954%20102.697%2036.7083C102.97%2036.5068%20103.107%2036.2333%20103.107%2035.8879C103.107%2035.5712%20102.92%2035.2978%20102.545%2035.0675C102.171%2034.8372%20101.717%2034.6285%20101.184%2034.4414C100.651%2034.2543%20100.111%2034.0384%2099.5641%2033.7938C99.0313%2033.5347%2098.5776%2033.1677%2098.2032%2032.6928C97.8287%2032.2178%2097.6415%2031.6493%2097.6415%2030.9873C97.6415%2029.951%2098.0376%2029.145%2098.8297%2028.5693C99.6362%2027.9792%20100.644%2027.6842%20101.854%2027.6842C103.381%2027.6842%20104.619%2028.1016%20105.57%2028.9363L104.554%2030.8577C104.237%2030.5843%20103.813%2030.3612%20103.28%2030.1885C102.761%2030.0014%20102.257%2029.9078%20101.768%2029.9078C100.745%2029.9078%20100.234%2030.2604%20100.234%2030.9657C100.234%2031.2823%20100.421%2031.5558%20100.795%2031.786C101.17%2032.0163%20101.624%2032.225%20102.156%2032.4121C102.704%2032.5992%20103.244%2032.8151%20103.777%2033.0598C104.309%2033.29%20104.763%2033.6427%20105.138%2034.1176C105.512%2034.5926%20105.699%2035.1611%20105.699%2035.8231C105.699%2036.8018%20105.318%2037.615%20104.554%2038.2626C103.791%2038.8959%20102.783%2039.2125%20101.53%2039.2125C99.773%2039.2125%2098.3328%2038.6728%2097.2095%2037.5934Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M108.508%2034.9164V30.2748H107.082V28.0944H108.573V24.9424H111.252V28.0944H113.758V30.2748H111.252V34.571C111.252%2035.3626%20111.475%2035.9095%20111.921%2036.2117C112.382%2036.4996%20112.886%2036.6435%20113.434%2036.6435C113.621%2036.6435%20113.786%2036.6291%20113.93%2036.6003V38.9966C113.498%2039.0398%20113.218%2039.0614%20113.088%2039.0614C112.714%2039.0614%20112.354%2039.0326%20112.008%2038.9751C111.662%2038.9319%20111.266%2038.8239%20110.82%2038.6512C110.373%2038.4785%20109.984%2038.2554%20109.653%2037.982C109.336%2037.6941%20109.063%2037.2911%20108.832%2036.773C108.616%2036.2405%20108.508%2035.6216%20108.508%2034.9164Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M116.027%2038.9535V27.9432H118.662V29.8862L118.619%2030.6418H118.662C118.922%2029.8359%20119.368%2029.1594%20120.002%2028.6125C120.635%2028.0656%20121.356%2027.7921%20122.162%2027.7921C122.277%2027.7921%20122.45%2027.8065%20122.681%2027.8353V30.5339C122.537%2030.5051%20122.313%2030.4907%20122.011%2030.4907C120.945%2030.4907%20120.139%2030.8793%20119.591%2031.6565C119.044%2032.4337%20118.77%2033.3836%20118.77%2034.5062V38.9535H116.027Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M124.484%2035.0243V27.9432H127.228V34.463C127.228%2035.197%20127.35%2035.7583%20127.595%2036.1469C127.854%2036.5211%20128.3%2036.7083%20128.934%2036.7083C129.885%2036.7083%20130.634%2036.3484%20131.181%2035.6288C131.742%2034.9092%20132.023%2034.0313%20132.023%2032.995V27.9432H134.745V38.9535H132.11V37.6581L132.175%2036.9025H132.131C131.843%2037.5214%20131.354%2038.0611%20130.662%2038.5217C129.971%2038.9823%20129.186%2039.2125%20128.308%2039.2125C125.759%2039.2125%20124.484%2037.8165%20124.484%2035.0243Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M137.044%2033.4484C137.044%2031.8364%20137.591%2030.4763%20138.686%2029.3681C139.795%2028.2455%20141.242%2027.6842%20143.028%2027.6842C143.82%2027.6842%20144.598%2027.8209%20145.361%2028.0944C146.124%2028.3678%20146.758%2028.778%20147.262%2029.3249L146.031%2031.2031C145.239%2030.4116%20144.288%2030.0158%20143.179%2030.0158C142.186%2030.0158%20141.379%2030.3468%20140.76%2031.0088C140.141%2031.6565%20139.831%2032.4625%20139.831%2033.4268C139.831%2034.3911%20140.148%2035.2114%20140.781%2035.8879C141.415%2036.5499%20142.243%2036.881%20143.266%2036.881C144.461%2036.881%20145.541%2036.4132%20146.506%2035.4777L147.565%2037.4207C147.046%2037.9676%20146.376%2038.4066%20145.556%2038.7376C144.749%2039.0542%20143.907%2039.2125%20143.028%2039.2125C141.242%2039.2125%20139.795%2038.6656%20138.686%2037.5718C137.591%2036.4636%20137.044%2035.0891%20137.044%2033.4484Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M150.089%2034.9164V30.2748H148.663V28.0944H150.154V24.9424H152.832V28.0944H155.338V30.2748H152.832V34.571C152.832%2035.3626%20153.056%2035.9095%20153.502%2036.2117C153.963%2036.4996%20154.467%2036.6435%20155.014%2036.6435C155.202%2036.6435%20155.367%2036.6291%20155.511%2036.6003V38.9966C155.079%2039.0398%20154.798%2039.0614%20154.669%2039.0614C154.294%2039.0614%20153.934%2039.0326%20153.589%2038.9751C153.243%2038.9319%20152.847%2038.8239%20152.4%2038.6512C151.954%2038.4785%20151.565%2038.2554%20151.234%2037.982C150.917%2037.6941%20150.643%2037.2911%20150.413%2036.773C150.197%2036.2405%20150.089%2035.6216%20150.089%2034.9164Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M158.582%2037.5934C157.416%2036.4996%20156.832%2035.1179%20156.832%2033.4484C156.832%2031.7788%20157.416%2030.4044%20158.582%2029.3249C159.749%2028.2311%20161.175%2027.6842%20162.86%2027.6842C164.559%2027.6842%20165.992%2028.2311%20167.158%2029.3249C168.339%2030.4044%20168.93%2031.7788%20168.93%2033.4484C168.93%2035.1179%20168.347%2036.4996%20167.18%2037.5934C166.014%2038.6728%20164.581%2039.2125%20162.881%2039.2125C161.182%2039.2125%20159.749%2038.6728%20158.582%2037.5934ZM159.619%2033.4484C159.619%2034.4558%20159.929%2035.2834%20160.548%2035.9311C161.182%2036.5643%20161.959%2036.881%20162.881%2036.881C163.803%2036.881%20164.581%2036.5643%20165.214%2035.9311C165.848%2035.2834%20166.165%2034.4558%20166.165%2033.4484C166.165%2032.4553%20165.841%2031.6349%20165.193%2030.9873C164.559%2030.3396%20163.788%2030.0158%20162.881%2030.0158C161.974%2030.0158%20161.203%2030.3396%20160.57%2030.9873C159.936%2031.6349%20159.619%2032.4553%20159.619%2033.4484Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M171.194%2038.9535V27.9432H173.829V29.8862L173.786%2030.6418H173.829C174.088%2029.8359%20174.535%2029.1594%20175.168%2028.6125C175.802%2028.0656%20176.522%2027.7921%20177.329%2027.7921C177.444%2027.7921%20177.617%2027.8065%20177.847%2027.8353V30.5339C177.703%2030.5051%20177.48%2030.4907%20177.177%2030.4907C176.112%2030.4907%20175.305%2030.8793%20174.758%2031.6565C174.211%2032.4337%20173.937%2033.3836%20173.937%2034.5062V38.9535H171.194Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A') center/contain no-repeat;
}

.footer__menu {
  margin-top: 29px;
  display: flex;
  -moz-column-gap: 136px;
  column-gap: 136px;
}

.footer__menu ul li {
  margin-bottom: 18px;
}

.footer__menu ul li a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.footer__menu ul li:last-child {
  margin-bottom: 0;
}

.footer__information {
  margin-top: 29px;
  display: flex;
  flex-direction: column;
}

.footer__phone {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
}

.footer__mail {
  display: flex;
  align-items: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.footer__mail::before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  margin-right: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='13' viewBox='0 0 17 13' fill='none'%3E%3Cpath d='M0.5 3.89317C1.51791 4.52301 2.53566 5.15286 3.55326 5.7827C5.01049 6.68681 6.46664 7.59248 7.92172 8.49971C8.31001 8.74318 8.67247 8.74036 9.06122 8.49971C11.4758 6.9986 13.8928 5.49983 16.3123 4.00341C16.3649 3.97057 16.4188 3.93961 16.5 3.89083V4.07471C16.5 6.05087 16.5 8.02702 16.5 10.0032C16.5 11.4616 15.4776 12.4969 14.0329 12.4978C10.6204 12.4994 7.20894 12.4994 3.79859 12.4978C3.34621 12.4978 2.88736 12.5152 2.44328 12.4467C1.44535 12.29 0.684459 11.4757 0.529974 10.4638C0.522706 10.4343 0.512668 10.4056 0.5 10.378C0.5 8.21638 0.5 6.05477 0.5 3.89317Z' fill='white'/%3E%3Cpath d='M8.5035 0.502929C10.3521 0.502929 12.2007 0.502929 14.0493 0.502929C14.9988 0.502929 15.7205 0.919019 16.1918 1.76246C16.2706 1.90319 16.314 2.06456 16.379 2.2142C16.4334 2.33898 16.3984 2.40653 16.2817 2.47877C14.0374 3.86824 11.7949 5.26068 9.554 6.65609C9.24318 6.84936 8.93052 7.03934 8.62294 7.2373C8.59156 7.26314 8.55257 7.27754 8.51221 7.27823C8.47184 7.27891 8.43241 7.26582 8.4002 7.24105C5.83376 5.64612 3.26593 4.05432 0.696721 2.46564C0.596652 2.40372 0.580973 2.34695 0.61187 2.23625C0.902854 1.19344 1.82008 0.504806 2.94205 0.500584C4.79587 0.499646 6.64968 0.500427 8.5035 0.502929Z' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
}

.footer__social {
  margin-top: 33px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.footer__menu-social {
  margin-top: 14px;
  display: flex;
  -moz-column-gap: 27px;
  column-gap: 27px;
}

.footer-bottom__text {
  margin-top: 36px;
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay .modal-content {
  margin-bottom: 0px;
  border-radius: 4px;
}

.modal-overlay .close-button {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: 0.2s linear;
}

.modal-overlay .close-button:before {
  background: #fff;
  content: "";
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(-45deg);
}

.modal-overlay .close-button:after {
  background: #fff;
  content: "";
  margin-top: -50px;
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(45deg);
  transition: 0.2s linear;
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#modal-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.countdownHolder {
  margin: 0 auto;
  font: 30px/1 Gilroy, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /*Параметры цифр */
  /*Параметры подложки для секций */
  /*Параметры секций разделения (:)*/
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.5em;
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: "";
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --h1: 70px;
    --h2: 50px;
    --m: 16px;
    --sp: 80px;
  }

  .hero {
    padding: 146px 0 calc(var(--sp) + 100px);
  }

  .hero__title {
    margin-left: 0;
  }

  .hero__subtitle p {
    max-width: 388px;
    right: 7%;
    bottom: -19px;
  }

  .about__container {
    -moz-column-gap: 100px;
    column-gap: 100px;
  }

  .about__btn {
    font-size: 28px;
  }

  .about__text {
    font-size: 26px;
    max-width: 370px;
  }

  .companies__block {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission__text {
    font-size: 24px;
  }

  .world__title {
    font-size: var(--h2);
  }

  .world__item {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    grid-template-rows: 307px 202px;
  }

  .world__photo:first-child {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    display: grid;
    grid-column-end: 4;
  }

  .world__photo:nth-child(3) {
    grid-row-start: auto;
    grid-row-end: auto;
  }

  .swiper-pagination {
    bottom: -55px !important;
  }

  .footer__menu {
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 360px;
    --h1: 42px;
    --m: 14px;
  }

  [class*=__container] {
    flex-wrap: wrap;
  }

  h1 b,
  ._h1 b {
    font-size: 48px;
  }

  .header__menu {
    justify-content: space-between;
    position: fixed;
    z-index: 1;
    top: 76px;
    left: 0;
    width: 100%;
    padding: 15px 0;
    transform: translateY(-200%);
    transition: transform 0.3s ease 0s;
    flex-direction: column;
    bottom: 0;
    background: #000;
    justify-content: center;
    row-gap: 38px;
  }

  .header__menu--active {
    transform: translateY(0%);
  }

  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    height: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 101;
  }

  .hero {
    padding: 126px 0 250px;
  }

  .hero__title {
    text-align: center;
  }

  .hero__subtitle p {
    position: static;
    max-width: 207px;
  }

  .hero__subtitle {
    margin-top: 7px;
  }

  .about__container {
    justify-content: flex-start;
    row-gap: 30px;
  }

  .about__btn {
    font-size: 24px;
    padding: 6px 10px 6px 8px;
  }

  .about__btn::before {
    width: 28px;
    height: 28px;
  }

  .about__text {
    font-size: 24px;
    line-height: 36px;
  }

  .bc-ticker {
    padding: 10px 0;
  }

  .bc-ticker__text {
    width: 316px;
    height: 24px;
  }

  .companies__block {
    grid-template-columns: 1fr;
  }

  .companies__item_top {
    height: 76px;
  }

  .companies__item_bottom {
    padding: 13px 29px 27px;
    min-height: auto;
    justify-content: baseline;
  }

  .companies__description {
    font-size: 14px;
  }

  .mission__text {
    font-size: 22px;
    text-align: center;
  }

  .mission__btn {
    margin: 0 auto;
  }

  .world__title {
    margin-bottom: 30px;
  }

  .world__item {
    grid-template-rows: 207px 102px;
  }

  .swiper-pagination {
    bottom: -45px !important;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 24px;
    height: 24px;
  }

  .footer__main {
    padding: 72px 0 70px;
  }

  .footer__block {
    flex-direction: column;
    justify-content: start;
  }

  .footer__menu {
    margin-top: 64px;
    -moz-column-gap: 69px;
    column-gap: 69px;
  }

  .footer__information {
    margin-top: 99px;
  }

  .footer-bottom__text {
    font-size: 11px;
  }
}