@font-face {
  font-family: 'Reaktif';
  src: url("fonts/Reaktif-Medium.eot");
  src: local("Reaktif Medium"), local("Reaktif-Medium"), url("fonts/Reaktif-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Reaktif-Medium.woff2") format("woff2"), url("fonts/Reaktif-Medium.woff") format("woff"), url("fonts/Reaktif-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
:root {
  font-size: 30px; }

ul, li {
  margin: 0;
  padding: 0;
  display: block; }

a {
  transition: .3s all;
  outline: none;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

button {
  transition: .6s all;
  border: none;
  outline: none;
  background: none;
  padding: 0; }

h1, h2, h3, h4, h5, p {
  margin: 0; }

input {
  outline: none;
  border-radius: 0; }
  input.error {
    color: red !important;
    border-color: red !important; }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Reaktif', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase; }
  body.blue .cursor-anim {
    filter: none; }
  body.blue .header {
    background: #000F22;
    color: #fff; }
    body.blue .header__logo {
      filter: none; }
    body.blue .header-lang {
      border-color: #fff; }
      body.blue .header-lang a {
        color: #fff; }
    body.blue .header-links a {
      color: #fff;
      border-color: #fff; }
    body.blue .header__btn {
      color: #fff;
      border-color: #fff; }
  body.blue .projects {
    background: #000F22;
    color: #fff; }
    body.blue .projects-choose li {
      color: #000;
      background: #fff; }
      body.blue .projects-choose li.active {
        background: #002254;
        border-color: #002254;
        color: #fff; }
    body.blue .projects-anim {
      background: #000F22;
      border-color: rgba(255, 255, 255, 0.3); }
  body.blue .reviews {
    background: #000F22;
    color: #fff; }
    body.blue .reviews-cursor {
      border-color: rgba(255, 255, 255, 0.3); }
  body.blue .footer {
    background: #000F22;
    color: #fff; }
    body.blue .footer::before {
      opacity: 1; }
    body.blue .footer-menu li a {
      color: #fff; }
      body.blue .footer-menu li a::after {
        background: #fff; }
    body.blue .footer-feedback {
      filter: none; }

.overflowH {
  overflow: hidden;
  height: 100svh; }
  .overflowH .main {
    min-height: 100svh; }
  .overflowH .header {
    opacity: 0;
    visibility: hidden; }

::-webkit-scrollbar {
  width: .5rem;
  height: 0.5rem; }

::-webkit-scrollbar-track {
  background: #ddd; }

::-webkit-scrollbar-thumb {
  background: #000;
  border: 1px solid #ddd; }

.lazy {
  opacity: 0; }

.disabled {
  pointer-events: none; }

.container {
  padding: 0 3rem; }

.section-title {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 2.4rem; }
.section-text {
  font-size: 2.4rem;
  max-width: 72rem;
  line-height: 1.37; }

.cursor-anim {
  transition: .6s all;
  filter: invert(1);
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  background: url(../img/icons/cursor-arrows.svg) center center no-repeat;
  background-size: contain;
  transition: .6s all; }
  .cursor-anim img {
    width: 100%;
    display: block;
    animation: swipeAnim 1.5s linear infinite alternate;
    margin-left: -.5rem; }

@keyframes swipeAnim {
  to {
    transform: translateX(1rem); } }
.header {
  padding: 1.5rem 0;
  transition: .6s all;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5; }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 7vw; }
  .header-left {
    display: flex;
    align-items: center;
    gap: 2.75rem; }
  .header__logo {
    width: 9rem;
    transition: .6s all;
    filter: invert(1); }
    .header__logo img {
      width: 100%;
      display: block; }
  .header-right {
    display: flex;
    align-items: center;
    gap: 5.5vw;
    justify-content: space-between;
    flex-grow: 1; }
  .header-lang {
    position: relative;
    border-bottom: 1px solid #000; }
    .header-lang a {
      color: #000;
      opacity: .3; }
      .header-lang a:hover, .header-lang a.active {
        opacity: 1; }
  .header-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1; }
    .header-links a {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      height: 1.2rem;
      color: #000;
      position: relative;
      border-bottom: 1px solid #000;
      line-height: 1.2rem; }
      .header-links a span {
        display: block;
        transition: .6s all;
        transform: translateY(-1.2rem); }
      .header-links a:hover span {
        transform: none; }
  .header__btn {
    padding: .7rem 1.5rem .6rem;
    border-radius: 3rem;
    border: 1px solid #000;
    color: #000;
    position: relative;
    line-height: 1.2rem; }
    .header__btn div {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      height: 1.2rem; }
    .header__btn span {
      display: block;
      transition: .6s all;
      transform: translateY(-1.2rem); }
    .header__btn:hover {
      color: #fff;
      background: #000; }
      .header__btn:hover span {
        transform: none; }
  .header.scrolled {
    padding: 0.75rem 0; }
  .header.hide {
    transform: translateY(-100%); }

.main {
  padding-top: 5rem;
  position: relative;
  overflow: hidden; }
  .main-top {
    display: flex;
    justify-content: space-between; }
  .main-star {
    width: 35rem;
    height: 37rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transition: 2s all;
    transform: translateY(-120%); }
    .main-star spline-viewer {
      width: 200%;
      height: 200%; }
    .main-star.active {
      transform: none; }
  .main__text {
    padding-top: 10rem; }
    .main__text span {
      display: block;
      opacity: 0;
      transform: translateY(1rem);
      transition: .7s all; }
      .main__text span:nth-child(2) {
        transition-delay: .6s; }
      .main__text span:nth-child(3) {
        transition-delay: 1.2s; }
    .main__text.active span {
      opacity: 1;
      transform: none; }
  .main-wrap {
    position: relative; }
  .main__title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-weight: 400;
    position: relative;
    z-index: 2;
    margin-top: -9rem;
    transition: 1s all;
    opacity: 0;
    transform: translateX(-100%); }
    .main__title span {
      width: 53vw;
      font-size: 9.47vw;
      line-height: 0.8; }
    .main__title img {
      width: calc(100% - 54.5vw);
      margin-bottom: 1.2vw; }
    .main__title.active {
      opacity: 1;
      transform: none; }
  .main-percent {
    position: absolute;
    right: 0;
    top: 1vw;
    font-size: 11vw;
    line-height: 1; }

.about {
  padding-top: 15rem;
  overflow: hidden; }
  .about-main {
    padding-left: 33%;
    margin-bottom: 14rem; }
  .about-numbers {
    display: flex;
    justify-content: space-between; }
    .about-numbers__item div {
      font-size: 9.47vw;
      line-height: 1;
      transform: scale(15);
      transform-origin: center left;
      transition: 1s all;
      opacity: 0; }
      .about-numbers__item div span {
        font-size: 1.9rem; }
    .about-numbers__item.active div {
      transform: none;
      opacity: 1; }

.partners {
  padding-top: 12.5rem; }
  .partners .section-text {
    text-align: justify;
    margin-bottom: 6.2rem; }
  .partners-item {
    height: 11.5rem;
    width: 15.5rem;
    border-radius: 1rem;
    border: 1px solid #5C5C5C;
    overflow: hidden;
    background: #fff;
    position: relative;
    z-index: 1;
    margin-right: 1.5rem; }
    .partners-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain; }

.services {
  padding: 12.5rem 0 6.5rem; }
  .services-item {
    border-top: 1px solid #D9D9D9;
    padding: 3rem 0;
    overflow: hidden;
    display: flex; }
    .services-item:last-child {
      border-bottom: 1px solid #D9D9D9; }
    .services-item__name {
      width: 47%;
      font-size: 2.4rem; }
    .services-item__wrap {
      width: 53%;
      display: flex;
      align-items: flex-end;
      gap: 8rem; }
    .services-item__info {
      min-height: 17rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 2rem; }
    .services-item__tags {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem; }
      .services-item__tags li {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        height: 2.5rem;
        padding: 0 1.15rem;
        border-radius: 2rem;
        background: #1F1F1F;
        color: #fff;
        min-width: 7.5rem; }
    .services-item__text {
      line-height: 1.7;
      text-transform: none; }
    .services-item__right {
      flex-shrink: 0;
      width: 14rem; }
    .services-item__price {
      margin-bottom: 1.5rem;
      line-height: 1.7; }
    .services-item__btn {
      width: 100%;
      height: 2.5rem;
      border-radius: 2.5rem;
      border: 1px solid #000;
      color: #000;
      display: inline-flex;
      justify-content: center;
      align-items: center; }
      .services-item__btn:hover {
        background: #000;
        color: #fff; }

.projects {
  transition: .6s all;
  padding-top: 7.5rem; }
  .projects-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem; }
  .projects-choose {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap; }
    .projects-choose li {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      height: 2.5rem;
      padding: 0 1.15rem;
      border-radius: 2rem;
      background: #000;
      color: #fff;
      border: 1px solid #000;
      min-width: 7.5rem; }
      .projects-choose li:hover {
        opacity: .7; }
      .projects-choose li.active {
        background: #fff;
        color: #000;
        pointer-events: none; }
  .projects-arrows {
    display: flex;
    gap: 1.8rem;
    flex-shrink: 0; }
    .projects-arrows span {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      width: 2.1rem; }
      .projects-arrows span:hover {
        opacity: .5; }
      .projects-arrows span img {
        width: 100%; }
  .projects-wrap {
    position: relative;
    padding-left: 6rem;
    min-height: 32.5rem; }
  .projects-anim {
    position: absolute;
    left: 3rem;
    top: 0;
    width: 4.7rem;
    height: 32.5rem;
    border-radius: 1.25rem;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: .6s all; }
  .projects .owl-stage-outer {
    padding-left: 3rem; }
  .projects-list {
    display: none; }
  .projects-item {
    margin-right: 2rem;
    width: 48rem;
    position: relative; }
    .projects-item__link {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute; }
    .projects-item__img {
      border-radius: 1.25rem;
      height: 32.5rem;
      overflow: hidden;
      margin-bottom: 1.5rem; }
      .projects-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
    .projects-item__name {
      font-size: 2.4rem;
      line-height: 1;
      margin-bottom: .5rem; }
    .projects-item__text {
      text-transform: none; }

.reviews {
  padding: 12.5rem 0 7.5rem;
  transition: .6s all; }
  .reviews-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem; }
  .reviews-cursor {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6.7rem;
    height: 6.7rem;
    border-radius: 50%;
    border: 1px dashed rgba(0, 0, 0, 0.3); }
  .reviews .section-text {
    max-width: 57rem; }
  .reviews .owl-stage-outer {
    padding: 0 3rem; }
  .reviews-item {
    margin-right: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    cursor: pointer; }
    .reviews-item__img {
      width: 20rem;
      height: 20rem;
      border-radius: 50%;
      position: relative; }
      .reviews-item__img::after {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 3.2rem;
        height: 3.2rem;
        background: url(../img/icons/play.svg) center center no-repeat;
        background-size: contain;
        content: ''; }
      .reviews-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
    .reviews-item__name {
      font-size: 1.5rem;
      margin-bottom: 0.4rem; }
    .reviews-item__pos {
      font-size: 1rem;
      text-transform: none;
      max-width: 15rem; }
  .reviews .owl-item:nth-child(2n) .reviews-item {
    flex-direction: column-reverse;
    padding-top: 4rem; }
  .reviews-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    display: none; }
    .reviews-popup__video {
      width: 70vw;
      height: 90vh;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      .reviews-popup__video iframe {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain; }

.team {
  padding: 8.5rem 0 10rem; }
  .team-lead {
    padding-top: 4rem;
    margin-bottom: 6rem;
    display: flex;
    justify-content: center;
    gap: 20vw; }
    .team-lead__item {
      display: flex;
      flex-direction: column;
      gap: 1.5rem; }
      .team-lead__item:nth-child(2) {
        flex-direction: column-reverse;
        margin-top: 7rem; }
    .team-lead__img {
      width: 26rem; }
      .team-lead__img img {
        width: 100%;
        display: block; }
    .team-lead__name {
      font-size: 1.5rem;
      margin-bottom: 0.2rem; }
    .team-lead__pos {
      font-size: 1rem;
      text-transform: none;
      margin-bottom: 1.5rem; }
    .team-lead__btn {
      width: 14rem;
      height: 2.5rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border: 1px solid #000;
      color: #000;
      border-radius: 2.5rem; }
      .team-lead__btn:hover {
        background: #000;
        color: #fff; }
  .team-block {
    margin-bottom: 3.75rem; }
    .team-block:last-child {
      margin-bottom: 0; }
  .team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem; }
  .team__title {
    margin-bottom: 2rem; }
  .team-item {
    display: flex;
    align-items: center;
    width: calc(25% - 2.25rem);
    gap: 1.3rem; }
    .team-item__ico {
      width: 4.1rem;
      flex-shrink: 0; }
      .team-item__ico img {
        width: 100%;
        display: block; }
    .team-item__name div {
      font-size: 1.2rem; }
    .team-item__name p {
      font-size: 1rem;
      margin-top: 0.2rem;
      text-transform: none; }
  .team-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    display: none;
    cursor: pointer; }
    .team-popup__content {
      background: #fff;
      width: 55rem;
      padding: 3rem;
      line-height: 1.4;
      font-size: 1.4rem;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      cursor: default; }
    .team-popup__tab {
      display: none; }
      .team-popup__tab p {
        margin-bottom: 1.6rem; }
        .team-popup__tab p:last-child {
          margin-bottom: 0; }
      .team-popup__tab.active {
        display: block; }

.project {
  padding: 6rem 0; }
  .project-head {
    height: 40rem;
    width: 100%;
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: flex-end;
    margin-bottom: 6rem; }
    .project-head .projects-item__name {
      margin-bottom: 0; }
    .project-head__img {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: -1; }
      .project-head__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
  .project-content {
    text-transform: none; }
    .project-content p {
      font-size: 1.6rem;
      max-width: 72rem;
      line-height: 1.37; }
    .project-content figure {
      margin: 2.5rem 0; }
    .project-content img {
      width: 100%;
      display: block; }
    .project-content a {
      color: #002355; }
    .project-content iframe {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9; }

.feedback {
  padding: 10.5rem 0 5rem;
  background: #000F22;
  color: #fff;
  min-height: 100svh; }
  .feedback__title {
    width: 30rem;
    margin-bottom: 3rem; }
    .feedback__title img {
      width: 100%;
      display: block; }
  .feedback-done {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    display: none; }
    .feedback-done__title {
      font-size: 1.5rem;
      margin-bottom: 2rem; }
    .feedback-done__content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 23rem;
      padding: 2rem;
      background: #fff; }
    .feedback-done__img {
      width: 7rem;
      margin: 0 auto 3rem; }
      .feedback-done__img img {
        width: 100%;
        display: block; }

.form {
  display: flex;
  align-items: flex-end;
  gap: 8rem;
  font-size: 2.1rem;
  line-height: 1;
  text-transform: none;
  padding-top: 1.5rem; }
  .form-main {
    flex-grow: 1; }
  .form-input {
    display: flex;
    gap: 1.7rem;
    align-items: flex-end;
    margin-bottom: 2rem; }
    .form-input input {
      flex-grow: 1;
      background: transparent;
      border: none;
      color: #fff;
      border: none;
      text-align: center;
      font-size: 0.9rem;
      border-bottom: 1px solid #fff;
      font-family: 'Reaktif', sans-serif;
      margin-bottom: 0.2rem;
      padding-bottom: 0.8rem;
      transition: .6s all;
      opacity: .3;
      height: 2rem; }
      .form-input input:hover {
        opacity: 1; }
      .form-input input::placeholder {
        color: #fff; }
      .form-input input:not(:placeholder-shown) {
        opacity: 1; }
      .form-input input[type="date"]::-webkit-calendar-picker-indicator {
        display: none; }
  .form select {
    display: none; }
  .form-wrap {
    display: flex;
    gap: 1.7rem; }
    .form-wrap .form-input {
      flex-grow: 1; }
  .form__btn {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: 2.1rem;
    margin-bottom: 2rem; }
    .form__btn span {
      position: relative; }
      .form__btn span::after {
        width: 0%;
        height: 0.15rem;
        background: #fff;
        position: absolute;
        bottom: -0.1rem;
        left: 0;
        content: '';
        transition: .6s all; }
    .form__btn img {
      width: 1.7rem; }
    .form__btn:hover span::after {
      width: 100%; }
  .form-choose {
    display: flex;
    gap: 1.7rem;
    margin-bottom: 1.5rem; }
    .form-choose__inputs {
      display: flex;
      font-size: 0.9rem;
      gap: .55rem; }
      .form-choose__inputs label {
        cursor: pointer;
        user-select: none; }
        .form-choose__inputs label input {
          display: none; }
          .form-choose__inputs label input:checked + span {
            background: #fff; }
        .form-choose__inputs label span {
          display: inline-flex;
          justify-content: center;
          align-items: center;
          transition: .6s all;
          cursor: pointer;
          user-select: none;
          height: 2.5rem;
          padding: 0 1.9rem;
          border-radius: 2.5rem;
          background: #4D5764;
          color: #000; }
  .form .customSelect {
    flex-grow: 1; }
    .form .customSelect__option--value {
      color: #fff;
      background: transparent;
      border: none;
      border-radius: 0;
      text-align: center;
      border-bottom: 1px solid #fff;
      opacity: 0.3; }
      .form .customSelect__option--value::after {
        background-image: url(../img/icons/select.svg);
        border-radius: 50%;
        width: .9rem;
        height: .8rem;
        background-size: contain;
        right: 0; }
      .form .customSelect__option--value.active {
        opacity: 1; }
    .form .customSelect--active .customSelect__option--value:hover, .form .customSelect--active .customSelect__option--value:focus {
      background: transparent;
      opacity: 1; }
    .form .customSelect__dropdown {
      border-radius: 0 !important; }

.footer {
  padding: 3.75rem 0 4rem;
  position: relative;
  z-index: 1;
  transition: .6s all; }
  .footer::before {
    width: 33rem;
    height: 41rem;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    content: '';
    background: url(../img/icons/footer.svg) bottom left no-repeat;
    background-size: contain;
    opacity: .5;
    transition: .6s all; }
  .footer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 7vw;
    margin-bottom: 8.7rem; }
  .footer-info {
    display: flex;
    justify-content: flex-end;
    gap: 4.5vw;
    padding-right: 5.2vw;
    margin-bottom: 13.5rem; }
  .footer-menu li {
    margin-bottom: 2.25rem;
    max-width: 14.5rem; }
    .footer-menu li:last-child {
      margin-bottom: 0; }
    .footer-menu li a {
      color: #000;
      position: relative; }
      .footer-menu li a::after {
        background: #000;
        width: 0;
        bottom: -1px;
        height: 1px;
        content: '';
        position: absolute;
        left: 0;
        transition: width .3s ease-in-out; }
      .footer-menu li a:hover::after {
        width: 100%; }
  .footer-feedback {
    transition: .6s all;
    filter: invert(1);
    display: flex;
    justify-content: center;
    gap: 2vw; }
    .footer-feedback div {
      display: flex;
      flex-direction: column;
      gap: 10vw;
      height: 15vw;
      overflow: hidden; }
      .footer-feedback div span {
        transition: .5s ease-in-out; }
      .footer-feedback div:nth-child(2) span {
        transition-delay: .2s; }
      .footer-feedback div:nth-child(3) span {
        transition-delay: .4s; }
    .footer-feedback img {
      height: 15vw;
      display: block; }
    .footer-feedback:hover span {
      transform: translateY(-25vw); }
    .footer-feedback-en img {
      height: 11vw; }
    .footer-feedback-en:hover span {
      transform: translateY(-21vw); }

@media (max-width: 2800.98px) {
  :root {
    font-size: 26px; } }
@media (max-width: 2600.98px) {
  :root {
    font-size: 24px; } }
@media (max-width: 2300.98px) {
  :root {
    font-size: 22px; } }
@media (max-width: 2100.98px) {
  :root {
    font-size: 20px; } }
@media (max-width: 1800.98px) {
  :root {
    font-size: 19px; }

  .header-right {
    gap: 4vw; } }
@media (max-width: 1700.98px) {
  :root {
    font-size: 18px; } }
@media (max-width: 1600.98px) {
  :root {
    font-size: 17px; } }
@media (max-width: 1500.98px) {
  :root {
    font-size: 16px; } }
@media (max-width: 1400.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 1300.98px) {
  :root {
    font-size: 14px; }

  .header-right {
    gap: 2.5vw; } }
@media (max-width: 1200.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 1100.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 1000.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 900.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 767.98px), (max-width: 1080px) and (orientation: portrait) {
  :root {
    font-size: 17px; }

  .header__info, .header-links {
    display: none; }
  .header-right {
    gap: 1.5rem;
    flex-grow: 0; }

  .main-top {
    flex-direction: column-reverse;
    margin-bottom: 3rem; }
  .main-star {
    width: 100%;
    height: 100vw; }
    .main-star spline-viewer {
      width: 150%;
      height: 150%; }
  .main__text {
    padding-top: 0; }
  .main__title {
    margin-top: 0; }

  .about {
    padding-top: 7rem; }
    .about-main {
      padding-left: 0;
      margin-bottom: 5rem; }
    .about-numbers {
      flex-wrap: wrap;
      gap: 1rem 2rem; }
      .about-numbers__item {
        width: calc(50% - 1rem); }

  .partners {
    padding-top: 7rem; }
    .partners .section-text {
      text-align: left;
      margin-bottom: 4rem; }

  .services {
    padding: 7rem 0 3rem; }
    .services-item {
      flex-direction: column;
      gap: 2rem; }
      .services-item__name {
        width: 100%; }
      .services-item__wrap {
        gap: 2rem;
        width: 100%; }

  .projects {
    padding-top: 5rem; }
    .projects-item {
      width: 35rem; }

  .reviews {
    padding: 7rem 0 4rem; }
    .reviews-item {
      margin-right: 3rem; }

  .team {
    padding: 7rem 0; }
    .team-lead {
      gap: 3rem;
      flex-direction: column;
      align-items: center; }
      .team-lead__item {
        align-items: center;
        text-align: center; }
        .team-lead__item:nth-child(2) {
          flex-direction: column;
          margin-top: 0; }
    .team-list {
      gap: 1.5rem 2rem; }
    .team-item {
      width: calc(50% - 1rem); }
    .team-popup__content {
      width: calc(100% - 6rem);
      padding: 2rem;
      font-size: 1.3rem; }

  .form {
    flex-direction: column;
    gap: 3rem;
    font-size: 1.2rem; }
    .form-main {
      width: 100%; }
    .form-wrap {
      flex-wrap: wrap;
      gap: 0; }
    .form-input {
      width: 100%; }
    .form__btn {
      font-size: 1.2rem; }
      .form__btn img {
        transform: translateY(-0.2rem); }
    .form-choose {
      flex-direction: column; }
      .form-choose__inputs label span {
        padding: 0 0.5rem; }

  .footer::before {
    width: 16.5rem;
    height: 20.5rem; }
  .footer-info {
    padding-right: 0;
    justify-content: center; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 16px; }

  .container {
    padding: 0 1rem; }

  .section-text {
    font-size: 1.5rem; }

  .header {
    padding: 1rem 0; }
    .header__logo {
      width: 6rem; }
    .header.scrolled {
      padding: 0.5rem 0; }
    .header .container {
      gap: 0; }
    .header-lang {
      font-size: 0.8rem; }
    .header-right {
      gap: .5rem; }
    .header__btn {
      padding: 0.35rem 0.7rem;
      font-size: 0.7rem; }

  .main {
    height: 100svh; }
    .main-top {
      gap: 2rem; }
    .main .container {
      height: calc(100svh - 12rem);
      display: flex;
      justify-content: space-between;
      flex-direction: column; }

  .about-numbers {
    gap: 1rem; }
    .about-numbers__item {
      width: calc(50% - .5rem); }
      .about-numbers__item div {
        font-size: 12vw; }
        .about-numbers__item div span {
          font-size: 0.9rem; }

  .partners-item {
    height: 9rem;
    width: 12rem;
    margin-right: 1rem; }

  .services-item {
    padding: 2rem 0; }
    .services-item__name {
      font-size: 1.8rem; }
    .services-item__wrap {
      flex-direction: column;
      align-items: flex-start; }
    .services-item__info {
      min-height: 0; }
    .services-item__tags li {
      padding: 0 .75rem;
      height: 2rem;
      font-size: 0.8rem;
      min-width: 5rem; }

  .projects-head {
    flex-direction: column; }
  .projects-arrows {
    gap: 1rem; }
    .projects-arrows span {
      width: 1.5rem; }
  .projects-choose li {
    padding: 0 .75rem;
    height: 2rem;
    font-size: 0.8rem;
    min-width: 5rem; }
  .projects-wrap {
    padding-left: 1rem;
    min-height: 20rem; }
  .projects-anim {
    left: 0;
    width: 3.5rem;
    border-radius: 1rem;
    height: 20rem; }
  .projects-item {
    width: calc(100vw - 5rem);
    margin-right: 1rem; }
    .projects-item__img {
      height: 20rem;
      border-radius: 1rem; }
    .projects-item__name {
      font-size: 1.7rem; }

  .reviews-wrap {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem; }
  .reviews-cursor {
    width: 5rem;
    height: 5rem; }
  .reviews .owl-stage-outer {
    padding: 0 1rem; }
  .reviews-item {
    margin-right: 2rem; }
    .reviews-item__img {
      width: 12rem;
      height: 12rem; }
    .reviews-item__name {
      font-size: 1.2rem; }
    .reviews-item__pos {
      font-size: 0.9rem;
      max-width: 13rem; }
  .reviews .owl-item:nth-child(2n) .reviews-item {
    padding-top: 2.5rem; }

  .team-lead__img {
    width: 80%; }
  .team-lead__name {
    font-size: 1.2rem; }
  .team-lead__pos {
    font-size: 0.9rem; }
  .team-item {
    width: 100%;
    gap: 1rem; }
    .team-item__ico {
      width: 3rem; }
    .team-item__name div {
      font-size: 1rem; }
    .team-item__name p {
      font-size: 0.9rem; }
  .team-popup__content {
    width: calc(100% - 2rem);
    padding: 1.5rem 1rem;
    font-size: 1rem; }
    .team-popup__content p {
      margin-bottom: 1rem; }

  .project {
    padding: 4rem 0; }
    .project-head {
      height: 25rem;
      padding: 2rem 1rem;
      margin-bottom: 3rem; }
    .project-content p {
      font-size: 1.2rem; }

  .feedback {
    padding: 6rem 0 2rem; }
    .feedback__title {
      width: 100%; }
    .feedback-done__content {
      padding: 1.5rem 1rem;
      width: calc(100% - 2rem); }

  .form {
    padding-top: 1rem; }
    .form-input {
      flex-direction: column;
      align-items: flex-start; }
      .form-input input {
        width: 100%;
        text-align: left; }
    .form .customSelect {
      width: 100%; }
      .form .customSelect__option--value {
        text-align: left;
        padding-left: 0; }
    .form-choose {
      margin-bottom: 2rem; }
      .form-choose__inputs {
        flex-wrap: wrap; }

  .footer::before {
    width: 12rem;
    height: 16rem; }
  .footer-head {
    gap: 0;
    position: relative; }
    .footer-head .header-links {
      display: flex;
      justify-content: center;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -3rem;
      width: 100%;
      gap: 1.5rem; }
  .footer-info {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2rem 5rem;
    margin-bottom: 7rem; } }
@media (max-width: 389.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 375.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 345.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 330.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 320.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 300.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 1000px) and (orientation: landscape) {
  :root {
    font-size: 8.5px; } }
@media (max-width: 700px) and (orientation: landscape) {
  :root {
    font-size: 8px; } }

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