@font-face {
  font-family: "OnestRegular";
  src: url("../../fonts/Onest-Regular.ttf"); }

@font-face {
  font-family: "Massj1808Normal";
  src: url("../../fonts/2Massj1808Normal.ttf"); }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s,
samp, small, strike, strong, sub, sup, tt,
var, b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

html {
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  transition: background-color 0.075s ease; }
  body::-webkit-scrollbar {
    width: 10px; }
  body::-webkit-scrollbar-track {
    background: #dfdddd; }
  body::-webkit-scrollbar-thumb {
    background: #26125B; }
  body::-webkit-scrollbar-thumb:hover {
    background: #311b6cd2; }
  body ::selection {
    background-color: #311b6cd2;
    color: #ffffff; }

ul {
  list-style-type: none; }

.container {
  margin: 20px auto;
  width: 1600px;
  padding: 0 20px;
  box-sizing: border-box; }

.open {
  display: flex !important; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .site-header__burger {
    display: none;
    position: relative;
    z-index: 51;
    align-items: center;
    justify-content: space-between;
    width: 8vw;
    height: 4vw;
    margin-left: 2vw;
    cursor: pointer; }
    .site-header__burger__span {
      border-radius: 50px;
      height: 0.48vw;
      width: 100%;
      transform: scale(1);
      background-color: #26125B;
      transition: all 0.3s ease 0s; }
    .site-header__burger::before {
      content: '';
      border-radius: 50px;
      position: absolute;
      height: 0.48vw;
      width: 100%;
      background-color: #26125B;
      transition: all 0.3s ease 0s;
      top: 0; }
    .site-header__burger::after {
      content: '';
      border-radius: 50px;
      position: absolute;
      height: 0.48vw;
      width: 100%;
      background-color: #26125B;
      transition: all 0.3s ease 0s;
      bottom: 0; }
    .site-header__burger.active {
      pointer-events: none; }
      .site-header__burger.active .site-header__burger__span {
        background-color: rgba(38, 18, 91, 0); }
      .site-header__burger.active::before {
        background-color: rgba(38, 18, 91, 0); }
      .site-header__burger.active::after {
        background-color: rgba(38, 18, 91, 0); }
  .site-header__navigation {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .site-header__navigation__nav-links {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 35%; }
      .site-header__navigation__nav-links__nav-link {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        padding: 7.5px 12.5px;
        border-radius: 12px;
        color: #000000;
        font-size: 18px;
        font-family: "OnestRegular";
        transition: background-color 0.3s ease; }
        .site-header__navigation__nav-links__nav-link:hover {
          background-color: rgba(163, 160, 172, 0.35); }
    .site-header__navigation__header-logo {
      padding-left: 5%;
      padding-right: 5%; }
      .site-header__navigation__header-logo__link {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        height: 55px;
        transition: transform 0.3s ease; }
        .site-header__navigation__header-logo__link:hover {
          transform: scale(0.98); }
  .site-header__mobile-navigation {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    align-items: center;
    gap: 10vw;
    height: 100vh;
    width: 45%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    overflow-y: auto;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    overscroll-behavior: none;
    border-radius: 0 10px 10px 0; }
    .site-header__mobile-navigation__back-button {
      width: 25%;
      margin-right: 70%;
      padding-bottom: 12vw;
      text-decoration: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none; }
      .site-header__mobile-navigation__back-button::before {
        content: '';
        position: absolute;
        height: 8vw;
        width: 0.5vw;
        background-color: rgba(38, 18, 91, 0.9);
        transform: rotate(45deg);
        left: 15%;
        top: 2%;
        border-radius: 1vw; }
      .site-header__mobile-navigation__back-button::after {
        content: '';
        position: absolute;
        height: 8vw;
        width: 0.5vw;
        background-color: rgba(38, 18, 91, 0.9);
        transform: rotate(-45deg);
        left: 15%;
        top: 2%;
        border-radius: 1vw; }
    .site-header__mobile-navigation__nav-links {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      gap: 9.4vw;
      width: 85%; }
      .site-header__mobile-navigation__nav-links__nav-link {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        color: #000000;
        font-size: 6.75vw;
        font-family: "OnestRegular"; }
    .site-header__mobile-navigation__privacy {
      text-decoration: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      margin-bottom: 2vw;
      color: #000000;
      font-size: 3vw;
      font-family: "OnestRegular"; }
    .site-header__mobile-navigation.open {
      visibility: visible;
      opacity: 1;
      transform: translateY(0); }
  .site-header__mobile-navigation::-webkit-scrollbar {
    height: 0;
    width: 0;
    display: none; }

.hero {
  max-height: 95vh;
  min-height: 800px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../../media/png/main-screen-cover.png") center no-repeat;
  background-size: cover; }
  .hero__video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
    .hero__video__media {
      width: 100%;
      height: auto;
      min-height: 800px;
      object-fit: cover; }
  .hero__content {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .hero__content__set {
      width: 100%;
      height: 100%;
      margin-bottom: 100px;
      gap: 200px;
      display: flex;
      flex-direction: column; }
      .hero__content__set__title {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        margin-top: 55px;
        text-align: left;
        color: #ffffff;
        font-family: "Massj1808Normal";
        font-size: 57px; }
      .hero__content__set__highlights {
        display: flex;
        justify-content: space-between; }
        .hero__content__set__highlights__highlight {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          width: 300px;
          height: 255px;
          display: flex;
          flex-direction: column;
          text-align: left;
          align-items: flex-start;
          justify-content: space-between;
          background-color: #1D0B4F;
          border-radius: 33px;
          box-shadow: 0 4px 8px rgba(38, 18, 91, 0.25), 0 6px 20px rgba(38, 18, 91, 0.25);
          border: 1px solid #2b1666; }
          .hero__content__set__highlights__highlight__top-text {
            padding: 27px 30px 0px 30px;
            color: #ffffff;
            font-family: "Massj1808Normal";
            font-size: 33px; }
          .hero__content__set__highlights__highlight__bottom-text {
            padding: 0px 30px 27px 30px;
            color: #7E6BB0;
            font-family: "OnestRegular";
            font-size: 18px; }
        .hero__content__set__highlights__highlight--cta {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          width: 300px;
          height: 255px;
          display: flex;
          flex-direction: column;
          text-align: center;
          align-items: center;
          justify-content: center;
          background-color: #311b6cd2;
          border-radius: 33px;
          box-shadow: 0 4px 8px rgba(38, 18, 91, 0.25), 0 6px 20px rgba(38, 18, 91, 0.25);
          transition: background-color 0.3s ease; }
          .hero__content__set__highlights__highlight--cta__mid-text {
            color: #ffffff;
            font-family: "Massj1808Normal";
            font-size: 33px; }
          .hero__content__set__highlights__highlight--cta:hover {
            background-color: #2c1866; }
  .hero::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(49, 27, 108, 0.825);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; }

.hero-mobile {
  display: none; }
  .hero-mobile__content {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #26125B;
    border-radius: 7vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    overflow: hidden;
    gap: 7vw;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; }
    .hero-mobile__content__cover {
      position: absolute;
      z-index: 0;
      width: 200%;
      left: center;
      transform: translateY(25%); }
    .hero-mobile__content__title {
      text-align: left;
      color: #ffffff;
      font-family: "Massj1808Normal";
      font-size: 5vw;
      text-align: center;
      width: 85%;
      margin-top: 5%;
      z-index: 1; }
    .hero-mobile__content__button {
      text-decoration: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      color: #ffffff;
      font-family: "OnestRegular";
      font-size: 2.75vw;
      background-color: rgba(255, 255, 255, 0.15);
      padding: 3.75vw 11.25vw 3.75vw 11.25vw;
      border-radius: 1.25vw;
      -webkit-backdrop-filter: blur(30px);
      backdrop-filter: blur(30px); }
    .hero-mobile__content__highlights {
      z-index: 1;
      display: flex;
      width: 100%;
      height: 100%;
      overflow-x: auto;
      gap: 5%;
      margin-bottom: 5%;
      padding-right: 15vw;
      cursor: grab;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none; }
      .hero-mobile__content__highlights.dragging {
        cursor: grabbing; }
      .hero-mobile__content__highlights__highlight {
        width: 37.5vw;
        height: 31.875vw;
        display: flex;
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        justify-content: space-between;
        background-color: #1D0B4F;
        border-radius: 4.125vw;
        border: 1px solid #2b1666;
        flex-shrink: 0; }
        .hero-mobile__content__highlights__highlight__top-text {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          padding: 3.375vw 3.75vw 0px 3.75vw;
          color: #ffffff;
          font-family: "Massj1808Normal";
          font-size: 4.125vw; }
        .hero-mobile__content__highlights__highlight__bottom-text {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          padding: 0px 3.75vw 3.375vw 3.75vw;
          color: #7E6BB0;
          font-family: "OnestRegular";
          font-size: 2.25vw; }
        .hero-mobile__content__highlights__highlight.start-highlight {
          margin-left: 15vw; }
    .hero-mobile__content__highlights::-webkit-scrollbar {
      height: 0;
      width: 0;
      display: none; }

.portfolio {
  margin-top: 66px; }
  .portfolio__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px; }
    .portfolio__header__title {
      text-decoration: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      text-align: left;
      color: black;
      font-family: "Massj1808Normal";
      font-size: 60px; }
    .portfolio__header__button {
      border: none;
      background-size: cover;
      background-repeat: no-repeat;
      background-color: transparent;
      width: 48px;
      height: 48px;
      opacity: 0.9;
      transition: opacity 0.3s ease;
      background-image: url("../../media/svg/arrow-button.svg");
      transform: rotate(90deg);
      margin-top: 1%;
      cursor: pointer; }
      .portfolio__header__button:hover {
        opacity: 0.7; }
  .portfolio__cards {
    height: 100%;
    width: 100%;
    gap: 16px;
    display: flex;
    justify-content: space-between;
    flex-direction: column; }
    .portfolio__cards__line {
      width: 100%;
      height: 431.25px;
      gap: 16px;
      display: flex;
      justify-content: space-between; }
      .portfolio__cards__line__card {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        overflow: hidden;
        position: relative;
        justify-content: center;
        width: 100%;
        height: 100%;
        border-radius: 25.6px;
        transition: scale 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
        will-change: width, height;
        cursor: pointer; }
        .portfolio__cards__line__card__img {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          width: 100%;
          height: 100%;
          object-fit: cover; }
        .portfolio__cards__line__card__text {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          position: absolute;
          transform: translate(-50%, -50%);
          top: 93%;
          left: 50%;
          color: #ffffff;
          text-align: center;
          font-family: "OnestRegular";
          font-size: 25px;
          white-space: nowrap;
          transition: scale 0.3s ease;
          opacity: 0; }
        .portfolio__cards__line__card:hover {
          scale: 0.975; }
          .portfolio__cards__line__card:hover .portfolio__cards__line__card__text {
            opacity: 1; }
        .portfolio__cards__line__card::before {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 17%;
          background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
          opacity: 0;
          transition: scale 0.3s ease, opacity 0.3s ease; }
        .portfolio__cards__line__card:hover::before {
          opacity: 1; }
      .portfolio__cards__line__info {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        width: 70%;
        height: 100%;
        border-radius: 25.6px;
        background-color: rgba(38, 18, 91, 0.1);
        box-shadow: 0 4px 8px rgba(38, 18, 91, 0.05);
        transition: width 0.3s ease; }
        .portfolio__cards__line__info__title {
          font-family: "Massj1808Normal";
          color: #26125B;
          margin-top: 20px;
          font-size: 51px; }
        .portfolio__cards__line__info__button {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          color: #ffffff;
          font-family: "OnestRegular";
          font-size: 20px;
          background-color: #26125B;
          padding: 20px 100px 20px 100px;
          border-radius: 14px;
          transition: background-color 0.3s ease;
          margin-bottom: 25px; }
          .portfolio__cards__line__info__button:hover {
            background-color: rgba(38, 18, 91, 0.9); }
        .portfolio__cards__line__info:hover {
          width: 75%; }
      .portfolio__cards__line .large {
        width: 100%; }

.portfolio-mobile {
  display: none;
  margin-top: 15vw;
  width: 100%; }
  .portfolio-mobile__header {
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: #000000;
    font-family: "Massj1808Normal";
    font-size: 7vw;
    text-align: center;
    padding-bottom: 3vw; }
  .portfolio-mobile__cards {
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vw; }
    .portfolio-mobile__cards__card {
      width: 100%;
      height: 50vw;
      aspect-ratio: 1.25;
      box-sizing: border-box;
      overflow: hidden;
      border-radius: 4.25vw;
      position: relative; }
      .portfolio-mobile__cards__card::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
        z-index: 1; }
      .portfolio-mobile__cards__card__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 0; }
      .portfolio-mobile__cards__card__text {
        position: absolute;
        transform: translate(10%, -145%);
        color: #ffffff;
        text-align: left;
        font-family: "Massj1808Normal";
        font-size: 3.5vw;
        width: 65%;
        z-index: 2; }
  .portfolio-mobile__button {
    width: 100%;
    height: 10vw;
    background-color: #26125B;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2vw;
    margin-top: 2vw; }
    .portfolio-mobile__button__link {
      text-decoration: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      width: 100%;
      height: 100%;
      color: #ffffff;
      font-family: "OnestRegular";
      font-size: 3vw;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center; }

.services__content {
  display: flex;
  flex-direction: column;
  margin-top: 110px;
  justify-content: center;
  align-items: center;
  height: 750px;
  background-color: #26125B;
  border-radius: 25.6px;
  box-shadow: 0 4px 8px #26125B, 0 6px 20px #26125B; }
  .services__content__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin-top: 1.5%;
    margin-bottom: 1%; }
    .services__content__header__title {
      text-decoration: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      text-align: left;
      color: white;
      font-family: "Massj1808Normal";
      font-size: 60px; }
  .services__content__body {
    display: flex;
    width: 94%;
    height: 100%;
    margin: 2.75%;
    margin-top: 1%;
    background-color: #1C0D44;
    border-radius: 25.6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1%;
    padding-bottom: 1%;
    overflow: hidden; }
    .services__content__body__left {
      height: 100%;
      width: 30%;
      background-color: #281951;
      border-radius: 25.6px;
      margin-right: 0.5%;
      margin-left: 1%;
      scrollbar-width: none;
      overflow-y: auto;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      align-items: center; }
      .services__content__body__left__button {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: block;
        text-align: center;
        width: 90%;
        margin: 18px;
        color: #ffffff;
        font-family: "Massj1808Normal";
        font-size: 18px;
        background-color: #1C0D44;
        padding-bottom: 18px;
        padding-top: 18px;
        border-radius: 10.35px;
        transition: background-color 0.3s ease; }
        .services__content__body__left__button:hover {
          cursor: pointer; }
        .services__content__body__left__button:hover {
          background-color: rgba(98, 1, 136, 0.6); }
        .services__content__body__left__button.active {
          background-color: #620188; }
          .services__content__body__left__button.active:hover {
            background-color: rgba(98, 1, 136, 0.6); }
        .services__content__body__left__button__light {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          display: block;
          text-align: center;
          width: 90%;
          margin: 18px;
          color: #ffffff;
          font-family: "Massj1808Normal";
          font-size: 18px;
          background-color: #281951;
          padding-bottom: 18px;
          padding-top: 18px;
          border-radius: 10.35px;
          transition: background-color 0.3s ease; }
          .services__content__body__left__button__light:hover {
            cursor: pointer; }
          .services__content__body__left__button__light:hover {
            background-color: rgba(98, 1, 136, 0.6); }
          .services__content__body__left__button__light.active {
            background-color: #620188; }
            .services__content__body__left__button__light.active:hover {
              background-color: rgba(98, 1, 136, 0.6); }
    .services__content__body__right {
      height: 100%;
      width: 70%;
      background-color: #281951;
      border-radius: 25.6px;
      margin-right: 1%;
      margin-left: 0.5%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .services__content__body__right__title {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        color: #ffffff;
        font-family: "Massj1808Normal";
        margin: 1% 0% 3% 2%;
        font-size: 25px;
        align-self: flex-start; }
      .services__content__body__right__bodies {
        height: 79%;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.35%; }
        .services__content__body__right__bodies__extra {
          width: 25%;
          height: 100%;
          margin: 1.35% 0 1.35% 1.35%;
          background-color: #1C0D44;
          border-radius: 25.6px;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center; }
          .services__content__body__right__bodies__extra__header {
            text-decoration: none;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            width: 100%;
            height: 15%;
            background-color: #281951;
            border-radius: 25.6px 25.6px 0 0;
            border: 2px solid rgba(255, 255, 255, 0.09);
            display: flex;
            justify-content: center;
            align-items: center;
            color: rgba(255, 255, 255, 0.775);
            font-family: "Massj1808Normal";
            font-size: 18px; }
          .services__content__body__right__bodies__extra__segments {
            width: 100%;
            height: 85%;
            overflow: auto;
            scrollbar-width: none;
            display: flex;
            flex-direction: column;
            justify-content: left;
            padding: 0;
            margin: 0; }
            .services__content__body__right__bodies__extra__segments__segment {
              color: rgba(255, 255, 255, 0.55);
              font-family: "Massj1808Normal";
              margin: 7% 3% 5% 5%;
              font-size: 16px;
              hyphens: auto;
              overflow-wrap: break-word; }
        .services__content__body__right__bodies__body {
          height: 100%;
          width: 75%;
          margin: 1.35% 1.35% 1.35% 0;
          background-color: #1C0D44;
          border-radius: 25.6px; }
          .services__content__body__right__bodies__body__header {
            text-decoration: none;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            margin: 2% 1% 1.5% 2%;
            width: 90%;
            height: 10%;
            display: flex;
            justify-content: left;
            align-items: center;
            color: rgba(255, 255, 255, 0.775);
            font-family: "Massj1808Normal";
            font-size: 18px; }
          .services__content__body__right__bodies__body__descriptions {
            width: 100%;
            height: 89%;
            overflow: auto;
            scrollbar-width: none; }
            .services__content__body__right__bodies__body__descriptions__description {
              font-size: 20px;
              color: rgba(255, 255, 255, 0.55);
              font-family: "OnestRegular";
              margin: 0px 2% 3.5% 2%; }

.services-mobile {
  display: none;
  margin-top: 15vw; }
  .services-mobile__content {
    width: 100%;
    height: 100%;
    background-color: #F3F4F5;
    border-radius: 6vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden; }
    .services-mobile__content__header {
      text-decoration: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      color: #000000;
      font-family: "Massj1808Normal";
      font-size: 7vw;
      text-align: center;
      padding-top: 3vw;
      padding-bottom: 3vw; }
    .services-mobile__content__cards {
      display: flex;
      justify-content: flex-start;
      gap: 3vw;
      width: 100%;
      height: 60vw;
      margin-bottom: 4vw;
      overflow-x: auto;
      padding-right: 7vw;
      cursor: grab;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none; }
      .services-mobile__content__cards.dragging {
        cursor: grabbing; }
      .services-mobile__content__cards__card {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        width: 60vw;
        aspect-ratio: 0.65;
        border-radius: 5vw;
        flex-shrink: 0;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center; }
        .services-mobile__content__cards__card__img {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          width: 100%;
          height: 100%;
          object-fit: cover;
          position: relative;
          z-index: 0;
          pointer-events: none;
          -webkit-user-drag: none;
          -khtml-user-drag: none;
          -moz-user-drag: none;
          -o-user-drag: none;
          user-drag: none; }
        .services-mobile__content__cards__card__info {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          position: absolute;
          background-color: #ffffff;
          width: 80%;
          height: 40%;
          border-radius: 5vw;
          margin-bottom: 5%;
          padding: 5%;
          z-index: 2;
          display: flex;
          justify-content: space-between;
          flex-direction: column;
          opacity: 0.99; }
          .services-mobile__content__cards__card__info__numb {
            color: rgba(0, 0, 0, 0.5);
            text-align: left;
            font-family: "Massj1808Normal";
            font-size: 3vw; }
          .services-mobile__content__cards__card__info__text {
            color: #000000;
            text-align: left;
            font-family: "Massj1808Normal";
            font-size: 4.5vw; }
        .services-mobile__content__cards__card.start-card {
          margin-left: 7vw; }
    .services-mobile__content__cards::-webkit-scrollbar {
      height: 0;
      width: 0;
      display: none; }

.ai__content {
  display: flex;
  flex-direction: column;
  margin-top: 110px;
  height: 750px;
  background-color: #26125B;
  border-radius: 25.6px;
  box-shadow: 0 4px 8px #26125B, 0 6px 20px #26125B;
  background-image: url("../../media/png/ai-figure.png");
  background-size: contain;
  background-position: calc(100% + 235px) calc(50% - 130px);
  background-size: 60%;
  background-repeat: no-repeat; }
  .ai__content__title {
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    text-align: left;
    color: #ffffff;
    font-family: "Massj1808Normal";
    font-size: 60px;
    padding: 2.5% 0 1.5% 5%;
    max-width: 40%; }
  .ai__content__description {
    color: rgba(255, 255, 255, 0.6);
    font-family: "OnestRegular";
    font-size: 27.9px;
    padding: 0 5% 0 5%;
    max-width: 50%; }
  .ai__content__button {
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: #ffffff;
    font-family: "OnestRegular";
    font-size: 22.5px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 22.5px;
    padding: 22.5px 45px 22.5px 45px;
    margin: 2.5% 5% 2.5% 5%;
    width: fit-content;
    text-align: left;
    transition: background-color 0.3s ease;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px); }
    .ai__content__button:hover {
      background-color: rgba(255, 255, 255, 0.2); }

.faq__content {
  margin-top: 110px;
  background-color: #F3F4F5;
  border-radius: 25.6px;
  box-shadow: 0 2px 4px #F3F4F5, 0 3px 6px #F3F4F5;
  display: flex;
  justify-content: space-between;
  padding: 2% 2.5% 2.5% 2.5%;
  gap: 7.5%; }
  .faq__content__info {
    width: 47.5%;
    display: flex;
    justify-content: space-between;
    flex-direction: column; }
    .faq__content__info__header {
      display: flex;
      flex-direction: column;
      gap: 20px; }
      .faq__content__info__header__epigraph {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        font-family: "OnestRegular";
        font-size: 16px; }
      .faq__content__info__header__title {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        font-family: "Massj1808Normal";
        font-size: 60px; }
      .faq__content__info__header__button {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        width: 128px;
        color: #ffffff;
        font-family: "OnestRegular";
        font-size: 16px;
        text-align: center;
        background-color: #26125B;
        padding: 16px 32px 16px 32px;
        border-radius: 11.2px;
        transition: background-color 0.3s ease; }
        .faq__content__info__header__button:hover {
          background-color: rgba(38, 18, 91, 0.9); }
    .faq__content__info__social {
      display: flex;
      gap: 10px; }
      .faq__content__info__social__vk {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 15px;
        font-family: "OnestRegular";
        font-size: 15px;
        transition: background-color 0.3s ease;
        border-radius: 7.5px;
        gap: 7.5px;
        background-color: rgba(0, 119, 255, 0.1);
        color: #0077FF; }
        .faq__content__info__social__vk__logo {
          width: 20%; }
        .faq__content__info__social__vk:hover {
          background-color: rgba(0, 119, 255, 0.2); }
      .faq__content__info__social__tg {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 15px;
        font-family: "OnestRegular";
        font-size: 15px;
        transition: background-color 0.3s ease;
        border-radius: 7.5px;
        gap: 7.5px;
        background-color: rgba(33, 153, 212, 0.1);
        color: #2199D4; }
        .faq__content__info__social__tg__logo {
          width: 20%; }
        .faq__content__info__social__tg:hover {
          background-color: rgba(33, 153, 212, 0.2); }
      .faq__content__info__social__wa {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 15px;
        font-family: "OnestRegular";
        font-size: 15px;
        transition: background-color 0.3s ease;
        border-radius: 7.5px;
        gap: 7.5px;
        background-color: rgba(72, 205, 82, 0.1);
        color: #48CD52; }
        .faq__content__info__social__wa__logo {
          width: 20%; }
        .faq__content__info__social__wa:hover {
          background-color: rgba(72, 205, 82, 0.2); }
  .faq__content__questions {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px; }
    .faq__content__questions__question {
      position: relative;
      background-color: rgba(255, 255, 255, 0.9);
      font-family: "OnestRegular";
      border-radius: 12px;
      overflow: hidden; }
      .faq__content__questions__question__input {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0; }
        .faq__content__questions__question__input:checked ~ .faq__content__questions__question__trigger {
          background-color: #26125B;
          color: #ffffff;
          cursor: pointer; }
          .faq__content__questions__question__input:checked ~ .faq__content__questions__question__trigger::before {
            background-color: rgba(255, 255, 255, 0.8);
            transform: rotate(45deg); }
          .faq__content__questions__question__input:checked ~ .faq__content__questions__question__trigger::after {
            background-color: rgba(255, 255, 255, 0.8);
            transform: rotate(-45deg); }
          .faq__content__questions__question__input:checked ~ .faq__content__questions__question__trigger:hover {
            background-color: rgba(38, 18, 91, 0.9); }
        .faq__content__questions__question__input:checked ~ .faq__content__questions__question__content {
          display: block; }
      .faq__content__questions__question__trigger {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: block;
        padding: 2.5%;
        border-radius: 12px;
        font-size: 17px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease;
        cursor: pointer; }
        .faq__content__questions__question__trigger::before {
          content: '';
          position: absolute;
          height: 2px;
          width: 15px;
          background-color: rgba(38, 18, 91, 0.8);
          transform: rotate(90deg);
          left: 95%;
          border-radius: 20px;
          transition: all 0.3s ease 0s; }
        .faq__content__questions__question__trigger::after {
          content: '';
          position: absolute;
          height: 2px;
          width: 15px;
          background-color: rgba(38, 18, 91, 0.8);
          transform: rotate(180deg);
          left: 95%;
          border-radius: 20px;
          transition: all 0.3s ease 0s; }
        .faq__content__questions__question__trigger:hover {
          background-color: rgba(38, 18, 91, 0.1); }
      .faq__content__questions__question__content {
        padding: 2.5%;
        display: none;
        font-size: 16px; }
        .faq__content__questions__question__content ul {
          list-style-type: disc;
          padding-left: 3.5%; }

.policy-info {
  margin-top: 60px; }
  .policy-info__header {
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-family: "Massj1808Normal";
    font-size: 60px;
    padding-bottom: 18px; }
  .policy-info__body {
    font-family: "OnestRegular";
    font-size: 21.6px; }
    .policy-info__body ul {
      list-style-type: disc;
      padding-left: 45px; }
    .policy-info__body h4 {
      color: #26125B;
      font-weight: bold; }

.thanks-letters {
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  margin-top: 60px; }
  .thanks-letters__header {
    font-family: "Massj1808Normal";
    font-size: 60px;
    padding-bottom: 24px; }
  .thanks-letters__body {
    display: flex;
    gap: 2.5%; }
    .thanks-letters__body__letter {
      overflow: hidden;
      transition: scale 0.3s ease; }
      .thanks-letters__body__letter__img {
        width: 360px;
        border-radius: 40px;
        border: 1px solid rgba(0, 0, 0, 0.25); }
      .thanks-letters__body__letter:hover {
        scale: 1.02; }

.clients-logo {
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  margin-top: 60px; }
  .clients-logo__header {
    font-family: "Massj1808Normal";
    font-size: 60px;
    padding-bottom: 18px; }
  .clients-logo__body {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .clients-logo .first {
    width: 5%; }
  .clients-logo .second {
    width: 10%; }
  .clients-logo .third {
    width: 12%; }
  .clients-logo .fourth {
    width: 24%; }
  .clients-logo .fifth {
    width: 11%; }

.feedback {
  margin-top: 60px; }
  .feedback .container {
    display: flex;
    justify-content: center; }
  .feedback__content {
    width: 75%;
    padding: 4%;
    border-radius: 48px;
    background-color: #F3F4F5;
    display: flex;
    justify-content: space-between; }
    .feedback__content__left {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start; }
      .feedback__content__left__header__epigraph {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        font-family: "OnestRegular";
        font-size: 21px; }
      .feedback__content__left__header__title {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        font-family: "Massj1808Normal";
        font-size: 60px; }
      .feedback__content__left__mail {
        text-decoration: none;
        font-size: 19.5px;
        font-family: "OnestRegular";
        width: 60%;
        padding: 5%;
        background-color: #ffffff;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 3%;
        color: #190A3F; }
        .feedback__content__left__mail img {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none; }
    .feedback__content__right {
      width: 100%;
      border-radius: 16px;
      background-color: #ffffff;
      padding: 3%; }
      .feedback__content__right__form {
        display: flex;
        flex-direction: column;
        gap: 12px; }
        .feedback__content__right__form__input {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          font-size: 18px;
          font-family: "OnestRegular";
          border-radius: 12px 5px 5px 12px;
          padding: 3% 1% 3% 3%;
          border: 1px solid #E4E4E4;
          background-color: #F3F4F5;
          outline: none; }
          .feedback__content__right__form__input:focus {
            background-color: #ffffff; }
        .feedback__content__right__form__textarea {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          font-size: 18px;
          font-family: "OnestRegular";
          padding: 3% 1% 3% 3%;
          border-radius: 12px 5px 5px 12px;
          border: 1px solid #E4E4E4;
          resize: none;
          background-color: #F3F4F5;
          outline: none; }
          .feedback__content__right__form__textarea:focus {
            background-color: #ffffff; }
          .feedback__content__right__form__textarea::-webkit-scrollbar {
            width: 5px;
            cursor: pointer; }
          .feedback__content__right__form__textarea::-webkit-scrollbar-track {
            background: #ffffff; }
          .feedback__content__right__form__textarea::-webkit-scrollbar-thumb {
            background: #cacaca; }
          .feedback__content__right__form__textarea::-webkit-scrollbar-thumb:hover {
            background: #979797; }
        .feedback__content__right__form__send {
          display: flex;
          justify-content: space-between;
          align-items: center; }
          .feedback__content__right__form__send__warning {
            font-family: "OnestRegular";
            font-size: 15px;
            width: 60%; }
          .feedback__content__right__form__send__button {
            text-decoration: none;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            font-family: "OnestRegular";
            font-size: 18px;
            padding: 4% 5% 4% 5%;
            background-color: rgba(38, 18, 91, 0.98);
            color: #ffffff;
            border-radius: 12px;
            border: 0;
            transition: opacity 0.3s ease;
            cursor: pointer; }
            .feedback__content__right__form__send__button:hover {
              opacity: 0.95; }
        .feedback__content__right__form__info {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          font-family: "OnestRegular";
          font-size: 13.5px;
          color: #FF0000;
          width: 100%;
          align-items: center;
          text-align: center; }
    .feedback__content__success {
      text-decoration: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      width: 100%;
      border-radius: 16px;
      background-color: #190A3F;
      padding: 3%;
      display: flex;
      align-items: center;
      justify-content: center; }
      .feedback__content__success__img {
        width: 85%; }
      .feedback__content__success__header {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px; }
        .feedback__content__success__header__title {
          color: #ffffff;
          font-family: "Massj1808Normal";
          font-size: 33.33333px; }
        .feedback__content__success__header__description {
          color: rgba(255, 255, 255, 0.6);
          font-family: "OnestRegular";
          font-size: 16.66667px; }
        .feedback__content__success__header span {
          color: #ffffff; }

.contacts {
  margin-top: 60px; }
  .contacts__content {
    padding: 2.5%;
    height: 100%;
    background-color: #26125B;
    border-radius: 40px;
    background-image: url("../../media/svg/union.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center; }
    .contacts__content__header {
      text-decoration: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      font-family: "Massj1808Normal";
      font-size: 60px;
      color: #ffffff;
      padding-bottom: 2%; }
    .contacts__content__buttons {
      display: flex;
      align-items: center;
      gap: 20px;
      width: 90%; }
      .contacts__content__buttons__button {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        padding: 2.5%;
        background-color: #1D0B4F;
        width: 25%;
        height: 100%;
        border-radius: 40px;
        border: 1px solid #2b1666;
        transition: background-color 0.3s ease;
        cursor: pointer; }
        .contacts__content__buttons__button:hover {
          background-color: #1d0b4f; }
        .contacts__content__buttons__button__logo {
          width: 15%;
          margin-bottom: 25%; }
        .contacts__content__buttons__button__text {
          color: #ffffff;
          font-family: "OnestRegular";
          font-size: 26.66667px; }

.g-recaptcha {
  margin-bottom: -10px; }

.footer__content {
  margin-top: 110px;
  position: relative;
  height: 175px;
  background-color: #190a3f;
  border-radius: 25.6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; }
  .footer__content__body {
    width: 95%;
    height: 100%;
    background-color: #26125B;
    border-radius: 50px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .footer__content__body__left {
      margin-left: 2.5%; }
      .footer__content__body__left__logo {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6%; }
    .footer__content__body__right {
      text-decoration: none;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      margin-right: 1%;
      color: #ffffff;
      font-family: "OnestRegular";
      font-size: 15px;
      background-color: rgba(255, 255, 255, 0.1);
      padding: 15px 20px 15px 20px;
      border-radius: 50px;
      transition: background-color 0.3s ease; }
      .footer__content__body__right:hover {
        background-color: rgba(255, 255, 255, 0.2); }
  .footer__content__menu {
    width: 95%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .footer__content__menu__left {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px; }
      .footer__content__menu__left__button {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        color: rgba(255, 255, 255, 0.775);
        transition: color 0.3s ease;
        font-family: "OnestRegular"; }
        .footer__content__menu__left__button:hover {
          color: #ffffff; }
    .footer__content__menu__right {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px; }
      .footer__content__menu__right__button {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        color: rgba(255, 255, 255, 0.775);
        transition: color 0.3s ease;
        font-family: "OnestRegular"; }
        .footer__content__menu__right__button:hover {
          color: #ffffff; }

.cookies-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #1D0B4F;
  border-top: 2px solid #2b1666;
  box-shadow: 0 -4px 20px rgba(38, 18, 91, 0.3);
  display: none; }
  .cookies-notification--visible {
    display: block; }
  .cookies-notification__content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px; }
  .cookies-notification__text {
    flex: 1; }
    .cookies-notification__text p {
      margin: 0;
      color: #ffffff;
      font-family: "OnestRegular";
      font-size: 16px;
      line-height: 1.5; }
      .cookies-notification__text p a {
        color: #7E6BB0;
        text-decoration: underline;
        transition: color 0.3s ease; }
        .cookies-notification__text p a:hover {
          color: #ffffff; }
  .cookies-notification__button {
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background-color: #620188;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: "Massj1808Normal";
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    min-width: 120px; }
    .cookies-notification__button:hover {
      background-color: rgba(98, 1, 136, 0.6); }
    .cookies-notification__button:active {
      transform: translateY(1px); }

@media (max-width: 1600px) {
  .cookies-notification__content {
    padding: 18px;
    gap: 25px; }
  .cookies-notification__text p {
    font-size: 15px; }
  .cookies-notification__button {
    padding: 14px 28px;
    font-size: 15px;
    min-width: 110px; }
  .container {
    width: 1280px; }
  .hero {
    min-height: 675px; }
    .hero__video {
      min-height: 200px; }
      .hero__video__media {
        min-height: 675px; }
    .hero__content__set {
      gap: 110px; }
      .hero__content__set__highlights__highlight {
        width: 260px;
        height: 221px; }
        .hero__content__set__highlights__highlight__top-text {
          padding: 23.4px 26px 0px 26px;
          font-size: 28.6px; }
        .hero__content__set__highlights__highlight__bottom-text {
          padding: 0px 26px 23.4px 26px;
          font-size: 15.6px; }
      .hero__content__set__highlights__highlight--cta {
        width: 260px;
        height: 221px; }
        .hero__content__set__highlights__highlight--cta__mid-text {
          font-size: 28.6px; }
  .portfolio__header {
    padding-bottom: 30px; }
    .portfolio__header__title {
      font-size: 52.5px; }
  .portfolio__cards {
    gap: 12.8px; }
    .portfolio__cards__line {
      height: 337.5px;
      gap: 12.8px; }
      .portfolio__cards__line__card {
        border-radius: 20.48px; }
        .portfolio__cards__line__card__text {
          font-size: 23px;
          top: 92%; }
      .portfolio__cards__line__info {
        border-radius: 20.48px; }
        .portfolio__cards__line__info__title {
          font-size: 40px;
          margin-top: 15px; }
        .portfolio__cards__line__info__button {
          font-size: 16px;
          padding: 16px 80px 16px 80px;
          border-radius: 11.2px;
          margin-bottom: 20px; }
  .services__content {
    height: 700px;
    border-radius: 20.48px; }
    .services__content__header__title {
      font-size: 52.5px; }
    .services__content__body {
      border-radius: 20.48px; }
      .services__content__body__left {
        border-radius: 20.48px; }
        .services__content__body__left__button {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          display: block;
          text-align: center;
          width: 90%;
          margin: 16px;
          color: #ffffff;
          font-family: "Massj1808Normal";
          font-size: 16px;
          background-color: #1C0D44;
          padding-bottom: 16px;
          padding-top: 16px;
          border-radius: 9.2px;
          transition: background-color 0.3s ease; }
          .services__content__body__left__button:hover {
            cursor: pointer; }
          .services__content__body__left__button__light {
            text-decoration: none;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            display: block;
            text-align: center;
            width: 90%;
            margin: 16px;
            color: #ffffff;
            font-family: "Massj1808Normal";
            font-size: 16px;
            background-color: #281951;
            padding-bottom: 16px;
            padding-top: 16px;
            border-radius: 9.2px;
            transition: background-color 0.3s ease; }
            .services__content__body__left__button__light:hover {
              cursor: pointer; }
      .services__content__body__right {
        border-radius: 20.48px; }
        .services__content__body__right__title {
          font-size: 22px; }
        .services__content__body__right__bodies {
          height: 84%; }
          .services__content__body__right__bodies__extra {
            border-radius: 20.48px;
            width: 30%; }
            .services__content__body__right__bodies__extra__header {
              font-size: 17px; }
            .services__content__body__right__bodies__extra__segments__segment {
              font-size: 16px; }
          .services__content__body__right__bodies__body {
            border-radius: 20.48px; }
            .services__content__body__right__bodies__body__header {
              font-size: 17px;
              margin: 1% 1% 0.75% 2%; }
            .services__content__body__right__bodies__body__descriptions__description {
              font-size: 19px; }
  .ai__content {
    height: 700px;
    border-radius: 20.48px; }
    .ai__content__title {
      font-size: 52.5px; }
    .ai__content__description {
      font-size: 25px; }
    .ai__content__button {
      font-size: 20px;
      border-radius: 20px;
      padding: 20px 40px 20px 40px; }
  .faq__content {
    border-radius: 20.48px; }
    .faq__content__info {
      width: 60%; }
      .faq__content__info__header__epigraph {
        font-size: 15px; }
      .faq__content__info__header__title {
        font-size: 52.5px; }
      .faq__content__info__header__button {
        width: 120px;
        font-size: 15px;
        padding: 15px 30px 15px 30px;
        border-radius: 10.5px; }
      .faq__content__info__social__vk {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 14px;
        font-family: "OnestRegular";
        font-size: 14px;
        transition: background-color 0.3s ease;
        border-radius: 7px;
        gap: 7px; }
      .faq__content__info__social__tg {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 14px;
        font-family: "OnestRegular";
        font-size: 14px;
        transition: background-color 0.3s ease;
        border-radius: 7px;
        gap: 7px; }
      .faq__content__info__social__wa {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 14px;
        font-family: "OnestRegular";
        font-size: 14px;
        transition: background-color 0.3s ease;
        border-radius: 7px;
        gap: 7px; }
    .faq__content__questions__question {
      border-radius: 9.6px; }
      .faq__content__questions__question__trigger {
        border-radius: 9.6px;
        font-size: 16px; }
        .faq__content__questions__question__trigger__plus {
          width: 16px;
          height: 16px; }
      .faq__content__questions__question__content {
        font-size: 15px; }
  .policy-info {
    margin-top: 52.5px; }
    .policy-info__header {
      font-size: 52.5px;
      padding-bottom: 15.75px; }
    .policy-info__body {
      font-size: 18.9px; }
      .policy-info__body ul {
        padding-left: 39.375px; }
  .thanks-letters {
    margin-top: 52.5px; }
    .thanks-letters__header {
      font-size: 52.5px;
      padding-bottom: 21px; }
    .thanks-letters__body__letter__img {
      width: 288px;
      border-radius: 32px; }
  .clients-logo {
    margin-top: 52.5px; }
    .clients-logo__header {
      font-size: 52.5px;
      padding-bottom: 26.25px; }
  .feedback {
    margin-top: 52.5px; }
    .feedback__content {
      border-radius: 38.4px; }
      .feedback__content__left__header__epigraph {
        font-size: 18.375px; }
      .feedback__content__left__header__title {
        font-size: 52.5px; }
      .feedback__content__left__mail {
        font-size: 17.0625px;
        border-radius: 12.8px; }
      .feedback__content__right {
        border-radius: 12.8px; }
        .feedback__content__right__form {
          gap: 10.5px; }
          .feedback__content__right__form__input {
            font-size: 15.75px;
            border-radius: 10.5px 5px 5px 10.5px;
            padding: 3% 1% 3% 3%; }
          .feedback__content__right__form__textarea {
            font-size: 15.75px;
            border-radius: 10.5px 5px 5px 10.5px; }
          .feedback__content__right__form__send__warning {
            font-size: 13.125px; }
          .feedback__content__right__form__send__button {
            font-family: "OnestRegular";
            font-size: 15.75px;
            border-radius: 10.5px; }
          .feedback__content__right__form__info {
            font-size: 13.125px; }
      .feedback__content__success {
        border-radius: 12.8px; }
        .feedback__content__success__header {
          gap: 8.75px; }
          .feedback__content__success__header__title {
            font-size: 29.16667px; }
          .feedback__content__success__header__description {
            font-size: 14.58333px; }
  .contacts {
    margin-top: 52.5px; }
    .contacts__content {
      border-radius: 32px; }
      .contacts__content__header {
        font-size: 52.5px; }
      .contacts__content__buttons__button {
        border-radius: 32px; }
        .contacts__content__buttons__button__text {
          font-size: 23.33333px; }
  .cf-turnstile {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0; } }

@media (max-width: 1280px) {
  .container {
    width: 1152px; }
  .hero {
    min-height: 575px; }
    .hero__video {
      min-height: 400px; }
      .hero__video__media {
        min-height: 575px; }
    .hero__content__set__title {
      font-size: 40px; }
    .hero__content__set__highlights__highlight {
      width: 200px;
      height: 170px; }
      .hero__content__set__highlights__highlight__top-text {
        padding: 18px 20px 0px 20px;
        font-size: 22px; }
      .hero__content__set__highlights__highlight__bottom-text {
        padding: 0px 20px 18px 20px;
        font-size: 12px; }
    .hero__content__set__highlights__highlight--cta {
      width: 200px;
      height: 170px; }
      .hero__content__set__highlights__highlight--cta__mid-text {
        font-size: 22px; }
  .portfolio__header {
    padding-bottom: 20px; }
    .portfolio__header__title {
      font-size: 45px; }
    .portfolio__header__button {
      width: 42px;
      height: 42px; }
  .portfolio__cards {
    gap: 11.52px; }
    .portfolio__cards__line {
      height: 315px;
      gap: 11.52px; }
      .portfolio__cards__line__card {
        border-radius: 18.432px; }
        .portfolio__cards__line__card__text {
          font-size: 21.5px;
          top: 91%; }
      .portfolio__cards__line__info {
        border-radius: 18.432px; }
        .portfolio__cards__line__info__title {
          font-size: 36px;
          margin-top: 10px; }
        .portfolio__cards__line__info__button {
          font-size: 14px;
          padding: 14px 70px 14px 70px;
          border-radius: 9.8px; }
  .services__content {
    height: 600px;
    border-radius: 18.432px; }
    .services__content__header__title {
      font-size: 45px; }
    .services__content__body {
      border-radius: 18.432px; }
      .services__content__body__left {
        border-radius: 18.432px; }
        .services__content__body__left__button {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          display: block;
          text-align: center;
          width: 90%;
          margin: 15px;
          color: #ffffff;
          font-family: "Massj1808Normal";
          font-size: 15px;
          background-color: #1C0D44;
          padding-bottom: 15px;
          padding-top: 15px;
          border-radius: 8.625px;
          transition: background-color 0.3s ease; }
          .services__content__body__left__button:hover {
            cursor: pointer; }
          .services__content__body__left__button__light {
            text-decoration: none;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            display: block;
            text-align: center;
            width: 90%;
            margin: 15px;
            color: #ffffff;
            font-family: "Massj1808Normal";
            font-size: 15px;
            background-color: #281951;
            padding-bottom: 15px;
            padding-top: 15px;
            border-radius: 8.625px;
            transition: background-color 0.3s ease; }
            .services__content__body__left__button__light:hover {
              cursor: pointer; }
      .services__content__body__right {
        border-radius: 18.432px; }
        .services__content__body__right__title {
          font-size: 21px;
          margin: 0.5% 1% 2.5% 2%; }
        .services__content__body__right__bodies {
          height: 84%; }
          .services__content__body__right__bodies__extra {
            border-radius: 36.864px 36.864px 18.432px 18.432px;
            width: 32%; }
            .services__content__body__right__bodies__extra__header {
              font-size: 16px; }
            .services__content__body__right__bodies__extra__segments__segment {
              font-size: 15px; }
          .services__content__body__right__bodies__body {
            border-radius: 18.432px; }
            .services__content__body__right__bodies__body__header {
              font-size: 16px;
              margin: 1% 1% 0.75% 2%; }
            .services__content__body__right__bodies__body__descriptions__description {
              font-size: 18px; }
  .ai__content {
    height: 550px;
    border-radius: 18.432px; }
    .ai__content__title {
      font-size: 45px; }
    .ai__content__description {
      font-size: 22px;
      max-width: 60%; }
    .ai__content__button {
      font-size: 20px;
      border-radius: 20px;
      padding: 20px 40px 20px 40px; }
  .faq__content {
    border-radius: 18.432px; }
    .faq__content__info {
      width: 60%; }
      .faq__content__info__header__epigraph {
        font-size: 14px; }
      .faq__content__info__header__title {
        font-size: 45px; }
      .faq__content__info__header__button {
        width: 112px;
        font-size: 14px;
        padding: 14px 28px 14px 28px;
        border-radius: 9.8px; }
      .faq__content__info__social__vk {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 13px;
        font-family: "OnestRegular";
        font-size: 13px;
        transition: background-color 0.3s ease;
        border-radius: 6.5px;
        gap: 6.5px; }
      .faq__content__info__social__tg {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 13px;
        font-family: "OnestRegular";
        font-size: 13px;
        transition: background-color 0.3s ease;
        border-radius: 6.5px;
        gap: 6.5px; }
      .faq__content__info__social__wa {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 13px;
        font-family: "OnestRegular";
        font-size: 13px;
        transition: background-color 0.3s ease;
        border-radius: 6.5px;
        gap: 6.5px; }
    .faq__content__questions__question {
      border-radius: 8.64px; }
      .faq__content__questions__question__trigger {
        padding: 2.5%;
        border-radius: 8.64px;
        font-size: 15px; }
        .faq__content__questions__question__trigger__plus {
          width: 15px;
          height: 15px; }
      .faq__content__questions__question__content {
        font-size: 14px; }
  .policy-info {
    margin-top: 45px; }
    .policy-info__header {
      font-size: 45px;
      padding-bottom: 13.5px; }
    .policy-info__body {
      font-size: 16.2px; }
      .policy-info__body ul {
        padding-left: 33.75px; }
  .thanks-letters {
    margin-top: 45px; }
    .thanks-letters__header {
      font-size: 45px;
      padding-bottom: 18px; }
    .thanks-letters__body__letter__img {
      width: 259.2px;
      border-radius: 28.8px; }
  .clients-logo {
    margin-top: 45px; }
    .clients-logo__header {
      font-size: 45px;
      padding-bottom: 22.5px; }
  .feedback {
    margin-top: 45px; }
    .feedback__content {
      border-radius: 34.56px; }
      .feedback__content__left__header__epigraph {
        font-size: 15.75px; }
      .feedback__content__left__header__title {
        font-size: 45px; }
      .feedback__content__left__mail {
        font-size: 14.625px;
        border-radius: 11.52px; }
      .feedback__content__right {
        border-radius: 11.52px; }
        .feedback__content__right__form {
          gap: 9px; }
          .feedback__content__right__form__input {
            font-size: 13.5px;
            border-radius: 9px 5px 5px 9px;
            padding: 3% 1% 3% 3%; }
          .feedback__content__right__form__textarea {
            font-size: 13.5px;
            border-radius: 9px 5px 5px 9px; }
          .feedback__content__right__form__send__warning {
            font-size: 11.25px; }
          .feedback__content__right__form__send__button {
            font-family: "OnestRegular";
            font-size: 13.5px;
            border-radius: 9px; }
          .feedback__content__right__form__info {
            font-size: 11.25px; }
      .feedback__content__success {
        border-radius: 11.52px; }
        .feedback__content__success__header {
          gap: 7.5px; }
          .feedback__content__success__header__title {
            font-size: 25px; }
          .feedback__content__success__header__description {
            font-size: 12.5px; }
  .contacts {
    margin-top: 45px; }
    .contacts__content {
      border-radius: 28.8px; }
      .contacts__content__header {
        font-size: 45px; }
      .contacts__content__buttons__button {
        padding: 23px;
        height: 117px;
        border-radius: 28.8px; }
        .contacts__content__buttons__button__logo {
          width: 35px; }
        .contacts__content__buttons__button__text {
          font-size: 20px; }
  .cf-turnstile {
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0; } }

@media (max-width: 1152px) {
  .container {
    width: 1024px; }
  .hero__content__set__title {
    font-size: 38px; }
  .portfolio__cards {
    gap: 9.216px; }
    .portfolio__cards__line {
      height: 277.5px;
      gap: 9.216px; }
      .portfolio__cards__line__card {
        border-radius: 16.384px; }
        .portfolio__cards__line__card__text {
          font-size: 19px;
          top: 91%; }
      .portfolio__cards__line__info {
        border-radius: 16.384px; }
        .portfolio__cards__line__info__title {
          font-size: 30px;
          margin-top: 20px; }
        .portfolio__cards__line__info__button {
          font-size: 13.75px;
          padding: 12.5px 62.5px 12.5px 62.5px;
          border-radius: 8.75px;
          margin-bottom: 20px; }
  .services__content {
    height: 550px;
    border-radius: 16.384px; }
    .services__content__header__title {
      font-size: 45px; }
    .services__content__body {
      border-radius: 16.384px; }
      .services__content__body__left {
        border-radius: 16.384px; }
        .services__content__body__left__button {
          text-decoration: none;
          user-select: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          display: block;
          text-align: center;
          width: 90%;
          margin: 14.5px;
          color: #ffffff;
          font-family: "Massj1808Normal";
          font-size: 14.5px;
          background-color: #1C0D44;
          padding-bottom: 14.5px;
          padding-top: 14.5px;
          border-radius: 8.3375px;
          transition: background-color 0.3s ease;
          font-size: 13px; }
          .services__content__body__left__button:hover {
            cursor: pointer; }
          .services__content__body__left__button__light {
            text-decoration: none;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            display: block;
            text-align: center;
            width: 90%;
            margin: 14.5px;
            color: #ffffff;
            font-family: "Massj1808Normal";
            font-size: 14.5px;
            background-color: #281951;
            padding-bottom: 14.5px;
            padding-top: 14.5px;
            border-radius: 8.3375px;
            transition: background-color 0.3s ease;
            font-size: 13px; }
            .services__content__body__left__button__light:hover {
              cursor: pointer; }
      .services__content__body__right {
        border-radius: 16.384px; }
        .services__content__body__right__title {
          font-size: 19px; }
        .services__content__body__right__bodies {
          height: 84%; }
          .services__content__body__right__bodies__extra {
            border-radius: 32.768px 32.768px 16.384px 16.384px;
            width: 37%; }
            .services__content__body__right__bodies__extra__header {
              font-size: 14px; }
            .services__content__body__right__bodies__extra__segments__segment {
              font-size: 13px; }
          .services__content__body__right__bodies__body {
            border-radius: 16.384px; }
            .services__content__body__right__bodies__body__header {
              font-size: 14px;
              margin: 1% 1% 0% 2%; }
            .services__content__body__right__bodies__body__descriptions__description {
              font-size: 15px; }
  .ai__content {
    height: 500px; }
    .ai__content__description {
      max-width: 85%; }
    .ai__content__button {
      font-size: 17px;
      border-radius: 17px;
      padding: 17px 34px 17px 34px; }
  .faq__content {
    border-radius: 16.384px; }
    .faq__content__info {
      width: 65%; }
      .faq__content__info__header__epigraph {
        font-size: 14px; }
      .faq__content__info__header__title {
        font-size: 45px; }
      .faq__content__info__header__button {
        width: 112px;
        font-size: 14px;
        padding: 14px 28px 14px 28px;
        border-radius: 9.8px; }
      .faq__content__info__social__vk {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 12px;
        font-family: "OnestRegular";
        font-size: 12px;
        transition: background-color 0.3s ease;
        border-radius: 6px;
        gap: 6px; }
      .faq__content__info__social__tg {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 12px;
        font-family: "OnestRegular";
        font-size: 12px;
        transition: background-color 0.3s ease;
        border-radius: 6px;
        gap: 6px; }
      .faq__content__info__social__wa {
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        display: flex;
        align-items: center;
        padding: 12px;
        font-family: "OnestRegular";
        font-size: 12px;
        transition: background-color 0.3s ease;
        border-radius: 6px;
        gap: 6px; }
    .faq__content__questions__question {
      border-radius: 7.68px; }
      .faq__content__questions__question__trigger {
        border-radius: 7.68px;
        font-size: 15px; }
        .faq__content__questions__question__trigger__plus {
          width: 15px;
          height: 15px; }
      .faq__content__questions__question__content {
        font-size: 14px; } }

@media (max-width: 1024px) {
  .container {
    width: 100%;
    margin: 3vw auto;
    padding: 0 2.5vw;
    box-sizing: border-box; }
  .site-header {
    padding-top: 0px;
    margin-bottom: 0px; }
    .site-header__burger {
      display: flex; }
    .site-header__navigation {
      height: 6vw;
      justify-content: center;
      margin-right: 7vw; }
      .site-header__navigation__nav-links {
        display: none; }
      .site-header__navigation__header-logo {
        padding: 0;
        margin-right: 2vw; }
        .site-header__navigation__header-logo__link {
          height: 5.5vw;
          transition: transform 0.3s ease; }
          .site-header__navigation__header-logo__link:hover {
            transform: scale(0.98); }
  .hero {
    display: none; }
  .hero-mobile {
    display: block; }
  .portfolio {
    display: none; }
  .portfolio-mobile {
    display: block; }
  .services {
    display: none; }
  .services-mobile {
    display: block; }
  .ai__content {
    margin-top: 15vw;
    height: 95vw;
    border-radius: 7vw;
    background-position: calc(150%) calc(120%);
    background-size: 80%;
    box-shadow: none; }
    .ai__content__title {
      max-width: 100%;
      font-size: 6.5vw;
      padding: 7.5% 7.5% 2% 7.5%; }
    .ai__content__description {
      max-width: 100%;
      max-width: 100%;
      font-size: 3.4vw;
      padding: 2% 7.5% 0px 7.5%; }
    .ai__content__button {
      font-size: 3vw;
      border-radius: 3vw;
      padding: 3vw 4.5vw 3vw 4.5vw;
      margin: 3.5% 0 3.5% 7.5%; }
  .faq__content {
    margin-top: 15vw;
    flex-direction: column;
    padding: 5% 2.5% 2.5% 2.5%;
    border-radius: 7vw; }
    .faq__content__info {
      width: 100%;
      display: flex;
      align-items: center; }
      .faq__content__info__header {
        display: flex;
        align-items: center;
        margin-bottom: 5vw;
        gap: 2vw; }
        .faq__content__info__header__epigraph {
          font-size: 3vw; }
        .faq__content__info__header__title {
          font-size: 7vw;
          text-align: center; }
        .faq__content__info__header__button {
          width: 70%;
          font-size: 3.125vw;
          padding: 3.125vw 0 3.125vw 0;
          border-radius: 1.75vw; }
      .faq__content__info__social {
        display: none; }
    .faq__content__questions__question {
      border-radius: 3vw; }
      .faq__content__questions__question__trigger {
        padding: 5%;
        font-size: 3.5vw;
        padding-right: 20%; }
        .faq__content__questions__question__trigger::before {
          height: 0.4vw;
          width: 3vw;
          left: 92%; }
        .faq__content__questions__question__trigger::after {
          height: 0.4vw;
          width: 3vw;
          left: 92%; }
      .faq__content__questions__question__content {
        font-size: 3vw;
        padding: 3.25vw; }
        .faq__content__questions__question__content ul {
          padding-left: 5vw; }
  .policy-info {
    width: 95%;
    margin-top: 7vw; }
    .policy-info__header {
      font-size: 7vw;
      padding-bottom: 2.1vw; }
    .policy-info__body {
      font-size: 3.5vw; }
      .policy-info__body ul {
        padding-left: 7vw; }
  .thanks-letters {
    margin-top: 7vw; }
    .thanks-letters__header {
      font-size: 7vw;
      padding-bottom: 2.8vw; }
    .thanks-letters__body {
      display: flex;
      flex-direction: column;
      gap: 3vw; }
      .thanks-letters__body__letter {
        overflow: hidden;
        display: flex;
        justify-content: center;
        transition: scale 0.3s ease; }
        .thanks-letters__body__letter__img {
          width: 80%;
          border-radius: 7.5vw; }
        .thanks-letters__body__letter:hover {
          scale: 1; }
  .clients-logo {
    margin-top: 7vw; }
    .clients-logo__header {
      font-size: 7vw;
      padding-bottom: 3.5vw; }
    .clients-logo__body {
      flex-direction: column;
      justify-content: center;
      gap: 7.5vw; }
      .clients-logo__body .first {
        width: 20.25vw; }
      .clients-logo__body .second {
        width: 33.75vw; }
      .clients-logo__body .third {
        width: 36vw; }
      .clients-logo__body .fourth {
        width: 60vw; }
      .clients-logo__body .fifth {
        width: 33vw; }
  .contacts {
    margin-top: 4vw; }
    .contacts__content {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      border-radius: 3vw;
      padding: 3vw; }
      .contacts__content__header {
        font-size: 7vw;
        margin-bottom: 2vw; }
      .contacts__content__buttons {
        width: 100%;
        gap: 1.5vw; }
        .contacts__content__buttons__button {
          width: 100%;
          height: 100%;
          padding: 3.5vw;
          border-radius: 3vw; }
          .contacts__content__buttons__button__logo {
            width: 6vw; }
          .contacts__content__buttons__button__text {
            font-size: 3vw; }
  .feedback {
    margin-top: 7vw; }
    .feedback__content {
      flex-direction: column;
      align-items: center;
      border-radius: 5vw;
      gap: 2.45vw;
      width: 100%;
      padding: 4.2vw; }
      .feedback__content__left {
        justify-content: center; }
        .feedback__content__left__header__epigraph {
          font-size: 2.8vw; }
        .feedback__content__left__header__title {
          font-size: 7vw; }
        .feedback__content__left__mail {
          margin-top: 2vw;
          margin-bottom: 1vw;
          justify-content: center;
          gap: 1.5vw;
          width: 90%;
          font-size: 3.5vw;
          border-radius: 1.75vw; }
          .feedback__content__left__mail__img {
            width: 5.25vw; }
      .feedback__content__right {
        padding: 4.2vw;
        border-radius: 1.75vw;
        width: 93%; }
        .feedback__content__right__form {
          gap: 3.5vw; }
          .feedback__content__right__form__input {
            font-size: 2.8vw;
            border-radius: 2.1vw 5px 5px 2.1vw;
            padding: 3% 1% 3% 3%;
            background-color: rgba(0, 0, 0, 0.015);
            border: 1px solid #F3F4F5; }
          .feedback__content__right__form__textarea {
            font-size: 2.8vw;
            border-radius: 2.1vw 5px 5px 2.1vw;
            background-color: rgba(0, 0, 0, 0.015);
            border: 1px solid #F3F4F5; }
          .feedback__content__right__form__send {
            margin-top: 2.1vw;
            flex-direction: column;
            align-items: flex-start;
            gap: 5.25vw; }
            .feedback__content__right__form__send__warning {
              font-size: 2.66vw;
              width: 100%; }
            .feedback__content__right__form__send__button {
              font-family: "OnestRegular";
              font-size: 2.8vw;
              border-radius: 1.4vw;
              width: 100%; }
          .feedback__content__right__form__info {
            font-size: 2.66vw; }
      .feedback__content__success {
        padding: 4.2vw;
        border-radius: 1.75vw;
        width: 93%; }
        .feedback__content__success__header {
          gap: 0.875vw; }
          .feedback__content__success__header__title {
            font-size: 7vw; }
          .feedback__content__success__header__description {
            font-size: 3.15vw; }
  .footer__content {
    margin-top: 15vw;
    height: 33vw;
    border-radius: 8vw; }
    .footer__content__body {
      margin-top: 5vw;
      justify-content: center;
      border-radius: 10vw;
      width: 95%;
      padding-top: 2vw;
      padding-bottom: 2vw; }
      .footer__content__body__right {
        display: none; }
      .footer__content__body__left__logo {
        flex-direction: column;
        gap: 1vw; }
        .footer__content__body__left__logo__img {
          width: 10vw; }
        .footer__content__body__left__logo__text {
          width: 30vw; }
    .footer__content__menu {
      justify-content: center; }
      .footer__content__menu__left {
        display: none; }
      .footer__content__menu__right {
        width: 100%;
        justify-content: center;
        white-space: nowrap;
        gap: 20vw; }
        .footer__content__menu__right__button {
          font-size: 3.6vw; }
  .cf-turnstile {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0; } }

@media (max-width: 768px) {
  .cookies-notification__content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 20px; }
  .cookies-notification__text p {
    font-size: 14px; }
  .cookies-notification__button {
    width: 100%;
    max-width: 150px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: normal; }
  .hero-mobile__content__cover {
    transform: translateY(50%); }
  .hero-mobile__content__title {
    font-size: 6vw; }
  .hero-mobile__content__button {
    font-size: 4.29vw;
    padding: 5.85vw 17.55vw 5.85vw 17.55vw;
    border-radius: 1.95vw; }
  .hero-mobile__content__highlights {
    gap: 7.5%;
    margin-bottom: 7.5%;
    padding-right: 26.4vw; }
    .hero-mobile__content__highlights__highlight {
      width: 66vw;
      height: 56.1vw;
      border-radius: 7.26vw; }
      .hero-mobile__content__highlights__highlight__top-text {
        padding: 5.94vw 6.6vw 0px 6.6vw;
        font-size: 7.26vw; }
      .hero-mobile__content__highlights__highlight__bottom-text {
        padding: 0px 6.6vw 5.94vw 6.6vw;
        font-size: 3.96vw; }
      .hero-mobile__content__highlights__highlight.start-highlight {
        margin-left: 26.4vw; }
  .portfolio-mobile__header {
    font-size: 9vw;
    padding-bottom: 4vw; }
  .portfolio-mobile__cards {
    gap: 3vw; }
    .portfolio-mobile__cards__card {
      height: auto; }
      .portfolio-mobile__cards__card__text {
        font-size: 5vw;
        width: 75%; }
      .portfolio-mobile__cards__card__img {
        scale: 1.1; }
  .portfolio-mobile__button {
    height: 13.75vw; }
    .portfolio-mobile__button__link {
      font-size: 4vw; }
  .portfolio-mobile {
    display: block; }
  .services {
    display: none; }
  .services-mobile__content {
    border-radius: 7vw; }
    .services-mobile__content__header {
      font-size: 9vw;
      padding-top: 5vw;
      padding-bottom: 5vw; }
    .services-mobile__content__cards {
      height: auto; }
      .services-mobile__content__cards__card {
        width: 80vw;
        height: 100vw;
        border-radius: 5vw; }
        .services-mobile__content__cards__card__info__numb {
          font-size: 4vw; }
        .services-mobile__content__cards__card__info__text {
          font-size: 6vw; }
      .services-mobile__content__cards__modal__content__close {
        font-size: 6vw; }
      .services-mobile__content__cards__modal__content__title {
        font-size: 6vw; }
      .services-mobile__content__cards__modal__content__description {
        font-size: 4vw; }
  .portfolio-mobile__cards__card__img__big {
    width: 140%;
    height: none;
    transform: translateX(-16%); }
  .ai__content {
    height: auto;
    border-radius: 7vw;
    background-position: calc(150%) calc(120%);
    background-size: 80%;
    box-shadow: none; }
    .ai__content__title {
      max-width: 100%;
      font-size: 9vw;
      padding: 7.5% 7.5% 2% 7.5%; }
    .ai__content__description {
      max-width: 100%;
      max-width: 100%;
      font-size: 4.6vw;
      padding: 2% 7.5% 0px 7.5%; }
    .ai__content__button {
      font-size: 4vw;
      border-radius: 2.8vw;
      padding: 4vw 6vw 4vw 6vw;
      margin: 5% 0 5% 7.5%; }
  .faq__content__info__header {
    margin-bottom: 5vw;
    gap: 2vw; }
    .faq__content__info__header__epigraph {
      font-size: 3.75vw; }
    .faq__content__info__header__title {
      font-size: 9vw; }
    .faq__content__info__header__button {
      width: 70%;
      font-size: 3.75vw;
      padding: 3.75vw 0 3.75vw 0;
      border-radius: 2.1vw; }
  .faq__content__questions {
    gap: 2.5vw; }
    .faq__content__questions__question {
      border-radius: 3vw; }
      .faq__content__questions__question__trigger {
        font-size: 4.5vw;
        padding: 6% 5% 6% 5%;
        padding-right: 20%; }
        .faq__content__questions__question__trigger::before {
          height: 0.5vw;
          width: 4vw;
          left: 90%; }
        .faq__content__questions__question__trigger::after {
          height: 0.5vw;
          width: 4vw;
          left: 90%; }
      .faq__content__questions__question__content {
        font-size: 4vw; }
  .policy-info__header {
    font-size: 9vw;
    padding-bottom: 2.7vw; }
  .policy-info__body {
    font-size: 4.5vw; }
  .thanks-letters {
    margin-top: 9vw; }
    .thanks-letters__header {
      font-size: 9vw;
      padding-bottom: 3.6vw; }
    .thanks-letters__body {
      display: flex;
      flex-direction: column;
      gap: 3vw; }
      .thanks-letters__body__letter {
        overflow: hidden;
        display: flex;
        justify-content: center;
        transition: scale 0.3s ease; }
        .thanks-letters__body__letter__img {
          width: 80%;
          border-radius: 7.5vw; }
        .thanks-letters__body__letter:hover {
          scale: 1; }
  .clients-logo {
    margin-top: 9vw; }
    .clients-logo__header {
      font-size: 9vw;
      padding-bottom: 4.5vw; }
    .clients-logo__body {
      flex-direction: column;
      justify-content: center;
      gap: 10vw; }
      .clients-logo__body .first {
        width: 27vw; }
      .clients-logo__body .second {
        width: 45vw; }
      .clients-logo__body .third {
        width: 48vw; }
      .clients-logo__body .fourth {
        width: 80vw; }
      .clients-logo__body .fifth {
        width: 44vw; }
  .feedback {
    margin-top: 9vw; }
    .feedback__content {
      flex-direction: column;
      align-items: center;
      border-radius: 5vw;
      gap: 3.15vw;
      width: 88%;
      padding: 5.4vw; }
      .feedback__content__left {
        justify-content: center; }
        .feedback__content__left__header__epigraph {
          font-size: 3.6vw; }
        .feedback__content__left__header__title {
          font-size: 9vw; }
        .feedback__content__left__mail {
          font-size: 4.5vw;
          border-radius: 2.25vw; }
          .feedback__content__left__mail__img {
            width: 6.75vw; }
      .feedback__content__right {
        padding: 3.6vw;
        border-radius: 3.6vw;
        width: 100%; }
        .feedback__content__right__form {
          gap: 3.6vw; }
          .feedback__content__right__form__input {
            font-size: 4.05vw;
            border-radius: 2.7vw 5px 5px 2.7vw;
            padding: 4% 1% 4% 4%; }
          .feedback__content__right__form__textarea {
            font-size: 4.05vw;
            border-radius: 2.7vw 5px 5px 2.7vw; }
          .feedback__content__right__form__send {
            margin-top: 2.7vw;
            flex-direction: column;
            align-items: flex-start;
            gap: 6.75vw; }
            .feedback__content__right__form__send__warning {
              font-size: 3.6vw; }
            .feedback__content__right__form__send__button {
              font-family: "OnestRegular";
              font-size: 3.825vw;
              border-radius: 1.8vw;
              width: 100%; }
          .feedback__content__right__form__info {
            font-size: 3.6vw; }
      .feedback__content__success {
        padding: 5.4vw;
        border-radius: 2.25vw; }
        .feedback__content__success__header {
          gap: 1.125vw; }
          .feedback__content__success__header__title {
            font-size: 8.1vw; }
          .feedback__content__success__header__description {
            font-size: 3.6vw; }
  .contacts__content {
    border-radius: 5vw;
    padding: 3vw; }
    .contacts__content__header {
      font-size: 9vw;
      margin-bottom: 3vw; }
    .contacts__content__buttons {
      width: 100%;
      gap: 1.5vw; }
      .contacts__content__buttons__button {
        padding: 4vw;
        border-radius: 4vw; }
        .contacts__content__buttons__button__logo {
          width: 7vw; }
        .contacts__content__buttons__button__text {
          font-size: 3vw; } }

@media (max-width: 576px) {
  .cookies-notification__content {
    padding: 16px; }
  .cookies-notification__text p {
    font-size: 13px; }
  .cookies-notification__button {
    max-width: 130px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: normal; }
  .cf-turnstile {
    transform: scale(1);
    -webkit-transform: scale(1);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0; } }

@media (max-width: 384px) {
  .cf-turnstile {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin-bottom: -20px; } }

@media (max-width: 300px) {
  .cf-turnstile {
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin-bottom: -40px; } }

@media (max-width: 220px) {
  .cf-turnstile {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin-bottom: -52px; } }

@media (max-width: 145px) {
  .cf-turnstile {
    transform: scale(0.2);
    -webkit-transform: scale(0.2);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin-bottom: -60px; } }

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