/* =========================
   Reset
========================= */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

textarea {
  resize: vertical;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

/* =========================
   Fonts
========================= */
@font-face {
  font-family: "Inter";
  src: url("fonts/InterTight-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/InterTight-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Style
========================= */
body {
  font-family: 'Inter';
  letter-spacing: -0.32px;
  min-width: 320px;
  color: #151515;
}

.wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: #FFFFFF;
}

.main {
  flex: 1 0 auto;
}

.container {
  margin: 0 auto;
  max-width: 1880px;
  padding: 0 20px;
}

/* =========================
   Header
========================= */

.header {
  position: fixed;
  display: flex;
  align-items: center;
  margin-top: 20px;
  width: 100%;
  background-color: transparent;
  height: 92px;
  z-index: 10;
}

.header__container {
  width: 100%;
}

.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  flex: 0 0 226px;
}

.header__logo img {
  display: block;
  width: 226px;
  object-fit: cover;
  object-position: center;
}

.header__block {
  display: flex;
  align-items: center;
  gap: clamp(60px, -194.1931px + 36.2615vw, 415px);
}

.header__menu {
  display: flex;
  gap: 30px;
  color: #FFFFFF;

}

.btn {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 14px 46px 14px 20px;
  font-weight: 500;
  background-color: #FFFFFF;
  border: 4px solid #E0E0E0;
  border-radius: 6px;
}

.header__button {
  color: #151515;
}

.header__link {
  position: relative;
}



.btn:after {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url('img/arrow.svg') center / cover no-repeat;
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;

  height: auto;

  z-index: 0;
}

.hero__bg {
  position: fixed;
  inset: 0;
  background: url('img/hero-bg-v2.webp') 38% center / cover no-repeat;
  z-index: -1;

  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}

.hero__container {
  display: flex;
  align-items: end;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: clamp(300px, 245.4545px + 15.1515vw, 500px);
  padding-bottom: clamp(30px, 16.3636px + 3.7879vw, 80px);
}

body.hero-bg-on .hero__bg {
  opacity: 1;
  visibility: visible;
}


.header__container {
  transition: all .9s ease;
}

.header__container.is-small {
  display: flex;
  max-width: 756px;
  width: auto;
  height: 72px;
  transition: all 1.2s ease;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 0 10px;
}

.header__container.is-small .header__logo {
  flex: 0 0 182px;
  transition: all .9s ease;
}

.header__container.is-small .header__block {
  gap: 60px;
  flex: 1 1 auto;
}

.header__container.is-small .header__body {
  gap: clamp(30px, -5.8018px + 5.1073vw, 80px);
}

.header__container.is-small .header__menu {
  padding-right: 0px;
  color: #151515;
  transition: all .9s ease;
}

.header__container.is-small .header__logo img {
  width: 182px;
}


.hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.parallax-text {
  will-change: transform;
  transition: transform 0.05s linear;
}

.hero__title {
  flex: 0 1 50%;
  max-width: 870px;
  line-height: 1;
  font-size: clamp(28px, 18.1818px + 2.7273vw, 64px);
  font-weight: 500;
}

.hero__block-text {
  flex: 0 1 50%;
}

.hero__inner-block {
  display: flex;
  align-items: end;
  gap: clamp(30px, -28.9091px + 16.3636vw, 246px);
  color: #FFFFFF;
}

.hero__block-list {
  display: flex;
  gap: clamp(42px, 37.0909px + 1.3636vw, 60px);
}

.hero__block-item {
  position: relative;
  margin-bottom: clamp(32px, 18.9091px + 3.6364vw, 80px);
  font-size: clamp(12px, 8.4706px + 0.9804vw, 16px);
  padding-left: 22px;
  opacity: .6;
  white-space: nowrap;
}

.prices-card__middle-item:after,
.prices-card__middle-item::before,
.hero__block-item:after,
.hero__block-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #fff;
  border-radius: 6px;
  transform: translateY(-50%);
}

.prices-card__middle-item:after,
.hero__block-item:after {
  transform: translateY(-50%);
}

.prices-card__middle-item::before,
.hero__block-item:before {
  transform: translateY(-50%) rotate(90deg);
}

.hero__text {
  max-width: 670px;
  font-size: clamp(16px, 14.9091px + 0.303vw, 20px);
}

/* =========================
  Solutions
========================= */
.solutions {
  position: relative;
  z-index: 2;
  padding-top: clamp(80px, 58.1818px + 6.0606vw, 160px);
  background: #f4f4f4;
}

.title {
  font-weight: 500;
  font-size: clamp(24px, 20.7273px + 0.9091vw, 36px);
}

.solutions__body {
  display: flex;
  align-items: end;
}

.solutions__body-right {
  max-width: 540px;
  margin-bottom: clamp(60px, -11.4286px + 10.2041vw, 160px);
}

.solutions__text-top {
  margin-bottom: clamp(24px, 21.8182px + 0.6061vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  font-size: clamp(16px, 14.9091px + 0.303vw, 20px);
}

.solutions__text-bottom {
  max-width: 415px;
  line-height: 1.3;
  font-size: 16px;
}

.solutions__text-bottom.first {
  margin-bottom: 15px;
}

/* =========================
   Service
========================= */
.service {
  position: relative;
  z-index: 2;
  background-color: #FFFFFF;
}

.service__container {
  background-color: #F0F0F0;
  padding-top: clamp(80px, 58.1818px + 6.0606vw, 160px);
  padding-bottom: 80px;
  border-radius: 12px;
}

.service__title {
  margin-bottom: clamp(16px, 11.6364px + 1.2121vw, 32px);
}

.service__block-text {
  margin-bottom: 40px;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid-card {
  display: flex;
  padding: clamp(20px, -22.8571px + 6.1224vw, 80px);
  background-color: #F7F7F7;
  border-radius: 12px;
  justify-content: space-between;
  gap: 70px;
}


.grid-card__number {
  margin-bottom: 12px;
  font-size: clamp(16px, 15.4545px + 0.1515vw, 18px);
  line-height: 1.3;
  font-weight: 500;
}

.grid-card__text,
.service__bottom-text {
  font-size: clamp(14px, 13.4545px + 0.1515vw, 16px);
  line-height: 1.3;
}

.grid-card__text {
  max-width: 265px;
}

.grid-card__right {
  max-width: 335px;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.grid-card__right-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.service__bottom {
  margin-top: clamp(36px, 26.7273px + 2.5758vw, 70px);
  display: flex;
  gap: 20px;
}

.service__bottom-left,
.service__bottom-right {
  flex: 0 0 50%;
}

.service__bottom-text {
  margin-bottom: clamp(16px, 9.4545px + 1.8182vw, 40px);
}

.service__bottom-subtext {
  line-height: 1.3;
  font-weight: 500;
  font-size: clamp(14px, 12.3636px + 0.4545vw, 20px);

}

.service__bottom-subtext a {
  text-decoration: underline;
  transition: all .3s ease;
}

/* =========================
  Projects
========================= */
.projects {
  position: relative;
  z-index: 2;
  background-color: #FFFFFF;
  color: #FFFFFF;
}

.projects__container {
  margin-top: 40px;
  padding-top: clamp(80px, 58.1818px + 6.0606vw, 160px);
  padding-bottom: 80px;
  background-color: #151515;
  border-radius: 12px;
}

.projects__title {
  margin-bottom: clamp(16px, 2.9091px + 3.6364vw, 64px);
}

.projects__body {
  display: flex;
  margin-bottom: clamp(36px, 28.3636px + 2.1212vw, 64px);
  gap: 20px;
}

.projects__left {
  flex: 0 0 50%;
}

.projects__text {
  max-width: 415px;
  line-height: 1.3;
  font-size: 16px;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.projects__grid-card {
  border: 1px solid #303030;
  min-height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.grid-card__radius {
  height: 100%;
  overflow: hidden;
  padding: 9px;
  background-color: #212121;

}

.grid-card__radius img {
  height: 100%;
  border-radius: 12px;
  transition: all .5s ease;
}

.projects__grid-next {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.projects__grid-text {
  margin-bottom: 24px;
  font-size: clamp(24px, 21.8182px + 0.6061vw, 32px);
}

.projects__grid-button {
  color: #151515 !important;
}

/* =========================
  Results
========================= */
.results {
  margin-top: 40px;
  margin-bottom: 80px;
}

.results__container {
  padding-top: clamp(75px, 51.8182px + 6.4394vw, 160px);
  background-color: #F0F0F0;
  border-radius: 12px;
  overflow: hidden;

}

.results__inner {
  display: flex;
  padding-left: 80px;
  padding-right: 80px;
}

.results__title {
  margin-bottom: 20px;
}

.results__text {
  max-width: 415px;
  line-height: 1.3;
  margin-bottom: clamp(52px, 38.6364px + 3.7121vw, 101px);
}

.results__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(60px, -230.6977px + 23.2558vw, 160px);
  row-gap: clamp(35px, -270.2326px + 24.4186vw, 140px);
}

.results__left {
  margin-right: -53px;
  margin-bottom: clamp(52px, 22.5455px + 8.1818vw, 160px);
}

.results__card-number {
  color: #F63629;
  font-size: clamp(64px, 52px + 3.3333vw, 108px);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.results__card-text {
  font-weight: 500;
  font-size: clamp(16px, 13.8182px + 0.6061vw, 24px);
}

.results__right {
  position: relative;
  width: 100%;
  flex-basis: 1088px;
}

.results__right img {
  position: absolute;
  object-fit: contain;
  bottom: 0;
}

/* =========================
  Prices
========================= */
.prices {
  background-color: #F7F7F7;
  padding-top: clamp(80px, 58.1818px + 6.0606vw, 160px);
  padding-bottom: clamp(80px, 58.1818px + 6.0606vw, 160px);
}

.prices__grid {
  gap: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.prices-card {
  display: flex;
  flex-direction: column;
  padding: 48px;
  border-radius: 12px;
  overflow: hidden;
  border: 12px solid #F0F0F0;
}

.prices-card__top,
.prices-card__middle,
.prices-card__bottom {
  background-color: #F7F7F7;
}

.prices__title {
  margin-bottom: clamp(31px, 26.3636px + 1.2879vw, 48px);
}

.prices-card__top-name {
  margin-bottom: 16px;
  font-size: clamp(20px, 18.9091px + 0.303vw, 24px);
  line-height: 1;
}

.prices-card__top-subname {
  line-height: 1.3;
  font-size: 14px;
  max-width: 90px;
}

.prices-card__top {
  padding-bottom: 32px;
}

.prices-card__middle-list.border,
.prices-card__top,
.prices-card__middle {
  border-bottom: 1px solid #E0E0E0;
}

.prices-card__middle {
  padding: 32px 0px;
}

.prices-card__middle-list.border {
  padding-bottom: 32px;
}

.prices-card__bottom {
  padding-top: 32px;
}

.prices-card__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
}

.prices-card__middle-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prices-card__middle-item {
  position: relative;
  line-height: 1;
  padding-left: 22px;
  font-size: 16px;
  color: #666666;
}

.prices-card__middle-item.last {
  line-height: 1.3;
}

.prices-card__middle-item::after,
.prices-card__middle-item::before {
  background-color: #666666;
}

.prices-card__middle-item.last {
  padding-left: 0;
}

.prices-card__middle-item.last::after,
.prices-card__middle-item.last::before {
  display: none;
}

.prices-card__button {
  max-width: 155px;
  margin-top: 48px;
  padding: 12px 46px 12px 20px;
  position: relative;
  display: inline-flex;
  background-color: #151515;
  border: 4px solid #555555;
  color: #FFFFFF !important;
}

.prices-card__bottom-price {
  padding-top: 32px;
  font-size: 14px;
  line-height: 1;
}

.prices-card__value {
  font-size: clamp(20px, 18.382px + 0.4494vw, 24px);
  letter-spacing: -0.02em;
}

.prices-card__bottom-price {
  align-items: end;
  display: flex;
  gap: .3em;
}

.prices-card__button:after {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url(img/arrow-white.svg) center / cover no-repeat;
}

/* =========================
  Feedback
========================= */
.feedback {
  position: relative;
  padding-bottom: clamp(61px, 14.9091px + 12.803vw, 230px);
  z-index: 2;
  background-color: #F7F7F7;
}

.feedback__inner {
  display: flex;
  gap: 20px;
}

.feedback__left,
.feedback__right {
  flex: 1 1 50%;
}

.feedback__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}

.feedback__title {
  margin-bottom: clamp(20px, 12.3636px + 2.1212vw, 48px);
  font-weight: 500;
  font-size: clamp(24px, 20.7273px + 0.9091vw, 36px);
}

.feedback__subtitle {
  max-width: 450px;
  line-height: 1.3;
  font-size: 16px;
  color: #666666;
}

.feedback__text {
  margin-bottom: clamp(36px, 18px + 5vw, 102px);
  max-width: 353px;
  line-height: 1.2;
  font-weight: 500;
  font-size: clamp(16px, 14.9091px + 0.303vw, 20px);
}

.feedback__button {
  margin-bottom: 49px;
  font-weight: 400;
  max-width: 175px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form {
  padding-top: 48px;
  padding-bottom: clamp(48px, 64.5455px + -0.9848vw, 61px);
  padding-left: clamp(10px, -0.3636px + 2.8788vw, 48px);
  padding-right: clamp(10px, -0.3636px + 2.8788vw, 48px);
  background-color: #F0F0F0;
  border-radius: 12px;
}

.contact-form__title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: clamp(16px, 14.9091px + 0.303vw, 20px);
}

.contact-form__subtitle {
  margin-bottom: clamp(36px, 32.7273px + 0.9091vw, 48px);
  line-height: 1.3;
  font-size: clamp(14px, 13.4545px + 0.1515vw, 16px);
}

.contact-form__label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: clamp(12px, 11.4545px + 0.1515vw, 14px);
  color: #666666;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 21.8182px + 0.6061vw, 32px);
}

.contact-form__input,
.contact-form__textarea {
  background-color: #FFFFFF;
  width: 100%;
  padding: 17px;
  resize: none;
  border-radius: 6px;
  border: 1px solid #0000000d;
  transition: all .3s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border: 1px solid #00000029;
}

.contact-form__submit {
  position: relative;
  justify-content: center;
  display: inline-flex;
  width: 100%;
  margin-top: 24px;
  background-color: #151515;
  border: 4px solid #555555;
  color: #FFFFFF;
}

.contact-form__submit:after {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  right: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(50px);
  background: url(img/arrow-white.svg) center / cover no-repeat;
}


/* =========================
   Footer
========================= */
.footer {
  position: relative;
  z-index: 2;
  background-color: #F7F7F7;
  color: #FFFFFF;
}

.footer__container {
  margin-bottom: clamp(10px, 1.8182px + 2.2727vw, 40px);
  padding-top: clamp(80px, 74.5455px + 1.5152vw, 100px);
  padding-bottom: clamp(32px, 37.0909px + -0.303vw, 36px);
  padding-left: clamp(20px, 3.6364px + 4.5455vw, 80px);
  padding-right: clamp(20px, 3.6364px + 4.5455vw, 80px);
  border-radius: 12px;
  background-color: #151515;
}

.footer__inner {
  display: flex;
  gap: 20px
}

.footer__left,
.footer__right {
  flex: 1 1 50%;
}

.footer__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer__logo {
  max-width: clamp(144px, 121.6364px + 6.2121vw, 226px);
  margin-bottom: clamp(32px, 25.4545px + 1.8182vw, 56px);
}

.footer__title {
  margin-bottom: clamp(16px, 13.8182px + 0.6061vw, 24px);
  font-size: clamp(16px, 14.9091px + 0.303vw, 20px);
}

.footer__text {
  max-width: clamp(370px, 227.8512px + 13.2231vw, 450px);
  margin-bottom: clamp(36px, 31.0909px + 1.3636vw, 54px);
  font-size: clamp(14px, 13.4545px + 0.1515vw, 16px);
  line-height: 1.3;
  opacity: .6;
}

.footer__copy {
  font-size: 14px;
  opacity: .3;
}

.footer__right {
  display: flex;
  justify-content: space-between;
}

.footer__right-1,
.footer__right-list {
  display: flex;
  flex-direction: column;
}

.footer__right-1 {
  justify-content: space-between;
}

.footer__right-link {
  display: inline-block;
  position: relative;
  opacity: .4;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer__right-list {
  gap: 20px;
}

.footer__right-2 {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.footer__social.email {
  margin-bottom: clamp(20px, 16.7273px + 0.9091vw, 32px);
  font-size: clamp(24px, 19.6364px + 1.2121vw, 40px);
}

.footer__social {
  position: relative;
  margin-bottom: clamp(36px, 28.3636px + 2.1212vw, 64px);
  display: block;
  font-size: clamp(24px, 20.7273px + 0.9091vw, 36px);
  transition: all 0.8s ease;
}

.footer__desc {
  margin-bottom: clamp(36px, 29.7273px + 1.7424vw, 59px);
  line-height: 1.3;
  max-width: 311px;
  font-size: clamp(14px, 13.4545px + 0.1515vw, 16px);
  opacity: .6;
}

.footer__right-link.copy,
.footer__right-link.be {
  display: none;
}

.footer__right-link.white {
  opacity: 1;
}

/* =========================
   Сursor
========================= */

.custom-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 9999;
  background: url("img/cursor.png") center/cover no-repeat;

  transform: translate(-50%, -50%) scale(.85);
  opacity: 0;

  transition: opacity .25s ease, transform .25s ease, filter .2s ease;
}

.custom-cursor.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.navigator {
  cursor: auto;

}

.footer__right-link.navigator::after {
  display: none;
}

/* =========================
  Popup
========================= */
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  inset: 0;
  background-color: #151515E6;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;

}

.popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup__body {
  position: relative;
  top: 50%;
  left: 50%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 78px;
  padding-bottom: 79px;
  max-width: 420px;
  background-color: #F7F7F7;
  border-radius: 12px;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.popup__close {
  position: absolute;
  right: 12px;
  top: 12px;
}

.popup__title {
  font-size: clamp(27px, 15px + 3.75vw, 30px);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 10px;
}

.popup__text {
  font-size: 20px;
  text-align: center;
  color: #151515;
}

.popup.success .popup__title {
  color: #35B982;
}

.popup.error .popup__title {
  color: #F63629;
}

/* =========================
  Media
========================= */
@media (any-hover: hover) {
  .projects__grid-card a:hover {
    cursor: url("img/cursor.png") 40 40, auto;
  }

  .contact-form__input:hover,
  .contact-form__textarea:hover {
    border: 1px solid #00000052;
  }

  .footer__social::after,
  .footer__right-link::after,
  .header__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .header__container.is-small .header__link::after {
    background-color: #151515;
  }

  .footer__social:hover::after,
  .footer__right-link:hover::after,
  .header__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .footer__social:not(:hover)::after,
  .footer__right-link:not(:hover)::after,
  .header__link:not(:hover)::after {
    transform-origin: right;
  }


  .btn:hover::after {
    animation: arrow-slide 0.6s ease;
  }

  @keyframes arrow-slide {
    0% {
      transform: translate(0, -50%);
    }

    40% {
      transform: translate(-12px, -50%);
    }

    100% {
      transform: translate(0, -50%);
    }
  }

  .contact-form__submit::after {
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    right: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(50px);
    background: url(img/arrow-white.svg) center / cover no-repeat;
  }

  .contact-form__submit:hover::after {
    animation: arrow-fly-long 0.7s cubic-bezier(.4, 0, .2, 1);
  }

  @keyframes arrow-fly-long {
    0% {
      transform: translateY(-50%) translateX(50px);
    }

    45% {
      transform: translateY(-50%) translateX(40px);
    }

    100% {
      transform: translateY(-50%) translateX(50px);
    }
  }

  .service__bottom-subtext a:hover {
    color: #F63629;
  }
}

@media (max-width:1900px) {
  .footer__container {
    margin: 0 10px 10px;
  }
}

@media (max-width:1250px) {
  .service__grid {
    grid-template-columns: 1fr;
  }

  .grid-card__text {
    max-width: fit-content;
  }

  .grid-card__right {
    max-width: 500px;
  }

  .service__bottom-left {
    display: none;
  }

  .service__bottom-left,
  .service__bottom-right {
    flex: 1 1 auto;
  }

  .grid-card__left {
    max-width: 350px;
  }

  .results__left {
    margin-right: 0;
  }

  .service__container {
    border-radius: 0px;
  }

  .prices__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results__inner {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
  }

  .results__cards {
    column-gap: clamp(30px, 27.9775px + 0.5618vw, 35px);
    row-gap: clamp(30px, 27.9775px + 0.5618vw, 35px);
  }

  .results__right {
    width: auto;
    flex-basis: auto;
    margin-right: -10px;
    margin-left: -10px;
  }

  .results__right img {
    position: static;
  }
}

@media (max-width:1091px) {
  .header {
    margin-top: 10px;
    height: 82px;
  }

  .hero__inner-block {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__title {
    line-height: 1.2;
  }

  .header__logo {
    flex: 0 0 144px;
  }

  .header__logo img {
    width: 144px;
  }

  .header__button {
    width: 147px;
    font-size: 14px;
    padding: 10px 36px 10px 10px;
    background-color: #FFFFFF;
    border: 4px solid #E0E0E0;
    border-radius: 6px;
  }

  .header__button:after {
    right: 10px;
    background: url(img/arrow.svg) center / cover no-repeat;
  }
}

@media (max-width:1037px) {
  .footer__inner {
    flex-direction: column;
  }

  .footer__copy {
    display: none;
  }

  .footer__text {
    max-width: 100%;
  }

  .footer__right-link.copy,
  .footer__right-link.be {
    display: block;
  }

  .footer__right-link.be {
    margin-bottom: 12px;
  }


  .footer__right-1 {
    display: none;
  }

  .footer__right-2 {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width:993px) {
  .feedback__inner {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width:769px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero__block-text {
    flex: 1 1 auto;
  }

  .results,
  .projects__container {
    margin-top: 0px;
  }

  .results__container {
    border-radius: 0px;
  }

  .results {
    margin-bottom: 0px;
  }

  .projects__left {
    display: none;
  }

  .projects__text {
    max-width: 100%;
  }

  .projects__grid {
    grid-template-columns: 1fr;
  }

  .projects__container {
    border-radius: 0px;
  }

  .projects__grid-next {
    margin-top: 44px;
  }

  .prices-card {
    padding: 36px 20px 48px;
  }
}

@media (max-width:700px) {

  .header__menu,
  nav {
    display: none;
  }

  .header {
    position: absolute;
  }

  .solutions__body {
    flex-direction: column;
    align-items: stretch;
  }

  .solutions__body-right {
    order: 1;
    margin-bottom: 32px;
  }

  .solutions__body-left {
    order: 2;
  }

  .solutions__body-left img {
    min-height: 376px;
  }

  .solutions__title {
    margin-bottom: 24px;
  }

  .solutions__title span {
    display: block;
    opacity: 0;
    visibility: hidden;
  }

  .grid-card {
    flex-direction: column;
    gap: 20px;
  }

  .grid-card__right {
    max-width: 100%;
    min-width: 100%;
  }

  .prices__grid {
    grid-template-columns: 1fr;
  }

  .grid-card__left {
    max-width: 100%;
  }
}

@media (max-width:379px) {
  .hero__block-list {
    gap: 0;
  }

  .hero__block-item {
    margin-right: 10px;
  }
}