@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");
:root {
  --color-black: #1C1F33;
  --color-gray: #464E80;
  --color-gray-40: rgba(70, 78, 128, .4);
  --color-gray-light: #A3A3A3;
  --color-main: #6841D2;
  --color-hover: #502BB5;
  --color-white: #FFFFFF;
  --color-light: #EBF0FF;
  --color-border: #D8E2FA;
  --color-white-24: rgba(255, 255, 255, .24);
  --color-white-08: rgba(255, 255, 255, .08); }

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  background: var(--color-light);
  color: var(--color-gray); }

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

a:hover, a:focus {
  outline: none; }

a:hover {
  color: var(--color-gray); }

h1, h2, h3, h4 {
  margin: 0;
  padding: 0; }

p {
  padding: 0;
  margin: 0 0 15px 0; }

ul {
  margin: 0;
  padding: 0;
  list-style: none; }

input[type="text"]::placeholder {
  color: #626262; }

input[type="checkbox"], input[type="radio"] {
  position: absolute;
  z-index: -1;
  opacity: 0; }

input[type="checkbox"] + label, input[type="radio"] + label, input[type="radio"] + span {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  user-select: none;
  color: #626262;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer; }

input[type="checkbox"] + label a, input[type="radio"] + label a {
  color: #020314; }

input[type="checkbox"] + label a:hover, input[type="radio"] + label a:hover {
  color: #502BB5; }

input[type="checkbox"] + label::before, input[type="radio"] + label::before, input[type="radio"] + span::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%; }

input[type="radio"] + label::before, input[type="radio"] + span::before {
  border-radius: 100%; }

input[type="submit"] {
  border: none;
  box-shadow: none; }

input[type="checkbox"]:checked + label::before, input[type="radio"]:checked + label::before, input[type="radio"]:checked + span::before {
  border-color: #6841D2;
  background-color: #6841D2;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); }

@media (max-width: 1279.98px) {
  .hidden-tablet {
    display: none !important; } }

.visible-tablet {
  display: none !important; }
  @media (max-width: 1279.98px) {
    .visible-tablet {
      display: block !important; } }

.visible-tablet-grid {
  display: none !important; }
  @media (max-width: 1279.98px) {
    .visible-tablet-grid {
      display: grid !important; } }

.visible-tablet-flex {
  display: none !important; }
  @media (max-width: 1279.98px) {
    .visible-tablet-flex {
      display: flex !important; } }

@media (max-width: 1023.98px) {
  .hidden-tablet2 {
    display: none !important; } }

.visible-tablet2 {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-tablet2 {
      display: block !important; } }

.visible-tablet2-grid {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-tablet2-grid {
      display: grid !important; } }

.visible-tablet2-flex {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-tablet2-flex {
      display: flex !important; } }

@media (max-width: 1023.98px) {
  .hidden-mobile {
    display: none !important; } }

.visible-mobile {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-mobile {
      display: block !important; } }

.visible-mobile-grid {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-mobile-grid {
      display: grid !important; } }

.visible-mobile-flex {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-mobile-flex {
      display: flex !important; } }

h1 {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 120%;
  font-weight: 600;
  color: var(--color-white); }
  @media (max-width: 639.98px) {
    h1 {
      font-size: 36px; } }

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-black); }
  @media (max-width: 639.98px) {
    h2 {
      font-size: 36px; } }
  h2 span {
    font-family: "Caveat", cursive;
    font-weight: 700;
    font-size: 56px; }
    @media (max-width: 639.98px) {
      h2 span {
        font-size: 48px; } }

.tag {
  display: inline-flex;
  background: var(--color-black);
  border-radius: 13px;
  padding: 0 8px;
  font-size: 14px;
  line-height: 25px;
  color: var(--color-white);
  font-weight: 600;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease-out; }

.text14 {
  font-size: 14px;
  line-height: 150%; }

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

.text18 {
  font-size: 18px;
  line-height: 150%; }

.color-gray {
  color: var(--color-gray); }

.color-gray-light {
  color: var(--color-gray-light); }

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

.btn {
  cursor: pointer;
  display: inline-block;
  height: 64px;
  line-height: 62px;
  outline: none;
  padding: 0 16px;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 600;
  border-radius: 16px;
  border: 1px solid var(--color-white);
  background: var(--color-white);
  box-shadow: none;
  transition: all 0.2s ease-out;
  text-decoration: none !important; }
  .btn:hover {
    border-color: var(--color-white);
    background-color: transparent;
    color: var(--color-white); }
  .btn--transparent {
    background: transparent; }
  .btn--text-center {
    text-align: center; }
  .btn--x-wide {
    width: 100%; }
  .btn.dark {
    background: var(--color-gray-40);
    border-color: var(--color-gray-40);
    color: var(--color-white); }
  .btn.grad {
    background: linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) padding-box, linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box;
    border-color: transparent;
    color: var(--color-white); }
    .btn.grad:hover {
      background: linear-gradient(#FFF 0 0) padding-box, linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box;
      border-color: transparent; }
  .btn.border-grad {
    background: linear-gradient(#FFF 0 0) padding-box, linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
    border-color: transparent;
    color: var(--color-white); }
    .btn.border-grad:hover {
      background: linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%); }

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 40px;
  padding-right: 40px;
  min-width: 320px; }
  .container:after, .container:before {
    content: none;
    display: none; }
  @media (max-width: 1279.98px) {
    .container {
      max-width: 976px;
      padding-left: 24px;
      padding-right: 24px; } }
  @media (max-width: 1023.98px) {
    .container {
      max-width: 592px; } }
  @media (max-width: 639.98px) {
    .container {
      padding-left: 16px;
      padding-right: 16px; } }

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

.bg-black {
  background: var(--color-black); }

ul.dot-check {
  font-size: 16px;
  line-height: 150%;
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--color-gray); }
  ul.dot-check li {
    position: relative;
    padding-left: 32px; }
    ul.dot-check li:before {
      position: absolute;
      left: 0;
      top: 4px;
      content: '';
      background: url("../images/list.svg") left top no-repeat;
      width: 16px;
      height: 16px; }

.main {
  margin-bottom: 16px; }
  .main .wrapper {
    background-repeat: no-repeat;
    background-position: top left calc(50% + 241px), center;
    background-size: auto;
    background-image: url("../images/top.png"), linear-gradient(#DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
    border-radius: 24px;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; }
    @media (max-width: 1279.98px) {
      .main .wrapper {
        background-position: top 25px left calc(50% + 150px), center;
        background-size: 300px auto, auto; } }
    @media (max-width: 1023.98px) {
      .main .wrapper {
        grid-template-columns: 1fr;
        background: linear-gradient(#DD5789 0%, #7B9FFE 50%, #2F68FE 100%); } }
    @media (max-width: 639.98px) {
      .main .wrapper {
        gap: 24px; } }
  .main__left {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0 0 40px; }
    @media (max-width: 1023.98px) {
      .main__left {
        gap: 24px;
        padding: 40px 24px 0; } }
    @media (max-width: 639.98px) {
      .main__left {
        padding: 24px 16px 0; } }
    .main__left .logo {
      display: block;
      width: 165px; }
      @media (max-width: 1023.98px) {
        .main__left .logo {
          width: 124px; } }
      .main__left .logo img {
        width: 100%; }
    .main__left .subtitle {
      margin-bottom: 0;
      font-size: 18px;
      line-height: 150%;
      color: var(--color-white);
      font-weight: 400;
      position: relative;
      text-align: left; }
  .main__buttons {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    padding: 0 0 40px 40px;
    display: flex;
    gap: 16px; }
    @media (max-width: 1279.98px) {
      .main__buttons {
        grid-column: 1 / 3;
        flex-direction: column-reverse;
        padding-right: 40px; } }
    @media (max-width: 1023.98px) {
      .main__buttons {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        padding: 0 24px 40px; } }
    @media (max-width: 639.98px) {
      .main__buttons {
        padding: 0 16px 24px; } }
    .main__buttons .btn {
      width: 230px;
      text-align: center; }
      @media (max-width: 1279.98px) {
        .main__buttons .btn {
          width: auto; } }
  .main__right {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    justify-content: flex-end; }
    @media (max-width: 1279.98px) {
      .main__right {
        grid-row: 1 / 2;
        padding-bottom: 0; } }
    @media (max-width: 1023.98px) {
      .main__right {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        background: url("../images/top.png") top -27px left 24px/425px auto no-repeat;
        padding: 107px 24px 0; } }
    @media (max-width: 639.98px) {
      .main__right {
        background-position: bottom -18px center;
        background-size: 335px auto;
        padding: 0 16px 216px; } }
    .main__right .message {
      padding: 12px;
      font-size: 14px;
      line-height: 150%;
      background: rgba(70, 78, 128, 0.4);
      border-radius: 16px 16px 0 16px;
      backdrop-filter: blur(10px);
      color: var(--color-white);
      font-weight: 600; }
      .main__right .message.white {
        background: var(--color-white);
        color: var(--color-black); }

.nums {
  padding-bottom: 80px; }
  .nums .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px; }
    @media (max-width: 1279.98px) {
      .nums .container {
        grid-template-columns: repeat(6, 1fr); } }
    @media (max-width: 1023.98px) {
      .nums .container {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 639.98px) {
      .nums .container {
        display: flex;
        flex-direction: column; } }
    .nums .container .item {
      padding: 56px 16px 16px;
      background: var(--color-white) url("../images/icon_check_grad.svg") top 24px left 24px no-repeat;
      border-radius: 24px; }
      @media (max-width: 1279.98px) {
        .nums .container .item:first-child {
          grid-row: 1 / 2;
          grid-column: 1 / 3; }
        .nums .container .item:nth-child(2) {
          grid-row: 1 / 2;
          grid-column: 3 / 5; }
        .nums .container .item:nth-child(3) {
          grid-row: 1 / 2;
          grid-column: 5 / 7; }
        .nums .container .item:nth-child(4) {
          grid-row: 2 / 3;
          grid-column: 1 / 4; }
        .nums .container .item:nth-child(5) {
          grid-row: 2 / 3;
          grid-column: 4 / 7; } }
      @media (max-width: 1023.98px) {
        .nums .container .item:first-child {
          grid-row: 1 / 2;
          grid-column: 1 / 2; }
        .nums .container .item:nth-child(2) {
          grid-row: 1 / 2;
          grid-column: 2 / 3; }
        .nums .container .item:nth-child(3) {
          grid-row: 2 / 3;
          grid-column: 1 / 2; }
        .nums .container .item:nth-child(4) {
          grid-row: 2 / 3;
          grid-column: 2 / 3; }
        .nums .container .item:nth-child(5) {
          grid-row: 3 / 4;
          grid-column: 1 / 3; } }
      .nums .container .item__title {
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 150%;
        color: var(--color-black);
        font-weight: 600; }

.practice {
  margin-bottom: 80px; }
  .practice__block {
    margin-top: 40px;
    background: var(--color-black);
    padding: 40px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 318px;
    gap: 40px;
    align-items: stretch; }
    @media (max-width: 1279.98px) {
      .practice__block {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(0, 1fr) auto auto; } }
    @media (max-width: 1023.98px) {
      .practice__block {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr) auto auto auto; } }
    @media (max-width: 639.98px) {
      .practice__block {
        padding: 24px 16px;
        gap: 24px; } }
    .practice__block h2 {
      color: var(--color-white); }
  .practice__title {
    grid-row: 1 / 2;
    grid-column: 1 / 2; }
    @media (max-width: 1279.98px) {
      .practice__title {
        grid-row: 1 / 2;
        grid-column: 1 / 3; } }
    @media (max-width: 1023.98px) {
      .practice__title {
        grid-row: 1 / 2;
        grid-column: 1 / 2; } }
  .practice__text {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    display: flex;
    flex-flow: column;
    justify-content: space-between; }
    @media (max-width: 1279.98px) {
      .practice__text {
        grid-row: 2 / 3;
        grid-column: 2 / 3; } }
    @media (max-width: 1023.98px) {
      .practice__text {
        grid-row: 3 / 4;
        grid-column: 1 / 2; } }
    .practice__text .tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px; }
      @media (max-width: 1279.98px) {
        .practice__text .tabs {
          grid-template-columns: 1fr;
          height: 100%; } }
      @media (max-width: 1023.98px) {
        .practice__text .tabs {
          grid-template-columns: 1fr 1fr; } }
      @media (max-width: 639.98px) {
        .practice__text .tabs {
          grid-template-columns: 1fr;
          gap: 8px; } }
      .practice__text .tabs .tab {
        padding: 56px 16px 16px;
        background: var(--color-white-08) url("../images/icon_check_grad.svg") no-repeat top 16px left 16px;
        border-radius: 24px;
        color: var(--color-white); }
        @media (max-width: 639.98px) {
          .practice__text .tabs .tab {
            padding: 16px 16px 16px 56px; } }
        .practice__text .tabs .tab:first-child {
          padding: 16px 16px 16px 56px;
          grid-row: 1 / 2;
          grid-column: 1 / 3; }
          @media (max-width: 1279.98px) {
            .practice__text .tabs .tab:first-child {
              padding: 56px 16px 16px;
              grid-row: 1 / 2;
              grid-column: 1 / 2; } }
          @media (max-width: 1023.98px) {
            .practice__text .tabs .tab:first-child {
              padding: 16px 16px 16px 56px;
              grid-row: 1 / 2;
              grid-column: 1 / 3; } }
          @media (max-width: 639.98px) {
            .practice__text .tabs .tab:first-child {
              grid-row: 1 / 2;
              grid-column: 1 / 2; } }
        .practice__text .tabs .tab__title {
          font-size: 18px;
          line-height: 150%;
          font-weight: 600; }
        .practice__text .tabs .tab__text {
          opacity: 0.56; }
  .practice__pic {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    position: relative; }
    @media (max-width: 1279.98px) {
      .practice__pic {
        grid-row: 2 / 3;
        grid-column: 1 / 2; } }
    @media (max-width: 1023.98px) {
      .practice__pic {
        grid-row: 2 / 3;
        grid-column: 1 / 2; } }
    .practice__pic img {
      display: block;
      border-radius: 24px;
      width: 100%; }
    .practice__pic__info {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      padding: 16px;
      border-radius: 16px;
      backdrop-filter: blur(10px);
      color: var(--color-white); }
      .practice__pic__info__name {
        font-size: 24px;
        line-height: 120%;
        font-weight: 600; }
      .practice__pic__info__position {
        margin-bottom: 4px;
        font-size: 18px;
        line-height: 150%;
        font-weight: 600; }
  .practice__logo {
    grid-row: 1 / 3;
    grid-column: 3 / 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (max-width: 1279.98px) {
      .practice__logo {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 24px; }
        .practice__logo > div {
          width: 100%; } }
    @media (max-width: 1023.98px) {
      .practice__logo {
        grid-template-columns: 1fr;
        grid-column: 1 / 2;
        grid-row: 4 / 5; } }
    .practice__logo__title {
      font-size: 18px;
      line-height: 150%;
      font-weight: 600;
      color: var(--color-white); }
    .practice__logo__list {
      position: relative;
      max-width: 100%;
      width: 282px;
      height: 56px;
      overflow: hidden;
      margin: 16px 0 0; }
      @media (max-width: 1279.98px) {
        .practice__logo__list {
          width: auto;
          max-width: 100%;
          margin-bottom: 0; } }
      @media (max-width: 639.98px) {
        .practice__logo__list {
          width: unset;
          max-width: calc(100vw - 16px); } }
      .practice__logo__list:after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        display: block;
        width: 56px;
        background: linear-gradient(90deg, rgba(28, 31, 51, 0) 0%, #1c1f33 100%); }
      .practice__logo__list.list-brand {
        display: flex;
        gap: 8px; }
        .practice__logo__list.list-brand:after {
          display: none; }
      .practice__logo__list .track {
        position: absolute;
        will-change: transform; }
        .practice__logo__list .track .content {
          display: flex;
          align-items: center; }
          .practice__logo__list .track .content .item {
            display: block;
            height: 56px;
            border: none;
            border-radius: 16px;
            background: var(--color-white-08);
            margin: 0 8px 0 0; }
      .practice__logo__list.list-strategy .track {
        animation: strategy 22s linear infinite; }
      .practice__logo__list.list-school .track {
        animation: school 10s linear infinite; }
      .practice__logo__list.list-saas .track {
        animation: saas 7s linear infinite; }

@keyframes strategy {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-2239px); } }
@keyframes school {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-940px); } }
@keyframes saas {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-616px); } }
.dropdown {
  padding: 0 0 80px 0; }
  .dropdown__list {
    margin-top: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px; }
    .dropdown__list__hidden {
      display: none; }
    .dropdown__list__item {
      background: var(--color-white);
      border-radius: 24px;
      transition: all 0.2s ease-out; }
      .dropdown__list__item__control {
        position: relative;
        padding: 24px;
        border-radius: 24px;
        cursor: pointer;
        transition: all 0.2s ease-out; }
        @media (max-width: 639.98px) {
          .dropdown__list__item__control {
            padding-left: 16px;
            padding-right: 16px; } }
        .dropdown__list__item__control:after {
          content: '';
          position: absolute;
          display: block;
          right: 24px;
          top: 24px;
          height: 24px;
          width: 24px;
          background: url("../images/arrow_down.svg") center no-repeat; }
        .dropdown__list__item__control .tag {
          margin-bottom: 16px; }
        .dropdown__list__item__control .title {
          padding-right: 40px;
          font-size: 24px;
          line-height: 120%;
          font-weight: 600;
          color: var(--color-black);
          transition: all 0.2s ease-out; }
          @media (max-width: 639.98px) {
            .dropdown__list__item__control .title {
              font-size: 22px; } }
        .dropdown__list__item__control:hover {
          background: linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%); }
          .dropdown__list__item__control:hover:after {
            background-image: url("../images/arrow_down_white.svg"); }
          .dropdown__list__item__control:hover .tag {
            background: var(--color-white);
            color: var(--color-black); }
          .dropdown__list__item__control:hover .title {
            color: var(--color-white); }
      .dropdown__list__item.open .dropdown__list__item__control:after {
        background-image: url("../images/arrow_down.svg");
        transform: rotate(180deg); }
      .dropdown__list__item.open .dropdown__list__item__control:hover {
        background: var(--color-white); }
        .dropdown__list__item.open .dropdown__list__item__control:hover .tag {
          background: var(--color-black);
          color: var(--color-white); }
        .dropdown__list__item.open .dropdown__list__item__control:hover .title {
          color: var(--color-black); }
      .dropdown__list__item__hidden {
        display: none;
        padding: 0 24px; }
        @media (max-width: 639.98px) {
          .dropdown__list__item__hidden {
            padding-left: 16px;
            padding-right: 16px; } }
        .dropdown__list__item__hidden__text {
          margin-bottom: 16px;
          font-weight: 600;
          color: var(--color-black); }
        .dropdown__list__item__hidden__list {
          margin-bottom: 24px;
          display: flex;
          flex-direction: column;
          gap: 8px; }
          .dropdown__list__item__hidden__list > div {
            display: flex;
            gap: 6px;
            align-items: center;
            color: var(--color-gray); }
        .dropdown__list__item__hidden__content {
          margin-bottom: 24px; }

.video {
  margin-bottom: 80px; }
  .video .wrapper {
    padding: 40px;
    background: linear-gradient(-40deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
    border-radius: 24px; }
    @media (max-width: 639.98px) {
      .video .wrapper {
        padding: 24px 16px; } }
    .video .wrapper h2 {
      margin-bottom: 16px;
      color: var(--color-white); }
      @media (max-width: 639.98px) {
        .video .wrapper h2 {
          margin-bottom: 8px; } }
    .video .wrapper .subtitle {
      margin-bottom: 40px;
      max-width: 540px;
      font-size: 18px;
      line-height: 150%;
      color: var(--color-white); }
      @media (max-width: 639.98px) {
        .video .wrapper .subtitle {
          margin-bottom: 24px; } }
    .video .wrapper .video-block-wrap {
      width: 100%; }
      .video .wrapper .video-block-wrap .video-block {
        position: relative;
        padding-bottom: 56.25%;
        border-radius: 12px;
        height: 0;
        overflow: hidden; }
        .video .wrapper .video-block-wrap .video-block iframe {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          border: none;
          border-radius: 24px; }
        .video .wrapper .video-block-wrap .video-block .hover {
          position: absolute;
          display: flex;
          align-items: center;
          justify-content: center;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          border: none;
          border-radius: 24px;
          background: rgba(0, 0, 0, 0.64);
          z-index: 2; }
          .video .wrapper .video-block-wrap .video-block .hover .btn {
            display: flex;
            align-items: center;
            height: 56px;
            gap: 16px;
            padding: 0 32px;
            font-size: 24px;
            line-height: 24px;
            font-weight: 500;
            cursor: pointer; }
            .video .wrapper .video-block-wrap .video-block .hover .btn:hover {
              background: linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) padding-box, linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box;
              border-color: transparent;
              color: var(--color-white); }
            .video .wrapper .video-block-wrap .video-block .hover .btn img {
              width: 24px; }
            @media (max-width: 1279.98px) {
              .video .wrapper .video-block-wrap .video-block .hover .btn {
                padding: 0 20px; }
                .video .wrapper .video-block-wrap .video-block .hover .btn span {
                  display: none; } }
  .video__back {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
    .video__back .video {
      height: 100%;
      width: 177.77777778vh;
      /* 100 * 16 / 9 */
      min-width: 100%;
      min-height: 56.25vw;
      /* 100 * 9 / 16 */ }

.process {
  margin-bottom: 80px;
  overflow: hidden; }
  .process__list {
    position: relative;
    display: flex;
    gap: 24px;
    margin-top: 40px;
    width: 100%;
    flex-flow: wrap;
    justify-content: center;
    overflow: visible; }
    .process__list:after {
      content: '';
      display: block;
      width: 100px;
      height: 100%;
      position: absolute;
      top: 0;
      right: 0;
      background: linear-gradient(-90deg, #ebf0ff 0%, rgba(235, 240, 255, 0) 100%);
      z-index: 2; }
      @media (max-width: 1279.98px) {
        .process__list:after {
          display: none; } }
    @media (max-width: 1279.98px) {
      .process__list .slick-list {
        overflow: visible; } }
    .process__list .slick-track {
      display: flex; }
    .process__list .item {
      margin-right: 16px;
      display: block !important;
      width: 276px !important;
      padding: 160px 32px 32px;
      background: var(--color-white) url("../images/icon_check_shadow.svg") top 32px left 32px no-repeat;
      border-radius: 24px; }
      @media (max-width: 639.98px) {
        .process__list .item {
          width: 248px !important;
          padding: 136px 16px 24px; } }
      .process__list .item__title {
        margin-bottom: 16px;
        font-size: 24px;
        line-height: 120%;
        color: var(--color-black);
        font-weight: 600; }
        @media (max-width: 639.98px) {
          .process__list .item__title {
            font-size: 22px; } }
      .process__list .item__text {
        font-size: 18px;
        line-height: 150%; }
      .process__list .item.licence {
        background-repeat: no-repeat;
        background-position: bottom left, center;
        background-image: url("../images/licence.png"), linear-gradient(-40deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
        padding: 32px;
        color: var(--color-white); }
        .process__list .item.licence .item__title {
          color: var(--color-white); }
    .process__list .slide-nav {
      position: absolute;
      display: block;
      top: -104px;
      width: 64px;
      height: 64px;
      right: 0;
      border-radius: 16px;
      border: 1px solid transparent;
      background: url("../images/arrow_right.svg") center no-repeat, linear-gradient(var(--color-light) 0 0) padding-box, linear-gradient(-45deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box;
      transition: 0.2s ease-out all; }
      .process__list .slide-nav:hover {
        background: url("../images/arrow_right_white.svg") center no-repeat, linear-gradient(-45deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%); }
      @media (max-width: 1279.98px) {
        .process__list .slide-nav {
          display: none !important; } }
      .process__list .slide-nav.prev {
        right: 80px;
        background: url("../images/arrow_left.svg") center no-repeat, linear-gradient(var(--color-light) 0 0) padding-box, linear-gradient(-45deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box; }
        .process__list .slide-nav.prev:hover {
          background: url("../images/arrow_left_white.svg") center no-repeat, linear-gradient(-45deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%); }
      @media (max-width: 1279.98px) {
        .process__list .slide-nav {
          display: none !important; } }

.reviews {
  padding: 0 0 68px;
  overflow: hidden; }
  .reviews__list {
    position: relative;
    margin-top: 40px;
    width: 100%;
    flex-flow: wrap;
    justify-content: center;
    overflow: visible; }
    .reviews__list:after {
      content: '';
      display: block;
      width: 100px;
      height: 100%;
      position: absolute;
      top: 0;
      right: 0;
      background: linear-gradient(-90deg, #ebf0ff 0%, rgba(235, 240, 255, 0) 100%);
      z-index: 2; }
      @media (max-width: 1279.98px) {
        .reviews__list:after {
          display: none; } }
    @media (max-width: 1279.98px) {
      .reviews__list .slick-list {
        overflow: visible; } }
    .reviews__list .slick-track {
      display: flex; }
    .reviews__list .review {
      width: 276px !important;
      border-radius: 24px;
      background: var(--color-white);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-right: 16px; }
      @media (max-width: 639.98px) {
        .reviews__list .review {
          padding: 24px 16px; } }
      .reviews__list .review__content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px; }
      .reviews__list .review__title {
        font-size: 24px;
        line-height: 120%;
        color: var(--color-black); }
      .reviews__list .review__text {
        font-size: 18px;
        line-height: 150%; }
      .reviews__list .review .tag {
        background: var(--color-light);
        color: var(--color-black); }
      .reviews__list .review .video-block-wrap {
        width: 100%; }
        .reviews__list .review .video-block-wrap .video-block {
          position: relative;
          padding-bottom: 177.78%;
          border-radius: 12px;
          height: 0;
          overflow: hidden; }
          .reviews__list .review .video-block-wrap .video-block iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 24px; }
          .reviews__list .review .video-block-wrap .video-block .hover {
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 24px;
            border: none;
            border-radius: 24px;
            background: rgba(0, 0, 0, 0.64);
            z-index: 2; }
            .reviews__list .review .video-block-wrap .video-block .hover .btn {
              display: inline-flex;
              align-items: center;
              gap: 16px;
              padding: 0;
              border: none;
              background: transparent;
              height: 24px;
              font-size: 18px;
              line-height: 24px;
              font-weight: 500;
              color: var(--color-white); }
              .reviews__list .review .video-block-wrap .video-block .hover .btn img {
                width: 24px; }
                .reviews__list .review .video-block-wrap .video-block .hover .btn img.hovered {
                  display: none; }
            .reviews__list .review .video-block-wrap .video-block .hover:hover {
              background: linear-gradient(rgba(28, 31, 51, 0.88) 0%, rgba(28, 31, 51, 0.72) 8%, rgba(28, 31, 51, 0) 100%); }
              .reviews__list .review .video-block-wrap .video-block .hover:hover .btn {
                background-image: linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
                color: transparent;
                background-clip: text;
                -webkit-background-clip: text; }
                .reviews__list .review .video-block-wrap .video-block .hover:hover .btn img {
                  display: none; }
                  .reviews__list .review .video-block-wrap .video-block .hover:hover .btn img.hovered {
                    display: block; }
    .reviews__list .slide-nav {
      position: absolute;
      display: block;
      top: -104px;
      width: 64px;
      height: 64px;
      right: 0;
      border-radius: 16px;
      border: 1px solid transparent;
      background: url("../images/arrow_right.svg") center no-repeat, linear-gradient(var(--color-light) 0 0) padding-box, linear-gradient(-45deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box;
      transition: 0.2s ease-out all; }
      .reviews__list .slide-nav:hover {
        background: url("../images/arrow_right_white.svg") center no-repeat, linear-gradient(-45deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%); }
      @media (max-width: 1279.98px) {
        .reviews__list .slide-nav {
          display: none !important; } }
      .reviews__list .slide-nav.prev {
        right: 80px;
        background: url("../images/arrow_left.svg") center no-repeat, linear-gradient(var(--color-light) 0 0) padding-box, linear-gradient(-45deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box; }
        .reviews__list .slide-nav.prev:hover {
          background: url("../images/arrow_left_white.svg") center no-repeat, linear-gradient(-45deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%); }

.tarif {
  margin-bottom: 80px; }
  .tarif .wrapper {
    padding: 40px;
    background: linear-gradient(-40deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
    border-radius: 24px; }
    @media (max-width: 639.98px) {
      .tarif .wrapper {
        padding: 24px 16px; } }
    .tarif .wrapper h2 {
      margin-bottom: 45px;
      color: var(--color-white); }
      @media (max-width: 639.98px) {
        .tarif .wrapper h2 {
          margin-bottom: 24px; } }
    .tarif .wrapper .tarif__list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: stretch;
      gap: 16px; }
      @media (max-width: 1279.98px) {
        .tarif .wrapper .tarif__list {
          grid-template-columns: 1fr; } }
      .tarif .wrapper .tarif__list .item {
        padding: 32px;
        border-radius: 24px;
        background: var(--color-light);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 48px; }
        @media (max-width: 639.98px) {
          .tarif .wrapper .tarif__list .item {
            padding: 24px 16px;
            gap: 24px; } }
        .tarif .wrapper .tarif__list .item:last-child {
          background: var(--color-white); }
          .tarif .wrapper .tarif__list .item:last-child .tag {
            background: var(--color-light); }
          .tarif .wrapper .tarif__list .item:last-child .buttons .btn:hover {
            background: linear-gradient(var(--color-white) 0 0) padding-box, linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box; }
          .tarif .wrapper .tarif__list .item:last-child .buttons .btn-partial {
            background: linear-gradient(var(--color-white) 0 0) padding-box, linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box; }
            .tarif .wrapper .tarif__list .item:last-child .buttons .btn-partial:hover {
              background: linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
              color: var(--color-white); }
        .tarif .wrapper .tarif__list .item__title {
          margin-bottom: 8px;
          font-size: 32px;
          line-height: 120%;
          color: var(--color-black);
          font-weight: 600; }
          @media (max-width: 639.98px) {
            .tarif .wrapper .tarif__list .item__title {
              font-size: 28px; } }
        .tarif .wrapper .tarif__list .item__price {
          margin-bottom: 8px;
          display: flex;
          gap: 16px;
          align-items: center; }
          .tarif .wrapper .tarif__list .item__price__old {
            font-size: 18px;
            line-height: 150%;
            text-decoration: line-through; }
            @media (max-width: 639.98px) {
              .tarif .wrapper .tarif__list .item__price__old {
                font-size: 16px; } }
          .tarif .wrapper .tarif__list .item__price__actual {
            font-size: 24px;
            line-height: 120%;
            color: var(--color-black); }
            @media (max-width: 639.98px) {
              .tarif .wrapper .tarif__list .item__price__actual {
                font-size: 18px; } }
        .tarif .wrapper .tarif__list .item .tag {
          margin-bottom: 24px;
          background: var(--color-white);
          color: var(--color-black); }
          .tarif .wrapper .tarif__list .item .tag img {
            width: 13px; }
        .tarif .wrapper .tarif__list .item .line {
          margin-bottom: 24px;
          width: 100%;
          height: 1px;
          background: var(--color-black);
          opacity: 0.16; }
        .tarif .wrapper .tarif__list .item__list {
          display: flex;
          flex-direction: column;
          gap: 8px; }
          .tarif .wrapper .tarif__list .item__list > div {
            display: flex;
            gap: 8px;
            align-items: center;
            color: var(--color-black); }
        .tarif .wrapper .tarif__list .item .buttons {
          display: flex;
          flex-direction: column;
          gap: 8px;
          align-items: stretch; }
          .tarif .wrapper .tarif__list .item .buttons .btn {
            text-decoration: none; }
            .tarif .wrapper .tarif__list .item .buttons .btn .grad {
              text-align: center; }
            .tarif .wrapper .tarif__list .item .buttons .btn:hover {
              background: linear-gradient(var(--color-light) 0 0) padding-box, linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box;
              color: var(--color-black); }
          .tarif .wrapper .tarif__list .item .buttons .btn-partial {
            display: flex;
            gap: 16px;
            align-items: center;
            justify-content: center;
            background: linear-gradient(var(--color-light) 0 0) padding-box, linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box;
            line-height: 1.5;
            border-color: transparent; }
            .tarif .wrapper .tarif__list .item .buttons .btn-partial:hover {
              background: linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
              color: var(--color-white); }

.faq .container {
  max-width: 872px; }
  @media (max-width: 1279.98px) {
    .faq .container {
      max-width: 976px; } }
  @media (max-width: 1279.98px) {
    .faq .container {
      max-width: 592px; } }
  .faq .container h2 {
    text-align: center; }
  .faq .container .ask {
    margin-top: 40px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(-90deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center; }
    @media (max-width: 639.98px) {
      .faq .container .ask {
        padding-left: 16px;
        padding-right: 16px; } }
    .faq .container .ask .title {
      margin-bottom: 8px;
      font-weight: 600;
      font-size: 32px;
      line-height: 120%; }
    .faq .container .ask .text {
      font-size: 18px;
      line-height: 150%; }
    .faq .container .ask .btn {
      padding: 0 32px;
      font-size: 16px; }

.footer {
  padding: 0 0 80px; }
  .footer .line {
    margin-bottom: 40px;
    width: 100%;
    height: 1px;
    background: var(--color-black);
    opacity: 0.24; }
  .footer .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; }
    @media (max-width: 1023.98px) {
      .footer .wrapper {
        grid-template-columns: 1fr;
        gap: 24px; } }
    .footer .wrapper .left {
      display: flex;
      flex-direction: column;
      gap: 16px; }
      @media (max-width: 1023.98px) {
        .footer .wrapper .left {
          grid-row: 2 / 3;
          text-align: center; } }
    .footer .wrapper .middle {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center; }
      @media (max-width: 1023.98px) {
        .footer .wrapper .middle {
          grid-row: 1 / 2; } }
    .footer .wrapper .right {
      text-align: right; }
      @media (max-width: 1023.98px) {
        .footer .wrapper .right {
          grid-row: 3 / 4;
          text-align: center; } }
    .footer .wrapper a:hover {
      background-image: linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
      color: transparent;
      background-clip: text;
      -webkit-background-clip: text;
      text-decoration: underline; }

.countdown-fire {
  margin-top: 24px;
  margin-bottom: 24px; }
  .countdown-fire .container .wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    border-radius: 16px;
    background: var(--color-white);
    font-weight: 600;
    color: var(--color-black);
    text-align: center;
    line-height: 26px; }
    .countdown-fire .container .wrapper .countdown-wrapper > span {
      display: flex; }
      @media (max-width: 639.98px) {
        .countdown-fire .container .wrapper .countdown-wrapper > span {
          flex-direction: column; } }

.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(2, 3, 20, 0.8);
  display: flex;
  align-items: center;
  justify-content: center; }

.loader {
  display: none; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  outline: 0;
  background: rgba(28, 31, 51, 0.64);
  padding: 40px; }
  @media (max-width: 1279.98px) {
    .modal {
      padding: 0;
      flex-direction: column;
      justify-content: flex-end;
      align-items: stretch; } }
  .modal.opened {
    display: flex; }
  .modal__form {
    box-sizing: border-box;
    position: relative;
    background: var(--color-white);
    border-radius: 24px;
    padding: 32px;
    width: auto;
    max-width: 524px;
    max-height: calc(100vh - 80px);
    overflow: auto;
    margin: 0 auto; }
    @media (max-width: 1279.98px) {
      .modal__form {
        max-width: unset;
        width: 100%;
        border-radius: 24px 24px 0 0;
        padding: 32px 24px; } }
    @media (max-width: 639.98px) {
      .modal__form {
        padding: 24px 16px; } }
    .modal__form::-webkit-scrollbar {
      width: 8px;
      background: var(--color-white); }
    .modal__form::-webkit-scrollbar-track {
      background: var(--color-white);
      width: 8px; }
    .modal__form::-webkit-scrollbar-thumb {
      background: var(--color-gray);
      border-radius: 3px; }
    .modal__form::-webkit-scrollbar-thumb:hover {
      background: var(--color-gray);
      width: 8px;
      cursor: none; }
    .modal__form__close {
      position: absolute;
      top: 32px;
      right: 32px;
      background: url("../images/close.svg") center no-repeat, linear-gradient(var(--color-white) 0 0) padding-box, linear-gradient(-90deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box;
      border: 1px solid transparent;
      display: flex;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      flex-flow: column;
      align-items: center;
      text-align: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.2s ease-out all; }
      @media (max-width: 1279.98px) {
        .modal__form__close {
          right: 24px; } }
      @media (max-width: 639.98px) {
        .modal__form__close {
          right: 16px; } }
      .modal__form__close:hover {
        background: url("../images/close_white.svg") center no-repeat, linear-gradient(-90deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) padding-box, linear-gradient(-90deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box; }
    .modal__form__text {
      margin-bottom: 24px;
      padding-right: 56px;
      font-size: 32px;
      line-height: 40px;
      font-weight: 600;
      color: var(--color-black); }
    .modal__form__data {
      display: flex;
      flex-flow: column;
      gap: 24px; }
      .modal__form__data .fieldset {
        display: flex;
        flex-flow: column;
        gap: 16px; }
        .modal__form__data .fieldset label {
          display: block;
          margin-bottom: 8px;
          font-size: 14px;
          line-height: 150%;
          font-weight: 600; }
        .modal__form__data .fieldset input[type=text] {
          box-sizing: border-box;
          font-size: 18px;
          line-height: 150%;
          background: var(--color-light);
          color: var(--color-gray);
          padding: 0 16px;
          border: none;
          border-radius: 16px;
          display: block;
          width: 100%;
          font-weight: 600;
          font-size: 18px;
          line-height: 56px;
          outline: none; }
          .modal__form__data .fieldset input[type=text]::placeholder {
            color: var(--color-gray); }
      .modal__form__data .checkboxes {
        font-size: 14px;
        line-height: 150%;
        color: var(--color-gray);
        display: flex;
        gap: 16px;
        flex-flow: column; }
        .modal__form__data .checkboxes label {
          display: block;
          position: relative;
          padding-left: 32px;
          cursor: pointer;
          user-select: none;
          font-weight: 400; }
          .modal__form__data .checkboxes label span:before {
            content: '';
            display: block;
            width: 16px;
            height: 16px;
            box-sizing: border-box;
            background: linear-gradient(var(--color-white) 0 0) padding-box, linear-gradient(-90deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box;
            border: 1px solid transparent;
            border-radius: 4px;
            position: absolute;
            left: 0;
            top: -1px; }
          .modal__form__data .checkboxes label span a {
            text-decoration: underline; }
            .modal__form__data .checkboxes label span a:hover {
              text-decoration: none;
              color: var(--color-black); }
          .modal__form__data .checkboxes label input:checked ~ span:before {
            background: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.3332 4L5.99984 11.3333L2.6665 8" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/10px auto no-repeat, linear-gradient(-90deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
            border: none; }
      .modal__form__data .form-result.error {
        color: #c00;
        padding-top: 1em; }
      .modal__form__data .buttons {
        display: flex;
        flex-flow: column;
        gap: 16px; }
        .modal__form__data .buttons .btn {
          box-sizing: border-box;
          display: block;
          height: 56px;
          line-height: 56px;
          text-align: center; }
          .modal__form__data .buttons .btn:hover {
            color: var(--color-black); }
        .modal__form__data .buttons .btn-partial {
          display: flex;
          gap: 16px;
          align-items: center;
          justify-content: center;
          background: linear-gradient(var(--color-light) 0 0) padding-box, linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%) border-box;
          line-height: 1.5;
          border-color: transparent; }
          .modal__form__data .buttons .btn-partial span {
            text-align: left; }
          .modal__form__data .buttons .btn-partial:hover {
            background: linear-gradient(-10deg, #DD5789 0%, #7B9FFE 50%, #2F68FE 100%);
            color: var(--color-white); }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }

.slick-track:before, .slick-track:after {
  content: "";
  display: table; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  float: left;
  min-height: 1px;
  display: none; }

[dir="rtl"] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: flex;
  align-items: stretch; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/*# sourceMappingURL=tg_game.css.map */
