*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0 solid transparent;
}

*:focus {
  outline: none;
}

a {
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  font-family: "Exo", sans-serif;
}

[type='checkbox'],
[type='radio'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  vertical-align: top;
  overflow: auto;
}

html,
body {
  min-height: 100%;
}

:root {
  --color-text: rgba(0, 0, 0, 0.5);
  --color-text-darker: rgba(0, 0, 0, 0.7);
  --color-text-disabled: rgba(0, 0, 0, 0.3);
  --color-title: #000000;
  --color-accent: #F7BB60;
  --color-accent-2: #F7D960;
  --color-success: #80BA50;
  --font-size: 16px;
  --font-size-small: 14px;
  --font-size-btn: 14px;
  --font-size-medium: 20px;
  --font-size-title-h1: 82px;
  --font-size-title-h2: 48px;
  --font-size-title-h3: 36px;
  --font-size-title-h4: 24px;
  --line-height: 1.25;
  --line-height-big: 1.5;
}

body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background: #FFFFFF;
  position: relative;
  color: var(--color-text);
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-size: var(--font-size);
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-big);
  overflow-x: hidden;
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 4px;
}

.bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-decoration__item {
  position: absolute;
}

.bg-decoration__item--1 {
  top: 0;
  right: 0;
  width: 1172px;
  height: 1843px;
  background: url('../i/back-bg-1.png') no-repeat center center;
}

.bg-decoration__item--2 {
  top: 39%;
  left: 0;
  width: 702px;
  height: 1665px;
  background: url('../i/back-bg-2.png') no-repeat center center;
}

.bg-decoration--our-expertise .bg-decoration__item--2 {
  top: initial;
  bottom: 11%;
}

.bg-decoration__item--3 {
  bottom: -157px;
  right: -20px;
  width: 1464px;
  height: 1803px;
  background: url('../i/back-bg-3.png') no-repeat center center;
}

main {
  -ms-flex: 1;
  flex: 1;
  padding-top: 80px;
}

.center {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
}

.header__inner {
  padding: 20px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

.header__logo {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.header__logo img {
  height: 40px;
  display: block;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: none;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text-darker);
  transition: top 0.28s ease, -webkit-transform 0.28s ease;
  transition: transform 0.28s ease, top 0.28s ease;
  transition: transform 0.28s ease, top 0.28s ease, -webkit-transform 0.28s ease;
}

.menu-toggle::before {
  top: 13px;
  width: 21px;
  box-shadow: 0 13px 0 var(--color-text-darker)
}

.menu-toggle::after {
  top: 19px;
  width: 15px;
}

.menu-toggle[data-state="is-active"]::before,
.menu-toggle[data-state="is-active"]::after {
  top: 18px;
  box-shadow: none;
}

.menu-toggle[data-state="is-active"]::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-toggle[data-state="is-active"]::after {
  width: 21px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-toggle:hover {
  opacity: 0.7;
}

.header__menu,
.header__links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.header__links a {
  color: var(--color-text-darker);
  font-size: var(--font-size-medium);
  line-height: var(--line-height);
  transition: all 0.2s ease;
}

.header__links a[aria-current="page"],
.header__links a:hover {
  color: var(--color-accent);
}

.header__links a[aria-current="page"] {
  pointer-events: none;
  font-weight: 600;
}

.section {
  padding: 35px 0;
}

.decor {
  position: absolute;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: var(--color-accent-2);
}

.hero__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  padding-top: 35px;
}

.hero__title-block {
  position: relative;
  width: 100%;
  max-width: 522px;
}

.decor--1 {
  width: 130px;
  height: 130px;
  opacity: 0.4;
  top: -30px;
  left: -63px;
  z-index: -1;
}

.hero__title-big {
  font-size: var(--font-size-title-h1);
  line-height: var(--line-height);
  font-weight: 700;
}

.hero__title-accent-1,
.hero__title {
  color: var(--color-title);
}

.hero__title-accent-2 {
  color: #D5D5D5;
}

.hero__title-small {
  color: #131946;
  font-size: 23px;
  text-transform: uppercase;
}

.hero__text {
  max-width: 350px;
  margin-top: 10px;
}

.hero__image-block {
  position: relative;
  height: 580px;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.hero__image {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 580px;
  height: 587px;
}

.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.decor--2 {
  width: 283px;
  height: 283px;
  bottom: 0;
  right: -70px;
  z-index: -1;
  opacity: 0;
}

.decor--3 {
  width: 105px;
  height: 105px;
  background: var(--color-accent);
  z-index: -1;
  bottom: 97%;
  right: 0;
  opacity: 0;
}

.about__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 290px;
}

.about__content {
  width: 100%;
  max-width: 575px;
  margin-top: 100px;
  position: relative;
}

.about__content::before {
  content: "";
  position: absolute;
  top: -158px;
  left: -158px;
  width: 824px;
  height: 824px;
  background: url('../i/index-2.png') no-repeat center center;
  z-index: -1;
}

.about__title {
  font-size: var(--font-size-title-h3);
  line-height: var(--line-height);
  font-weight: 700;
  margin-bottom: 13px;
  color: var(--color-title);
}

.about__text {
  margin-bottom: 13px;
  max-width: 500px;
}

.about__text:last-child {
  margin-bottom: 0;
  max-width: 100%;
}

.about__image {
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 512px;
  position: relative;
}

.about__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 666px;
  height: 512px;
  -o-object-fit: contain;
  object-fit: contain;
}

.services__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
}

.services__content {
  max-width: 515px;
}

.services__title {
  font-size: var(--font-size-title-h3);
  line-height: var(--line-height);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-title);
}

.services__items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.services__item-title {
  font-size: var(--font-size-title-h4);
  line-height: var(--line-height);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-accent);
}

.services__decor-block {
  position: relative;
  width: 347px;
  padding-top: 130px;
}

.decor-img-1 {
  width: 100%;
  height: 345px;
  background: url('../i/index-3.png') no-repeat center center;
  background-size: contain;
}

.decor-img-2 {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 20px;
  height: 620px;
  background: url('../i/index-4.png') no-repeat center center;
  background-size: contain;
}

.decor-img-2 .decor {
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
}

.decor-img-2 .decor--4-color {
  background: var(--color-accent);
}

.decor-img-2 .decor--4:nth-child(2) {
  top: 100px;
}

.decor-img-2 .decor--4:nth-child(3) {
  top: 200px;
}

.decor-img-2 .decor--4:nth-child(4) {
  top: 300px;
}

.decor-img-2 .decor--4:nth-child(5) {
  top: 420px;
}

.values__title {
  font-size: var(--font-size-title-h3);
  line-height: var(--line-height);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-title);
  text-align: center;
}

.values__items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 80px;
}

.values__item-title {
  width: 270px;
  height: 270px;
  position: relative;
  margin-bottom: 35px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 43px;
}

.values__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 296px;
  height: 270px;
  z-index: -1;
  -o-object-fit: contain;
  object-fit: contain;
}

.values__item-number {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 2px;
}

.values__item-title-text {
  font-size: var(--font-size-medium);
  line-height: var(--line-height);
  font-weight: 700;
  max-width: 180px;
  text-align: center;
}

.values__item-text {
  padding: 0 20px;
}

.section--bg-image {
  position: relative;
  width: 100%;
  height: 594px;
}

.main--about-us .section--bg-image {
  height: 876px;
}

.section--bg-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.big-logo {
  position: absolute;
  z-index: 1;
}

.big-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.main--home .big-logo {
  top: 95px;
  left: 15%;
  width: 593px;
  height: 142px;
}

.main--our-expertise .big-logo {
  bottom: 175px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 381px;
  height: 91px;
}

.main--about-us .big-logo {
  top: 55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 432px;
  height: 103px;
}

.contact-us__inner {
  padding: 95px 0 75px;
}

.contact-us__title {
  text-align: center;
  font-size: var(--font-size-title-h4);
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-accent);
}

.contact-us__text {
  text-align: center;
  max-width: 508px;
  margin: 0 auto 50px;
}

.contact-us_form {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  border-radius: 40px;
  padding: 60px;
  isolation: isolate;
}

.contact-us_form::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: #eeeeee;
  pointer-events: none;
}

.contact-us_content {
  position: relative;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-us_form .decor {
  z-index: -1;
  opacity: 0;
}

.decor--5 {
  width: 141px;
  height: 141px;
  background: var(--color-accent-2);
  bottom: -80px;
  left: -46px;
}

.decor--6 {
  bottom: calc(100% + 24px);
  left: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.decor--7 {
  left: calc(100% + 50px);
  top: 140px;
}

.contact-us__form-title {
  font-size: var(--font-size-title-h2);
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--color-title);
  text-align: center;
}

.contact-us_fields {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-us_field {
  width: calc(50% - 10px);
}

.contact-us_field.field__message {
  width: 100%;
}

.field_input,
.field_textarea {
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E9E9E9;
  padding: 10px 20px;
  color: var(--color-title);
}

.field ::-webkit-input-placeholder {
  color: var(--color-text-disabled);
}

.field :-ms-input-placeholder {
  color: var(--color-text-disabled);
}

.field ::-ms-input-placeholder {
  color: var(--color-text-disabled);
}

.field ::placeholder {
  color: var(--color-text-disabled);
}

.field_textarea {
  min-height: 120px;
  resize: vertical;
}

.field_error:not(:empty) {
  padding-top: 4px;
  font-size: var(--font-size-small);
  color: #ff0000;
}

.contact-us_button {
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 50px;
  padding: 10px 20px;
  font-size: var(--font-size-btn);
  font-weight: 700;
  line-height: 1.43;
  width: 240px;
  background: var(--color-accent-2);
  color: var(--color-title);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.contact-us_button::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.5) 50%, transparent 62%);
  -webkit-transform: translateX(-160%) skewX(-20deg);
  transform: translateX(-160%) skewX(-20deg);
  transition: -webkit-transform 0.85s ease;
  transition: transform 0.85s ease;
  transition: transform 0.85s ease, -webkit-transform 0.85s ease;
  pointer-events: none;
}

.contact-us_button:hover::after,
.contact-us_button:focus-visible::after {
  -webkit-transform: translateX(160%) skewX(-20deg);
  transform: translateX(160%) skewX(-20deg);
}

.contact-us_success {
  position: relative;
  z-index: 1;
  display: none;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 180px;
  font-size: var(--font-size-title-h3);
  font-weight: 700;
  text-align: center;
  color: var(--color-success);
}

.contact-us_form[data-state="is-success"] .contact-us_success {
  display: -ms-flexbox;
  display: flex;
}

.contact-us_form[data-state="is-success"] .contact-us_content {
  display: none;
}

.maintenance {
  padding: 0;
}

.maintenance__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

.maintenance__image {
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 352px;
  position: relative;
}

.maintenance__image img {
  position: absolute;
  top: -30px;
  right: 0;
  width: 596px;
  height: 352px;
  -o-object-fit: contain;
  object-fit: contain;
}

.maintenance__content {
  width: calc(50% - 15px);
}

.maintenance__title {
  font-size: var(--font-size-title-h3);
  line-height: var(--line-height);
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--color-title);
}

.maintenance__text p {
  margin-bottom: 15px;
}

.maintenance__text p:last-child {
  margin-bottom: 0;
}

.dev-services__title {
  text-transform: uppercase;
  line-height: 1.65;
  margin: 25px 0 50px;
  text-align: center;
}

.dev-services__items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
  max-width: 860px;
  margin: 0 auto 40px;
}

.dev-services__item {
  width: calc(50% - 30px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.dev-services__item-icon {
  width: 156px;
  height: 130px;
  margin-bottom: 25px;
}

.dev-services__item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.dev-services__item-title {
  font-size: 32px;
  line-height: var(--line-height);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-accent-2);
}

.dev-services__item:last-child .dev-services__item-title {
  color: var(--color-accent);
}

.dev-services__notice {
  max-width: 860px;
  margin: 40px auto 0;
  text-align: center;
  font-size: var(--font-size-title-h4);
  line-height: var(--line-height);
  font-weight: 700;
  color: var(--color-success);
}

.consulting__title,
.marketing__title,
.processing__title,
.support__title {
  font-size: var(--font-size-title-h3);
  line-height: var(--line-height);
  font-weight: 700;
  color: var(--color-title);
  text-align: center;
  max-width: 860px;
  margin: 0 auto 20px;
}

.consulting__text,
.marketing__text,
.processing__text,
.support__text {
  max-width: 860px;
  margin: 0 auto 25px;
}

.consulting__text p,
.marketing__text p,
.processing__text p,
.support__text p {
  margin-bottom: 15px;
}

.consulting__text p:last-child,
.marketing__text p:last-child,
.processing__text p:last-child,
.support__text p:last-child {
  margin-bottom: 0;
}

.chart {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.chart__main-title,
.chart__title {
  position: absolute;
}

.chart__title-number {
  display: none;
}

.chart__main-title {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 141px;
  height: 141px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 15px;
}

.chart__title {
  font-size: var(--font-size-medium);
  line-height: var(--line-height);
  font-weight: 700;
  width: 180px;
}

.chart__title--1 {
  top: 57px;
  left: calc(50% - 450px);
  color: #BEC45C;
  text-align: right;
}

.chart__title--2 {
  top: 42px;
  right: calc(50% - 450px);
  color: #F8CB4B;
}

.chart__title--3 {
  top: 50%;
  left: calc(50% - 495px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #9587CB;
  text-align: right;
}

.chart__title--4 {
  top: 50%;
  right: calc(50% - 495px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #F58A63;
}

.chart__title--5 {
  bottom: 60px;
  left: calc(50% - 450px);
  color: #DC5A7D;
  text-align: right;
}

.chart__title--6 {
  bottom: 47px;
  right: calc(50% - 450px);
  color: #3EB2D2;
}

.marketing__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 75px;
  max-width: 860px;
  margin: 40px auto 0;
}

.marketing__items {
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 30px;
}

.marketing__item-title {
  font-size: var(--font-size-title-h4);
  line-height: var(--line-height);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.blocks {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.blocks__title {
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.blocks__row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.blocks__item {
  position: relative;
  margin-left: -13px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 40px;
  width: 215px;
  height: 194px;
  max-width: 100%;
  aspect-ratio: 215 / 194;
  -webkit-clip-path: polygon(89.89% 38.72%,
    89.89% 0%,
    0% 0%,
    0% 36.95%,
    11.61% 49.81%,
    0% 62.68%,
    0% 99.63%,
    89.89% 99.63%,
    89.89% 60.9%,
    99.9% 49.81%);
  clip-path: polygon(89.89% 38.72%,
    89.89% 0%,
    0% 0%,
    0% 36.95%,
    11.61% 49.81%,
    0% 62.68%,
    0% 99.63%,
    89.89% 99.63%,
    89.89% 60.9%,
    99.9% 49.81%);
}

.blocks__item--1,
.blocks__item--10 {
  background: #9587CB;
}

.blocks__item--2,
.blocks__item--9 {
  background: #3EB2D2;
}

.blocks__item--3,
.blocks__item--8 {
  background: #FFC851;
}

.blocks__item--4,
.blocks__item--7 {
  background: #FF9740;
}

.blocks__item--5,
.blocks__item--6 {
  background: #FF7170;
}

.blocks__item--last {
  padding-right: 20px;
  width: 194px;
  aspect-ratio: 194 / 194;
  -webkit-clip-path: polygon(100% 0%,
    0% 0%,
    0% 36.95%,
    11.61% 49.81%,
    0% 62.68%,
    0% 99.63%,
    100% 99.63%);
  clip-path: polygon(100% 0%,
    0% 0%,
    0% 36.95%,
    11.61% 49.81%,
    0% 62.68%,
    0% 99.63%,
    100% 99.63%);
}

.blocks__item-title {
  line-height: var(--line-height);
  font-weight: 700;
  color: #FFFFFF;
}

.about-us {
  padding-top: 0;
}

.about-us__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 50px;
}

.about-us__image {
  margin-top: 50px;
}

.about-us__content {
  max-width: 440px;
}

.about-us__title {
  font-size: var(--font-size-title-h3);
  line-height: var(--line-height);
  margin-bottom: 40px;
  color: var(--color-title);
}

.about-us__items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.about-us__item-title {
  font-size: var(--font-size-title-h4);
  line-height: var(--line-height);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-accent);
}

.info__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.info__title {
  font-size: var(--font-size-title-h4);
  line-height: var(--line-height);
  font-weight: 700;
  color: var(--color-accent);
  text-align: center;
  max-width: 790px;
}

.info__text {
  max-width: 585px;
  text-align: center;
}

.footer {
  padding: 40px 0;
}

.footer__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.footer__copyright {
  font-size: var(--font-size-small);
}

.footer__links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.footer__links a {
  color: var(--color-text-darker);
  transition: color 0.2s ease;
}

.footer__links a:hover,
.footer__links a[aria-current="page"] {
  color: var(--color-accent);
  font-weight: 600;
}

.footer__links a[aria-current="page"] {
  pointer-events: none;
}

.legacy {
  text-align: center;
}

.terms-of-use__content,
.privacy-policy__content {
  margin: 0 auto;
  max-width: 980px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.legacy h1 {
  font-size: var(--font-size-title-h4);
  line-height: var(--line-height);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.legacy h2 {
  font-size: 20px;
  line-height: var(--line-height);
  font-weight: 700;
  color: var(--color-title);
}

.legacy ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  list-style: disc;
  list-style-position: inside;
}

#js-scroll-top {
  position: fixed;
  z-index: 50;
  right: max(20px, env(safe-area-inset-right, 0px));
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(247, 187, 96, 0.45);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(14px) scale(0.94);
  transform: translateY(14px) scale(0.94);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    box-shadow 0.25s ease,
    -webkit-transform 0.35s ease;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease,
    box-shadow 0.25s ease;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease,
    box-shadow 0.25s ease,
    -webkit-transform 0.35s ease;
}

#js-scroll-top[data-scroll-top-shown] {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#js-scroll-top:hover {
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.12),
    0 3px 10px rgba(247, 187, 96, 0.55);
}

#js-scroll-top:focus-visible {
  outline: 2px solid var(--color-title);
  outline-offset: 3px;
}

#js-scroll-top::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-style: solid;
  border-color: var(--color-title);
  border-width: 2.5px 2.5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  #js-scroll-top {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 1200px) {
  .main {
    overflow: hidden;
  }

  .hero__inner {
    gap: 20px;
  }

  .hero__image-block {
    height: 400px;
  }

  .hero__image {
    width: 400px;
    height: 407px;
  }

  .decor--2 {
    width: 175px;
    height: 175px;
    right: -90px;
  }

  .decor--3 {
    width: 65px;
    height: 65px;
  }

  .about__inner {
    gap: 20px;
    padding-bottom: 200px;
  }

  .about__content {
    max-width: 500px;
  }

  .about__content::before {
    top: -130px;
    left: -115px;
    width: 710px;
    height: 710px;
    background-size: contain;
  }

  .about__image img {
    width: 470px;
    height: 360px;
  }

  .values__items {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .values__item {
    width: 230px;
  }

  .values__item-title {
    width: 230px;
    height: 230px;
    padding-bottom: 30px;
  }

  .values__item-img img {
    width: 255px;
    height: 230px;
  }

  .values__item-number {
    font-size: 32px;
  }

  .maintenance__image img {
    width: 430px;
    height: 270px;
  }

  .blocks__item {
    width: 200px;
    height: 180px;
  }

  .main--about-us .section--bg-image {
    height: 680px;
  }
}

@media (max-width: 1023px) {
  .menu-toggle {
    display: -ms-flexbox;
    display: flex;
  }

  .header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    display: none;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 20px;
    background: #fffdf1;
  }

  #js-header-menu[data-state="is-visible"] {
    display: -ms-flexbox;
    display: flex;
  }

  .hero__inner {
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 0;
  }

  .hero__image-block {
    width: 400px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-right: 50px;
  }

  .hero__text {
    max-width: initial;
  }

  .decor--3 {
    bottom: 85%;
  }

  .about--home {
    padding: 0;
  }

  .about__inner {
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
  }

  .about__image {
    height: 325px;
    width: 395px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-top: 130px;
  }

  .about__image img {
    width: 420px;
    height: 325px;
  }

  .services__inner {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .services__decor-block {
    padding: 0;
    width: 270px;
    height: 270px;
  }

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

  .decor-img-2 {
    position: absolute;
    left: 5px;
    top: calc(100% + 20px);
  }

  .services__content {
    width: 100%;
    max-width: 100%;
    padding-left: 50px;
  }

  .values__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-bottom: 0;
  }

  .values__item {
    width: 40%;
  }

  .section--bg-image,
  .main--about-us .section--bg-image {
    height: 400px;
  }

  .main .big-logo {
    width: 260px;
    height: 88px;
  }

  .contact-us__inner {
    padding: 0;
  }

  .decor--5,
  .decor--7 {
    display: none;
  }

  .maintenance__inner {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .maintenance__image {
    width: 430px;
    height: 270px;
  }

  .maintenance__content {
    width: 100%;
  }

  .marketing__content {
    gap: 20px;
  }

  .marketing__image {
    width: 35%;
  }

  .marketing__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .marketing__items {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .about-us__image {
    display: none;
  }

  .about-us__content {
    max-width: 100%;
  }

  .bg-decoration--about-us .bg-decoration__item--2 {
    display: none;
  }

  .bg-decoration--our-expertise .bg-decoration__item--2 {
    bottom: 5%;
  }

  .chart__image {
    width: 65%;
  }

  .chart__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .chart__main-title {
    width: 120px;
    height: 105px;
    font-size: 14px;
    margin-top: 5px;
  }

  .chart__title {
    font-size: 16px;
    width: 140px;
  }

  .chart__title--1 {
    top: 9%;
    left: 1%;
  }

  .chart__title--2 {
    top: 5%;
    right: 1%;
  }

  .chart__title--3 {
    left: -3%;
  }

  .chart__title--4 {
    right: -3%;
  }

  .chart__title--5 {
    bottom: 10%;
    left: 1%;
  }

  .chart__title--6 {
    bottom: 8%;
    right: 1%;
  }

  .blocks__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .blocks__item {
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 270px;
  }
}

@media (max-width: 767px) {
  :root {
    --font-size-title-h1: 50px;
    --font-size-title-h2: 36px;
    --font-size-title-h3: 32px;
    --font-size-title-h4: 20px;
  }

  .center {
    width: 100%;
    padding: 0 20px;
  }

  body[data-state~="nav-open"] {
    overflow: hidden;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
  }

  .header[data-state="is-open"] {
    position: fixed;
    width: 100vw;
    left: 0;
    top: 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 100;
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    padding-top: 100px;
    border-top: none;
    overflow-y: auto;
  }

  .header__links {
    width: 100%;
  }

  .header__links {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .header__links a {
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }

  .dropdown_button {
    min-width: 260px;
  }

  .hero__title-small {
    font-size: 18px;
  }

  .section {
    padding: 20px 0;
  }

  .decor--1 {
    width: 70px;
    height: 70px;
    top: -15px;
    left: -15px;
  }

  .hero__image-block {
    width: 80vw;
    height: 80vw;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-right: 0;
  }

  .hero__image {
    width: 80vw;
    height: 80vw;
  }

  .decor--2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: -35px;
  }

  .decor--3 {
    width: 44px;
    height: 44px;
  }

  .about__content {
    margin-top: 80px;
  }

  .about__text {
    color: var(--color-text-darker);
  }

  .about__content::before {
    top: -105px;
    left: -145px;
  }

  .about__image {
    height: 71vw;
    width: 92vw;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-top: 50px;
  }

  .about__image img {
    width: 100%;
    height: auto;
  }

  .services__inner {
    gap: 10px;
  }

  .services__decor-block {
    width: 160px;
    height: 160px;
  }

  .decor-img-2 {
    top: 88%;
  }

  .services__title {
    margin-bottom: 20px;
  }

  .services__items {
    gap: 20px;
  }

  .values__item {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
  }

  .main .big-logo {
    top: 40px;
    left: 20px;
  }

  .contact-us_form {
    padding: 30px;
  }

  .contact-us__form-title,
  .contact-us_fields {
    margin-bottom: 20px;
  }

  .contact-us_button,
  .contact-us_field {
    width: 100%;
  }

  .maintenance__image,
  .maintenance__image img {
    width: 100%;
    height: auto;
  }

  .maintenance__image img {
    position: static;
  }

  .dev-services__title {
    margin: 0 0 20px;
  }

  .dev-services__items {
    gap: 20px;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .dev-services__item {
    width: 100%;
  }

  .marketing__image {
    display: none;
  }

  .main--our-expertise .big-logo {
    -webkit-transform: none;
    transform: none;
    bottom: 60px;
    top: initial;
  }

  .main--about-us .big-logo {
    -webkit-transform: none;
    transform: none;
  }

  .chart__image {
    display: none;
  }

  .chart {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .chart__main-title {
    position: static;
    -webkit-transform: none;
    transform: none;
    margin-top: 0;
    width: 100%;
    height: initial;
    font-size: var(--font-size-title-h4);
    margin-bottom: 20px;
  }

  .chart__titles {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px;
    font-size: var(--font-size-medium);
  }

  .chart__title {
    width: 100%;
    position: static;
    -webkit-transform: none !important;
    transform: none !important;
    text-align: left;
  }

  .chart__title-number {
    display: inline-block;
    margin-right: 10px;
  }

  .blocks__item {
    width: 100%;
    max-width: 80vw;
    margin-left: 0;
    height: auto;
    min-height: 200px;
    aspect-ratio: 1.5 / 1;
    text-align: center;
    padding: 50px 30px;
    clip-path: polygon(61.28% 89.89%,
      100% 89.89%,
      100% 0%,
      63.05% 0%,
      50.19% 11.61%,
      37.32% 0%,
      0.37% 0%,
      0.37% 89.89%,
      39.1% 89.89%,
      50.19% 99.9%);
  }

  .blocks,
  .blocks__row {
    gap: 0;
  }

  .blocks__title {
    margin-bottom: 20px;
  }

  .blocks__item--10 {
    clip-path: polygon(100% 100%,
      100% 0%,
      63.05% 0%,
      50.19% 11.61%,
      37.32% 0%,
      0.37% 0%,
      0.37% 100%);
  }
}