*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  margin: 0;
  margin-right: calc(100% - 100vw);
  color: #090a19;
  background-color: #ffffff;
  font: 400 16px/1.75 "Work Sans", "Helvetica Neue", Arial, sans-serif;

  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.body_overflow_hidden {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
p,
blockquote,
figure,
ol,
ul {
  margin: 0;
  padding: 0;
}
main,
li {
  display: block;
}
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  color: #090a19;
  font-size: inherit;
  font-weight: 400;
}
strong {
  font-weight: 500;
}
a,
button {
  color: inherit;
}
a {
  transition: color 0.25s;
  text-decoration: none;
}
button {
  overflow: visible;
  cursor: pointer;
  transition: 0.25s;
  letter-spacing: inherit;
  border: 0;
  background: none;

  -webkit-font-smoothing: inherit;
}
::-moz-focus-inner {
  padding: 0;
  border: 0;
}
:focus {
  outline: 0;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/* Tipography */
.text {
  margin-bottom: 20px;
  color: #4f555f;
}
.text a {
  color: #2fa6f8;
  text-decoration:none;
  font-weight:500;
}
.text a:hover,
.text a:focus  {
  text-decoration:underline;
}
.text:last-child {
  margin-bottom: 0;
}
.text_lg,
.text_xl {
  margin-bottom: 40px;
  font-size: 1.25rem;
  line-height: 1.5;
}
.text_md {
  color: #a0aac3;
  font-size: 0.875rem;
  line-height: 1.5;
}
.text_sm {
  color: #a0aac3;
  font-size: 0.75rem;
  line-height: 1.5;
}
h1, .h1 {
  margin-bottom: 10px;
  font-size: 1.875rem;
  line-height: 1.1875;
}
h2, .h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.25;
}
h3, .h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  line-height: 1.2;
}
h4, .h4 {
  margin-bottom: 18px;
  font-size: 1.25rem;
  line-height: 1.3;
}
h5, .h5 {
  font-size: 1.25rem;
  line-height: 1.5;
}
h6, .h6 {
  font-size: 1rem;
  line-height: 1.75;
}
p {
  margin: 0 0 20px;
}
p:last-child {
  margin-bottom: 0;
}
.list-styled {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.list-styled li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 35px;
  text-align: left;
}
[dir=rtl] .list-styled li {
  padding-right: 35px;
  padding-left: 0;
  text-align: right;
}
.list-styled li:before {
  position: absolute;
  top: 0.375em;
  left: 0;
  width: 22px;
  height: 16px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='16' viewBox='0 0 22 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.86 1.31L8.6 13.57 1.765 6.74' stroke-width='3' stroke='%232fa6f8' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
[dir=rtl] .list-styled li:before {
  right: 0;
  left: auto;
}
.text_lg .list-styled li {
  margin-bottom: 20px;
}
@media (min-width:768px) {
  .text_xl {
    margin-bottom: 40px;
    font-size: 1.5rem;
    line-height: 1.58333;
  }
  .text:last-child {
    margin-bottom: 0;
  }
  h1, .h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
  }
  h2, .h2 {
    margin-bottom: 25px;
    font-size: 2.5rem;
    line-height: 1.2;
  }
  h3, .h3 {
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.266667;
  }
  h4, .h4 {
    font-size: 1.5rem;
    line-height: 1.208333;
  }
}
@media (min-width:1201px) {
  h1, .h1 {
    font-size: 3.125rem;
  }
  .h1_sm {
    font-size: 3rem;
  }
}
@media (min-width:1440px) {
  h1, .h1 {
    font-size: 4rem;
  }
  .h1_sm {
    font-size: 3rem;
  }
}

/* Badges */
.badges {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  margin: 40px -15px 10px;
}
.badges:last-child {
  margin-bottom: -30px;
}
.badges__img {
  display:block;
  margin-left:15px;
  margin-right:15px;
  margin-bottom:30px;
  max-width:200px;
  transition:transform .25s ease-in-out;
}
.badges__img:hover {
  transform:scale(1.05);
}

/* Button */
.btn {
  display: inline-block;
  padding: 18px 30px 19px;
  transition: 0.5s ease-out;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  border: 2px solid #2fa6f8;
  border-radius: 6px;
  background-color: #2fa6f8;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}
.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none;
  color: #ffffff;
}
.btn:hover,
.btn:focus,
.btn:active {
  border-color: #2e9ce6;
  background-color: #2e9ce6;
}
.btn_outline {
  color: #2fa6f8;
  background: none;
}
.btn_outline:hover,
.btn_outline:focus,
.btn_outline:active {
  border-color: #2e9ce6;
  background-color: #2e9ce6;
}
.btn_sm {
  padding: 9px 22px 11px;
  font-size: 0.875rem;
}
@media (min-width:375px) {
  .btn {
    padding-right: 40px;
    padding-left: 40px;
  }
  .btn_sm {
    padding-right: 30px;
    padding-left: 30px;
  }
}

/* Platform icons */
.platform-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  margin: 30px auto 0;
  padding: 0 40px;
  list-style-type: none;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.platform-icons__icon {
  display: block;
  width: 22px;
  height: 22px;
}
.platform-icons_muted .platform-icons__icon {
  opacity: 0.5;
}

/* Layout */
.wrapper {
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
.wrapper_lg {
  max-width: 1440px;
}
.wrapper_sm {
  max-width: 870px;
}
.wrapper_xs {
  max-width: 760px;
}

/* Section */
.section {
  overflow-x: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
}
.section_bg_gray {
  background: #fafafa;
}
.section_border_bottom {
  border-bottom: 1px solid #e5e5e5;
}
.section_bg_plain_blue {
  background: #f2fafd;
}
.section_bg_blue {
  background: #cceeff url(../img/bg-blue.svg) 50% 100% no-repeat;
  background-size: cover;
}
.section_bg_light_blue {
  background: #f2faff url(../img/bg-light-blue.png) 50% 100% no-repeat;
  background-size: cover;
}
.section_bg_dark_blue {
  background: #010b19 url(../img/bg-dark-blue.svg) 70% 0 no-repeat;
}
@media
only screen and (-webkit-min-device-pixel-ratio: 1.25),
only screen and ( min--moz-device-pixel-ratio: 1.25),
only screen and ( min-device-pixel-ratio: 1.25),
only screen and ( -webkit-min-device-pixel-ratio: 2.0833333333333335),
only screen and ( min-resolution: 200dpi),
only screen and ( -webkit-min-device-pixel-ratio: 1.25),
only screen and ( min-resolution: 1.25dppx) {
  .section_bg_light_blue {
    background-image: url(../img/bg-light-blue@2x.png);
  }
}
.section__header {
  margin-bottom:20px;
  text-align:center;
}
.section__header-icon {
  display:block;
  margin: 0 auto 20px;
  width:64px;
  height:64px;
}
.section__title {
  max-width: 368px;
  margin-left: auto;
  margin-right: auto;
}
.section__action {
  text-align:center;
  margin-top: 40px;
}
@media (min-width:1024px) {
  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }
  .section_bg_dark_blue {
    background-position: 0 0;
    background-size: cover;
  }
  .section_standard,
  .section_standart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    min-height: 700px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .section_standard .wrapper,
  .section_standart .wrapper {
    width: 100%;
  }
  .wrapper_lg .section__title,
  .wrapper_md .section__title {
    max-width: 740px;
  }
  .wrapper_sm .section__title {
    max-width: 550px;
  }
}
.header {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100vw;
  padding: 0;
  transition: background 0.3s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.header a {
  color: inherit;
}
.header_scrolled {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
}
.header__wrapper {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
  max-width: 1170px;
  height: 60px;
  margin: 0 auto;
  padding: 0 30px;
  transition: 0.3s;
  color: #ffffff;

  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.header_scrolled .header__wrapper {
  height: 60px;
  color: #090a19;
}
.header__logo {
  -ms-flex: 1;
  -webkit-box-flex: 1;
  flex: 1 1 0;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

[dir=rtl] .header__logo {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.header__menu {
  display: none;
}

[dir=rtl] .header__menu {
  padding-right: 40px;
}
.header__auth-menu {
  -ms-flex: 1;
  -webkit-box-flex: 1;
  flex: 1 1 0;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.header__progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  color: #2fa6f8;
  border: none;
  background-color: #ffffff;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.header__progress:not([value]),
.header__progress[value] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.header__progress[value]::-webkit-progress-bar {
  background: #ffffff;
}
.header__progress[value]::-webkit-progress-value {
  background-color: #2fa6f8;
}
.header__progress::-moz-progress-bar {
  background-color: #2fa6f8;
}
.logo {
  position: relative;
}
.logo__link {
  display: block;
  float: left;
  overflow: hidden;
  width: 25px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.84;
  pointer-events: none;
  cursor: default;
}
[dir=rtl] .logo__link {
  float: right;
}
.logo__link img,
.logo__link svg {
  float: left;
}
[dir=rtl] .logo__link img,
[dir=rtl] .logo__link svg {
  float: right;
}
.logo__img {
  width: 156px;
  height: 35px;

  fill: #ffffff;
}
.header_scrolled .logo__img {
  fill: #090a19;
}
.logo__text {
  display: none;
}
.menu {
  margin: 0;
  padding: 0 20px;
  list-style: none;
  text-indent: 0;
  font-weight: 500;
}
.menu__item {
  display: inline-block;
  margin-right: 20px;
  padding: 0;
  font-size: 1rem;
}

[dir=rtl] .menu__item {
  margin-right: 0;
  margin-left: 20px;
}
.menu__item:last-child {
  margin-right: 0;
}

[dir=rtl] .menu__item:last-child {
  margin-right: inherit;
  margin-left: 0;
}
.menu__item:focus .menu__link,
.menu__item:hover .menu__link {
  color: #a0aac3;
}
.header_scrolled .menu__item:focus .menu__link,
.header_scrolled .menu__item:hover .menu__link {
  color: #4f555f;
}
.menu__link {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 150px;
  height: 100%;
  padding: 5px 0;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 500;
}
.auth-menu {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-position: outside;
  text-indent: 0;
  font-weight: 500;

  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
.auth-menu__item {
  display: inline-block;
  transition: -webkit-transform 0.5s ease-out;
  transition:         transform 0.5s ease-out;
  transition:         transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  white-space:nowrap;
}
.auth-menu__item span {
  text-transform: capitalize;
}
.auth-menu__item:last-child {
  display: inline-block;
  margin-right: 0;
}
.auth-menu__item_sign-in {
  display: none;
}
.auth-menu__item_sign-in:focus,
.auth-menu__item_sign-in:hover,
.auth-menu__lang:focus,
.auth-menu__lang:focus::after,
.auth-menu__lang:hover,
.auth-menu__lang:hover::after {
  color: #a0aac3;
}
.header_scrolled .auth-menu__item_sign-in:focus,
.header_scrolled .auth-menu__item_sign-in:hover,
.header_scrolled .auth-menu__lang:focus,
.header_scrolled .auth-menu__lang:focus::after,
.header_scrolled .auth-menu__lang:hover,
.header_scrolled .auth-menu__lang:hover::after {
  color: #4f555f;
}
.auth-menu__item_sign-in a {
  white-space: nowrap;
}
.auth-menu__item_get-hotspot {
  margin-right: 24px;
  transition: -webkit-transform 0.5s ease-out;
  transition:         transform 0.5s ease-out;
  transition:         transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  -webkit-transform: translateY(-400px);
  transform: translateY(-400px);
  color: #2fadf8;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.142;
}
.auth-menu__item_get-hotspot_active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.auth-menu__item_get-hotspot a {
  display: inline-block;
  padding: 0 10px;
  transition: 0.2s;
  white-space: nowrap;
  color: #2fa6f8;
  border: 2px solid #2fadf8;
  border-radius: 6px;
  line-height: 36px;
}
.auth-menu__item_get-hotspot a:focus,
.auth-menu__item_get-hotspot a:hover {
  color: #ffffff;
  background: #2fadf8;
}
.auth-menu__lang {
  position: relative;
  display: block;
  margin-right: 28px;
  padding-right: 10px;
  cursor: pointer;
}

[dir=rtl] .auth-menu__lang {
  margin-left: 24px;
}
.auth-menu__lang::after {
  position: absolute;
  top: 13px;
  right: -5px;
  display: block;
  width: 0;
  content: "";
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
}
.auth-menu__button {
  position: relative;
  top: 1px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  outline: none;
  background: 0 0;
}
.auth-menu__button:focus .auth-menu__button-icon,
.auth-menu__button:hover .auth-menu__button-icon {
  outline: none;

  fill: #4f555f;
}
.auth-menu__button-icon {
  position: relative;
  bottom: -1px;
  left: -2px;
  width: 20px;
  height: 17px;

  fill: #ffffff;
}
.header_scrolled .auth-menu__button-icon {
  fill: #090a19;
}
.lang-panel {
  position: fixed;
  z-index: 101;
  top: 50%;
  left: 50%;
  display: none;
  max-width: 460px;
  padding: 50px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 6px;
  background-color: #ffffff;
}
.lang-panel__header {
  margin: 0 0 32px;
  color: #090a19;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}
.lang-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  vertical-align: top;

  -webkit-columns: 3;
  columns: 3;
}
.lang-panel__list--mobile {
  position: absolute;
  bottom: -200px;
  left: 50%;
  width: 320px;
  height: 170px;
  margin: 0;
  padding: 10px 5px;
  transition: top 1s ease-out 0.5s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ffffff;
}
.lang-panel__item {
  display: inline-block;
  width: 100%;
  padding-bottom: 2px;
}
.lang-panel__item a {
  color: #2fa6f8;
  font-weight: 500;
}
.lang-panel__item--mobile {
  width: 90px;
  margin: auto;
}
.lang-panel__item--mobile a {
  color: #2fadf8;
}
.lang-panel__close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.5;
}

[dir=rtl] .lang-panel__close {
  right: auto;
  left: 25px;
}
.lang-panel__close:focus,
.lang-panel__close:hover {
  opacity: 1;
}
.lang-panel__close::after,
.lang-panel__close::before {
  position: relative;
  top: -1px;
  right: -10px;
  display: block;
  width: 2px;
  height: 20px;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #c1c4cb;
}

[dir=rtl] .lang-panel__close::before {
  top: -1px;
  right: auto;
  left: -10px;
}
.lang-panel__close::after {
  top: -21px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

[dir=rtl] .lang-panel__close::after {
  top: -21px;
  right: auto;
  left: -10px;
}
.lang-panel--show {
  display: block;
}
.substrate {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 200vh;
  background-color: rgba(0, 0, 0, 0.4);
}

@media (min-width:768px) {
  .body_fixed-header {
    padding: 76px 0 0;
  }
  .socials__list {
    margin-right: -7px;
  }
  .logo__link {
    width: auto;
  }
  [dir=rtl] .logo__link img,
  [dir=rtl] .logo__link svg {
    float: right;
  }
  .logo__text {
    display: inline;
  }
}

@media (min-width:1024px) {
  .body_fixed-header {
    padding: 100px 0 0;
  }
  .header__wrapper {
    height: 100px;
  }
  .header_scrolled .header__wrapper {
    height: 60px;
  }
  .header__menu {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;

    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1 1 0;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .menu__item {
    margin-right: 23px;
  }
  .auth-menu__item:last-child {
    display: none;
  }
  .auth-menu__item_sign-in {
    display: inline-block;
  }
  .auth-menu__item_get-hotspot {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  .auth-menu__item_get-hotspot a {
    overflow: hidden;
    max-width: 220px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@media (max-width:767px) {
  .socials__list {
    width: 220px;
    margin: 0 auto;
    padding: 80px 0 80px 4px;

    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .socials__item {
    padding-top: 1px;
  }
  .socials__item:last-child {
    margin-right: 0;
  }
  .socials__link {
    width: 40px;
    height: 40px;
  }
  .header__logo {
    margin-top: -1px;
    margin-left: 2px;
  }
  .logo__img {
    width: 108px;
    height: 25px;
  }
  .auth-menu__item_get-hotspot {
    position: absolute;
    top: 10px;
    left: 50%;
    margin: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .auth-menu__item_get-hotspot a {
    padding: 0 16px;
  }
  .auth-menu__lang {
    display: none;
  }
  .auth-menu__lang--mobile {
    position: absolute;
    bottom: 40px;
    left: 50%;
    display: block;
    height: 60px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-transform: capitalize;
  }
  .auth-menu__button {
    top: 0;
    right: -9px;
  }
}

@media (min-width:768px) and (max-width:1023px) {
  .header__logo {
    margin: 0;
  }
  .auth-menu__lang {
    display: none;
  }
}

@media (max-width:374px) {
  .auth-menu__item {
    margin-right: 10px;
  }
  .auth-menu__item_get-hotspot {
    margin: 0;
    font-size: 14px;
  }
  .auth-menu__item_get-hotspot a {
    padding: 0 10px;
  }
}

@media (min-width:1501px) {
  .auth-menu__item:last-child {
    display: none;
  }
}

/* Sidebar */
.sidebar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 33px 30px 40px 43px;
  transition: -webkit-transform 0.25s ease-in;
  transition:         transform 0.25s ease-in;
  transition:         transform 0.25s ease-in, -webkit-transform 0.25s ease-in;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.95);

  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

[dir=rtl] .sidebar {
  right: 100%;
  left: auto;
}
.sidebar__head {
  position: relative;
}
.sidebar_active {
  transition: -webkit-transform 0.25s ease-out;
  transition:         transform 0.25s ease-out;
  transition:         transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

[dir=rtl] .sidebar_active {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.sidebar__content::after,
.sidebar__content::before {
  display: table;
  content: "";
}
.sidebar__content::after {
  clear: both;
}
.sidebar__content {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;

  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex: 1 1 100%;
  -webkit-box-flex: 1;
  flex: 1 1 100%;
}
.sidebar__footer {
  width: 100%;
  padding: 0;

  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
}
.sidebar__socials {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);

  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.sidebar__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: center;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}
.sidebar__title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.85;
}
.locations-desc a,
.sidebar__title .sidebar__link {
  color: #2fa6f8;
}
.sidebar__title .sidebar__link:focus,
.sidebar__title .sidebar__link:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.sidebar__lang-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 13px;
}
.sidebar__lang-wrapper::after {
  display: inline-block;
  margin-left: 2px;
  content: "";
  vertical-align: middle;
  border: 5px solid #ffffff;
  border-right-color: transparent;
  border-bottom: 0;
  border-left-color: transparent;
}
.sidebar__lang {
  text-transform: capitalize;
}
.sidebar__second-menu {
  float: left;
  margin-top: 0;
  margin-right: 30px;
  margin-left: 0;
}

[dir=rtl] .sidebar__second-menu {
  float: right;
  margin-right: 0;
  margin-left: 30px;
}
.sidebar__close {
  position: relative;
  top: -14px;
  right: calc(-100% + 31px);
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0.5;
}

[dir=rtl] .sidebar__close {
  top: -15px;
  right: calc(100% + -35px);
}
.sidebar__close:focus,
.sidebar__close:hover {
  opacity: 1;
}
.sidebar .logo {
  position: absolute;
  top: 23px;
  left: 31px;
  overflow: hidden;
  width: 22px;
}

[dir=rtl] .sidebar .logo {
  top: 25px;
  right: 30px;
  left: unset;
}

[dir=rtl] .sidebar .logo__img {
  float: left;
}
.sidebar-menu {
  margin: auto;
  padding: 0 0 20px;
  list-style: none;
}
.sidebar-menu__item {
  font-size: 24px;
  line-height: 40px;
}
.sidebar-menu__item:focus,
.sidebar-menu__item:hover {
  color: #a0aac3;
}
.sidebar-menu a {
  color: #ffffff;
}
.sidebar-menu_main .sidebar-menu__item {
  font-size: 1.25rem;
}
.sidebar-menu_hidden-desktop .sidebar-menu {
  width: 134px;
  margin-right: 20px;
  margin-bottom: 0;
}
.sidebar-menu_hidden-desktop .sidebar-menu:last-child {
  margin-right: 0;
}
.sidebar-menu_hidden-desktop .sidebar-menu__item {
  padding: 10px 13px 10px 0;
  text-align: center;
  font-weight: 400;
}
.sidebar-menu_hidden-desktop .sidebar-menu__item a {
  transition: color 0.1s ease-out;
}
.sidebar-menu_hidden-desktop .sidebar-menu__link {
  font-size: 24px;
}
.sidebar-menu .auth-menu__lang {
  display: block;
}
.sidebar-close {
  cursor: pointer;
}
.sidebar-close:focus .sidebar-close__icon,
.sidebar-close:hover .sidebar-close__icon {
  fill: #ffffff;
}
.sidebar-close__button {
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  background: 0 0;
}
.sidebar-close__icon {
  width: 18px;
  height: 18px;
  transition: fill 0.2s ease-out;

  fill: #a0aac3;
}

@media (min-width:768px) {
  .sidebar {
    max-width: 364px;
  }
  .sidebar__footer {
    padding-top: 30px;
  }
  .sidebar .logo__img {
    width: 108px;
    height: 25px;
  }
}
@media (min-width:1024px) {
  .sidebar {
    padding-top: 33px;
  }
  .sidebar__second-menu {
    float: none;
  }
  .sidebar__close {
    top: -15px;
  }
  .sidebar .logo__img {
    width: 121px;
    height: 35px;
  }
  .sidebar .logo {
    top: 20px;
    width: 30px;
  }
  .sidebar-menu_hidden-desktop .sidebar-menu {
    width: auto;
    margin-right: 0;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .sidebar__close {
    top: -13px;
    right: calc(-100% + 30px);
  }
  .sidebar .logo {
    top: 24px;
    left: 31px;
  }
}

@media (max-width:374px) {
  .sidebar__footer {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .sidebar-menu_hidden-desktop .sidebar-menu:last-child {
    margin-bottom: 20px;
  }
  .slider {
    max-width: 300px;
  }
}

@media (max-width:767px) and (orientation:landscape) {
  .sidebar__content {
    margin-bottom: 0;
  }
  .sidebar__footer {
    margin-bottom: 40px;
  }
  .sidebar__socials {
    -webkit-transform: translateX(-16px);
    transform: translateX(-16px);
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 77px;
  padding-bottom: 0;
}
.hero_sm {
  padding-bottom: 40px;
}
.hero_sm:before {
  position:absolute;
  max-width:1377px;
  width:100%;
  margin:0 auto;
  height:173px;
  left:0;
  right:0;
  bottom:3%;
  transform:translateX(25px);
  content:'';
  background:url(../img/doodles@2x.png) 50% 100% no-repeat;
  background-size:100% auto;
}
.hero__wrapper {
  position: relative;
  z-index: 2;
  max-width: 100%;
  text-align: center;
}
.hero_sm .hero__wrapper {
  max-width:1170px;
}
.hero__content {
  max-width: 623px;
  margin: 0 auto 30px;
}
.hero__title {
  color: #ffffff;
}
.hero__description {
  margin-bottom: 13px;
  color: #a0aac3;
}
.hero_sm .hero__description {
  margin-bottom:22px;
}
.hero__list {
  display: inline-block;
  margin-bottom: 30px;
  color: #a0aac3;
}
.hero__btn-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;

  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero__btn {
  min-width: 240px;
  border-color: #f65260;
  background-color: #f65260;
}
.hero__btn:hover,
.hero__btn:focus {
  border-color: #dc4a57;
  background-color: #dc4a57;
}
.hero__platforms {
  margin: 30px 0;
}
.hero__quote {
  margin-top: 0;
  color: #a0aac3;
}
.hero__quote-text {
  vertical-align: middle;
}
.hero__quote-source {
  vertical-align: middle;
  color: #515f77;
  font-size: 1.125rem;
  font-weight: 700;
}
.hero__img-placeholder {
  position: relative;
  max-width: 375px;
  margin: 0 auto;
  transition: 0.25s;
}
.hero__img {
  display: block;
  max-width: 100%;
}
@media (min-width:1024px) {
  .hero {
    padding-top: 93px;
  }
  .hero__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    text-align: left;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  [dir=rtl] .hero__wrapper {
    text-align: right;
  }
  .hero_sm .hero__wrapper {
    justify-content:space-between;
  }
  .hero__content {
    max-width: 550px;
    margin: 0 0 20px;
    padding-right: 13px;
    padding-left: 13px;
  }
  .hero_sm .hero__content {
    padding-left: 0;
    padding-right: 0;
    margin-bottom:0;
    max-width: 540px;
  }
  [dir=rtl] .hero_sm .hero__content {
    padding-right: 0;
    padding-left: 0;
  }
  .hero__title {
    width: 87%;
  }
  .hero_sm .hero__title {
    width:auto;
  }
  .de-DE .hero__title,
  .it-IT .hero__title,
  .pt-PT .hero__title {
    width:auto;
  }
  .hero__list {
    display: block;
  }
  .hero__btn-placeholder {
    margin: 0;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .hero__btn {
    white-space: nowrap;
  }
  .hero__platforms {
    margin: 0;
  }
  .hero__quote {
    margin-top: 26px;
  }
  .hero__img-placeholder {
    width: 790px;
    max-width: none;
    margin: 0 -460px 0 0;

    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  [dir=rtl] .hero__img-placeholder {
    margin-right: 0;
    margin-left: -460px;
  }
  .hero_sm .hero__img-placeholder {
    align-self: center;
  }
  .hero_sm .hero__img-placeholder {
    width: 640px;
    margin-right:-66px;
    margin-left:-4px;
  }
  [dir=rtl] .hero_sm .hero__img-placeholder {
    margin-left:-66px;
    margin-right:-4px;
  }
  .hero_mac .hero__img-placeholder {
    width: 625px;
    margin-left:0;
  }
}
@media (min-width:1024px) and (max-width:1200px) {
  .hero__title {
    font-size: 2.25rem;
  }
  .hero .text_xl {
    font-size: 1rem;
    line-height: 1.75;
  }
  .hero__img-placeholder {
    width: 660px;
  }
}
@media (min-width:1201px) {
  .hero_sm {
    padding-top:145px;
    padding-bottom:96px;
  }
  .hero__content {
    width: 590px;
    max-width: none;
    margin-bottom: 42px;
  }
  .hero_sm .hero__content {
    width: 540px;
  }
  .hero__img-placeholder {
    width: 850px;
    margin-right: -400px;
  }
  [dir=rtl] .hero__img-placeholder {
    margin-right: 0;
    margin-left: -400px;
  }
}
@media (min-width:1201px) and (max-width:1439px) {
  .hero__title {
    font-size: 3rem;
  }
  .hero .text_xl {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
@media (min-width:1440px) {
  .hero__wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__content {
    width: 638px;
  }
  .hero_sm .hero__content {
    width: 540px;
  }
  .hero__img-placeholder {
    width: 947px;
    margin-right: -279px;
  }
  [dir=rtl] .hero__img-placeholder {
    margin-right: 0;
    margin-left: -279px;
  }
}
@media (min-width:1680px) {
  .hero__img-placeholder {
    margin-right: -260px;
  }
  [dir=rtl] .hero__img-placeholder {
    margin-right: 0;
    margin-left: -260px;
  }
}

/* Partners */
.partners {
  overflow: hidden;
  padding-top: 25px;
  padding-bottom: 25px;
}
.partners__wrapper {
  padding-right: 0;
  padding-left: 0;
}
.partners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 318px;
  margin: 0 auto;
  text-align: center;

  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.partners__list-item {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 106px;
  height: 60px;
}
.partners__list-img {
  display: block;
  margin: auto;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
@media (min-width:480px) {
  .partners__list {
    max-width: none;
  }
  .partners__list-item {
    width: 25%;
    height: 75px;
  }
  .partners__list-img {
    -webkit-transform: none;
    transform: none;
  }
}
@media (min-width:900px) {
  .partners {
    padding-top: 0;
    padding-bottom: 0;
  }
  .partners__list {
    max-width: none;

    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .partners__list-item {
    width: auto;
    height: 150px;

    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
}

/* Download Stat */
.download-stat {
  text-align: center;
}
.download-stat__number {
  display: block;
}
.download-stat__text {
  color: #090a19;
}

/* Rating */
.rating {
  font-size: 0.875rem;
  font-weight: 500;
}
.rating__list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  margin: 0 -17px;
  padding: 0;
  list-style: none;

  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.rating__item {
  margin-bottom: 15px;
}
.rating__item:last-child {
  margin-bottom: 0;
}
.rating__image-wrapper,
.rating__item-title {
  margin-right: 5px;
}
.rating__score {
  color: #424859;
  font-size: 0.75rem;
}
.rating__star {
  width: 10px;
  height: 10px;
}
.text-block__rating {
  margin: 77px auto 0;
}
@media (min-width:768px) {
  .rating__list {
    flex-direction: row;

    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .rating__item {
    margin-right: 17px;
    margin-bottom: 0;
    margin-left: 17px;
  }
  .text-block__rating {
    margin: 57px auto 0;
  }
}

/* Sites List */
.sites-list {
  text-align: center;
}
.sites-list__item {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  margin: 7.5px;
  vertical-align: top;
  border-radius: 200px;
  background-color: #ffffff;
  box-shadow: 0 0 15px 0 rgba(0,0,0,0.04);
}
.sites-list__item-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 60px;
  max-height: 25px;
  margin: auto;
}
.sites-list__item_colored {
  box-shadow: none;
}
.sites-list__item_black {
  background-color: #000000;
}
.sites-list__item_apple-music {
  background-color: #343433;
}
.sites-list__item_bbc-sport {
  background-color: #feff29;
}
.sites-list__item_cnn {
  background-color: #ec1c2e;
}
.sites-list__item_dropbox {
  background-color: #007ee5;
}
.sites-list__item_ea {
  background-color: #242525;
}
.sites-list__item_espn {
  background-color: #cc0000;
}
.sites-list__item_facebook {
  background-color: #3b5998;
}
.sites-list__item_hulu {
  background-color: #7cb74f;
}
.sites-list__item_netflix {
  background-color: #d81f26;
}
.sites-list__item_pinterest {
  background-color: #bd081c;
}
.sites-list__item_skype {
  background-color: #24baf2;
}
.sites-list__item_snapchat {
  background-color: #fffc00;
}
.sites-list__item_spotify {
  background-color: #1ed760;
}
.sites-list__item_supercell {
  background-color: #100f0d;
}
.sites-list__item_tumblr {
  background-color: #35465c;
}
.sites-list__item_twitter {
  background-color: #1da1f2;
}
.sites-list__item_vimeo {
  background-color: #1ab7ea;
}
.sites-list__item_whatsapp {
  background-color: #44d97c;
}
@media (min-width:768px) {
  .sites-list__item {
    width: 120px;
    height: 120px;
  }
  .sites-list__item-icon {
    max-width: 80px;
    max-height: none;
  }
}

/* Access */
.access {
  overflow: hidden;
  text-align: center;
}
.access__list {
  overflow: hidden;
  margin: 45px -22% 0;
}
@media (max-width:767px) {
  .access__list {
    width: 1000px;
    margin-left: -10%;
  }
  .access__list li:first-child {
    margin-left: -90px;
  }
}
@media (max-width:530px) {
  .access__list {
    width: 1000px;
    max-height: 285px;
    margin-left: -79%;
  }
}
@media (min-width:768px) {
  .access__list {
    width: 2110px;
    max-height: 270px;
    margin-right: -16%;
    margin-left: -16%;
  }
}
@media (min-width:1100px) {
  .access__list {
    margin-right: -5%;
    margin-left: -13%;
  }
}
@media (min-width:1800px) {
  .access__list {
    margin-left: -8%;
  }
}
@media (min-width:1920px) {
  .access__list {
    margin-left: -7%;
  }
}
@media (min-width:1950px) {
  .access__list {
    margin-left: -6%;
  }
}
@media (min-width:1960px) {
  .access__list {
    width: auto;
    margin-right: -1%;
    margin-left: -1%;
    white-space: nowrap;
  }
}

/* Features Box */
features-box {
}
.features-box li:nth-child(2n) {
  flex-direction: row-reverse;

  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}
.features-box ul {
  max-width: 410px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.features-box li {
  margin: 0 0 50px;
}
.features-box li:last-child,
.features-box p:last-child {
  margin-bottom: 0;
}
.features-box img,
.features-box svg {
  display: block;
  width: 100%;
  max-width: 165px;
  height: auto;
  margin: 0 auto 15px;
}
.features-box__content {
  max-width: 400px;
  text-align: center;
}
@media (min-width:768px) {
  .features-box li {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-bottom: 90px;

    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .features-box__img-box {
    width: 100%;
    max-width: 270px;
    margin: 0 75px 0 0;
  }
  [dir=rtl] .features-box__img-box {
    margin: 0 0 0 75px;
  }
  .features-box__content {
    padding-top: 20px;
    text-align: left;
    text-align: start;
  }
  .features-box h2 {
    margin-bottom: 80px;
  }
  .features-box ul {
    max-width: 890px;
  }
  li:nth-child(2n) .features-box__img-box {
    margin: 0 0 0 75px;
  }
  [dir=rtl] li:nth-child(2n) .features-box__img-box {
    margin: 0 75px 0 0;
  }
  .features-box img,
  .features-box svg {
    max-width: 225px;
    margin-bottom: 0;
  }
}
@media (min-width:1201px) {
  .features-box__img-box {
    max-width: 384px;
    margin: 0 105px 0 0;
  }
  [dir=rtl] .features-box__img-box {
    margin: 0 0 0 105px;
  }
  li:nth-child(2n) .features-box__img-box {
    margin: 0 0 0 105px;
  }
  [dir=rtl] li:nth-child(2n) .features-box__img-box {
    margin: 0 105px 0 0;
  }
  .features-box img,
  .features-box svg {
    max-width: 264px;
  }
}

/* Privileges */
.privileges {
  overflow: hidden;
}
.privileges__text {
  margin-top: 42px;
}
.privileges__img-placeholder {
  display: none;
}
.privileges__action {
  margin-top: 40px;
  padding-right: 30px;
  padding-left: 30px;
  text-align: center;
}
@media (min-width:1024px) {
  .privileges__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .privileges__title {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .privileges__content {
    padding: 0 30px;

    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
  .privileges__img-placeholder {
    display: block;
    max-width: 445px;

    -webkit-box-flex: 0;
    -ms-flex: 0 0 445px;
    flex: 0 0 445px;
  }
  .privileges__img {
    display: block;
    margin: 0 auto;
  }
}

/* Comments */
.comments {
  overflow: hidden;
  padding-bottom: 0;
  text-align: center;
}
.comments__list {
  padding-bottom: 64px;
}
.comments__item {
  position: relative;
  line-height: 1.375;
}
.comments__img-placeholder {
  margin-bottom: 21px;
}
.comments__img {
  display: block;
  margin: auto;
}
.comments__text {
  margin-bottom: 20px;
}
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.slick-dots {
  bottom: 3px;
}
@media (max-width:767px) {
  .comments__text {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .comments__author {
    font-size: 1rem;
    line-height: 1.75;
  }
}
@media (min-width:768px) {
  .comments__img-placeholder {
    margin-bottom: 41px;
  }
}
@media (min-width:1024px) {
  .comments {
    padding-top: 0;
  }
}

/* Download */
.download {
  text-align: center;
}
.download__img {
  margin-bottom: 10px;
}
.download__text {
  margin-bottom: 40px;
}

/* Footer */
.footer {
  background: #031837;
  font-size: 0.875rem;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 41px;
}
.footer a {
  text-decoration: none;
}
.footer_downloading::before, .footer_downloading::after {
  content: "";
  display: table;
}
.footer_downloading::after {
  clear: both;
}
.footer_downloading {
  background: #fff;
}
.footer_downloading .footer__copyrights {
  color: #a0aac3;
  float: left;
  font-size: 1rem;
  line-height: 2.5;
}
.footer_downloading .footer__lang {
  float: right;
}
.footer__wrapper {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1170px;
}
.footer__menus {
  margin: 0 -30px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer__buttons {
  margin: 0 0 45px;
}
.footer__stores {
  margin: 0 0 35px;
}
.footer__lang {
  margin: 0 auto 40px;
  width: 142px;
}
.footer__bottom {
  text-align: center;
}
.footer__bottom-links-list {
  list-style: none;
  margin: 0 -7px 22px;
  padding: 0;
  columns: 2;
  column-gap: 30px;
}
.footer__bottom-links-wrap {
  text-align: left;
  overflow: hidden;
  line-height: 30px;
  padding-left: 7px;
  padding-right: 7px;
}
.footer__bottom-links-item {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  display: block;
  font-size: .875rem;
  color: #a0aac3;
}
.footer__bottom-links-item:hover {
  color: #fff;
}
.footer__socials {
  margin-top: 91px;
  margin-bottom: 83px;
}
.footer__copyrights {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__copyrights-wrap {
  font-size: 0.875rem;
  line-height: 1.43;
  opacity: 0.5;
  color: #a0aac3;
  white-space: nowrap;
}
[dir="rtl"] .footer__copyrights-wrap {
  direction: ltr;
}
.footer__logo {
  text-align: center;
  padding:0 0 60px 0;
}
.footer-menu {
  line-height: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-left: 30px;
  padding-right: 32px;
}
[dir="rtl"] .footer-menu {
  margin-left: 0;
  margin-right: 30px;
  padding-right: 0;
  padding-left: 32px;
}
.footer-menu:last-child {
  border-bottom-width: 0;
}
.footer-menu__title {
  font-size: .875rem;
  line-height: 1.86;
  font-weight: 500;
  color: #fff;
  margin: 0;
  position: relative;
  height: 58px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.footer-menu__title::after {
  content:"";
  width: 9px;
  height: 9px;
  position: absolute;
  right: 0;
  top: 30px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
}
[dir="rtl"] .footer-menu__title::after {
  left: 0;
  right: unset;
}
.footer-menu__list {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding: 0;
  text-indent: 0;

  font-size: .875rem;
}
.footer-menu__item {
  margin-bottom: .46em;
}
.footer-menu__link {
  font-size: .875rem;
  font-weight: 400;
  color: #a0aac3;
}
.footer-menu__link:hover {
  color: #a0aac3;
}
.footer-links__item {
  border-bottom: 1px solid;
  text-decoration: none;
  transition: all .2s
}
.footer-links__item:hover {
  border-color: transparent;
}
.footer-links__item:last-child {
  margin-right: 0;
}
.socials {
  text-align: center;

}
.socials a {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('/imgs/icons_socials.png');
  background-size: 80px 20px;
  margin: 5px;
  opacity: 0.6;
  transition: .2s
}
.socials a:hover {
  opacity: 1;
}
.socials__facebook {
  background-position-x: 0 !important;
}
.socials__twitter {
  background-position-x: -20px !important;
}
.socials__youtube {
  background-position-x: -40px !important;
}
.socials__instagram {
  background-position-x: -60px !important;
}
@media (min-width: 768px) {
  .footer {
    padding-bottom: 22px;
  }
  .footer__buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .footer__stores {
    margin: 0;
  }
  .footer__lang {
    margin: 0;
  }
  .footer__bottom-links-list {
    columns: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 70px 17px;
  }
  .footer__socials {
    margin-bottom: 124px;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .footer {
    padding-top: 73px;
    padding-bottom: 45px;
  }
  .footer__bottom-links-list {
    margin: 0;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .footer__bottom-links-wrap:first-child {
    padding-left: 0;
  }
  .footer__socials {
    margin: 0 -8px 0 0;
  }
}
@media (min-width: 1201px) {
  .footer {
    padding-top: 73px;
    padding-bottom: 45px;
  }
  .footer__bottom-links-list {
    margin: 0;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .footer__bottom-links-wrap:first-child {
    padding-left: 0;
  }
  .footer__socials {
    margin: 0 -8px 0 0;
    max-width: 190px;
    -ms-flex: 0 0 190px;
    flex: 0 0 190px;
  }
  .footer__socials .socials__list {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .footer__copyrights-wrap {
    max-width: 350px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__menus {
    margin-bottom: 111px;
  }
  .footer-menu {
    margin-left: 100px;
    padding-right: 102px;
  }
  [dir="rtl"] .footer-menu {
    margin-left: 0;
    margin-right: 100px;
    padding-right: 0;
    padding-left: 102px;
  }
}
@media (min-width: 1024px) {
  .footer__menus {
    border-bottom-width: 0;
    display: -ms-flexbox;
    display: flex;
    padding-top: 10px;
    margin: 0 -15px 71px;
  }
  .footer__bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer__copyrights {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
  [dir="rtl"] .footer__copyrights {
    text-align: right;
  }
  .footer__copyrights-wrap {
    line-height: 2.143;
  }
  .footer-menu {
    width: 16.66667%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
    border-bottom-width: 0;
  }
  [dir="rtl"] .footer-menu {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 0;
  }
  .footer-menu__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1.625;
    font-weight: 400;
    color: #a0aac3;
    margin-bottom: 15px;
    height: auto;
  }
  .footer-menu__title::after {
    display: none;
  }
  .footer-menu__item {
    margin-bottom: .95em;
  }
  .footer-menu__link {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1.1875;
    font-weight: 500;
    color: #fff;
    max-width: 172px;
    display: block;
  }
}
@media (max-width: 767px) {
  .footer__buttons {
    margin: 0;
  }
  .footer__lang {
    display: none;
  }
}
@media (max-width: 374px) {
  .footer__copyrights-wrap {
    white-space: normal;
  }
}
@media (max-width: 1023px) {
  .footer__logo {
    display: none;
  }
  .footer-menu {
    cursor: pointer;
  }
  .footer-menu--closed .footer-menu__list {
    display: none;
  }

  .footer-menu--closed .footer-menu__title::after {
    top: 24px;
    transform: rotate(45deg);
  }

  .footer-menu__list {
    margin-top: -7px;
    margin-bottom: 17px;
  }

  .footer-menu__link--bottom {
    line-height: 20px;
  }
}
