/* page styles*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  font-variant-numeric: lining-nums;
  font-weight: 400;
  background: #fff;
  color: #42424a;
}

img {
  width: 100%;
  max-width: 100%;
}

.content-block-container,
.container {
  max-width: 1344px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.main {
  overflow: hidden;
  position: relative;
}

.title {
  font-size: 52px;
  line-height: 130%;
  color: #474766;
  font-weight: 600;
}

.main-themes-like-blocks .title-left {
  text-align: start;
  max-width: 655px;
}

.burger {
  cursor: pointer;
  position: absolute;
  top: -20px;
  right: 30px;
  z-index: 1000; /* Ensure it's above other content */
}

.burger__line {
  width: 30px;
  height: 3px;
  background-color: #000;
  margin: 5px;
  transition: transform 0.3s ease;
}

/* Styles for burger lines when menu is active */
.js-menu-active .burger__line_top {
  transform: translateY(8px) rotate(45deg);
}

.js-menu-active .burger__line_bottom {
  transform: translateY(-8px) rotate(-45deg);
}

.span-show-mob {
  display: none;
}

.main_blur {
  -webkit-filter: blur(11px);
          filter: blur(11px);
}

.show-mb,
.mobile-show-flex {
  display: none !important;
}

@media screen and (max-width: 1350px) {
  .content-block-container,
  .container {
    padding: 0 32px;
  }

  .title {
    font-size: 44px;
  }
}

@media screen and (max-width: 980px) {
  .content-block-container,
  .container {
    padding: 0 20px;
  }

  .title {
    font-size: 36px;
    text-align: left;
  }
}

@media screen and (max-width: 750px) {
  .title {
    font-size: 34px;
  }

  .content-block-container,
  .container {
    padding: 0 18px;
  }

  .span-hide-mob {
    display: none;
  }

  .span-show-mob {
    display: inline;
  }

  .show-mb {
    display: block !important;
  }

  .mobile-show-flex {
    display: flex !important;
  }

  .hide-mb {
    display: none !important;
  }
}

.main__background {
  background: url(../img/main-bg.png) center top;
  background-size: 1440px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 1281px) {
  .main__background {
    background-size: 1024px;
  }
}
@media screen and (max-width: 980px) {
  .main__background {
    background-size: 768px;
  }
}

.menu__link {
  position: relative;
}

.menu__link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  display: block;
  /* width: 100%; */
  height: 2px;
  background: #6366f1;
  width: 0;
  transition: 0.3s;
}

/*blue-btn*/
.btn-with-gradiend {
  background: rgb(207, 207, 207);
  background: linear-gradient(160deg, rgba(207, 207, 207, 1) 0%, rgba(168, 168, 168, 0) 100%);
  width: 285px;
  height: 56px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.btn a {
  text-decoration: none;
  color: #fff;
}

.btn-with-gradiend span {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  z-index: 3;
}

.btn-with-gradiend::after {
  content: "";
  position: absolute;
  width: 180%;
  height: 600px;
  bottom: -700px;
  left: -40%;
  background-image: url(../img/default/bg-for-btn.svg);
  background-size: 100%;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  transition: 0.4s all;
  z-index: 2;
}

.btn-with-gradiend::before {
  content: "";
  position: absolute;
  background: #334246;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  border-radius: 9px;
  z-index: 1;
}

.btn-with-gradiend:hover::after {
  bottom: -420px;
}

@media screen and (max-width: 1350px) {
  .btn-with-gradiend {
    font-size: 16px;
  }
}

@media screen and (max-width: 581px) {
  .btn-with-gradiend {
    width: 100%;
  }

  .btn-with-gradiend_ltl {
    width: 100%;
  }

  .btn-with-gradiend::after {
    content: none;
  }
}

.btn-with-icon {
  padding: 18px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1.657px solid #be8af0;
  /*  background: linear-gradient(113deg, rgba(239, 58, 255, 0.30) 8.18%, rgba(90, 63, 255, 0.30) 90.74%, rgba(255, 205, 48, 0.30) 169.52%);*/
  background: linear-gradient(113deg, #56205c 8.18%, #2d2458 90.74%);
  /*  backdrop-filter: blur(16.5745849609375px);*/
  /*  transition: 0.2s;*/
  color: #f4f0ff;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  outline: none;
  border: 0;
  transition: 0.2s;
  position: relative;
}
.btn-with-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    130deg,
    rgba(126, 94, 158, 1) 0%,
    rgba(126, 94, 158, 0.5) 15%,
    rgba(126, 94, 158, 0) 50%,
    rgba(126, 94, 158, 0.5) 85%,
    rgba(126, 94, 158, 1) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.btn-with-icon__icon {
  width: 24px !important;
}
.btn-with-icon:hover {
  background: linear-gradient(113deg, #77417c 8.18%, #4d4579 90.74%);
}
.btn-with-icon:active {
  background: linear-gradient(113deg, #77417c 8.18%, #4d4579 90.74%);
}
@media (max-width: 750px) {
  .btn-with-icon {
    width: 100%;
  }
}

.btn {
  padding: 20px 34px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 292px;
  border-radius: 12px;
  background: #7d7dff;
  /* backdrop-filter: blur(16.5745849609375px); */
  /* transition: 0.2s; */
  color: #f4f0ff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
  outline: none;
  border: 0;
  transition: 0.2s;
  position: relative;
  text-decoration: none;
}
.btn__icon {
  width: 24px !important;
}
.btn:hover {
  background: #5461d4;
}
.btn:active {
  background: #3a4393;
}
@media (max-width: 750px) {
  .btn {
    width: 100%;
  }
}

@media screen and (max-width: 581px) {
  .btn {
    padding: 16px 24px;
  }
}

/*logo*/

.logo {
  width: 112px;
}

.logo a {
  display: block;
}

.logo img {
  display: flex;
  align-self: center;
}

@media (max-width: 750px) {
  .logo {
    width: 80px;
  }
}

/*blue-btn*/
.blue-btn {
  display: block;
  transition: 0.2s all;
  width: 100%;
  max-width: 279px;
  padding: 15px;
  background: #7d7dff;
  border-radius: 8px;
  text-align: center;
  color: #f0f0f0;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.blue-btn:hover {
  background: #a5a5ff;
}

.blue-btn:active {
  background: #6d6dff;
}

@media screen and (max-width: 1350px) {
  .blue-btn {
    font-size: 16px;
    line-height: 150%;
    padding: 14px;
    max-width: 220px;
  }
}

@media screen and (max-width: 581px) {
  .blue-btn {
    max-width: initial;
  }

  .blue-btn:hover {
    background: #7d7dff;
  }

  .blue-btn:active {
    background: #7d7dff;
  }
}

/*burger-menu*/
.burger-menu {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
}

.burger-line {
  width: 32px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  position: absolute;
  top: 18px;
  right: 0;
  transition: 0.2s all;
}

.burger-line_bottom {
  width: 16px;
  top: 28px;
}

@media (max-width: 750px) {
  .burger-menu {
    display: block;
    cursor: pointer;
    right: -20px;
  }

  .burger-menu_close .burger-line_top {
    width: 25px;
    top: 23px;
    transform: rotate(45deg);
    right: 0;
  }

  .burger-menu_close .burger-line_bottom {
    width: 25px;
    top: 23px;
    transform: rotate(135deg);
  }
}

/*header*/
.header {
  margin: 20px 0;
}
.header__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 195px;
}

.header__format {
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0px 4px 8px -1px rgba(17, 8, 0, 0.04), 0px 2px 4px 0px rgba(17, 8, 0, 0.04), 0px 1px 2px 0px rgba(17, 8, 0, 0.04);
  display: inline-flex;
  gap: 10px;
  justify-content: start;
  align-items: center;
  color: #42424a;
  font-size: 19px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.39px;
  padding: 16px;
}

.header__format:before {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #1aff75;
  /* box-shadow: 0px 0px 7px #1AFF75; */
  content: "";
}

.header__menu {
  display: flex;
  gap: 40px;
}

.header__menu a {
  font-size: 16px;
  line-height: 110%;
  display: inline-block;
  color: #42424a;
  text-decoration: none;
  padding-bottom: 5px;
}

.menu__link {
  position: relative;
}

.menu__link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  display: block;
  /* width: 100%; */
  height: 2px;
  background: #6366f1;
  width: 0;
  transition: 0.3s;
}
.menu__link:hover:after {
  width: 100%;
}

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

.header__menu {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* .header__menu li {
  margin-right: 20px;
} */

.header__right {
  display: flex;
  align-items: center;
}

.burger {
  display: none; /* Изначально скрываем бургер-иконку на больших экранах */
}

.header .button {
  border-radius: 50%;
  cursor: pointer;
  width: 58px;
  height: 58px;
  background: #fff;
  border: none;
  box-shadow: 0px 4px 8px -1px rgba(17, 8, 0, 0.04), 0px 2px 4px 0px rgba(17, 8, 0, 0.04), 0px 1px 2px 0px rgba(17, 8, 0, 0.04);
}

.header .button:hover {
  background: pink;
}

.button-sharer img {
  display: flex;
  align-items: center;
}

.share-buttons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-direction: row-reverse;
}

.buttons-sharer__list {
  display: block; /* Для того чтобы анимация opacity работала, элемент должен быть видимым изначально */
  opacity: 0; /* Начальная прозрачность */
  transition: opacity 0.3s ease; /* Плавный переход с длительностью 0.3 секунды */
  pointer-events: none; /* Элемент не будет реагировать на события мыши, когда невидим */
}

.share-buttons:hover .buttons-sharer__list {
  opacity: 1; /* При наведении прозрачность становится 1, элемент становится видимым */
  pointer-events: auto; /* Включаем обработку событий мыши при видимом элементе */
}

.button-sharer-main.clicked .buttons-sharer__list {
  opacity: 1; /* При активации класса .clicked также делаем элемент видимым */
}

@media (max-width: 581px) {
  .header__menu {
    display: none; /* Скрываем основное меню на мобильных устройствах */
    flex-direction: column;
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #fff;
    /* box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1); */
    width: 100%;
    padding: 20px;
    z-index: 1000;
    gap: 10px;
  }

  .header__menu.active {
    display: flex; /* Показываем активное меню */
  }

  .header__menu li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .burger {
    display: block; /* Показываем бургер-иконку на мобильных устройствах */
    cursor: pointer;
  }

  .burger__line {
    width: 32px;
    height: 2px;
    background-color: #474766;
    border-radius: 2px;
    position: absolute;
    top: 18px;
    right: 0;
    transition: 0.2s all;
  }

  .burger__line_bottom {
    width: 16px;
    top: 28px;
  }

  .burger.active .burger__line_top {
    width: 25px;
    top: 23px;
    transform: rotate(45deg);
    right: 0;
  }

  .burger.active .burger__line_bottom {
    width: 25px;
    top: 23px;
    transform: rotate(135deg);
  }
}

/* .burger-menu_close .burger__line_bottom {
  width: 25px;
  top: 23px;
  transform: rotate(135deg);
}

.burger-menu_close .burger__line_top {
  width: 25px;
  top: 23px;
  transform: rotate(45deg);
  right: 0;
} */

@media (max-width: 1023px) {
  .header__logo {
    width: 149px;
  }
}

@media screen and (max-width: 980px) {
  .header__format {
    padding: 11px;
    font-size: 13px;
    border-radius: 9px;
  }
}

@media (max-width: 767px) {
  .header__logo {
    width: 132px;
  }
  .header__format {
    gap: 4px;
    font-size: 13px;
    padding: 8px;
  }
  .header__format:before {
    width: 12px;
    height: 12px;
  }
}

/*.first-screen */

.first-screen {
  position: relative;
  margin: 70px 0 376px 0;
}

.first-screen img {
  width: 100%;
  display: flex;
  align-items: center;
}

.first-screen___left {
  position: relative;
  z-index: 2;
}

.first-screen__tags {
  display: flex;
  flex-wrap: wrap;
  margin: -28px -16px 0 0;
  gap: 16px;
}

.first-screen__tag {
  border-radius: 6px;
  padding: 10px 20px;
  background: linear-gradient(129deg, rgba(250, 250, 250, 0.07) -0.77%, rgba(164, 164, 164, 0) 140.72%);
  box-shadow: 14.21875px 15.23438px 43.67188px 0px rgba(194, 194, 194, 0.05) inset, 0px 65px 130px -5.07813px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.first-screen__tag span {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 256.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Rubik;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.first-screen__tag::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(171, 171, 171, 0.2) -40%, rgba(147, 147, 147, 0) 140%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.time__event {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
}

.first-screen__title {
  font-size: 40px;
  max-width: 990px;
  margin: 0 auto;
  font-weight: 700;
  line-height: 120%;
  background-image: linear-gradient(90deg, #9747ff 0.07%, #62a1ff 51.07%, #f262ff 98.99%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  margin-top: 24px;
  text-align: center;
  text-transform: uppercase;
}

.first-screen__text {
  font-size: 18px;
  line-height: 150%;
  color: #8787ab;
  margin: 0 0 24px 0;
  max-width: 732px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.first-screen .btn {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1350px) {
  .first-screen__title {
    font-size: 52px;
    margin: 24px auto 24px auto;
  }

  .first-screen .btn-with-gradiend {
    margin: 0;
  }
}

@media (max-width: 980px) {
  .first-screen {
    margin: 90px 0 428px 0;
  }
  .first-screen__title {
    max-width: 730px;
  }

  .first-screen__text {
    font-size: 16px;
    line-height: 150%;
    /* max-width: 434px; */
  }
}

@media (max-width: 750px) {
  .first-screen {
    margin: 45px 0 730px 0;
  }
  /*
  .first-screen__header-bg {
    position: absolute;
    width: 400px;

    z-index: -1;
  }

  .first-screen__header-bg_1 {
    top: -180px;
    left: -150px;
  }

  .first-screen__header-bg_2 {
    display: none;
  }*/

  /* .first-screen__content {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    gap: 12px;
  } */

  .first-screen___left {
    position: static;
    z-index: 2;
  }

  .first-screen__tags {
    display: grid;
    /*    flex-wrap: wrap;*/
    grid-template-columns: auto auto;
    width: 100%;
    gap: 16px;
    margin: -16px -16px 0 0;
    max-width: initial;
    position: absolute;
    top: 0px;
    left: 0px;
  }

  .first-screen__tag {
    color: #f0f0f0;
    padding: 12px 4px;
    border-radius: 8px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 16px 0 0 0;
    font-size: 14px;
    line-height: 120%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .first-screen__title {
    font-size: 42px;
    line-height: 110%;
    margin: 0 0 24px 0;
  }

  .first-screen__text {
    max-width: 600px;
  }

  .first-screen .btn-with-gradiend {
    margin: 24px 0 0 0;
  }

  .first-screen___img {
    height: 360px;
  }

  .first-screen___hero-bg {
    width: 520px;
    transform: translate(-70%, 0);
    top: -5%;
    left: 50%;
  }
}

@media screen and (max-width: 581px) {
  .first-screen__title {
    margin: 16px 0 16px 0;
  }

  .first-screen__text {
    max-width: 320px;
    margin: 0 auto 16px auto;
  }
}

@media (max-width: 359px) {
  .first-screen__tags {
    gap: 8px;
  }
}

.video-widget__container {
  z-index: 999999;
  overflow: hidden;
  border-style: solid;
  transition: transform 0.2s ease-in-out 0s, width 0.3s ease-in-out 0s, height 0.3s ease-in-out 0s, bottom 0.3s ease-in-out 0s, border-color 0.2s ease-in-out 0s,
    opacity 1s ease-in-out 0s;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0px 117px 33px 0px rgba(133, 133, 133, 0), 0px 75px 30px 0px rgba(133, 133, 133, 0.01), 0px 42px 25px 0px rgba(133, 133, 133, 0.05),
    0px 19px 19px 0px rgba(133, 133, 133, 0.09), 0px 5px 10px 0px rgba(133, 133, 133, 0.1);
  position: fixed;
  /* left: 12%;
  bottom: 15%; */
  left: 5%;
  bottom: 5%;
  border-radius: 20px;
  width: 124px;
  height: 189px;
  border: 1px solid #c7c7c7;
  /* transition: all 1s, left 1s ease-in-out, top 1s ease-in-out, scale 1s ease-in-out, border 0.3s ease-in-out; */
  transition: all 0.8s ease-in-out;
}

.video-widget__container:hover {
  transform: scale(1.05) translate(5px, -5px);
  /* border-color: #131344; */
  border: 3px solid #893ef9;
}

/* .video-widget__container.active {
  scale: 2;
} */

.video-widget__video {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  z-index: 200;
  transition: opacity 0.4s ease-in-out 0s;
  opacity: 0.9;
  z-index: 0;
}

.popmechanic-close {
  /* color: white; */
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  text-align: center;
  width: 14px;
  height: 14px;
  z-index: 1;
  fill: rgba(255, 255, 255, 0.18);
  stroke-width: 1px;
  stroke: #c7c7c7;
  -webkit-backdrop-filter: blur(7.150000095367432px);
          backdrop-filter: blur(7.150000095367432px);
  transition: stroke 0.3s ease-in-out;
}

.popmechanic-close:hover {
  stroke: #000;
}

@media screen and (max-width: 581px) {
  .video-widget__container {
    bottom: 499px;
    width: 320px;
    height: 427px;
    /* left: calc(40px) */
  }
}

@media (min-width: 400px) and (max-width: 460px) {
  .video-widget__container {
    left: 12%;
  }
}

@media (min-width: 375px) and (max-width: 399px) {
  .video-widget__container {
    left: 7%;
  }
}

.guide__container {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 8px 16px -2px rgba(17, 8, 0, 0.04), 0px 4px 8px -1px rgba(17, 8, 0, 0.04), 0px 2px 4px 0px rgba(17, 8, 0, 0.04);
  width: 536px;
  margin-top: 108px;
  position: absolute;
  right: 0;
}

.guide__content {
  display: flex;
  padding: 24px;
  align-items: center;
  gap: 10px;
  position: relative;
}

.guide__text {
  font-size: 16px;
  color: #8787ab;
  font-weight: 400;
  padding: 0 38% 0 0;
  line-height: 150%;
}

.guide__img {
  position: absolute;
  max-width: 192px;
  max-height: 222px;
  right: 40px;
  bottom: 0px;
  z-index: 2;
}

.guide__img::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -70px;
  background-image: url("../img/book-bg.png");
  background-repeat: no-repeat;
  width: 300px;
  height: 300px;
  z-index: -1;
}

/* .guide__img::after {
  content: "";
  background: url(../img/bg-guide.svg) center center no-repeat;
  position: absolute;
    z-index: -1;
    width: 256.667px;
    height: 71.752px;
} */

.guide__img img {
  max-width: 100%; /* Ограничиваем максимальную ширину изображения */
  height: auto; /* Сохраняем пропорции */
  width: 303px;
}

@media screen and (max-width: 1350px) {
  .guide__container {
    right: 32px;
  }
}

@media screen and (max-width: 980px) {
  .guide__container {
    width: 373px;
    margin-top: 84px;
  }

  .guide__content {
    padding: 16px;
  }

  .guide__text {
    font-size: 13px;
    padding: 0 39% 0 0;
  }

  .guide__img {
    right: -60px;
  }

  .guide__img img {
    width: 280px;
  }
}

@media screen and (max-width: 581px) {
  .guide__container {
    margin-top: 100px;
    max-width: 320px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .guide__text {
    padding: 0 33% 0 0;
  }

  .guide__img {
    top: 0;
    right: 7px;
  }

  .guide__img::after {
    right: -50px;
    bottom: -59px;
    width: 240px;
    height: 240px;
    opacity: 0.5;
  }

  .guide__img img {
    width: 100px;
  }

  .guide__content {
    width: 320px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .first-screen {
    margin: 45px 0 310px 0;
  }
}

@-webkit-keyframes moveUpDown {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(0%, 10%);
  }
}

@keyframes moveUpDown {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(0%, 10%);
  }
}

@media screen and (max-width: 1350px) {
  .who-suit__block {
    padding: 20px;
  }

  .who-suit__decor-one {
    width: 900px;
  }

  .who-suit__decor-two {
    width: 850px;
  }

  .first-screen .btn-with-gradiend {
    margin: 0;
  }
}

.under-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.under-bg-img___img {
  position: absolute;
  transform: translate(-50%, 0);
  top: 0;
  left: 66%;
  width: 80%;
  z-index: -1;
}

@media (max-width: 1281px) {
  .under-bg-img___img {
    left: 58%;
    width: 82%;
  }
}

@media (max-width: 980px) {
  .under-bg-img___img {
    left: 60%;
    width: 87%;
  }
}

@media (max-width: 750px) {
  .under-bg-img___img {
    left: 50%;
    width: 170%;
    top: -8px;
  }
}

.example {
  display: -ms-grid;
  display: grid;
  transition: all 0.5s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: linear-gradient(to bottom, white, black);
}

/*about*/
.about {
  margin: 200px auto;
  max-width: 922px;
  position: relative;
}

.about__about-bg {
  width: 1380px;
  position: absolute;
  z-index: -1;
  left: 20px;
  bottom: -940px;
}

.about__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 60px 420px;
  grid-template-columns: auto 420px;
  gap: 60px;
  align-items: center;
}

.about__title {
  text-align: left;
}

.about__text {
  font-size: 24px;
  line-height: 150%;
  color: #dcdcdc;
  margin: 24px 0 0 0;
}

.about__right {
  background: radial-gradient(100% 100% at 50% 0%, #222223 0%, #1a1a1b 100%);
  border-radius: 20px;
  border: 1px solid #272727;
  padding: 28px 0;
  position: relative;
}
.about__right::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(130deg, rgba(171, 171, 171, 0.2) -40%, rgba(147, 147, 147, 0) 140%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  border-radius: 25px;
  z-index: -1;
}

.about__info {
  padding: 32px 60px;
}

.about__info:not(:first-child) {
  border-top: 1px solid #262626;
}

.about__number {
  font-weight: 600;
  font-size: 90px;
  line-height: 120%;
  color: #f0f0f0;
}

.about__note {
  font-size: 24px;
  line-height: 28px;
  color: #a1a1aa;
  margin: 12px 0 0 0;
}

@media screen and (max-width: 1350px) {
  .about {
    margin: 160px auto;
    max-width: 712px;
  }

  .about__about-bg {
    width: 1080px;
    left: 20px;
    bottom: -640px;
  }

  .about__grid {
    -ms-grid-columns: auto 20px 340px;
    grid-template-columns: auto 340px;
    gap: 20px;
  }

  .about__text {
    font-size: 20px;
  }

  .about__right {
    border-radius: 32px;
    padding: 16px 0;
  }
  .about__right::before {
    border-radius: 33px;
  }

  .about__info {
    padding: 24px 40px;
  }

  .about__number {
    font-size: 44px;
  }
}

@media screen and (max-width: 980px) {
  .about {
    margin: 120px auto;
    max-width: 752px;
    padding: 0 20px;
  }

  .about__about-bg {
    width: 800px;
    left: initial;
    bottom: -540px;
    right: -250px;
  }

  .about__grid {
    -ms-grid-columns: auto 354px;
    grid-template-columns: auto 354px;
  }

  .about__text {
    font-size: 18px;
  }

  .about__right {
    border-radius: 24px;
  }
  .about__right::before {
    border-radius: 25px;
  }

  .about__note {
    margin: 0 0 0 0;
  }
}

@media screen and (max-width: 750px) {
  .about {
    margin: 80px auto;
    padding: 0 18px;
  }

  .about__about-bg {
    width: 100%;
    bottom: -700px;
    right: 0;
  }

  .you-can__like-bg::after {
    content: none;
  }

  .about__grid {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 32px;
    align-items: initial;
  }

  .about__right {
    border-radius: 16px;
  }
  .about__right::before {
    border-radius: 17px;
  }
  .about__note {
    font-size: 18px;
  }
}

/*main-themes*/
.main-themes {
  margin: 190px 0 200px 0;
  position: relative;
  z-index: 5;
}

/*.main-themes__bg {
  position: absolute;
  width: 1440px;
  right: calc(50% - 770px);
  bottom: -650px;
  z-index: -1;
}*/

.main-themes__grid {
  margin: 80px auto 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  grid-gap: 52px;
  max-width: 950px;
}

.main-themes__block {
  background: #141416;
  border-radius: 16px;
  padding: 30px;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.main-themes__block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /*  border-radius: 17px;*/
}

.main-themes__block_1::before {
  background: linear-gradient(133deg, rgba(25, 224, 176, 0.3) 0%, rgba(21, 21, 21, 0) 43%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.main-themes__block_2::before {
  background: linear-gradient(240deg, rgba(224, 216, 25, 0.1) 0%, rgba(21, 21, 21, 0) 43%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.main-themes__block_3::before {
  background: linear-gradient(66deg, rgba(89, 25, 224, 0.4) 0%, rgba(21, 21, 21, 0) 43%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.main-themes__block_4::before {
  background: linear-gradient(321deg, rgba(220, 25, 224, 0.4) 0%, rgba(21, 21, 21, 0) 43%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.main-themes__icon-wrap {
  position: relative;
}

.main-themes__icon-bg {
  width: 130px;
  position: absolute;
  z-index: -1;
  left: -35px;
  top: -35px;
}

.main-themes__icon {
  border: 0.983333px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 15.7333px 31.4667px rgba(0, 0, 52, 0.04), 0px 7.86667px 15.7333px rgba(0, 0, 52, 0.04), 0px 3.93333px 7.86667px rgba(0, 0, 52, 0.04);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-themes__icon img {
  display: flex;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  width: 34px;
}

.main-themes__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  color: #f0f0f0;
  margin: 24px 0;
}

.main-themes__desc {
  font-size: 24px;
  line-height: 150%;
  color: #dcdcdc;
}

@media screen and (max-width: 1350px) {
  .main-themes {
    margin: 120px 0 160px 0;
  }

  .main-themes__grid {
    margin: 60px auto 0 auto;
    grid-gap: 56px;
    gap: 56px;
    max-width: 860px;
  }

  .main-themes__icon-bg {
    width: 110px;
    position: absolute;
    z-index: -1;
    left: -30px;
    top: -30px;
  }

  .main-themes__icon {
    width: 50px;
    height: 50px;
  }
  .main-themes__title {
    font-size: 28px;
  }
  .main-themes__desc {
    font-size: 20px;
  }
}

@media screen and (max-width: 980px) {
  .main-themes {
    margin: 120px 0;
    z-index: 12;
  }

  /*  .main-themes__bg {
    width: 480px;
    right: 30%;
    bottom: 0%;
  }*/

  .main-themes__grid {
    display: flex;
    margin: initial;
    grid-gap: 24px;
    gap: 24px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .main-themes__block {
    padding: 24px;
  }

  .main-themes__icon img {
    width: 24px;
  }

  .main-themes__title {
    font-size: 18px;
  }

  .main-themes__block {
    width: 324px;
  }

  .main-themes__wrap {
    width: calc(100% + 40px);
    margin: 50px -20px 0 -20px;
    padding: 0 20px;
    overflow: auto;
  }

  .main-themes__grid {
    display: flex;
    margin: initial;
    grid-gap: 24px;
    gap: 24px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .main-themes__desc {
    font-size: 16px;
    line-height: 150%;
  }
}

@media screen and (max-width: 750px) {
  .main-themes {
    margin: 100px 0;
    z-index: 11;
  }

  /*  .main-themes__bg {
    right: -20%;
    bottom: -50%;
  }*/

  .main-themes__grid {
    display: block;
    overflow-x: initial;
    width: initial;

    padding: initial;
    margin: 32px -20px 0 -20px;
  }

  .main-themes__elem {
  }

  .main-themes__wrap {
    width: initial;
    margin: initial;
    padding: initial;
    overflow: initial;
  }

  .main-themes__block {
    border-radius: 20px;
    width: initial;
    margin: 0 20px;
    max-width: initial;
  }

  .main-themes__title {
    font-size: 20px;
  }

  .main-themes__icon {
    width: 44px;
    height: 44px;
  }
}

/* footer-info */
.footer-info {
  margin: 253px 0 0 0;
  position: relative;
  z-index: 1;
}

.footer-info__computer {
  position: absolute;
  left: -111px;
  width: 886px;
  bottom: -34px;
  z-index: -1;
}

.footer-info__computer img {
  display: flex;
  -ms-grid-row-align: center;
  align-self: center;
}

.footer-info__circles {
  position: absolute;
  width: 219px;
  top: -240px;
  left: 400px;
}

.footer-info__grid {
  position: absolute;
  bottom: 0;
  width: 1290px;
  left: -60px;
  bottom: -160px;
  z-index: -2;
}

.footer-info__form-block-grid {
  position: absolute;
  left: 0;
  bottom: 400px;
  width: 1256px;
}

.footer-info__form-block-light {
  position: absolute;
  width: 2396px;
}

.footer-info__form-block-light_right {
  right: -1350px;
  bottom: 0;
}

.footer-info__form-block-light_left {
  left: -1400px;
  bottom: 100px;
}

.footer-info__wrap {
  display: flex;
  justify-content: flex-end;
}

.footer-info__content {
  position: relative;
  right: 0;
  max-width: 630px;
  padding-bottom: 202px;
}

.footer-info__content .title {
  text-align: left;
}

.footer-info__desc {
  margin: 32px 0 0 0;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #dcdcdc;
}

@media screen and (max-width: 1350px) {
  .footer-info {
    margin: 160px 0 0 0;
  }

  .footer-info__circles {
    width: 160px;
    top: -160px;
    left: initial;
    right: 600px;
  }

  .footer-info__grid {
    display: none;
  }

  .footer-info__form-block-grid {
    left: initial;
    bottom: 240px;
    right: -100px;
  }

  .footer-info__form-block-light {
    width: 1800px;
  }

  .footer-info__form-block-light_right {
    right: -1000px;
    bottom: 0;
  }

  .footer-info__form-block-light_left {
    left: -1000px;
    bottom: 100px;
  }

  .footer-info__content {
    max-width: 468px;
    padding-bottom: 150px;
  }

  .footer-info__desc {
    font-size: 20px;
  }
  .footer-info__computer {
    position: absolute;
    left: -83px;
    width: 700px;
    bottom: -11px;
    z-index: -1;
  }
}

@media screen and (max-width: 980px) {
  .footer-info {
    margin: 120px 0 0 0;
  }

  .footer-info__computer {
    left: 0px;
    width: 60%;
  }

  .footer-info__circles {
    width: 140px;
    top: -100px;
    left: initial;
    right: 520px;
  }

  .footer-info__grid {
    display: none;
  }

  .footer-info__form-block-grid {
    left: initial;
    bottom: 0;
    right: -200px;
  }

  .footer-info__form-block-light {
    position: absolute;
    width: 1600px;
  }

  .footer-info__form-block-light_right {
    right: -800px;
    bottom: 0;
  }

  .footer-info__form-block-light_left {
    left: -800px;
    bottom: 50px;
  }

  .footer-info__content {
    max-width: 57%;
    padding-bottom: 97px;
  }

  .footer-info__desc {
    font-size: 16px;
  }
}

@media screen and (max-width: 750px) {
  .footer-info {
    margin: 80px 0 0 0;
  }

  .footer-info__content {
    max-width: 100%;
  }
  .footer-info__computer {
    position: relative;
    left: -18px;
    width: 120%;
    bottom: 0;
    z-index: -2;
  }

  .footer-info__computer img {
    display: flex;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .footer-info__circles {
    display: none;
  }

  .footer-info__grid {
    display: none;
  }

  .footer-info__form-block-grid {
    display: none;
  }

  .footer-info__form-block-light {
    position: absolute;
    width: 400px;
  }

  .footer-info__form-block-light_right {
    right: 0;
    bottom: 100px;
  }

  .footer-info__form-block-light_left {
    left: 0;
    bottom: 900px;
  }

  .footer-info__wrap {
    display: flex;
    justify-content: initial;
    flex-direction: column-reverse;
  }

  .footer-info__content {
    padding-bottom: 24px;
  }

  .footer-info__content .title {
    text-align: left;
  }

  .footer-info__desc {
    max-width: initial;
    margin: 24px 0 0 0;
  }
}

/*footer*/
.footer {
  font-size: 13px;
  line-height: 16px;
  color: #8787ab;
  padding: 24px 0;
  border-top: 2px solid #fff;
  background: #f1f8ff;
  position: relative;
  z-index: 10;
}

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

.footer__col img {
  width: 120px;
}

.footer__text {
  margin: 12px 0 0 0;
}

.footer__col:nth-child(2) {
  text-align: right;
}

.footer__col a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.footer__col a:not(:first-child) {
  margin: 12px 0 0 0;
}

.footer__mobile-info {
  display: none;
}

.footer__color-mb {
  display: none;
}

@media screen and (max-width: 750px) {
  .footer {
    padding: 24px 0;
    z-index: 10;
    position: relative;
  }

  .footer__color-mb {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .footer__color-mb img {
    display: flex;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .footer__grid {
    display: block;
  }

  .footer__col img {
    display: flex;
    -ms-grid-row-align: center;
    align-self: center;
    margin: 0;
  }

  .footer__col {
    text-align: center;
  }

  .footer__text {
    display: none;
  }

  .footer__col:nth-child(2) {
    text-align: left;
    margin: 0;
  }

  .footer__col:nth-child(2) a {
    display: block;
    padding: 8px 0;
  }

  .footer__col a:not(:first-child) {
    margin: 0;
  }

  .footer__mobile-info {
    display: block;
    margin: 16px 0 0 0;
  }
}

/*speakers*/
.speakers {
  position: relative;
  z-index: 14;
}

.speakers img {
  width: 100%;
  display: flex;
  align-self: center;
}
/*
.speakers__bg {
  position: absolute;
  width: 1000px;
  height: 770px;
  z-index: -1;
}

.speakers__bg_top {
  top: -200px;
  right: -600px;
}

.speakers__bg_bottom {
  bottom: -500px;
  left: -400px;
}*/

.speakers__table {
  position: relative;
  margin: 80px 0 0 0 !important;
  background: rgba(21, 21, 21, 0.2);
  border-radius: 24px;
  border: 1px solid #2e2e2e;
  background: #141416;
}

.speakers__table::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(118deg, rgba(245, 216, 77, 0.2) 0%, #262626 25%);
  border-radius: 25px;
  z-index: -1;
}

.speakers__title {
  font-weight: 600;
  font-size: 38px;
  line-height: 120%;
  color: #f0f0f0;
  margin: 0 0 24px 0;
}

.speakers__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #f0f0f0;
  margin-bottom: 8px;
}

.speakers__about {
  font-size: 20px;
  line-height: 140%;
  color: #dcdcdc;
  color: rgba(220, 220, 220, 0.8);
}

.speakers__info {
  font-size: 28px;
  line-height: 140%;
  font-weight: 600;
  color: #dcdcdc;
  margin: 32px 0 0 0;
}

.speakers__about ul {
  margin: 24px 0 0 0;
  padding: 0 0 0 32px;
}

.speakers__about li {
  margin: 16px 0 0 0;
}

.speakers__right {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.speakers__left {
  border-right: 1px solid #2e2e2e;
  padding: 50px 80px 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.speakers__head {
  display: grid;
  grid-template-columns: 740px auto;
}

.speakers__body {
  border-top: 1px solid #2e2e2e;
  display: grid;
  grid-template-columns: 740px auto;
}

.speakers__body:first-child {
  border-top: none;
}

.speakers__img {
  width: 300px;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  border: 1px solid #272727;
  background: radial-gradient(100% 100% at 50% 0%, #222223 0%, #1a1a1b 100%);
}
.speakers__hat {
  position: absolute;
  transform: translate(-50%, -50%);
}

.speakers__img img {
  display: flex;
  align-self: center;
  justify-self: center;
}
/*
.speakers__img::before {
  content: '';
  background: linear-gradient(141.84deg, #474684 6.59%, rgba(71, 70, 132, 0) 138.38%);
  border: 3px solid #EAEAEA;

  width: 100%;
  height: 100%;
  position: absolute;
  right: -10px;
  top: -9px;
  z-index: -1;
}*/

@media screen and (max-width: 1350px) {
  /*  .speakers__bg {
    width: 750px;
    height: auto
  }

  .speakers__bg_top {
    top: -200px;
    right: -350px;
  }

  .speakers__bg_bottom {
    bottom: -200px;
    left: -30px;
  }*/

  .speakers__head {
    grid-template-columns: 560px auto;
  }

  .speakers__body {
    grid-template-columns: 560px auto;
  }

  .speakers__table {
    margin: 56px 0 0 0 !important;
  }

  .speakers__title {
    font-size: 34px;
  }

  .speakers__about {
    font-size: 20px;
    color: rgba(220, 220, 220, 0.8);
  }

  .speakers__info {
    font-size: 20px;
  }

  .speakers__about ul {
    padding: 0 0 0 28px;
  }

  .speakers__right {
    padding: 40px;
  }

  .speakers__left {
    padding: 40px;
  }

  .speakers__img {
    width: 270px;
  }
  /*
  .speakers__body_1 .speakers__img img {
    border-radius: 128.746px 21.6077px 21.6077px 135.048px;
  }

  .speakers__body_1 .speakers__img::before {
    border-radius: 128.746px 21.6077px 21.6077px 135.048px;
    height: 255px;
  }

  .speakers__body_2 .speakers__img img {
    border-radius: 21.6774px 121.032px 21.6774px 37.9355px;
  }

  .speakers__body_2 .speakers__img::before {
    border-radius: 21.6774px 121.032px 21.6774px 37.9355px;
    height: 261px;
  }

  .speakers__body_3 .speakers__img img {
    border-radius: 21.6774px 21.6774px 135.484px 135.484px;
  }

  .speakers__body_3 .speakers__img::before {
    border-radius: 21.6774px 21.6774px 135.484px 135.484px;
  }

  .speakers__body_4 .speakers__img img {
    border-radius: 21.6774px 21.6774px 21.6774px 135.484px;
  }

  .speakers__body_4 .speakers__img::before {
    border-radius: 21.6774px 21.6774px 21.6774px 135.484px;
  }

  .speakers__body_5 .speakers__img img {
    border-radius: 133.333px 133.333px 21.3333px 133.333px;
  }

  .speakers__body_5 .speakers__img::before {
    border-radius: 133.333px 133.333px 21.3333px 133.333px;
  }*/
}

@media screen and (max-width: 980px) {
  .speaker {
    margin: 120px 0 100px 0;
  }

  .speakers__title {
    font-size: 28px;
  }

  .speakers .title {
    text-align: left;
  }
  /*
  .speakers__bg {
    width: 500px;
    height: auto
  }

  .speakers__bg_top {
    top: -110px;
    right: -250px;
  }

  .speakers__bg_bottom {
    bottom: -220px;
    left: -150px;
}*/

  .speakers__name {
    font-size: 20px;
  }

  .speakers__about {
    font-size: 16px;
  }

  .speakers__info {
    margin: 16px 0 0 0;
    font-size: 16px;
  }

  .speakers__head,
  .speakers__body {
    grid-template-columns: 60% 40%;
  }

  .speakers__about ul {
    padding: 0 0 0 24px;
  }

  .speakers__right {
    padding: 32px;
  }

  .speakers__left {
    padding: 32px;
  }

  .speakers__img {
    width: 212px;
  }
  /*
  .speakers__body_1 .speakers__img img {
    border-radius: 101.158px 16.9775px 16.9775px 106.109px;
  }

  .speakers__body_1 .speakers__img::before {
    border-radius: 101.158px 16.9775px 16.9775px 106.109px;
    height: 200px;
  }

  .speakers__body_2 .speakers__img img {
    border-radius: 17.0323px 95.0968px 17.0323px 29.8064px;
  }

  .speakers__body_2 .speakers__img::before {
    border-radius: 17.0323px 95.0968px 17.0323px 29.8064px;
    height: 205px;
  }

  .speakers__body_3 .speakers__img img {
    border-radius: 17.0323px 17.0323px 106.452px 106.452px;
  }

  .speakers__body_3 .speakers__img::before {
    border-radius: 17.0323px 17.0323px 106.452px 106.452px;
  }

  .speakers__body_4 .speakers__img img {
    border-radius: 17.0323px 17.0323px 17.0323px 106.452px;
  }

  .speakers__body_4 .speakers__img::before {
    border-radius: 17.0323px 17.0323px 17.0323px 106.452px;
  }

  .speakers__body_5 .speakers__img img {
    border-radius: 104.762px 104.762px 16.7619px 104.762px;
  }

  .speakers__body_5 .speakers__img::before {
    border-radius: 104.762px 104.762px 16.7619px 104.762px;
  }*/
}

@media screen and (max-width: 750px) {
  .slick-list {
    overflow: visible;
  }
  .speakers__table {
    /*    width: calc(100% + 40px);*/
    margin: 24px 0 0 0 !important;
    background: none;
    border: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }

  .speakers__table::before {
    content: none;
  }

  .speakers__table .slick-slide {
    margin: 0 20px;
  }

  .speakers .splide__track {
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .speakers__title {
    font-size: 24px;
    margin: 0 0 16px 0;
  }

  .speakers__name {
    font-size: 20px;
  }

  .speakers__about {
    font-size: 16px;
    line-height: 140%;
    margin: 8px 0 0 0;
  }

  .speakers__about ul {
    margin: 16px 0 0 0;
    padding: 0 0 0 24px;
  }

  .speakers__about li {
    margin: 16px 0 0 0;
  }

  .speakers__right {
    padding: 6px 20px 24px 20px;
    margin-top: auto;
  }

  .speakers__left {
    border-right: initial;
    padding: 24px 20px;
  }

  .speakers__head {
    display: block;
  }
  .slick-list {
    overflow: visible;
  }

  .speakers__body {
    display: flex !important;
    flex-direction: column;
    background: #151515;
    border-radius: 16px;
    height: 100%;
    position: relative;
  }
  .speakers__body::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(137deg, #f5d84d 0%, #262626 34%, rgba(245, 216, 77, 0.5) 60%, #262626 80%);
    border-radius: 17px;
    z-index: -1;
  }

  .speakers__img {
    width: 164px;
  }

  .speakers__img:before {
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 16px 16px 16px 8px;
  }
  /*
  .speakers__body_1 .speakers__img img {
    border-radius: 78.1673px 13.119px 13.119px 81.9936px;
  }

  .speakers__body_1 .speakers__img::before {
    border-radius: 78.1673px 13.119px 13.119px 81.9936px;
    height: 155px;
  }

  .speakers__body_2 .speakers__img img {
    border-radius: 13.1613px 73.4839px 13.1613px 23.0323px;
  }

  .speakers__body_2 .speakers__img::before {
    border-radius: 13.1613px 73.4839px 13.1613px 23.0323px;
    height: 159px;
  }

  .speakers__body_3 .speakers__img img {
    border-radius: 13.4795px 13.4795px 84.2468px 84.2468px;
  }

  .speakers__body_3 .speakers__img::before {
    border-radius: 13.4795px 13.4795px 84.2468px 84.2468px;
  }

  .speakers__body_4 .speakers__img img {
    border-radius: 13.1613px 13.1613px 13.1613px 82.2581px;
  }

  .speakers__body_4 .speakers__img::before {
    border-radius: 13.1613px 13.1613px 13.1613px 82.2581px;
  }

  .speakers__body_5 .speakers__img img {
    border-radius: 80.9525px 80.9525px 12.9524px 80.9525px;
  }

  .speakers__body_5 .speakers__img::before {
    border-radius: 80.9525px 80.9525px 12.9524px 80.9525px;
  }*/

  /*  .speakers__bg_top {
    width: 500px;
    height: auto;
    top: -110px;
    right: -210px;
  }

  .speakers__bg_bottom {
    width: 500px;
    height: auto;
    bottom: -240px;
    left: -195px;
  }*/
}

/*splide*/

.splide__pagination {
  margin: 16px;
  gap: 6px;
}

.splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 49.374px;
  background: linear-gradient(129deg, rgba(250, 250, 250, 0.07) -0.77%, rgba(164, 164, 164, 0) 140.72%);
  border: none;
}
.splide__pagination__page.is-active {
  background: linear-gradient(129deg, rgba(250, 250, 250, 0.47) -0.77%, rgba(164, 164, 164, 0) 140.72%);
}

/*book*/
.book {
  margin: 250px 0 200px;
  z-index: 17;
  position: relative;
  overflow: hidden;
}

.book__img img {
  width: 100%;
  display: flex;
  align-self: center;
}

.book__bg {
  width: 1662px;
  position: absolute;
  right: -800px;
  top: -800px;
  z-index: -2;
}

.book__block {
  padding: 40px;
  background: radial-gradient(at center top, rgba(34, 34, 35, 1) 0%, rgba(26, 26, 27, 1) 100%);
  border-radius: 20px;
  position: relative;
  border: 1px solid #262626;
}

/*.book__block::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(188deg, #3E41AD 0%, #262626 34%);
  border-radius: 38px;
  z-index: -1;
}*/

.book__img {
  position: absolute;
  width: 45%;
  right: 50px;
  bottom: -55px;
}

.book__title {
  font-size: 54px;
  line-height: 120%;
  color: #f0f0f0;
  font-weight: 700;
}

.book__desc {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #dcdcdc;
  margin: 24px 0 64px 0;
  max-width: 670px;
}

.book__text {
  padding: 0 40% 0 0;
}

@media screen and (max-width: 1350px) {
  .book {
    margin: 160px 0;
    position: relative;
  }
  .book__block::before {
    border-radius: 33px;
  }

  .book__desc {
    font-size: 20px;
  }
}

@media screen and (max-width: 980px) {
  .book {
    margin: 120px 0;
  }

  .book__block {
    padding: 32px;
  }

  /*.book__title {
    font-size: 24px;
    line-height: 120%;
  }*/

  .book__desc {
    font-size: 16px;
    margin: 20px 0 32px 0;
  }

  .book__text {
    position: relative;
    z-index: 2;
  }
}

@media screen and (max-width: 750px) {
  .book {
    margin: 80px 0;
  }

  .book__bg {
    width: 800px;
    right: -400px;
    top: -400px;
  }

  .book__block {
    padding: 24px;
    border-radius: 16px;
  }
  .book__block::before {
    border-radius: 17px;
  }

  .book__img {
    width: 110%;
  }

  .book__img img {
    margin: 0;
    width: 100%;
  }

  .book__title {
    font-size: 30px;
    line-height: 120%;
    text-align: left;
  }

  .book__desc {
    text-align: left;
    margin: 12px 0 24px 0;
  }

  .book__text {
    max-width: initial;
    padding: 0 0 55% 0;
  }

  .book .btn-with-gradiend {
    margin: 24px auto 0 auto;
  }
}

/*format*/
.format {
  margin: 200px 0;
  z-index: 12;
  position: relative;
}

.format .title {
  text-align: left;
}

.format__grid {
}

.format__bg {
  position: absolute;
  z-index: -2;
  width: 1035px;
  top: -350px;
  left: -100px;
}

.format_cicles {
  position: absolute;
  z-index: -1;
  width: 163px;
  top: -150px;
  right: 100px;
}

.format__grid {
  margin: 80px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 90px;
  gap: 90px;
}

.format__icon {
  width: 40px;
}

.format__icon img {
  display: flex;
  align-self: center;
  justify-self: center;
}

.format__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.01em;
  color: #f0f0f0;
  margin: 12px 0 24px 0;
  padding: 0 0 24px 0;
  position: relative;
}

.format__title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, #9e52ff -12.5%, rgba(158, 82, 255, 0) 143.13%);
  left: 0;
  bottom: 0;
}

.format__desc {
  font-size: 18px;
  line-height: 24px;
  color: #dcdcdc;
}

@media screen and (max-width: 1350px) {
  .format {
    margin: 80px 0 160px 0;
  }

  .format__grid {
    margin: 45px 0 0 0;
    grid-gap: 48px;
    gap: 48px;
  }

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

  .format__desc {
    font-size: 16px;
    line-height: 150%;
  }
}

@media screen and (max-width: 980px) {
  .format {
    margin: 40px 0 120px 0;
  }

  .format__grid {
    grid-gap: 18px;
    gap: 18px;
  }

  .format__icon {
    width: 32px;
  }

  .format__title {
    font-size: 18px;
    line-height: 120%;
    margin: 12px 0 16px 0;
    padding: 0 0 16px 0;
  }

  .format__title::after {
    width: 60px;
  }
}

@media screen and (max-width: 750px) {
  .format {
    margin: 20px 0 80px 0;
  }

  .format__bg {
    display: none;
  }

  .format_cicles {
    position: absolute;
    z-index: -1;
    width: 80px;
    top: -80px;
    right: 50px;
  }

  .format__grid {
    grid-template-columns: 100%;
    grid-gap: 24px;
    gap: 24px;
  }

  .format__icon {
    margin: initial;
  }

  .format__title {
    text-align: left;
    font-size: 20px;
  }

  .format__title::after {
    left: 0;
  }

  .format__desc {
    text-align: left;
  }
}

.over-overlay {
  position: fixed;
  top: 0;
  overflow: auto;
  width: 100%;
  z-index: 100;
  min-height: 100vh;
  display: none;
}

.overlay {
  width: 100%;
  /*height: 100vh;
  height: -webkit-fill-available;*/
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(32, 29, 26, 0.6);
  display: none;
  -webkit-filter: blur(8px);
          filter: blur(8px);
}

.menu-overlay {
  z-index: 3 !important;
}

.form-popup {
  display: none;
  max-width: 500px;
  margin: 0 auto;
  position: absolute;
  top: 10vh;
  left: 0;
  right: 0;
  z-index: 120;
}

.callbackform__message {
  position: relative;
  padding: 40px 48px;
  background: #fff;
  border: 1px solid rgb(149, 149, 149, 0.5);
  border-radius: 24px;
}

.callbackform__message_thnx {
  text-align: center;
}

.close-icon {
  cursor: pointer;
  z-index: 6;
  position: absolute;
  top: 24px;
  right: 24px;
  height: 16px;
  width: 16px;
  background-image: url(../img/default/close-icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.callbackform__thnx-img {
  display: block;
  margin: 0 auto 4px auto;
  width: 56px;
}

.callbackform__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: #474766;
}

.callbackform__description {
  font-size: 18px;
  line-height: 22px;
  color: #8787ab;
  margin: 8px 0 0 0;
}

.callbackform__note {
  color: #f0f0f0;
  opacity: 0.8;
  font-size: 14px;
  line-height: 18px;
  margin: 24px 0 0 0;
}

.callbackform__input {
  margin: 16px 0 0 0;
  background: #fff;
  border-radius: 8px;
  font-size: 16px;
  line-height: 32px;
  color: #8f96a5 !important;
  padding: 12px 24px;
  border: 1px solid #eaf4ff;
  width: 100%;
  outline: none;
}

.callbackform__input::-webkit-input-placeholder {
  color: rgba(29, 29, 29, 0.5);
}

.callbackform__input::-moz-placeholder {
  color: rgba(29, 29, 29, 0.5);
}

.callbackform__input:-ms-input-placeholder {
  color: rgba(29, 29, 29, 0.5);
}

.callbackform__input::-ms-input-placeholder {
  color: rgba(29, 29, 29, 0.5);
}

.callbackform__input::placeholder {
  color: rgba(29, 29, 29, 0.5);
}

.callbackform__btn {
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  padding: 16px 24px;
  margin: 24px 0 0 0;
  border: none;
  cursor: pointer;
  transition: 0.2s all;
}

.callbackform__btn_disabled {
  background: #e2e2e2;
  color: rgba(29, 29, 29, 0.5);
  cursor: initial;
}

/*.callbackform__btn:hover {
  background: #7987FF;
}*/

.callbackform__btn_disabled:hover {
  background: #e2e2e2;
}

.callbackform__agreecheck {
  margin: 16px 0 0 0;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 8px;
  margin: 8px -8px -8px -8px;
  transition: 0.2s;
}

.callbackform__agreecheck.error {
  border: 1px solid #ff5858;
  border-radius: 10px;
  padding: 8px;
  margin: 8px -8px -8px -8px;
}

.callbackform__checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.callbackform__checkbox + label {
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 0 0 0 40px;
  position: relative;
  font-size: 12px;
  line-height: 16px;
  color: #a5a5c0;
  opacity: 0.8;
}

.callbackform__checkbox + label a {
  color: inherit;
}

.callbackform__note-message a {
  color: inherit;
}

.callbackform__checkbox + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: transparent;
  border-radius: 2px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 13px;
  cursor: pointer;
  border: 1px solid #6366f1;
}

.callbackform__checkbox:checked + label::before {
  background-image: url("../img/default/checkbox.svg");
  background-size: 80%;
}

.callbackform__error-message {
  color: #ff5858;
  position: relative;
  line-height: 0px;
  opacity: 0;
  transition: all 0.2s;
  font-size: 13px;
  margin: 8px 0 -8px 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  padding: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  border-radius: 4px;
  border: 1px solid #f08585;
  width: 100%;
}

.callbackform__message input.error {
  color: #ff5858;
}

.callbackform__add-to-calendar {
  border: 2px solid #eaf4ff;
  border-radius: 12px;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  color: #8f96a5;
  padding: 18px;
  margin: 16px 0 0 0;
  position: relative;
}

.callbackform__add-to-calendar:hover {
  background: pink;
}

.callbackform__add-to-calendar img {
  width: 20px;
  position: relative;
  top: 3px;
  margin: -5px 0 0 3px;
}

@-webkit-keyframes input-error {
  0% {
    transform: translate(0);
  }

  33% {
    transform: translate(5px);
  }

  66% {
    transform: translate(-5px);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes input-error {
  0% {
    transform: translate(0);
  }

  33% {
    transform: translate(5px);
  }

  66% {
    transform: translate(-5px);
  }

  100% {
    transform: translate(0);
  }
}

/*new styles*/
.hidden {
  display: none;
}

.callbackform___stap-phone-code {
  display: none;
  position: relative;
}

.callbackform___stap-with-email {
  display: none;
  position: relative;
}

.callbackform__note-message {
  color: #8787ab;
  opacity: 0.8;
  font-size: 12px;
  line-height: 16px;
  margin: 12px 0 0 0;
}

.allbackform__note-message_top {
  margin: 24px 0 0 0;
}

.callbackform__input-code-wrap {
  position: relative;
}

.callbackform__input-code-state {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 24px;
  height: 24px;
  background-size: contain;
  display: none;
}

.callbackform__input-code-state_sending {
  background: url(../img/default/sending.svg) center center no-repeat;
  transform: rotate(0);
  -webkit-animation: rotation 2s linear infinite;
          animation: rotation 2s linear infinite;
  display: block;
}

.callbackform__input-code-state_success {
  background: url(../img/default/success.svg) center center no-repeat;
  display: block;
}

.callbackform__input-code-state_new-code {
  background: url(../img/default/new-code.svg) center center no-repeat;
  display: block;
  cursor: pointer;
}

@-webkit-keyframes rotation {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.callbackform__href-next-step {
  text-decoration: underline;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  line-height: 20px;
  color: #6366f1;
  opacity: 0.8;
  margin: 20px auto 0 auto;
}

.callbackform__arrow-back {
  position: absolute;
  top: -20px;
  left: -30px;
  cursor: pointer;
}

.callbackform__arrow-back img {
  width: 24px;
}

.callbackform___stap-phone-code-hidden {
  display: none;
}

.callbackform__message_thnx {
  display: none;
}

.callbackform__title_ltl {
  font-size: 24px;
  line-height: 32px;
}

@media screen and (max-width: 750px) {
  .callbackform__arrow-back {
    top: -19px;
    left: -12px;
  }

  .callbackform__arrow-back img {
    width: 17px;
  }

  .callbackform__title_ltl {
    font-size: 18px;
    line-height: 24px;
  }
}

/*pre-btn-qw*/
.pre-btn-qw {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 21px;
}

.pre-btn-qw__text {
  font-size: 18px;
  line-height: 120%;
  color: #f0f0f0;
}

.pre-btn-qw__switch-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.pre-btn-qw__switch {
  background: #bdbdbd;
  width: 50px;
  height: 30px;
  border-radius: 15px;
  position: relative;
  transition: 0.3s;
  flex-shrink: 0;
  cursor: pointer;
}

.pre-btn-qw__switch-tongue {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 13px;
  background: #ffffff;
  top: 2px;
  left: 2px;
  transition: 0.3s;
  box-shadow: 0px 2px 6px -2px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.pre-btn-qw__switch-input:checked + .pre-btn-qw__switch {
  background: #586dec;
}

.pre-btn-qw__switch-input:checked + .pre-btn-qw__switch .pre-btn-qw__switch-tongue {
  left: 22px;
}

@media screen and (max-width: 750px) {
  .pre-btn-qw {
    margin-top: 12px;
  }

  .pre-btn-qw__text {
    font-size: 14px;
  }
}

/*new styles*/
@media screen and (max-width: 1350px) {
  .callbackform__description {
    font-size: 16px;
    line-height: 22px;
  }

  .callbackform__note {
    margin: 16px 0 0 0;
  }

  .callbackform__btn {
    font-size: 16px;
  }

  .callbackform__input {
    font-size: 16px;
    line-height: 22px;
    border-radius: 8px;
  }

  .callbackform__add-to-calendar {
    border-radius: 8px;
    padding: 12px;
  }
}

@media screen and (max-width: 750px) {
  .form-popup {
    max-width: 400px;
  }

  .callbackform__message {
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 32px 24px 32px 24px;
  }

  .close-icon {
    top: 17px;
    right: 16px;
    height: 16px;
    width: 16px;
  }

  .callbackform__title {
    font-size: 24px;
    line-height: 28px;
  }

  .callbackform__description {
    font-size: 16px;
    line-height: 20px;
    margin: 8px 0 8px 0;
  }

  .callbackform__input {
    margin: 8px 0 0 0;
    line-height: 20px;
    padding: 12px 16px;
  }

  .callbackform__btn {
    padding: 14px 24px;
  }

  .callbackform__checkbox + label {
    padding: 0 0 0 32px;
  }
}

/*phone mask*/
.callbackform__input-container {
  position: relative;
  margin-top: 16px;
  display: inline-block;
  width: 100%;
}
.callbackform__input-container .callbackform__input {
  margin: 0;
}
.callbackform__input-phone-mask {
  padding: 12px 24px 12px 73px;
}
.callbackform__input.border-square {
  /* border-radius: 10px 10px 0 0; */
}

.callbackform__flag-container {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  width: 57px;
  height: 40px;
  background: #fff;
  /* border-radius: 6px; */
  padding: 12px 0 12px 12px;
  display: flex;
  align-items: center;
}

.callbackform__flag-container::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  background: url(../img/default/callbackform__flag-arrow.svg) center center no-repeat;
  background-size: contain;
  width: 8px;
  height: 6px;
}

.callbackform__flag {
  /*  height: 15px;*/
  /*  box-shadow: 0px 0px 1px 0px #888;*/
  /* border-radius: 2.5px; */
  width: 20px;
  margin: 0 16px 0 0;
  transform: scale(1.2);
  background-image: url("../img/default/flags.png");
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .callbackform__flag {
    background-image: url("../img/default/flags@2x.png");
  }
}

.callbackform__dropdown {
  position: absolute;
  top: 46px;
  background: #f8f8f8;
  z-index: 2;
  width: 100%;
  border: 1px solid #ededed;
  /* border-radius: 0px 0px 12px 12px; */
  overflow: hidden;
}

.callbackform__dropdown.hide {
  display: none;
}

.callbackform__dropdown.show {
  display: block;
}

.callbackform__country-list {
  padding: 0;
  margin: 0;
  height: 100%;
  max-height: 50vh;
  overflow: auto;
}

.callbackform__country-item {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 22px;
  cursor: pointer;
}

.callbackform__country-item.hide {
  display: none;
}

.callbackform__country-item:hover {
  background: #fff;
}

.callbackform__country-name {
  display: inline-block;
  margin-right: 8px;
  color: #454545;
}
.callbackform__country-phone-code {
  color: #454545;
}

@media screen and (max-width: 750px) {
  .callbackform__dropdown {
    top: 44px;
  }
}

/*flags*/

.callbackform__flag {
}
.callbackform__flag.flag_be {
  width: 18px;
}
.callbackform__flag.flag_ch {
  width: 15px;
}
.callbackform__flag.flag_mc {
  width: 19px;
}
.callbackform__flag.flag_ne {
  width: 18px;
}
.callbackform__flag.flag_np {
  width: 13px;
}
.callbackform__flag.flag_va {
  width: 15px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .callbackform__flag {
    background-size: 5652px 15px;
  }
}
.callbackform__flag.flag_ac {
  height: 10px;
  background-position: 0px 0px;
}
.callbackform__flag.flag_ad {
  height: 14px;
  background-position: -22px 0px;
}
.callbackform__flag.flag_ae {
  height: 10px;
  background-position: -44px 0px;
}
.callbackform__flag.flag_af {
  height: 14px;
  background-position: -66px 0px;
}
.callbackform__flag.flag_ag {
  height: 14px;
  background-position: -88px 0px;
}
.callbackform__flag.flag_ai {
  height: 10px;
  background-position: -110px 0px;
}
.callbackform__flag.flag_al {
  height: 15px;
  background-position: -132px 0px;
}
.callbackform__flag.flag_am {
  height: 10px;
  background-position: -154px 0px;
}
.callbackform__flag.flag_ao {
  height: 14px;
  background-position: -176px 0px;
}
.callbackform__flag.flag_aq {
  height: 14px;
  background-position: -198px 0px;
}
.callbackform__flag.flag_ar {
  height: 13px;
  background-position: -220px 0px;
}
.callbackform__flag.flag_as {
  height: 10px;
  background-position: -242px 0px;
}
.callbackform__flag.flag_at {
  height: 14px;
  background-position: -264px 0px;
}
.callbackform__flag.flag_au {
  height: 10px;
  background-position: -286px 0px;
}
.callbackform__flag.flag_aw {
  height: 14px;
  background-position: -308px 0px;
}
.callbackform__flag.flag_ax {
  height: 13px;
  background-position: -330px 0px;
}
.callbackform__flag.flag_az {
  height: 10px;
  background-position: -352px 0px;
}
.callbackform__flag.flag_ba {
  height: 10px;
  background-position: -374px 0px;
}
.callbackform__flag.flag_bb {
  height: 14px;
  background-position: -396px 0px;
}
.callbackform__flag.flag_bd {
  height: 12px;
  background-position: -418px 0px;
}
.callbackform__flag.flag_be {
  height: 15px;
  background-position: -440px 0px;
}
.callbackform__flag.flag_bf {
  height: 14px;
  background-position: -460px 0px;
}
.callbackform__flag.flag_bg {
  height: 12px;
  background-position: -482px 0px;
}
.callbackform__flag.flag_bh {
  height: 12px;
  background-position: -504px 0px;
}
.callbackform__flag.flag_bi {
  height: 12px;
  background-position: -526px 0px;
}
.callbackform__flag.flag_bj {
  height: 14px;
  background-position: -548px 0px;
}
.callbackform__flag.flag_bl {
  height: 14px;
  background-position: -570px 0px;
}
.callbackform__flag.flag_bm {
  height: 10px;
  background-position: -592px 0px;
}
.callbackform__flag.flag_bn {
  height: 10px;
  background-position: -614px 0px;
}
.callbackform__flag.flag_bo {
  height: 14px;
  background-position: -636px 0px;
}
.callbackform__flag.flag_bq {
  height: 14px;
  background-position: -658px 0px;
}
.callbackform__flag.flag_br {
  height: 14px;
  background-position: -680px 0px;
}
.callbackform__flag.flag_bs {
  height: 10px;
  background-position: -702px 0px;
}
.callbackform__flag.flag_bt {
  height: 14px;
  background-position: -724px 0px;
}
.callbackform__flag.flag_bv {
  height: 15px;
  background-position: -746px 0px;
}
.callbackform__flag.flag_bw {
  height: 14px;
  background-position: -768px 0px;
}
.callbackform__flag.flag_by {
  height: 10px;
  background-position: -790px 0px;
}
.callbackform__flag.flag_bz {
  height: 14px;
  background-position: -812px 0px;
}
.callbackform__flag.flag_ca {
  height: 10px;
  background-position: -834px 0px;
}
.callbackform__flag.flag_cc {
  height: 10px;
  background-position: -856px 0px;
}
.callbackform__flag.flag_cd {
  height: 15px;
  background-position: -878px 0px;
}
.callbackform__flag.flag_cf {
  height: 14px;
  background-position: -900px 0px;
}
.callbackform__flag.flag_cg {
  height: 14px;
  background-position: -922px 0px;
}
.callbackform__flag.flag_ch {
  height: 15px;
  background-position: -944px 0px;
}
.callbackform__flag.flag_ci {
  height: 14px;
  background-position: -961px 0px;
}
.callbackform__flag.flag_ck {
  height: 10px;
  background-position: -983px 0px;
}
.callbackform__flag.flag_cl {
  height: 14px;
  background-position: -1005px 0px;
}
.callbackform__flag.flag_cm {
  height: 14px;
  background-position: -1027px 0px;
}
.callbackform__flag.flag_cn {
  height: 14px;
  background-position: -1049px 0px;
}
.callbackform__flag.flag_co {
  height: 14px;
  background-position: -1071px 0px;
}
.callbackform__flag.flag_cp {
  height: 14px;
  background-position: -1093px 0px;
}
.callbackform__flag.flag_cr {
  height: 12px;
  background-position: -1115px 0px;
}
.callbackform__flag.flag_cu {
  height: 10px;
  background-position: -1137px 0px;
}
.callbackform__flag.flag_cv {
  height: 12px;
  background-position: -1159px 0px;
}
.callbackform__flag.flag_cw {
  height: 14px;
  background-position: -1181px 0px;
}
.callbackform__flag.flag_cx {
  height: 10px;
  background-position: -1203px 0px;
}
.callbackform__flag.flag_cy {
  height: 14px;
  background-position: -1225px 0px;
}
.callbackform__flag.flag_cz {
  height: 14px;
  background-position: -1247px 0px;
}
.callbackform__flag.flag_de {
  height: 12px;
  background-position: -1269px 0px;
}
.callbackform__flag.flag_dg {
  height: 10px;
  background-position: -1291px 0px;
}
.callbackform__flag.flag_dj {
  height: 14px;
  background-position: -1313px 0px;
}
.callbackform__flag.flag_dk {
  height: 15px;
  background-position: -1335px 0px;
}
.callbackform__flag.flag_dm {
  height: 10px;
  background-position: -1357px 0px;
}
.callbackform__flag.flag_do {
  height: 14px;
  background-position: -1379px 0px;
}
.callbackform__flag.flag_dz {
  height: 14px;
  background-position: -1401px 0px;
}
.callbackform__flag.flag_ea {
  height: 14px;
  background-position: -1423px 0px;
}
.callbackform__flag.flag_ec {
  height: 14px;
  background-position: -1445px 0px;
}
.callbackform__flag.flag_ee {
  height: 13px;
  background-position: -1467px 0px;
}
.callbackform__flag.flag_eg {
  height: 14px;
  background-position: -1489px 0px;
}
.callbackform__flag.flag_eh {
  height: 10px;
  background-position: -1511px 0px;
}
.callbackform__flag.flag_er {
  height: 10px;
  background-position: -1533px 0px;
}
.callbackform__flag.flag_es {
  height: 14px;
  background-position: -1555px 0px;
}
.callbackform__flag.flag_et {
  height: 10px;
  background-position: -1577px 0px;
}
.callbackform__flag.flag_eu {
  height: 14px;
  background-position: -1599px 0px;
}
.callbackform__flag.flag_fi {
  height: 12px;
  background-position: -1621px 0px;
}
.callbackform__flag.flag_fj {
  height: 10px;
  background-position: -1643px 0px;
}
.callbackform__flag.flag_fk {
  height: 10px;
  background-position: -1665px 0px;
}
.callbackform__flag.flag_fm {
  height: 11px;
  background-position: -1687px 0px;
}
.callbackform__flag.flag_fo {
  height: 15px;
  background-position: -1709px 0px;
}
.callbackform__flag.flag_fr {
  height: 14px;
  background-position: -1731px 0px;
}
.callbackform__flag.flag_ga {
  height: 15px;
  background-position: -1753px 0px;
}
.callbackform__flag.flag_gb {
  height: 10px;
  background-position: -1775px 0px;
}
.callbackform__flag.flag_gd {
  height: 12px;
  background-position: -1797px 0px;
}
.callbackform__flag.flag_ge {
  height: 14px;
  background-position: -1819px 0px;
}
.callbackform__flag.flag_gf {
  height: 14px;
  background-position: -1841px 0px;
}
.callbackform__flag.flag_gg {
  height: 14px;
  background-position: -1863px 0px;
}
.callbackform__flag.flag_gh {
  height: 14px;
  background-position: -1885px 0px;
}
.callbackform__flag.flag_gi {
  height: 10px;
  background-position: -1907px 0px;
}
.callbackform__flag.flag_gl {
  height: 14px;
  background-position: -1929px 0px;
}
.callbackform__flag.flag_gm {
  height: 14px;
  background-position: -1951px 0px;
}
.callbackform__flag.flag_gn {
  height: 14px;
  background-position: -1973px 0px;
}
.callbackform__flag.flag_gp {
  height: 14px;
  background-position: -1995px 0px;
}
.callbackform__flag.flag_gq {
  height: 14px;
  background-position: -2017px 0px;
}
.callbackform__flag.flag_gr {
  height: 14px;
  background-position: -2039px 0px;
}
.callbackform__flag.flag_gs {
  height: 10px;
  background-position: -2061px 0px;
}
.callbackform__flag.flag_gt {
  height: 13px;
  background-position: -2083px 0px;
}
.callbackform__flag.flag_gu {
  height: 11px;
  background-position: -2105px 0px;
}
.callbackform__flag.flag_gw {
  height: 10px;
  background-position: -2127px 0px;
}
.callbackform__flag.flag_gy {
  height: 12px;
  background-position: -2149px 0px;
}
.callbackform__flag.flag_hk {
  height: 14px;
  background-position: -2171px 0px;
}
.callbackform__flag.flag_hm {
  height: 10px;
  background-position: -2193px 0px;
}
.callbackform__flag.flag_hn {
  height: 10px;
  background-position: -2215px 0px;
}
.callbackform__flag.flag_hr {
  height: 10px;
  background-position: -2237px 0px;
}
.callbackform__flag.flag_ht {
  height: 12px;
  background-position: -2259px 0px;
}
.callbackform__flag.flag_hu {
  height: 10px;
  background-position: -2281px 0px;
}
.callbackform__flag.flag_ic {
  height: 14px;
  background-position: -2303px 0px;
}
.callbackform__flag.flag_id {
  height: 14px;
  background-position: -2325px 0px;
}
.callbackform__flag.flag_ie {
  height: 10px;
  background-position: -2347px 0px;
}
.callbackform__flag.flag_il {
  height: 15px;
  background-position: -2369px 0px;
}
.callbackform__flag.flag_im {
  height: 10px;
  background-position: -2391px 0px;
}
.callbackform__flag.flag_in {
  height: 14px;
  background-position: -2413px 0px;
}
.callbackform__flag.flag_io {
  height: 10px;
  background-position: -2435px 0px;
}
.callbackform__flag.flag_iq {
  height: 14px;
  background-position: -2457px 0px;
}
.callbackform__flag.flag_ir {
  height: 12px;
  background-position: -2479px 0px;
}
.callbackform__flag.flag_is {
  height: 15px;
  background-position: -2501px 0px;
}
.callbackform__flag.flag_it {
  height: 14px;
  background-position: -2523px 0px;
}
.callbackform__flag.flag_je {
  height: 12px;
  background-position: -2545px 0px;
}
.callbackform__flag.flag_jm {
  height: 10px;
  background-position: -2567px 0px;
}
.callbackform__flag.flag_jo {
  height: 10px;
  background-position: -2589px 0px;
}
.callbackform__flag.flag_jp {
  height: 14px;
  background-position: -2611px 0px;
}
.callbackform__flag.flag_ke {
  height: 14px;
  background-position: -2633px 0px;
}
.callbackform__flag.flag_kg {
  height: 12px;
  background-position: -2655px 0px;
}
.callbackform__flag.flag_kh {
  height: 13px;
  background-position: -2677px 0px;
}
.callbackform__flag.flag_ki {
  height: 10px;
  background-position: -2699px 0px;
}
.callbackform__flag.flag_km {
  height: 12px;
  background-position: -2721px 0px;
}
.callbackform__flag.flag_kn {
  height: 14px;
  background-position: -2743px 0px;
}
.callbackform__flag.flag_kp {
  height: 10px;
  background-position: -2765px 0px;
}
.callbackform__flag.flag_kr {
  height: 14px;
  background-position: -2787px 0px;
}
.callbackform__flag.flag_kw {
  height: 10px;
  background-position: -2809px 0px;
}
.callbackform__flag.flag_ky {
  height: 10px;
  background-position: -2831px 0px;
}
.callbackform__flag.flag_kz {
  height: 10px;
  background-position: -2853px 0px;
}
.callbackform__flag.flag_la {
  height: 14px;
  background-position: -2875px 0px;
}
.callbackform__flag.flag_lb {
  height: 14px;
  background-position: -2897px 0px;
}
.callbackform__flag.flag_lc {
  height: 10px;
  background-position: -2919px 0px;
}
.callbackform__flag.flag_li {
  height: 12px;
  background-position: -2941px 0px;
}
.callbackform__flag.flag_lk {
  height: 10px;
  background-position: -2963px 0px;
}
.callbackform__flag.flag_lr {
  height: 11px;
  background-position: -2985px 0px;
}
.callbackform__flag.flag_ls {
  height: 14px;
  background-position: -3007px 0px;
}
.callbackform__flag.flag_lt {
  height: 12px;
  background-position: -3029px 0px;
}
.callbackform__flag.flag_lu {
  height: 12px;
  background-position: -3051px 0px;
}
.callbackform__flag.flag_lv {
  height: 10px;
  background-position: -3073px 0px;
}
.callbackform__flag.flag_ly {
  height: 10px;
  background-position: -3095px 0px;
}
.callbackform__flag.flag_ma {
  height: 14px;
  background-position: -3117px 0px;
}
.callbackform__flag.flag_mc {
  height: 15px;
  background-position: -3139px 0px;
}
.callbackform__flag.flag_md {
  height: 10px;
  background-position: -3160px 0px;
}
.callbackform__flag.flag_me {
  height: 10px;
  background-position: -3182px 0px;
}
.callbackform__flag.flag_mf {
  height: 14px;
  background-position: -3204px 0px;
}
.callbackform__flag.flag_mg {
  height: 14px;
  background-position: -3226px 0px;
}
.callbackform__flag.flag_mh {
  height: 11px;
  background-position: -3248px 0px;
}
.callbackform__flag.flag_mk {
  height: 10px;
  background-position: -3270px 0px;
}
.callbackform__flag.flag_ml {
  height: 14px;
  background-position: -3292px 0px;
}
.callbackform__flag.flag_mm {
  height: 14px;
  background-position: -3314px 0px;
}
.callbackform__flag.flag_mn {
  height: 10px;
  background-position: -3336px 0px;
}
.callbackform__flag.flag_mo {
  height: 14px;
  background-position: -3358px 0px;
}
.callbackform__flag.flag_mp {
  height: 10px;
  background-position: -3380px 0px;
}
.callbackform__flag.flag_mq {
  height: 14px;
  background-position: -3402px 0px;
}
.callbackform__flag.flag_mr {
  height: 14px;
  background-position: -3424px 0px;
}
.callbackform__flag.flag_ms {
  height: 10px;
  background-position: -3446px 0px;
}
.callbackform__flag.flag_mt {
  height: 14px;
  background-position: -3468px 0px;
}
.callbackform__flag.flag_mu {
  height: 14px;
  background-position: -3490px 0px;
}
.callbackform__flag.flag_mv {
  height: 14px;
  background-position: -3512px 0px;
}
.callbackform__flag.flag_mw {
  height: 14px;
  background-position: -3534px 0px;
}
.callbackform__flag.flag_mx {
  height: 12px;
  background-position: -3556px 0px;
}
.callbackform__flag.flag_my {
  height: 10px;
  background-position: -3578px 0px;
}
.callbackform__flag.flag_mz {
  height: 14px;
  background-position: -3600px 0px;
}
.callbackform__flag.flag_na {
  height: 14px;
  background-position: -3622px 0px;
}
.callbackform__flag.flag_nc {
  height: 10px;
  background-position: -3644px 0px;
}
.callbackform__flag.flag_ne {
  height: 15px;
  background-position: -3666px 0px;
}
.callbackform__flag.flag_nf {
  height: 10px;
  background-position: -3686px 0px;
}
.callbackform__flag.flag_ng {
  height: 10px;
  background-position: -3708px 0px;
}
.callbackform__flag.flag_ni {
  height: 12px;
  background-position: -3730px 0px;
}
.callbackform__flag.flag_nl {
  height: 14px;
  background-position: -3752px 0px;
}
.callbackform__flag.flag_no {
  height: 15px;
  background-position: -3774px 0px;
}
.callbackform__flag.flag_np {
  height: 15px;
  background-position: -3796px 0px;
}
.callbackform__flag.flag_nr {
  height: 10px;
  background-position: -3811px 0px;
}
.callbackform__flag.flag_nu {
  height: 10px;
  background-position: -3833px 0px;
}
.callbackform__flag.flag_nz {
  height: 10px;
  background-position: -3855px 0px;
}
.callbackform__flag.flag_om {
  height: 10px;
  background-position: -3877px 0px;
}
.callbackform__flag.flag_pa {
  height: 14px;
  background-position: -3899px 0px;
}
.callbackform__flag.flag_pe {
  height: 14px;
  background-position: -3921px 0px;
}
.callbackform__flag.flag_pf {
  height: 14px;
  background-position: -3943px 0px;
}
.callbackform__flag.flag_pg {
  height: 15px;
  background-position: -3965px 0px;
}
.callbackform__flag.flag_ph {
  height: 10px;
  background-position: -3987px 0px;
}
.callbackform__flag.flag_pk {
  height: 14px;
  background-position: -4009px 0px;
}
.callbackform__flag.flag_pl {
  height: 13px;
  background-position: -4031px 0px;
}
.callbackform__flag.flag_pm {
  height: 14px;
  background-position: -4053px 0px;
}
.callbackform__flag.flag_pn {
  height: 10px;
  background-position: -4075px 0px;
}
.callbackform__flag.flag_pr {
  height: 14px;
  background-position: -4097px 0px;
}
.callbackform__flag.flag_ps {
  height: 10px;
  background-position: -4119px 0px;
}
.callbackform__flag.flag_pt {
  height: 14px;
  background-position: -4141px 0px;
}
.callbackform__flag.flag_pw {
  height: 13px;
  background-position: -4163px 0px;
}
.callbackform__flag.flag_py {
  height: 11px;
  background-position: -4185px 0px;
}
.callbackform__flag.flag_qa {
  height: 8px;
  background-position: -4207px 0px;
}
.callbackform__flag.flag_re {
  height: 14px;
  background-position: -4229px 0px;
}
.callbackform__flag.flag_ro {
  height: 14px;
  background-position: -4251px 0px;
}
.callbackform__flag.flag_rs {
  height: 14px;
  background-position: -4273px 0px;
}
.callbackform__flag.flag_ru {
  height: 14px;
  background-position: -4295px 0px;
}
.callbackform__flag.flag_rw {
  height: 14px;
  background-position: -4317px 0px;
}
.callbackform__flag.flag_sa {
  height: 14px;
  background-position: -4339px 0px;
}
.callbackform__flag.flag_sb {
  height: 10px;
  background-position: -4361px 0px;
}
.callbackform__flag.flag_sc {
  height: 10px;
  background-position: -4383px 0px;
}
.callbackform__flag.flag_sd {
  height: 10px;
  background-position: -4405px 0px;
}
.callbackform__flag.flag_se {
  height: 13px;
  background-position: -4427px 0px;
}
.callbackform__flag.flag_sg {
  height: 14px;
  background-position: -4449px 0px;
}
.callbackform__flag.flag_sh {
  height: 10px;
  background-position: -4471px 0px;
}
.callbackform__flag.flag_si {
  height: 10px;
  background-position: -4493px 0px;
}
.callbackform__flag.flag_sj {
  height: 15px;
  background-position: -4515px 0px;
}
.callbackform__flag.flag_sk {
  height: 14px;
  background-position: -4537px 0px;
}
.callbackform__flag.flag_sl {
  height: 14px;
  background-position: -4559px 0px;
}
.callbackform__flag.flag_sm {
  height: 15px;
  background-position: -4581px 0px;
}
.callbackform__flag.flag_sn {
  height: 14px;
  background-position: -4603px 0px;
}
.callbackform__flag.flag_so {
  height: 14px;
  background-position: -4625px 0px;
}
.callbackform__flag.flag_sr {
  height: 14px;
  background-position: -4647px 0px;
}
.callbackform__flag.flag_ss {
  height: 10px;
  background-position: -4669px 0px;
}
.callbackform__flag.flag_st {
  height: 10px;
  background-position: -4691px 0px;
}
.callbackform__flag.flag_sv {
  height: 12px;
  background-position: -4713px 0px;
}
.callbackform__flag.flag_sx {
  height: 14px;
  background-position: -4735px 0px;
}
.callbackform__flag.flag_sy {
  height: 14px;
  background-position: -4757px 0px;
}
.callbackform__flag.flag_sz {
  height: 14px;
  background-position: -4779px 0px;
}
.callbackform__flag.flag_ta {
  height: 10px;
  background-position: -4801px 0px;
}
.callbackform__flag.flag_tc {
  height: 10px;
  background-position: -4823px 0px;
}
.callbackform__flag.flag_td {
  height: 14px;
  background-position: -4845px 0px;
}
.callbackform__flag.flag_tf {
  height: 14px;
  background-position: -4867px 0px;
}
.callbackform__flag.flag_tg {
  height: 13px;
  background-position: -4889px 0px;
}
.callbackform__flag.flag_th {
  height: 14px;
  background-position: -4911px 0px;
}
.callbackform__flag.flag_tj {
  height: 10px;
  background-position: -4933px 0px;
}
.callbackform__flag.flag_tk {
  height: 10px;
  background-position: -4955px 0px;
}
.callbackform__flag.flag_tl {
  height: 10px;
  background-position: -4977px 0px;
}
.callbackform__flag.flag_tm {
  height: 14px;
  background-position: -4999px 0px;
}
.callbackform__flag.flag_tn {
  height: 14px;
  background-position: -5021px 0px;
}
.callbackform__flag.flag_to {
  height: 10px;
  background-position: -5043px 0px;
}
.callbackform__flag.flag_tr {
  height: 14px;
  background-position: -5065px 0px;
}
.callbackform__flag.flag_tt {
  height: 12px;
  background-position: -5087px 0px;
}
.callbackform__flag.flag_tv {
  height: 10px;
  background-position: -5109px 0px;
}
.callbackform__flag.flag_tw {
  height: 14px;
  background-position: -5131px 0px;
}
.callbackform__flag.flag_tz {
  height: 14px;
  background-position: -5153px 0px;
}
.callbackform__flag.flag_ua {
  height: 14px;
  background-position: -5175px 0px;
}
.callbackform__flag.flag_ug {
  height: 14px;
  background-position: -5197px 0px;
}
.callbackform__flag.flag_um {
  height: 11px;
  background-position: -5219px 0px;
}
.callbackform__flag.flag_un {
  height: 14px;
  background-position: -5241px 0px;
}
.callbackform__flag.flag_us {
  height: 11px;
  background-position: -5263px 0px;
}
.callbackform__flag.flag_uy {
  height: 14px;
  background-position: -5285px 0px;
}
.callbackform__flag.flag_uz {
  height: 10px;
  background-position: -5307px 0px;
}
.callbackform__flag.flag_va {
  height: 15px;
  background-position: -5329px 0px;
}
.callbackform__flag.flag_vc {
  height: 14px;
  background-position: -5346px 0px;
}
.callbackform__flag.flag_ve {
  height: 14px;
  background-position: -5368px 0px;
}
.callbackform__flag.flag_vg {
  height: 10px;
  background-position: -5390px 0px;
}
.callbackform__flag.flag_vi {
  height: 14px;
  background-position: -5412px 0px;
}
.callbackform__flag.flag_vn {
  height: 14px;
  background-position: -5434px 0px;
}
.callbackform__flag.flag_vu {
  height: 12px;
  background-position: -5456px 0px;
}
.callbackform__flag.flag_wf {
  height: 14px;
  background-position: -5478px 0px;
}
.callbackform__flag.flag_ws {
  height: 10px;
  background-position: -5500px 0px;
}
.callbackform__flag.flag_xk {
  height: 15px;
  background-position: -5522px 0px;
}
.callbackform__flag.flag_ye {
  height: 14px;
  background-position: -5544px 0px;
}
.callbackform__flag.flag_yt {
  height: 14px;
  background-position: -5566px 0px;
}
.callbackform__flag.flag_za {
  height: 14px;
  background-position: -5588px 0px;
}
.callbackform__flag.flag_zm {
  height: 14px;
  background-position: -5610px 0px;
}
.callbackform__flag.flag_zw {
  height: 10px;
  background-position: -5632px 0px;
}

.captcha-container {
  position: fixed;
  top: calc(10vh + 300px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 210;
}
.recaptcha-overlay {
}
.recaptcha-over-overlay {
  z-index: 200;
}

/*tb-notification-button*/
tb-notification-widget {
  font-family: "Rubik", sans-serif !important;
  line-height: 20px !important;
}

tb-notification-button {
  margin: 16px 0 0 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: initial !important;
  border: 2px solid #eaf4ff;
  border-radius: 12px !important;
  padding: 20px !important;
}

tb-notification-button:hover {
  box-shadow: initial !important;
  background: pink !important;
}

tb-notification-button a {
  font-family: "Rubik", sans-serif !important;
  color: #8f96a5 !important;
  font-size: 14px !important;
  line-height: 20px !important;
}

tb-notification-button a::before {
  content: "Получить подарок от команды Roistat — гайд «12 важных отчетов маркетолога»";
  position: relative;
  font-family: "Rubik", sans-serif !important;
}

tb-notification-button a::after {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  background-image: url(../img/default/telegram-logo.svg);
}

tb-notification-button__icon {
  width: 20px !important;
  height: 20px !important;
  background-image: url(../img/default/telegram-logo.svg) !important;
  margin: -4px 0 0 2px !important;
}

tb-notification-button__icon svg {
  display: none !important;
}

tb-notification-button__text {
  display: none !important;
}

@media screen and (max-width: 1350px) {
  tb-notification-button {
    border-radius: 8px !important;
    padding: 14px !important;
    margin: 8px 0 0 0 !important;
  }
}

@media screen and (max-width: 750px) {
  tb-notification-button a::before {
    content: "Напоминание в";
  }
}

.timeout-html {
  display: inline;
}

.decorative {
  position: absolute;
}
.decorative_1 {
  width: 1800px;
  height: 1800px;
  border-radius: 950px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(88, 89, 176, 1) 0%, rgba(88, 89, 176, 0) 100%);
  right: -1111px;
  top: -1500px;
  z-index: -1;
}
.decorative_2 {
  width: 1800px;
  height: 1800px;
  border-radius: 1000px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(61, 93, 63, 1) 0%, rgba(51, 57, 41, 0.96) 50%, rgba(28, 23, 22, 0) 100%);
  right: -110%;
  bottom: -1500px;
  z-index: -1;
}
.decorative_3 {
  width: 1800px;
  height: 1000px;
  border-radius: 950px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(88, 89, 176, 1) 0%, rgba(88, 89, 176, 0) 100%);
  left: -1440px;
  top: -100px;
  z-index: -1;
}
.decorative_4 {
  width: 1800px;
  height: 1800px;
  border-radius: 1000px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(109, 220, 255, 1) 0%, rgba(127, 96, 24922, 0) 100%);
  right: -1500px;
  bottom: -1400px;
  z-index: -1;
}

@media screen and (max-width: 1350px) {
}

@media screen and (max-width: 750px) {
  .decorative_1 {
    right: -1000px;
  }
  .decorative_2 {
    right: -1300px;
  }
}

/*speakers-bars*/

.speakers-bars {
  margin: 200px 0;
}

.speakers-bars .title {
  margin-bottom: 80px;
}
.speakers-bars .splide__list {
  display: flex !important;
  gap: 24px;
  flex-wrap: wrap;
}

.speakers-bars .splide__slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  border-radius: 40px;
  overflow: hidden;
  width: calc(33.3% - 16px);
  background: radial-gradient(at center bottom, rgba(34, 34, 35, 1) 0%, rgba(26, 26, 27, 1) 100%);
}

.speakers-bars .splide__slide.splide__slide_big {
  width: calc(50% - 12px);
}
.speakers-bars__content {
  padding: 60px 20px;
  padding-bottom: 0;
}

.speakers-bars__name {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}

.speakers-bars__desc {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 80%;
  margin: 0 auto;
}

.speakers-bars__img {
  margin-top: auto;
  padding: 24px 0 0 0;
}

.speakers-bars__img img {
  display: flex;
  align-self: center;
  height: 410px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

@media (max-width: 1200px) {
  .speakers-bars {
    margin: 160px 0;
  }

  .speakers-bars .title {
    margin-bottom: 64px;
  }
  .speakers-bars .splide__slide {
    min-height: 460px;
    border-radius: 32px;
  }

  .speakers-bars__name {
    font-size: 20px;
  }
  .speakers-bars__desc {
    width: 100%;
  }
  .speakers-bars__img img {
    display: flex;
    align-self: center;
    height: 340px;
  }
}

@media (max-width: 980px) {
  .speakers-bars {
    margin: 120px 0;
  }
  .speakers-bars .title {
    margin-bottom: 48px;
  }

  .speakers-bars .splide__track {
    overflow: auto;
    margin: 0 -20px -20px;
    padding: 0 0 20px 20px;
  }

  .speakers-bars .splide__list {
    display: flex !important;
    gap: 24px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .speakers-bars .splide__track {
    margin: 0;
    padding: 0;
    overflow: initial;
  }

  .speakers-bars .splide__list {
    margin: 40px 0 0 0 !important;
    display: flex !important;
    flex-wrap: nowrap;
    max-width: initial;
    width: 100%;
    gap: initial;
  }

  .speakers-bars .splide__slide {
    max-width: initial;
    border-radius: 24px;
    max-width: 400px;
  }
  .speakers-bars__content {
    padding: 42px 20px;
    padding-bottom: 0;
  }
  .speakers-bars__img {
    padding: 20px 0 0 0;
  }
  .speakers-bars__img img {
    height: 410px;
  }
}

@media (max-width: 750px) {
  .speakers-bars {
    margin: 80px 0;
  }
  .speakers-bars .title {
    margin-bottom: 32px;
  }

  .speakers-bars__content {
    padding: 24px 20px;
    padding-bottom: 0;
  }

  .speakers-bars__desc {
    font-size: 14px;
  }

  .speakers-bars__img img {
    height: 370px;
  }

  .splide__pagination {
    margin: 24px;
    gap: 6px;
  }

  .splide__pagination__page {
    width: 10px;
    height: 10px;
    border-radius: 49.374px;
    background: linear-gradient(129deg, rgba(250, 250, 250, 0.07) -0.77%, rgba(164, 164, 164, 0) 140.72%);
    border: none;
  }
  .splide__pagination__page.is-active {
    background: linear-gradient(129deg, rgba(250, 250, 250, 0.47) -0.77%, rgba(164, 164, 164, 0) 140.72%);
  }
}

/*
.card {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(171, 171, 171, .2) -40%, rgba(147, 147, 147, 0) 140%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
} */

/*main-themes-like-blocks*/

.main-themes-like-blocks {
  margin: 0 0 200px 0;
}
.main-themes-like-blocks .title {
  margin-bottom: 80px;
}

.main-themes-like-blocks__grid {
  display: grid !important;
  grid-template-columns: 100%;
  gap: 48px;
}

.main-themes-like-blocks__block {
  padding: 60px 60px 60px 374px;
  position: relative;
  min-height: 306px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #272727;
  background: radial-gradient(at center bottom, rgba(34, 34, 35, 1) 0%, rgba(26, 26, 27, 1) 100%);
}

.main-themes-like-blocks__block:nth-child(2n) {
  padding: 60px 374px 60px 60px;
}

.main-themes-like-blocks__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;
  width: 200px;
}

.main-themes-like-blocks__block:nth-child(2n) .main-themes-like-blocks__img {
  left: initial;
  right: 60px;
}

.main-themes-like-blocks__img img {
  display: flex;
  align-self: center;
}

.main-themes-like-blocks__title {
  color: #fff;
  font-family: Rubik;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin: 0 0 24px 0;
}

@media (min-width: 1200px) {
  .main-themes-like-blocks__title_wide {
    margin-right: -60px;
  }
}

.main-themes-like-blocks__desc {
  font-size: 24px;
  line-height: 150%;
}

@media (max-width: 1200px) {
  .main-themes-like-blocks {
    margin: 160px 0 160px 0;
  }
  .main-themes-like-blocks .title {
    margin-bottom: 64px;
  }

  .main-themes-like-blocks__block {
    border-radius: 32px;
    padding: 60px 40px 60px 280px;
    min-height: 258px;
  }

  .main-themes-like-blocks__block:nth-child(2n) {
    padding: 60px 280px 60px 40px;
  }

  .main-themes-like-blocks__img {
    left: 40px;
    width: 140px;
  }

  .main-themes-like-blocks__block:nth-child(2n) .main-themes-like-blocks__img {
    right: 40px;
  }

  .main-themes-like-blocks__title {
    font-size: 32px;
  }
}

@media (max-width: 980px) {
  .main-themes-like-blocks {
    margin: 120px 0 120px 0;
  }
  .main-themes-like-blocks .title {
    margin-bottom: 48px;
  }

  .main-themes-like-blocks__grid {
    gap: 24px;
  }

  .main-themes-like-blocks__block {
    border-radius: 24px;
    padding: 42px 32px 42px 262px;
    min-height: 180px;
  }

  .main-themes-like-blocks__block:nth-child(2n) {
    padding: 42px 262px 42px 32px;
  }

  .main-themes-like-blocks__img {
    left: 32px;
    width: 100px;
  }

  .main-themes-like-blocks__block:nth-child(2n) .main-themes-like-blocks__img {
    right: 32px;
  }

  .main-themes-like-blocks__title {
    font-size: 24px;
  }

  .main-themes-like-blocks__desc {
    font-size: 16px;
  }
}

@media (max-width: 750px) {
  .main-themes-like-blocks {
    margin: 80px 0 80px 0;
  }
  .main-themes-like-blocks .title {
    margin-bottom: 32px;
  }
  .main-themes-like-blocks__grid {
    display: flex !important;
    gap: 0;
  }
  .main-themes-like-blocks .splide__track {
    margin: 0;
    padding: 0;
    overflow: initial;
  }

  .main-themes-like-blocks__block {
    padding: 16px;
    min-height: initial;
    display: block;
  }

  .main-themes-like-blocks__block:nth-child(2n) {
    padding: 24px;
  }

  .main-themes-like-blocks__img {
    position: static;
    width: 64px;
    transform: initial;
  }

  .main-themes-like-blocks__title {
    font-size: 20px;
    margin: 20px 0 16px;
  }

  .main-themes-like-blocks__desc {
    font-size: 14px;
  }
}

/*speaker*/

.speaker {
  margin: 150px 0 190px 0;
}

.speaker__content {
  display: flex;
  gap: 24px;
  max-width: 1280px;
  /* margin: auto;
  display: grid;
  grid-template-columns: auto 590px;
  grid-gap: 0 60px;
  gap: 0 60px;
  align-items: center;
  grid-template-areas:
      "b a"
      "c a"; */
}

.speaker__img {
  height: max-content;
  flex-basis: 50%;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(17, 8, 0, 0.04), 0 4px 8px -1px rgba(17, 8, 0, 0.04), 0 8px 16px -2px rgba(17, 8, 0, 0.04);
  display: flex;
  align-items: flex-end;
}

.speaker__img img {
  width: 100%;
  display: flex;
  align-self: center;
  justify-self: center;
  border-radius: 24px;
  /* background: #FFF;
    box-shadow: 0px 16px 32px -3px rgba(17, 8, 0, 0.04), 0px 8px 16px -2px rgba(17, 8, 0, 0.04), 0px 4px 8px -1px rgba(17, 8, 0, 0.04); */
}

.speaker .title {
  margin-bottom: 40px;
}

.speaker__text {
  flex-basis: 50%;
  display: flex;
  align-self: flex-start;
  flex-direction: column;
}

.speaker__text .btn {
  margin-top: 40px;
}

.speaker__name {
  color: #474766;
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 24px;
}

.speaker__about {
  color: #8787ab;
  font-size: 24px;
  line-height: 130%;
  font-weight: 400;
}

@media screen and (max-width: 1350px) {
  .speaker__content {
    align-items: end;
  }

  .speaker .title {
    margin-bottom: 24px;
  }

  .speaker__text {
    margin: 0;
  }

  .speaker__name {
    font-size: 20px;
    line-height: 130%;
  }

  .speaker__about {
    font-size: 20px;
    line-height: 130%;
  }

  .speaker__video {
    margin: 100px 0 0 0;
    border-radius: 28px;
  }
}

@media screen and (max-width: 980px) {
  .speaker {
    margin: 120px 0 100px 0;
  }

  .speaker__content {
    gap: 20px;
    margin: 0;
  }

  .speaker__img {
    flex-basis: 53%;
  }

  .speaker .title {
    font-size: 40px;
    width: 379px;
  }

  .speaker__name {
    font-size: 32px;
  }

  .speaker__about {
    font-size: 16px;
  }
}

@media screen and (max-width: 750px) {
  /* .speaker__content {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: initial;
  }

  .speaker__img {
    max-width: 182px;
    margin: 16px auto 0 auto;

    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .speaker .title {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    display: block;
    width: 100%;
    align-self: center;
  }

  .speaker__text {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  } */

  .speaker__name {
    margin: 16px 0 0 0;
  }

  .speaker__about {
    margin: 16px 0 0 0;
  }

  .speaker__video {
    margin: 80px 0 0 0;
    border-radius: 20px;
  }

  .mobile_hide {
    display: none !important;
  }
}

@media screen and (max-width: 581px) {
  .speaker .title {
    width: 320px;
    font-size: 40px;
    margin-bottom: 16px;
  }

  .speaker__name {
    font-size: 24px;
    margin: 0;
  }

  .speaker__content {
    flex-direction: column;
  }

  .speaker .btn {
    text-align: center;
  }
}

.main-themes-like-blocks__desc-ul li {
  max-width: 510px;
  margin: 0 0 24px 0;
}

.main-themes-like-blocks__desc-ul li:last-child {
  margin: 0;
}

.main-themes-like-blocks__desc-ul {
  list-style-type: disc;
  padding: 0 0 0 40px;
}

@media screen and (max-width: 980px) {
  .main-themes-like-blocks__desc-ul {
    padding: 0 0 0 25px;
  }

  .main-themes-like-blocks__desc-ul li {
    margin: 0 0 12px 0;
  }
}

.block-advantages {
  background: #f1f8ff;
  padding-top: 150px;
}

.block-advantages .title {
  margin-bottom: 40px;
  text-align: center;
}

.block-advantages__descr {
  max-width: 954px;
  margin: 0 auto;
  font-family: "Rubik", sans-serif;
  margin-bottom: 60px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #8787ab;
}

.block-advantages .splide__track {
  overflow: visible;
}

@media screen and (max-width: 980px) {
  .block-advantages {
    padding-top: 100px;
  }
}

@media screen and (max-width: 750px) {
  .block-advantages {
    padding-top: 60px;
  }

  .block-advantages .title {
    margin-bottom: 24px;
  }
}

/* .container {
  margin: 0 auto;
  width: 1344px;
  max-width: 100%;
  padding: 0 32px;
  position: relative;
} */

.cals-illustrated-cards {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.cals-illustrated-cards__item {
  width: 410px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  gap: 24px;
  background: #fff;
}

.cals-illustrated-cards__item-illustration {
  width: 100%;
  margin: 0 auto;
  line-height: 0;
  border-radius: 12px;
  border: 1px solid #f6f6f6;
  background: #fff;
  display: flex;
  height: 270px;
  align-items: center;
  justify-content: center;
}

.illustration2 {
  position: relative;
  z-index: 1;
}

.illustration2::after {
  content: "";
  border-radius: 256.667px;
  background: linear-gradient(90deg, #6366f1 0%, rgba(99, 102, 241, 0) 100%);

  -webkit-filter: blur(40.77560806274414px);

          filter: blur(40.77560806274414px);
  position: absolute;
  z-index: -1;
  width: 256.667px;
  height: 71.752px;
}

.cals-illustrated-cards__item-illustration img {
  width: 100%;
}

.cals-illustrated-cards__item-title {
  color: #474766;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
  margin-bottom: 24px;
}

.cals-illustrated-cards__item-description {
  color: #8787ab;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

@media (max-width: 1023px) {
  .cals-illustrated-cards_three {
    display: flex !important;
    gap: 24px;
  }

  .cals-illustrated-cards_three .cals-illustrated-cards__item {
    width: 46% !important;
    flex-shrink: 0;
  }

  .cals-illustrated-cards__item-title {
    width: 85%;
  }
  .cals-illustrated-cards__item-description {
    font-size: 16px;
  }
}

@media screen and (max-width: 750px) {
  .cals-illustrated-cards_three {
    flex-direction: unset;
    gap: 16px;
  }

  .cals-illustrated-cards_three .cals-illustrated-cards__item {
    width: 90% !important;
  }

  .cals-illustrated-cards__item-title {
    width: 100%;
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.reviews {
  background: #f1f8ff;
  padding: 150px 0;
}

.reviews .title-h2 {
  text-align: center;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  color: #474766;
  margin-bottom: 60px;
}

.reviews__list {
  display: flex;
  cursor: -webkit-grab;
  cursor: grab;
  align-items: start;
}

.reviews__item {
  padding: 32px;
  width: 600px;
  background: #fff;
  box-shadow: 0px -1.5px 1px 0px rgba(133, 131, 131, 0.1) inset, 0px 1.5px 1px 0px rgba(255, 255, 255, 0.75) inset, 0px 0px 0px 1px rgba(149, 149, 149, 0.1);
  border-radius: 20px;
}

.reviews__itemtext {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-line-break: after-white-space;
  -webkit-box-orient: vertical;
  color: #8787ab;
}

.reviews__itemtext.active {
  display: block;
}

.reviews__spoiler {
  position: absolute;
  bottom: 0;
  right: 1px;
  background: #fff;
  cursor: pointer;
}

.reviews__spoilerlink {
  color: #3392ff;
  font-style: italic;
}

.reviews__itemreviewer {
  display: grid;
  grid-template-columns: 56px auto 127px;
  gap: 20px;
}

.reviews__itemreviewerphoto {
  width: 60px;
  border-radius: 16px;
}

.reviews__itemreviewerphoto img {
  border-radius: 16px;
  border: 1px solid #fff;
  box-shadow: 0px -1.5px 1px 0px rgba(133, 131, 131, 0.1) inset, 0px 1.5px 1px 0px rgba(255, 255, 255, 0.75) inset, 0px 0px 0px 1px rgba(149, 149, 149, 0.1);
}

.reviews__itemreviewername {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  color: #474766;
}

.reviews__itemreviewerrole {
  color: #8787ab;
  font-size: 13px;
  font-weight: 400;
  line-height: 130%;
}

.reviews__itemreviewerlogo {
  position: relative;
  padding: 0 0 0 21px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews__itemreviewerlogo:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.reviews .splide__track {
  overflow: visible;
}

@media screen and (max-width: 980px) {
  .reviews {
    padding: 120px 0;
  }
}

@media screen and (max-width: 750px) {
  .reviews {
    padding: 80px 0;
  }

  .reviews .title-h2 {
    font-size: 38px;
    margin-bottom: 24px;
  }

  .reviews__item {
    padding: 20px;
    width: 80vw;
    min-height: 360px;
  }

  .reviews__itemtext {
    margin-bottom: 16px;
    -webkit-line-clamp: 7;
  }

  .reviews__itemreviewer {
    display: grid;
    grid-template-columns: 56px auto;
    gap: 20px 8px;
  }

  .reviews__itemreviewerlogo {
    grid-column: span 2;
    padding: 8px 0 0 0;
    justify-content: start;
    height: 55px;
  }

  .reviews__itemreviewerlogo:before {
    left: 0;
    top: 0;
    height: 1px;
    width: 100%;
    opacity: 0.3;
    background: linear-gradient(180deg, #ababab 0%, rgba(255, 255, 255, 0) 256.52%);
  }

  .reviews__itemreviewerlogo img {
    width: 107px;
  }
}

@media screen and (max-width: 581px) {
  .reviews__itemreviewername {
    font-size: 14px;
  }
}

.block-who-are-we {
  background: #f1f8ff;
  padding-bottom: 150px;
}

.who-are-we__card {
  display: grid;
  grid-template-columns: 22fr 1fr;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  margin-bottom: 24px;
  background-image: url(../img/grid-background2.svg);
  background-position: center center;
  background-size: 1280px;
}

.who-are-we .title {
  margin-bottom: 32px;
}

.text_left {
  text-align: center;
}

.who-are-we__logo {
  grid-row: span 2;
  justify-self: end;
}

.who-are-we__logo img {
  width: 140px;
  border-radius: 6.429px;
}

.who-are-we p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #8787ab;
  text-align: center;
  max-width: 858px;
  margin: 0 auto;
}

.who-are-we__illustration {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

@media screen and (max-width: 980px) {
  .block-who-are-we {
    padding-bottom: 120px;
  }

  .who-are-we__card {
    padding: 24px;
    grid-template-columns: 27fr 1fr;
  }

  .who-are-we p {
    font-size: 16px;
  }

  .who-are-we .title {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 750px) {
  .block-who-are-we {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 581px) {
  .who-are-we__card {
    padding: 16px;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }
}

.results {
  background: #f1f8ff;

  padding: 150px;
}

.results__content {
  background: #fff;
  border-radius: 20px;
  padding: 80px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result__title {
  max-width: 910px;
  text-align: center;
  margin-bottom: 32px;
  color: #474766;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
}

.result__description {
  font-size: 18px;
  text-align: center;
  color: #8787ab;
  font-weight: 450;
  line-height: 150%;
  max-width: 910px;
  margin-bottom: 32px;
}

.result__date {
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #474766;
}

.results__links {
  margin-top: 60px;
  display: flex;
  gap: 16px;
}

.results__links a {
  text-decoration: none;
}

.results__links a:visited {
  color: inherit;
}

.links__item {
  border-radius: 12px;
  border: 1px solid #c7e1ff;
  padding: 10px;
  background: #fff;
  width: 158px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

.links__item:hover {
  box-shadow: 0px 8px 16px -2px rgba(17, 8, 0, 0.04), 0px 4px 8px -1px rgba(17, 8, 0, 0.04), 0px 2px 4px 0px rgba(17, 8, 0, 0.04);
}

.link-vk {
  width: 19px;
  height: 22px;
  margin-right: 5px;
}

.link-telegram {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

/* .links__item img {
  width: 114px;
  height: 24px;
} */

.blog {
  font-size: 16px;
  color: #474766;
  font-weight: 500;
  line-height: 150%;
}

.results__news {
  margin-top: 24px;
  max-width: 506px;
  font-size: 13px;
  color: #8787ab;
  font-weight: 450;
  line-height: 150%;
  text-align: center;
}

@media screen and (max-width: 980px) {
  .results__content {
    padding: 40px 0 20px 0;
  }

  .result__title {
    font-size: 40px;
    margin-bottom: 24px;
  }

  .result__description {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 750px) {
  .results {
    padding-bottom: 60px;
  }
  .result__title {
    font-size: 28px;
    line-height: 150%;
    width: 288px;
    text-align: center;
  }

  .results__content {
    padding: 16px 0;
  }

  .result__description {
    width: 288px;
  }

  .results .btn {
    width: 288px;
  }

  .results__links {
    margin-top: 10px;
    flex-direction: column;
    gap: 10px;
  }

  .links__item {
    width: 288px;
  }
  .results__news {
    margin-top: 10px;
    width: 288px;
  }
}

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

.video:hover .video-play-shape,
.video:focus .video-play-shape {
  fill: #ff0000;
  fill-opacity: 1;
}

.mobile_show {
  display: none !important;
}

.who-suit {
  position: relative;
  margin: 150px 0;
}

.who-suit::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: -43%;
  z-index: -5;
  background-image: url("../img/BG-ref.png");
  background-repeat: no-repeat;
}

.who-suit::after {
  position: absolute;
  content: "";
  width: 625px;
  height: 375px;
  right: -110px;
  bottom: -68px;
  z-index: -5;
  background-image: url("../img/BG-ref2.png");
  background-size: 625px 375px;
  background-repeat: no-repeat;
}

.who-suit .splide__track {
  overflow: visible;
}

.who-suit .title-center {
  text-align: center;
  font-weight: 600;
  color: #474766;
  font-size: 52px;
}

.who-suit__block {
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  background: #fff;
  padding: 40px;
  box-shadow: 0px 8px 16px -2px rgba(17, 8, 0, 0.04), 0px 4px 8px -1px rgba(17, 8, 0, 0.04), 0px 2px 4px 0px rgba(17, 8, 0, 0.04);
  position: relative;
}

.who-suit__decors {
  display: flex;
  justify-content: center;
}

.who-suit__decor-one {
  position: absolute;
  top: -32px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  background: #fff;
  box-shadow: 0px 8px 16px -2px rgba(17, 8, 0, 0.04), 0px 4px 8px -1px rgba(17, 8, 0, 0.04), 0px 2px 4px 0px rgba(17, 8, 0, 0.04);
  width: 1280px;
  height: 664px;
  z-index: -1;
  flex-shrink: 0;
}
.who-suit__decor-two {
  position: absolute;
  top: -64px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  background: #fff;
  box-shadow: 0px 8px 16px -2px rgba(17, 8, 0, 0.04), 0px 4px 8px -1px rgba(17, 8, 0, 0.04), 0px 2px 4px 0px rgba(17, 8, 0, 0.04);
  width: 1216px;
  height: 664px;
  z-index: -2;
  flex-shrink: 0;
}

.who-suit__title {
  margin-bottom: 40px;
}

.who-suit__cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.who-suit__card {
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0px 8px 16px -2px rgba(17, 8, 0, 0.04), 0px 4px 8px -1px rgba(17, 8, 0, 0.04), 0px 2px 4px 0px rgba(17, 8, 0, 0.04);
  padding: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  min-height: 520px;
}

.who-suit__card-content {
  text-align: center;
  margin-bottom: 24px;
}

.who-suit__card-title {
  margin-bottom: 24px;
  color: #474766;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
}

.who-suit__card-desc {
  color: #8787ab;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin: 0 auto;
}

.who-suit__card-img {
  margin-top: auto;
  /* position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px; */
}

.who-suit__card-img img {
  border-radius: 12px;
  max-height: 283px;
}

.who-suit__btn {
  margin: 40px auto 0 auto;
  text-align: center;
}

@media screen and (max-width: 1350px) {
  .who-suit__block {
    padding: 20px;
  }

  .who-suit__decor-one {
    width: 900px;
  }

  .who-suit__decor-two {
    width: 850px;
  }
}

@media screen and (max-width: 1023px) {
  .who-suit__card {
    padding: 16px;
  }

  .who-suit__card-img {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .who-suit__decors {
    display: none;
  }

  .who-suit__block {
    box-shadow: none;
    border: none;
  }
}

@media screen and (max-width: 980px) {
  /* .who-suit__card-img img {
    border-radius: 12px;
    max-height: 180px;
  } */

  .who-suit__decor-one {
    width: 680px;
  }

  .who-suit__decor-two {
    width: 600px;
  }

  .who-suit .splide__track {
    margin: 0;
    padding: 0;
    overflow: initial;
  }

  .who-suit .splide__list {
    margin: 40px 0 0 0 !important;
    display: flex !important;
    flex-wrap: nowrap;
    max-width: initial;
    width: 100%;
    gap: initial;
  }

  .who-suit .splide__slide {
    max-width: initial;
    max-width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .who-suit__cards {
    display: flex !important;
    gap: 0;
  }

  .who-suit__title {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 750px) {
  .who-suit .content-block-container {
    padding: 0;
  }

  .who-suit .splide__list {
    margin: 0 !important;
    flex-direction: row;
    gap: 16px;
  }

  .who-suit__card-title {
    font-size: 20px;
  }

  .who-suit__card {
    min-height: 350px;
  }

  .who-suit .splide__slide {
    max-width: 300px;
  }
}

@media screen and (max-width: 581px) {
  .who-suit .title-center {
    margin-bottom: 16px;
  }

  .who-suit .splide__list {
    gap: 16px;
  }

  .who-suit__card-content {
    margin-bottom: 14px;
  }

  .video-widget__container {
    width: 94px;
    height: 144px;
    position: fixed;
    left: 3%;
    margin: 0 auto;
    bottom: 5%;
    margin-top: 40px;
  }
}

.for-qw .content-block-container {
  max-width: 768px;
}

.for-qw .title {
  margin-bottom: 40px;
  text-align: center;
}

.for-qw__item {
  padding-top: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eaecf0;
  cursor: pointer;
}

.for-qw__item:last-child {
  border-bottom: none;
}

.for-qw__item-title {
  display: flex;
  align-items: center;
}

.expand-icon {
  margin-left: auto;
}

.for-qw__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 60px;
  color: #474766;
}

.for-qw__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #8787ab;
}

.for-qw .btn {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 980px) {
  .for-qw__list {
    padding: 0 32px;
  }
}

@media screen and (max-width: 581px) {
  .who-suit {
    margin: 80px 0;
  }
  .for-qw .title {
    font-size: 38px;
    margin-bottom: 24px;
  }
  .for-qw__title {
    line-height: 23px;
    font-size: 20px;
    max-width: 280px;
  }
  .for-qw__list {
    padding: 0;
  }

  .for-qw__desc {
    font-size: 16px;
    max-width: 280px;
    margin-top: 8px;
  }
}

.decorative_img-1 {
  width: 600px;
  top: -90px;
  left: 940px;
  z-index: -1;
}

.decorative_img-1 img {
  height: 100%;
}

.decorative_img-2 {
  width: 656px;
  top: 721px;
  right: 940px;
  z-index: -1;
}

.decorative_img-2 img {
  height: 100%;
}

.decorative_img-3 {
  width: 1002px;
  top: -164px;
  left: 698px;
  z-index: -1;
  height: 964px;
}

.decorative_img-3 img {
  height: 100%;
}

.decorative_img-4 {
  width: 859px;
  top: -164px;
  left: -215px;
  z-index: -1;
  height: 1068px;
}

.decorative_img-4 img {
  height: 100%;
}

@media screen and (max-width: 1350px) {
  .decorative_img-1 {
    left: calc(800px);
  }
  .decorative_img-2 {
    right: calc(800px);
  }
  .decorative_img-3 {
    left: calc(800px);
  }
  .decorative_img-4 {
    left: calc(200px);
    width: 703px;
    top: -99px;
    left: -157px;
    height: 706px;
  }

  .first-screen___hero-bg {
    left: 67%;
    width: 130%;
  }

  .book__img {
    right: 45px;
  }
}

@media screen and (max-width: 980px) {
  .decorative_img-1 {
    left: calc(530px);
  }
  .decorative_img-2 {
    right: calc(800px);
  }
  .decorative_img-3 {
    left: calc(300px);
  }

  .book__img {
    right: 25px;
    bottom: -20px;
  }
}

@media screen and (max-width: 750px) {
  .decorative_1 {
    right: -1000px;
  }
  .decorative_2 {
    right: -1300px;
  }
  .decorative_img-1 {
    left: calc(330px);
  }
  .decorative_img-2 {
    right: calc(800px);
  }

  .first-screen___hero-bg {
    transform: translate(-70%, 0);
    top: -37%;
    left: 72%;
  }
}

@media screen and (max-width: 581px) {
  .decorative_img-1 {
    left: calc(150px);
  }
  .decorative_img-2 {
    left: calc(800px);
  }
  .decorative_img-3 {
    left: calc(100px);
  }

  .book__text {
    padding: 0px 0 77% 0;
  }

  .first-screen___hero-bg {
    right: 9px;
    bottom: -20px;
  }

  .book__img {
    width: 90%;
    right: 20px;
    bottom: -30px;
  }
}

@media (max-width: 380px) {
  .first-screen___img {
    height: 320px;
  }
}
