@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}
/* Variables */
:root {
  --bg-color: white;
  --text-color: #000211;
  --text-color-light: white;
  --text-color-gray: #95969b;
  --light-color: white;
  --dark-color: #000211;
  --dark-color-hover: rgba(0, 2, 17, 0.8);
  --light-gray-color: #F8F8F8;
  --light-gray-color-hover: #e8e5e5;
  /*--light-gray-color-with-transparency: rgba(248, 248, 248, 1);*/
  --light-gray-color-with-transparency: rgba(231, 231, 231, 0.4);
  --medium-gray-color: #999a9f;
  --dark-gray-color: #1A1B29;
  --accent-color: #FF5733;
  --accent-color-hover: #ed3811;
  --accent-color-with-transparency: rgba(255, 87, 51, 0.07);
  --error-color: #f66;
  --error-background-color: rgba(255, 102, 102, 0.15);
  --primary-font: 'Inter', sans-serif;
  --border-radius-small: 10px;
  --border-radius-medium: 12px;
  --border-radius-large: 20px;
  --box-shadow: -1px -1px 7px 0px rgba(0, 0, 0, 0.04);
  --box-shadow-hover: -1px -1px 10px 0px rgba(0, 0, 0, 0.1);
  --screen-xl: 1440px;
  --screen-lg: 1200px;
  --screen-md: 768px;
  --screen-sm: 360px;
}
/* General Styles */
html {
  overflow-x: hidden;
  /*background-color: var(--dark-color);*/
  /*background: linear-gradient(to bottom, var(--light-color), var(--dark-color));*/
}
@media (max-width: 768px) {
  html {
    padding-bottom: 60px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  z-index: 2;
}
body {
  position: relative;
  font-family: var(--primary-font), sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light-color);
  color: var(--text-color);
  overflow-x: hidden;
}
main {
  padding-top: calc(68px + 30px);
  min-height: 85vh;
}
@media (max-width: 1200px) {
  main {
    padding-top: calc(61px + 30px);
  }
}
@media (max-width: 768px) {
  main {
    padding-top: calc(68px + 30px);
  }
}
/* Typography Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-align: center;
  color: var(--dark-color);
}
p {
  padding: 0;
  margin: 0;
}
ol,
ul,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
h1 {
  font-size: 72px;
  line-height: 82px;
  font-weight: 600;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 56px;
    line-height: 64px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 42px;
    line-height: 42px;
  }
}
h2 {
  max-width: 600px;
  font-size: 32px;
  line-height: 42px;
}
@media (max-width: 1200px) {
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 768px) {
  h2 {
    max-width: 100%;
    font-size: 24px;
    line-height: 32px;
  }
}
/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* UI Styles */
*:focus,
*:focus-visible,
*:focus-within,
*:active {
  outline: none;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: calc(1320px + 60px);
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}
.text-content {
  margin-bottom: 20px;
}
.text-content,
.text-content div,
.text-content section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-content h1 {
  font-size: 2em;
  line-height: 1.2em;
  font-weight: 600;
}
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  text-align: left;
}
.text-content ol,
.text-content ul {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  line-height: 22px;
}
.text-content ol {
  gap: 22px;
  list-style: none;
  counter-reset: li;
}
.text-content ul {
  list-style-type: disc;
  margin-inline-start: 36px;
}
.text-content ol li {
  list-style-type: none;
}
.text-content ol > li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}
.text-content ol ol > li:before {
  font-size: inherit;
  line-height: inherit;
}
.text-content ol ol ul > li {
  list-style-type: disc;
}
.text-content ol li > p,
.text-content ul li > p {
  margin-bottom: 20px;
}
.li-title {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 22px;
}
.data-title {
  font-weight: 600;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--border-radius-medium);
  color: var(--text-color);
  background-color: var(--light-gray-color);
  border: none;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: var(--light-gray-color-hover);
}
@media (max-width: 1200px) {
  .button {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 18px;
  }
}
.button--fake {
  cursor: auto;
}
.button--fake,
.button--fake:hover {
  background-color: var(--accent-color-with-transparency);
}
.button--light {
  background-color: var(--light-color);
  color: var(--dark-color);
}
.button--light:hover {
  background-color: var(--light-gray-color-hover);
}
.button--accent {
  background-color: var(--accent-color);
  color: var(--text-color-light);
}
.button--accent:hover {
  background-color: var(--accent-color-hover);
}
.button--arrow-icon:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../images/icons/chevron-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.button--active,
.button.active {
  background-color: var(--dark-color);
  color: var(--text-color-light);
}
.button--active:hover,
.button.active:hover {
  background-color: var(--dark-color-hover);
}
.button--inactive,
.button.inactive {
  color: var(--medium-gray-color);
}
.button--plus {
  background-color: var(--accent-color);
  color: var(--text-color-light);
  padding: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0;
  transition: all 0.3s ease;
}
.button--plus:after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url('../images/icons/plus.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.button--plus:hover {
  background-color: var(--accent-color-hover);
  transform: rotate(180deg);
}
.button--small {
  font-size: 12px;
  line-height: 16px;
}
@media (max-width: 1200px) {
  .button--plus {
    width: 40px;
    height: 40px;
  }
  .button--plus:after {
    width: 24px;
    height: 24px;
  }
}
.text-color-light {
  color: var(--text-color-light);
}
.text-color-accent {
  color: var(--accent-color);
}
.text-color-gray {
  color: var(--medium-gray-color);
}
/* Стили для модального окна */
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.modal.opened {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s;
}
.modal::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal__wrapper {
  position: relative;
  width: 80%;
  max-width: 400px;
  margin: 0 10px;
  padding: 30px 40px 30px 30px;
  border-radius: 20px;
  background-color: var(--light-color);
}
.modal__title {
  margin-top: -15px;
  margin-bottom: 15px;
}
.modal__content {
  width: 100%;
  border-radius: 20px;
}
.modal__close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  line-height: 16px;
  padding: 0;
  color: var(--medium-gray-color);
  float: right;
  font-size: 28px;
  border: none;
  background: none;
}
.modal__close-btn:hover {
  color: var(--dark-gray-color);
  text-decoration: none;
  cursor: pointer;
}
/* Bottom Angles Styles */
.bottom-angles {
  position: fixed;
  height: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
.bottom-angles:before,
.bottom-angles:after {
  content: '';
  position: absolute;
  top: -32px;
  width: 32px;
  height: 32px;
  background-image: url('../images/triangle-inner-radius.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.bottom-angles:before {
  left: 0;
  transform: rotate(-90deg);
}
.bottom-angles:after {
  right: 0;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .bottom-angles:before,
  .bottom-angles:after {
    top: -22px;
    width: 22px;
    height: 22px;
  }
}
/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--dark-color);
  min-height: 68px;
  z-index: 20;
}
.header:before,
.header:after {
  content: '';
  position: absolute;
  bottom: -32px;
  width: 32px;
  height: 32px;
  /*background-color: var(--dark-color);*/
  /*mask-image: radial-gradient(circle 16px at 0 0, transparent 0, transparent 32px, #000 0);*/
  background-image: url('../images/triangle-inner-radius.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.header:before {
  left: 0;
  /*transform: rotate(180deg);*/
}
.header:after {
  right: 0;
  /*transform: rotateX(180deg);*/
  transform: rotate(90deg);
}
@media (max-width: 1200px) {
  .header {
    min-height: 61px;
  }
}
@media (max-width: 768px) {
  .header {
    min-height: 68px;
  }
  .header:before,
  .header:after {
    bottom: -22px;
    width: 22px;
    height: 22px;
  }
}
.header__container {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .header__action-button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--light-color);
  }
  .header__action-button .button {
    width: 100%;
    max-width: 500px;
    background-color: var(--dark-color);
    color: var(--text-color-light);
  }
}
.header__logo {
  display: flex;
  font-size: 0;
}
.header__logo--lg {
  display: block;
  max-width: 230px;
}
.header__logo--md {
  display: none;
  max-width: 140px;
}
.header__logo--sm {
  display: none;
  max-width: 100px;
}
@media (max-width: 1200px) {
  .header__logo--lg {
    display: none;
  }
  .header__logo--md {
    display: block;
  }
}
@media (max-width: 768px) {
  .header-menu {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 68px;
    left: 0;
    width: calc(100% - 20px);
    height: auto;
    margin: 10px;
    padding: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-gray-color-with-transparency);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-large);
    transition: all 0.3s ease-in-out;
    z-index: 20;
  }
  .header-menu.opened {
    opacity: 1;
    pointer-events: auto;
  }
}
.header-menu__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}
@media (max-width: 1200px) {
  .header-menu__list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-size: 24px;
  }
}
.header-menu__link {
  color: var(--text-color-light);
  text-decoration: none;
}
@media (max-width: 768px) {
  .header-menu__link {
    color: var(--text-color);
  }
}
.header-menu-button {
  display: none;
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: none;
  position: relative;
  cursor: pointer;
}
.header-menu-button:before,
.header-menu-button:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}
.header-menu-button:before {
  top: calc(50% - 3px);
  transform: translateY(-50%);
}
.header-menu-button:after {
  top: calc(50% + 3px);
  transform: translateY(-50%);
}
.header-menu-button.opened:before {
  top: 50%;
  transform: translateY(0) rotate(45deg);
}
.header-menu-button.opened:after {
  top: 50%;
  transform: translateY(0) rotate(-45deg);
}
@media (max-width: 768px) {
  .header-menu-button {
    display: block;
  }
}
/* Hero Section */
.hero {
  position: relative;
  z-index: 3;
}
.hero__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 110px;
}
@media (max-width: 768px) {
  .hero__container {
    padding-top: 50px;
  }
}
.hero__label span:first-child {
  font-size: 18px;
  color: var(--accent-color);
  font-weight: 600;
}
.hero__title {
  max-width: 900px;
}
@media (max-width: 1200px) {
  .hero__title {
    max-width: 700px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    max-width: 250px;
  }
}
.hero__subtitle {
  color: var(--medium-gray-color);
  max-width: 450px;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero__subtitle {
    max-width: 350px;
    font-size: 14px;
    line-height: 18px;
  }
}
.hero__buttons {
  width: 50%;
  max-width: 550px;
  display: flex;
  gap: 6px;
  margin-top: 14px;
}
@media (max-width: 1200px) {
  .hero__buttons {
    width: 70%;
    max-width: 450px;
    margin-top: 4px;
  }
}
@media (max-width: 768px) {
  .hero__buttons {
    max-width: 250px;
    flex-direction: column;
    margin-top: 28px;
  }
}
.hero__buttons .button {
  width: 100%;
}
.hero .logos {
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .hero .logos {
    margin-top: 36px;
  }
}
@media (max-width: 768px) {
  .hero .logos {
    margin-top: 10px;
  }
}
/* Logos Section */
.logos {
  display: flex;
  width: 1000px;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.logos::before,
.logos::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}
.logos::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.logos::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}
.logos__list {
  display: flex;
  align-items: center !important;
  gap: 40px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.logos__item {
  width: auto !important;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-drag: none;
  flex-shrink: 0;
  filter: grayscale(1);
  transition: all 0.3s ease;
}
.logos__item:hover {
  filter: grayscale(0);
}
.logos__item img {
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
/* Ellipse Section */
.ellipse-section {
  position: relative;
  margin-top: calc(170px + 20px);
  background-color: var(--light-gray-color);
}
@media (min-width: 2500px) {
  .ellipse-section {
    margin-top: calc(220px + 20px);
  }
}
@media (max-width: 1200px) {
  .ellipse-section {
    margin-top: calc(150px + 40px);
  }
}
.ellipse-section:before,
.ellipse-section:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  background-image: url('../images/ellipse-lg.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.ellipse-section:before {
  background-position: top;
  top: -170px;
}
.ellipse-section:after {
  background-position: bottom;
  bottom: -100px;
}
@media (min-width: 2500px) {
  .ellipse-section:before {
    top: -220px;
  }
}
@media (max-width: 1200px) {
  .ellipse-section:before,
  .ellipse-section:after {
    background-image: url('../images/ellipse-md.svg');
  }
  .ellipse-section:before {
    background-position: top;
    top: -150px;
  }
  .ellipse-section:after {
    bottom: -80px;
  }
}
@media (max-width: 768px) {
  .ellipse-section:before,
  .ellipse-section:after {
    background-image: url('../images/ellipse-sm.svg');
  }
}
.ellipse-section .container {
  gap: 100px;
}
.ellipse-section .we-make {
  margin-top: -130px;
}
/* We Make Section */
.we-make {
  width: 100%;
}
.we-make__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .we-make__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.we-make__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 30px;
  min-height: 280px;
  border-radius: var(--border-radius-large);
  background-color: var(--light-color);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.we-make__item:hover {
  box-shadow: var(--box-shadow-hover);
}
.we-make__item .button {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 3;
}
.we-make__title,
.we-make__subtitle {
  position: relative;
  z-index: 3;
}
.we-make__title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .we-make__title {
    font-size: 18px;
    line-height: 22px;
  }
}
.we-make__subtitle {
  font-size: 16px;
  line-height: 20px;
}
.we-make__image {
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: auto;
  height: auto;
  max-width: 250px;
  max-height: 250px;
  pointer-events: none;
  -webkit-user-drag: none;
  transition: all 0.3s ease;
}
.we-make__item--outstaffing .we-make__image {
  bottom: -20px;
  left: -10px;
}
.we-make__item:hover .we-make__image {
  transform: scale(1.2);
}
@media (max-width: 1200px) {
  .we-make__image {
    bottom: -35px;
    left: -35px;
    max-width: 200px;
    max-height: 200px;
  }
  .we-make__item--subcontracting .we-make__image {
    bottom: -55px;
    left: -35px;
  }
}
@media (max-width: 768px) {
  .we-make__image {
    bottom: -30px;
    left: -10px;
    max-width: 155px;
    max-height: 155px;
  }
}
/* We Solve Section */
.we-solve {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.we-solve__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.we-solve__row {
  display: flex;
  justify-content: end;
  gap: 10px;
}
@media (max-width: 768px) {
  .we-solve__row {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .we-solve__row:nth-child(3) {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.we-solve__title-block {
  max-width: 290px;
  margin-right: auto;
}
@media (max-width: 768px) {
  .we-solve__title-block {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 0 14px;
  }
}
.we-solve__title {
  justify-content: start;
  text-align: left;
}
.we-solve__arrow-icon-at-the-end {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}
.we-solve__arrow-icon-at-the-end:after {
  content: '';
  display: inline-block;
  margin-top: 7px;
  width: 30px;
  height: 30px;
  background-image: url('../images/icons/arrow-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .we-solve__title {
    max-width: 220px;
    text-align: center;
  }
  .we-solve__title:after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    margin: 10px auto 0;
    transform: rotate(90deg);
    background-image: url('../images/icons/arrow-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
  }
  .we-solve__arrow-icon-at-the-end:after {
    content: none;
  }
}
.we-solve__button-block {
  width: 100%;
  max-width: 240px;
  margin-right: auto;
  padding-right: 10px;
  display: flex;
  align-items: end;
}
.we-solve__button-block .button {
  width: 100%;
}
@media (max-width: 768px) {
  .we-solve__button-block {
    width: 100%;
    max-width: 240px;
    margin: 20px auto 0;
    grid-area: item1;
    grid-column: 1 / -1;
  }
}
.we-solve__block {
  position: relative;
  display: flex;
  align-items: center;
  height: 200px;
  border-radius: var(--border-radius-large);
  background-color: var(--light-color);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.we-solve__block:hover {
  box-shadow: var(--box-shadow-hover);
}
@media (max-width: 1200px) {
  .we-solve__block {
    align-items: end;
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .we-solve__block {
    justify-content: center;
  }
}
.we-solve__row:nth-child(1) .we-solve__block {
  width: calc(26% - 5px);
}
.we-solve__row:nth-child(2) .we-solve__block {
  width: calc(33% - 5px);
}
.we-solve__row:nth-child(3) .we-solve__block {
  width: calc(39% - 5px);
}
@media (max-width: 1200px) {
  .we-solve__row:nth-child(1) .we-solve__block {
    width: calc(27% - 5px);
  }
  .we-solve__row:nth-child(2) .we-solve__block {
    width: calc(30% - 5px);
  }
  .we-solve__row:nth-child(3) .we-solve__block {
    width: calc(33% - 5px);
  }
}
@media (max-width: 768px) {
  .we-solve__row:nth-child(1) .we-solve__block,
  .we-solve__row:nth-child(2) .we-solve__block,
  .we-solve__row:nth-child(3) .we-solve__block {
    width: calc(50% - 5px);
  }
}
@media (min-width: 1200px) {
  .we-solve__block--mobile-apps .we-solve__image {
    max-width: 180px;
  }
  .we-solve__block--development .we-solve__image {
    max-width: 160px;
  }
  .we-solve__block--complex-management .we-solve__image {
    left: -60px;
  }
}
@media (max-width: 768px) {
  .we-solve__row:nth-child(3) .we-solve__block--design {
    grid-column: 1;
    width: 100%;
  }
  .we-solve__row:nth-child(3) .we-solve__block--marketing {
    grid-column: 2;
    width: 100%;
  }
}
.we-solve__block-title {
  position: relative;
  margin-left: 50%;
  font-size: 20px;
  z-index: 3;
}
@media (max-width: 1200px) {
  .we-solve__block-title {
    margin-left: 0;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .we-solve__block-title {
    text-align: center;
  }
}
.we-solve__image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  width: auto;
  height: auto;
  max-width: 250px;
  max-height: 250px;
  pointer-events: none;
  -webkit-user-drag: none;
  transition: all 0.3s ease;
}
.we-solve__block:hover .we-solve__image {
  transform: translateY(-50%) scale(1.2);
}
@media (max-width: 1200px) {
  .we-solve__image {
    top: 10px;
    right: 10px;
    left: auto;
    transform: none;
    max-width: 110px;
    max-height: 110px;
  }
  .we-solve__block:hover .we-solve__image {
    transform: scale(1.2);
  }
}
@media (max-width: 768px) {
  .we-solve__image {
    top: 10px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100px;
    max-height: 100px;
  }
  .we-solve__block:hover .we-solve__image {
    transform: translateX(-50%) scale(1.2);
  }
}
/* We Offer Styles */
.we-offer {
  margin-top: 170px;
}
@media (max-width: 1200px) {
  .we-offer {
    margin-top: 150px;
  }
}
@media (max-width: 768px) {
  .we-offer {
    margin-top: 120px;
  }
}
.we-offer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.we-offer__tabs {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 90%;
}
@media (max-width: 1200px) {
  .we-offer__tabs {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .we-offer__tabs {
    overflow-x: auto;
  }
}
.we-offer__tab {
  flex: 1;
}
@media (max-width: 768px) {
  .we-offer__tab {
    white-space: nowrap;
  }
}
.we-offer__content {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  width: 100%;
  max-width: 90%;
  transition: height 0.3s ease;
}
@media (max-width: 1200px) {
  .we-offer__content {
    margin-top: 10px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .we-offer__content {
    margin-top: 0;
  }
}
.we-offer__content-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .we-offer__content-item {
    flex-direction: column;
  }
}
.we-offer__content-item.invisible {
  opacity: 0;
  transform: translateY(-10px);
}
.we-offer__content-item:not(.invisible) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.we-offer__content-left {
  font-size: 28px;
  line-height: 36px;
  flex: 1;
  width: 100%;
  max-width: 350px;
}
@media (max-width: 1200px) {
  .we-offer__content-left {
    font-size: 18px;
    line-height: 24px;
    max-width: 270px;
  }
}
@media (max-width: 768px) {
  .we-offer__content-left {
    max-width: 100%;
  }
}
.we-offer__content-right {
  font-size: 20px;
  line-height: 26px;
  flex: 1;
  width: 100%;
  max-width: 400px;
}
@media (max-width: 1200px) {
  .we-offer__content-right {
    font-size: 14px;
    line-height: 18px;
    max-width: 330px;
  }
}
@media (max-width: 768px) {
  .we-offer__content-right {
    max-width: 100%;
  }
}
/* We Develop Styles */
/* Основной стиль для контейнера */
.we-develop {
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .we-develop {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .we-develop {
    margin-top: 20px;
  }
}
.we-develop__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  padding: 60px 80px;
  width: 100%;
  border-radius: var(--border-radius-large);
  background-color: var(--light-gray-color);
}
@media (max-width: 1200px) {
  .we-develop__container {
    padding: 36px 56px;
  }
}
@media (max-width: 768px) {
  .we-develop__container {
    flex-direction: column;
    padding: 22px 32px;
  }
}
.we-develop__tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 250px;
}
.we-develop__tab {
  position: relative;
  padding: 0;
  border: none;
  background: none;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: var(--medium-gray-color);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}
.we-develop__tab:before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  left: -36px;
  width: 24px;
  height: 24px;
  background-image: url('../images/icons/arrow-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .we-develop__tab {
    font-size: 16px;
    line-height: 20px;
  }
  .we-develop__tab:before {
    left: -28px;
  }
}
.we-develop__tab.active {
  color: var(--text-color);
}
.we-develop__tab.active:before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.we-develop__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .we-develop__right {
    margin: 0 -16px;
  }
}
.we-develop__content {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 350px;
  transition: height 0.3s ease;
}
@media (max-width: 1200px) {
  .we-develop__content {
    width: 320px;
  }
}
@media (max-width: 768px) {
  .we-develop__content {
    width: 100%;
  }
}
.we-develop__content-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
  width: 100%;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 1200px) {
  .we-develop__content-item {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .we-develop__content-item {
    gap: 16px;
  }
}
.we-develop__content-item:not(.invisible) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.we-develop__content-item.invisible {
  opacity: 0;
  transform: translateY(-10px);
}
.we-develop__content-title {
  font-size: 32px;
  line-height: 38px;
}
@media (max-width: 1200px) {
  .we-develop__content-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.we-develop__labels-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.we-develop__label {
  display: flex;
  align-items: center;
  gap: 16px;
  max-height: 42px;
  padding: 12px 20px 12px 10px;
  border-radius: var(--border-radius-medium);
  background-color: var(--light-color);
  color: var(--text-color);
  font-size: 14px;
  line-height: 16px;
  cursor: default;
}
.we-develop__label:before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.we-develop__label:hover:before {
  transform: scale(1.2);
}
.we-develop__label--react:before {
  background-image: url('../images/icons/reactjs.svg');
}
.we-develop__label--vue:before {
  background-image: url('../images/icons/vuejs.svg');
}
.we-develop__label--angular:before {
  background-image: url('../images/icons/angular.svg');
}
.we-develop__label--blazor:before {
  background-image: url('../images/icons/blazor.svg');
}
.we-develop__label--razor:before {
  background-image: url('../images/icons/blazor.svg');
}
.we-develop__label--python:before {
  background-image: url('../images/icons/python.svg');
}
.we-develop__label--java:before {
  background-image: url('../images/icons/java.svg');
}
.we-develop__label--nodejs:before {
  background-image: url('../images/icons/nodejs.svg');
}
.we-develop__label--dotnet:before {
  background-image: url('../images/icons/dotnet.svg');
}
.we-develop__label--flutter:before {
  background-image: url('../images/icons/flutter.svg');
}
.we-develop__label--swift:before {
  background-image: url('../images/icons/swift.svg');
}
.we-develop__label--cpp:before {
  background-image: url('../images/icons/cpp.svg');
}
.we-develop__label--postgresql:before {
  background-image: url('../images/icons/postgresql.svg');
}
.we-develop__label--mysql:before {
  background-image: url('../images/icons/mysql.svg');
}
.we-develop__label--mongodb:before {
  background-image: url('../images/icons/mongodb.svg');
}
.we-develop__label--superset:before {
  background-image: url('../images/icons/superset.svg');
}
.we-develop__label--powerbi:before {
  background-image: url('../images/icons/powerbi.svg');
}
.we-develop__label--datalens:before {
  background-image: url('../images/icons/datalens.svg');
}
.we-develop__label--yolo:before {
  background-image: url('../images/icons/yolo.svg');
}
.we-develop__label--flux:before {
  background-image: url('../images/icons/flux.svg');
}
.we-develop__label--telegram:before {
  background-image: url('../images/icons/telegram.svg');
}
.we-develop__button {
  width: max-content;
  margin-top: auto;
}
/* Projects Styles */
.projects {
  margin-top: 100px;
}
@media (max-width: 1200px) {
  .projects {
    margin-top: 72px;
  }
}
@media (max-width: 768px) {
  .projects {
    margin-top: 48px;
  }
}
.projects__container {
  gap: 36px;
}
@media (max-width: 1200px) {
  .projects__container {
    gap: 24px;
  }
}
.projects__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 400px 400px 500px;
  gap: 10px;
  width: 100%;
}
@media (max-width: 1200px) {
  .projects__list {
    grid-template-rows: 250px 250px 320px;
  }
}
@media (max-width: 768px) {
  .projects__list {
    /*grid-template-columns: 1fr;*/
    /*grid-template-rows: auto;*/
    display: flex;
    flex-direction: column;
  }
}
.projects__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 16px;
  padding: 30px;
  border-radius: var(--border-radius-large);
  overflow: hidden;
}
@media (max-width: 768px) {
  .projects__item {
    min-height: 320px;
  }
}
.projects__item .projects__item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: auto;
}
.projects__item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
  background-color: #EBEBEF;
}
.projects__item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  background-color: #ECF5E7;
}
.projects__item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  background-color: #EDF4FA;
}
.projects__item:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
  background-color: #E6E9E7;
}
.projects__item:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
  background-color: #F8EFE5;
}
@media (max-width: 768px) {
  .projects__item:nth-child(1) {
    min-height: 350px;
  }
}
.projects__item:nth-child(1) .projects__item-image {
  top: 30px;
  left: auto;
  right: 30px;
  width: 1040px;
}
.projects__item:nth-child(2) .projects__item-image {
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  max-width: 90%;
}
.projects__item:nth-child(3) .projects__item-image {
  top: -80px;
  left: -8px;
  width: 830px;
}
.projects__item:nth-child(4) .projects__item-image {
  top: 30px;
  left: 30px;
  width: 760px;
}
.projects__item:nth-child(5) .projects__item-image {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  max-width: 90%;
}
@media (max-width: 1200px) {
  .projects__item:nth-child(1) .projects__item-image {
    top: 20px;
    left: auto;
    right: 30px;
    width: 540px;
  }
  .projects__item:nth-child(2) .projects__item-image {
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    max-width: 90%;
  }
  .projects__item:nth-child(3) .projects__item-image {
    top: -70px;
    left: -5px;
    width: 470px;
  }
  .projects__item:nth-child(4) .projects__item-image {
    top: 30px;
    left: 30px;
    width: 400px;
  }
  .projects__item:nth-child(5) .projects__item-image {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .projects__item:nth-child(1) .projects__item-image {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    max-width: 90%;
  }
  .projects__item:nth-child(2) .projects__item-image {
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    max-width: 90%;
  }
  .projects__item:nth-child(3) .projects__item-image {
    top: -70px;
    left: auto;
    right: -90px;
    width: 460px;
  }
  .projects__item:nth-child(4) .projects__item-image {
    top: 10px;
    left: 10px;
    width: 430px;
  }
  .projects__item:nth-child(5) .projects__item-image {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    max-width: 90%;
  }
}
.projects__title {
  font-size: 28px;
  line-height: 36px;
}
@media (max-width: 1200px) {
  .projects__title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .projects__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.projects__subtitle {
  font-size: 16px;
  line-height: 20px;
  color: var(--medium-gray-color);
}
@media (max-width: 1200px) {
  .projects__subtitle {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 768px) {
  .projects__subtitle {
    font-size: 14px;
    line-height: 18px;
  }
}
/* Form Styles */
.form {
  position: relative;
  background-color: var(--dark-color);
  margin-top: 80px;
}
@media (max-width: 1200px) {
  .form {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .form {
    margin-top: 30px;
  }
}
.form:before,
.form:after {
  content: '';
  position: absolute;
  top: -32px;
  width: 32px;
  height: 32px;
  /*background-color: var(--dark-color);*/
  /*mask-image: radial-gradient(circle 16px at 0 0, transparent 0, transparent 32px, #000 0);*/
  background-image: url('../images/triangle-inner-radius.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.form:before {
  left: 0;
  transform: rotate(-90deg);
}
.form:after {
  right: 0;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .form:before,
  .form:after {
    top: -22px;
    width: 22px;
    height: 22px;
  }
}
.form__container {
  gap: 30px;
  padding-top: 80px;
  padding-bottom: 60px;
}
@media (max-width: 1200px) {
  .form__container {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.form__title,
.form__description {
  text-align: center;
  max-width: 480px;
}
@media (max-width: 1200px) {
  .form__title,
  .form__description {
    max-width: 450px;
  }
}
@media (max-width: 768px) {
  .form__title,
  .form__description {
    max-width: 100%;
  }
}
.form__title {
  color: var(--light-color);
  font-size: 32px;
}
.form__description {
  color: var(--medium-gray-color);
  font-size: 20px;
  line-height: 26px;
}
.form__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 480px;
}
@media (max-width: 1200px) {
  .form__form {
    max-width: 450px;
  }
}
@media (max-width: 768px) {
  .form__form {
    max-width: 100%;
  }
}
.form__fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.form__input,
.form__textarea {
  width: 100%;
  padding: 16px;
  border-radius: var(--border-radius-small);
  background-color: var(--dark-gray-color);
  color: var(--light-gray-color);
  font-size: 14px;
  line-height: 16px;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}
.form__textarea {
  resize: none;
  height: auto;
  min-height: 120px;
}
.form__input-error {
  font-size: 14px;
  color: var(--error-color);
  background: var(--error-background-color);
  padding: 2px 6px;
  border-radius: 4px;
}
.form__checkbox-label {
  display: flex;
  align-items: start;
  gap: 12px;
  cursor: pointer;
}
.form__checkbox {
  display: none;
}
.form__checkbox + .form__custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  background-color: transparent;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}
.form__checkbox:checked + .form__custom-checkbox {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.form__checkbox:checked + .form__custom-checkbox::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--light-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: opacity 0.3s;
}
.form__custom-checkbox {
  flex-shrink: 0;
}
.form__checkbox-text {
  font-size: 12px;
  line-height: 16px;
  color: var(--medium-gray-color);
}
.form__checkbox-text a {
  color: var(--medium-gray-color);
  transition: all 0.3s ease;
}
.form__button {
  margin-top: 20px;
}
.contacts {
  background-color: var(--dark-color);
}
.contacts__container {
  flex-direction: row;
  align-items: normal;
  gap: 10px;
}
@media (max-width: 768px) {
  .contacts__container {
    flex-wrap: wrap;
  }
}
.contacts__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
  font-size: 18px;
  line-height: 24px;
  color: var(--light-color);
  background-color: var(--dark-gray-color);
  border-radius: var(--border-radius-medium);
  z-index: 3;
}
@media (max-width: 1200px) {
  .contacts__item {
    padding: 16px;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 768px) {
  .contacts__item {
    gap: 24px;
  }
}
.contacts__item--address:before,
.contacts__item--phone:before,
.contacts__item--email:before {
  content: '';
  width: 36px;
  height: 36px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .contacts__item--address:before,
  .contacts__item--phone:before,
  .contacts__item--email:before {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .contacts__item--address:before,
  .contacts__item--phone:before,
  .contacts__item--email:before {
    width: 24px;
    height: 24px;
  }
}
.contacts__item--address {
  width: 50%;
}
@media (max-width: 768px) {
  .contacts__item--address {
    width: 100%;
  }
}
.contacts__item--address:before {
  background-image: url('../images/icons/location.svg');
}
.contacts__item--phone {
  width: 25%;
}
@media (max-width: 768px) {
  .contacts__item--phone {
    width: calc(50% - 5px);
  }
}
.contacts__item--phone:before {
  background-image: url('../images/icons/phone-call.svg');
}
.contacts__item--email {
  width: 25%;
}
@media (max-width: 768px) {
  .contacts__item--email {
    width: calc(50% - 5px);
  }
}
.contacts__item--email:before {
  background-image: url('../images/icons/mail.svg');
}
.contacts__item-text,
.contacts__item-text a {
  max-width: 400px;
  font-size: 18px;
  line-height: 24px;
  color: var(--light-color);
  text-decoration: none;
}
@media (max-width: 1200px) {
  .contacts__item-text,
  .contacts__item-text a {
    max-width: 320px;
    font-size: 14px;
    line-height: 18px;
  }
}
/* Footer Styles */
.footer {
  position: relative;
  background-color: var(--dark-color);
  color: var(--text-color-light);
}
.footer:before,
.footer:after {
  content: '';
  position: absolute;
  top: -32px;
  width: 32px;
  height: 32px;
  /*background-color: var(--dark-color);*/
  /*mask-image: radial-gradient(circle 16px at 0 0, transparent 0, transparent 32px, #000 0);*/
  background-image: url('../images/triangle-inner-radius.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.footer:before {
  left: 0;
  transform: rotate(-90deg);
}
.footer:after {
  right: 0;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .footer:before,
  .footer:after {
    top: -22px;
    width: 22px;
    height: 22px;
  }
}
.footer__container {
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  padding-top: calc(36px + 40px);
  padding-bottom: 36px;
}
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__container:before,
.footer__container:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% - 40px);
  width: calc(100% - 120px);
  /*max-width: calc(1320px + 60px);*/
  height: 40px;
}
@media (max-width: 1200px) {
  .footer__container:before,
  .footer__container:after {
    width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  .footer__container:before,
  .footer__container:after {
    width: calc(100% - 20px);
  }
}
.footer__container:before {
  border: 1px solid var(--medium-gray-color);
  border-top-color: transparent;
  /*border-left-color: transparent;*/
  /*border-right-color: transparent;*/
  border-radius: var(--border-radius-large);
}
@media (max-width: 768px) {
  .footer__container:before {
    border-radius: var(--border-radius-medium);
  }
}
.footer__container:after {
  /*background: linear-gradient(to top, transparent 20%, black 80%);*/
  background: linear-gradient(to bottom, var(--dark-color) 65%, transparent 100%);
}
.footer__logo {
  display: flex;
  font-size: 0;
}
.footer__copyright,
.footer__link {
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color-gray);
}
.footer__logo--lg {
  display: block;
  max-width: 230px;
}
/*# sourceMappingURL=app.css.map */