/* Более общие стили */
@font-face {
  font-family: 'Manrope';
  src: local('Manrope'), url('../fonts/Manrope.ttf') format('ttf');
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url(/fonts/Montserrat-Regular.otf) format("opentype");
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  overflow: hidden auto;
}
a:hover {
  transition: all 0.3s;
  outline: transparent;
  -webkit-tap-highlight-color: transparent;
}
button:hover {
  transition: all 0.3s;
}
body {
  background-color: black;
  color: #fff;
  font-family: "Montserrat-Regular", sans-serif;
  overflow-x: hidden !important;
}
.white-container {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 70px 0;
}
.container {
  max-width: 1254px;
  padding: 0 88px;
  margin: 0 auto;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
  width: 100vw;
  opacity: 0;
  transition: all 0.3s;
  overflow-x: hidden;
}
.popup__inner {
  position: relative;
  width: 100%;
  height: 110vh;
  padding: 100px 0;
}
.popup__inner-close {
  position: absolute;
  z-index: 1200;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.popup__inner-close-img {
  width: 100%;
}
.popup-close-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.popup__inner div:nth-child(2) {
  position: relative;
  z-index: 1200;
}
.popup.popup_active {
  opacity: 1;
  pointer-events: unset;
}
.popup.popup_active .popup__inner {
  overflow-x: hidden;
  overflow-y: auto;
}

/* ------------------------HEADER------------------------ */
.header {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 11;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.header-mobile__nav {
  display: none;
  justify-content: flex-end;
  position: static;
  text-align: center;
  z-index: 1000;
  width: 100%;
}
.header-mobile__nav-burger {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
.header-mobile__budger-line {
  background-color: #fff;
  width: 100%;
  height: 1px;
  transition: all .3s;
  margin-bottom: 8px;
}
.header-mobile__budger-line:last-child {
  margin-bottom: 0;
}
.header-mobile__nav-burger.burger_active .header-mobile__budger-line:first-child {
  transform: rotate(45deg) translateY(12px);
}
.header-mobile__nav-burger.burger_active .header-mobile__budger-line:nth-child(2) {
  opacity: 0;
}
.header-mobile__nav-burger.burger_active .header-mobile__budger-line:last-child {
  transform: rotate(-45deg) translateY(-12px);
}
.header-mobile__nav-items-box {
  position: absolute;
  top: -40px;
  left: 50%;
  z-index: 1000;
  transform: translate(-50%, -120%);
  transition: all 0.3s;
  background-color: #000;
  width: 110vw;
  height: 110vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  padding: 10% 0 20px;
}
.header-mobile__nav-items-box_active {
  display: flex;
  justify-content: flex-start;
  padding-top: 100px;
}
.header-mobile__nav-items-box_active.header-mobile__nav-items-box {
  transform: translate(-50%, 0%);
}
.header-mobile__nav-items {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-mobile__nav-item {
  margin-bottom: 1em;
}
.header-mobile__nav-item {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
  transition: ease .3s;
}
.header-mobile__nav-item:hover {
  color: #E65324;
}
.header-mobile__feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.header-mobile__discuss {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid rgba(235, 98, 32, 0.85);
  border-radius: 1px;
  padding: 14px 20px;
  height: 50px;
  margin-top: 10px;
  transition: ease .3s;
}
.header-mobile__discuss:hover {
  color: #fff;
  background: #E65324;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav-item {
  margin-right: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav-item a {
  font-size: 9px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
}
.header__nav-item a:hover {
  color: #E65324;
}
.header__discuss {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 166px;
  height: 40px;
  font-size: 9px;
  background-color: transparent;
  border: 1px solid rgba(235, 98, 32, 0.85);
  border-radius: 1px;
  text-transform: uppercase;
  transition: ease .3s;
}
.header__feedback a:hover {
  background-color: #E65324;
  border: 1px solid transparent;
}
.header__contacts {
  margin-right: 10px;
}

/* ------------------------HEADER-POPUP------------------------ */
.popup[data-popup="header-popup"] .popup__inner {
  background-color: rgba(235, 98, 32, 0.95);
}
.header__popup {
  max-width: 1020px;
  margin: 0 auto;
}
.header-popup__inner {
  color: #000;
  background-color: #fff;
  border-radius: 1px;
  padding: 80px 96px 80px;
}
.header-popup__title {
  font-size: 44px;
  font-weight: 300;
  line-height: 50px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
.header-popup__info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-popup__subtitle {
  text-align: center;
  min-width: 277px;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 35px;
}
.header-popup__input-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 13px;
}
.header-popup__input {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
  padding: 15px 20px;
  height: 50px;
}
.header-popup__input::placeholder {
  opacity: 0.7;
}
.header-popup__input, .file-btn, .header-popup__button {
  flex-grow: 1;
}
.header-popup__button:hover {
  background-color: #D74E0C;
}
textarea.header-popup__input, .header-popup__info {
  width: 100%;
}
.file-input {
  display: none;
}
.file-btn {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  max-width: 404px;
  height: 50px;
  padding: 13px 20px;
}
.header-popup__file-img-box {
  width: 19px;
  height: 22px;
  margin-right: 20px;
}
.header-popup__button {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
  border-radius: 1px;
  background: #E65324;
}
.header-popup__info {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: -0.07px;
  opacity: 0.5;
}

/* ------------------------MAIN------------------------ */
.main {
  position: relative;
  margin-top: -110px;
  margin-bottom: 150px;
  padding-top: 210px;
}
.main-bottom {
  margin-bottom: 0 !important;
}
.main::before {
  content: '';
  position: absolute;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.main::before {
  background-image: url('../images/header/main-bg.png');
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 490px;
}
.main__inner {
  padding: 130px 0 83px;
  position: relative;
  z-index: 2;
}
.main__textbox {
  display: flex;
  flex-direction: column;
  position: relative;
}
.main__title {
  text-transform: uppercase;
  font-size: 45px;
  line-height: 50px;
  padding-left: 455px;
}
.red {
  color: #E65324;
}
.main__textbox-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 110px;
}
.main__subtitle {
  max-width: 500px;
  font-size: 15px;
  line-height: 21px;
}
.main__cta {
  max-width: 240px;
  display: flex;
  align-self: flex-end;
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  transition: all 0.3s;
  cursor: pointer;
}
.main__cta:hover {
  color: #E65324;
}
.main-biglogo {
  margin: 60px 0 70px;
}
.main-biglogo img {
  width: 100%;
}
.main__services {
  padding: 45px 50px;
  background-color: #E65324;
  border-radius: 1px;
  display: flex;
  justify-content: space-between;
}
.main__services-item {
  min-width: 150px;
}
.main__services-img-box {
  width: 11px;
  height: 21px;
}
.main__services-item-text {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-transform: uppercase;
}

/* ------------------------MAIN-POPUP------------------------ */
.popup[data-popup="main-popup"] .popup__inner {
  background-color: rgba(0, 0, 0, 0.95);
}
.main__popup {
  max-width: 1020px;
  margin: 0 auto;
}
.main-popup__inner {
  padding: 60px 85px;
  border-radius: 1px;
  color: #000;
  background: #fff;
  margin-bottom: 135px;
}
.main-popup__title {
  font-size: 44px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 50px;
  text-align: center;
  margin: 0 auto 30px;
}
.main-popup__subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  text-align: center;
  max-width: 470px;
  margin: 0 auto 35px;
}
.main-popup__form {
  display: flex;
  flex-direction: column;
}
.main-popup__input-box {
  display: flex;
  gap: 20px;
}
.main-popup__input {
  flex-grow: 1;
  margin-bottom: 20px;
  padding: 0 20px;
  height: 50px;
  border-radius: 1px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #000;
  background-color: transparent;
}
.main-popup__input::placeholder {
  color: #000;
  opacity: 0.7;
}
.main-popup__button {
  color: #fff;
  background-color: #E65324;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 29px;
  text-transform: uppercase;
  border-radius: 1px;
  padding: 0;
  height: 50px;
  margin-bottom: 20px;
}
.main-popup__button:hover {
  background-color: #D74E0C;
}
.main-popup__form-info {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  opacity: 0.5;
}

/* ------------------------CASES------------------------ */
.cases__inner {
  padding-bottom: 67px;
}
.cases__title {
  font-size: 50px;
  line-height: 60px;
  text-transform: uppercase;
  margin-bottom: 45px;
}
.cases__item-title {
  font-size: 60px;
  font-weight: 400;
  font-weight: 300;
  line-height: 69px;
  margin-bottom: 33px;
}
.cases__item-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.cases__item-text {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
  opacity: 0.7;
  max-width: 400px;
  padding-right: 15px;
  margin-bottom: 25px;
}
.cases__item-cat-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.cases__item-cat-box {
  display: flex;
  margin-bottom: 25px;
}
.cases__cat {
  padding: 10px 20px;
  background-color: #181818;
  border-radius: 1px;
  margin-right: 7px;
  color: rgba(255, 255, 255, 0.70);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
}
.cases__cat:last-child {
  margin-right: 0;
}
.cases__item-price {
  display: block;
  font-size: 14px;
  line-height: 17px;
  opacity: .7;
  margin-bottom: 0;
}
.cases__box-item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 50px 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1px;
  margin-bottom: 15px;
}
.cases__box-item:last-child {
  margin-bottom: 0;
}
.cases__item-img-box {
  max-width: 564px;
}
.cases__item-img {
  width: 100%;
}
.cases__link {
  display: block;
  margin-top: 50px;
  text-align: center;
  font-size: 33px;
  font-weight: 300;
  line-height: 36px;
  text-decoration-line: underline;
}

/* ------------------------REVIEWS------------------------ */
.reviews {
  position: relative;
  z-index: 2;
}
.reviews__inner {
  border-radius: 1px;
  color: #000;
}
.reviews__title-box {
  margin-bottom: 30px;
  position: relative;
}
.reviews__title {
  font-size: 50px;
  font-weight: 300;
  line-height: 74px;
  text-transform: uppercase;
}
.reviews__arrows {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}
.reviews__arrow {
  max-width: 44px;
  cursor: pointer;
  filter: grayscale(1);
  opacity: 0.8;
  transition: all 0.3s;
}
.reviews__arrow:hover {
  filter: none;
  opacity: 1;
}
.reviews__arrow:active {
  scale: 0.8;
  outline: transparent;
  -webkit-tap-highlight-color: transparent;
}
.reviews__arrow-left {
  margin-right: 21px;
}
.reviews__arrow img {
  width: 100%;
}
.reviews__swiper {
  overflow: hidden;
}
.reviews__slide {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.reviews__slide-video-box {
  width: 380px;
  height: 349px;
  border-radius: 1px;
  background: #D9D9D9;
}
.reviews__slide-info {
  max-width: 616px;
}
.reviews__slide-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 47px;
  margin-bottom: 14px;
}
.reviews__slide-subtitle {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  margin-bottom: 62px;
}
.reviews__slide-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 14px;
}
.reviews__slide-link {
  display: block;
  text-align: end;
  text-decoration: underline;
  color: #E65324;
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
}

/* ------------------------RESULTS------------------------ */
.results__inner {
  padding: 90px 0 75px;
}
.results__title-box {
  position: relative;
  margin-bottom: 94px;
}
.results__title {
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
  text-transform: uppercase;
}
.results__title-btn-box {
  position: absolute;
  right: 0;
  bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.results__subtitle {
  max-width: 220px;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  margin-right: 40px;
  opacity: 0.9;
}
.results__title-btn {
  padding: 18px 43px;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  border-radius: 1px;
  background-color: #E65324;
  transition: all 0.3s;
}

.results__title-btn:hover {
  background-color: #D74E0C;
}
.results__accordeon {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.results__accordeon-item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  min-height: 132px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  padding: 30px 0;
}
.results__accordeon-item::after {
  content: '';
  position: absolute;
  top: 35px;
  transform: rotate(0deg);
  right: 0;
  width: 61px;
  height: 61px;
  background-image: url(../images/results/img1.svg);
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
.results__accordeon-item.results__accordeon-item_show::after {
  transform: rotate(-45deg);
  background-image: url(../images/results/img2.svg);
}
.results__accordeon-title {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 30px;
}
.results__accordeon-body {
  color: #d4d4d4;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  max-width: 1100px;
  overflow: hidden;
  margin-top: 30px;
}
.results__accordeon-texttop {
  display: block;
  margin-top: 25px;
}
.results__accordeon-result-title {
  display: block;
  color: #FFF;
  font-size: 22px;
  margin-bottom: 15px;
}

/* ------------------------PROPOSAL------------------------ */
.proposal {
  position: relative;
  z-index: 2;
  /* overflow: hidden; */
}
.proposal__inner {
  padding-bottom: 76px;
}
.proposal__inner-red {
  padding: 50px 50px;
  border-radius: 1px;
  background: #E65324;
  margin-bottom: 150px;
}
.proposal__title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.proposal__title {
  font-size: 54px;
  font-weight: 300;
  line-height: 54px;
  text-transform: uppercase;
  max-width: 1000px;
  margin-bottom: 155px;
}
.proposal__title-pict {
  margin: 8px 0 0 20px;
}
.proposal__subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-bottom: 40px;
}
.proposal__form {
  display: flex;
  flex-direction: column;
}
.proposal__input-box {
  display: flex;
  gap: 20px;
}
.proposal__input {
  flex-grow: 1;
  margin-bottom: 20px;
  padding: 0 20px;
  height: 50px;
  border-radius: 1px;
  border: 1px solid #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  color: #fff;
  background-color: transparent;
}
.proposal__input::placeholder {
  color: #fff;
  opacity: 0.7;
}
.proposal__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: 50px;
  color: #E65324;
  background-color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 26px;
  border-radius: 1px;
}
.proposal__form-info {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  z-index: 5;
}
.proposal__social {
  display: flex;
  justify-content: flex-end;
  padding-right: 35px;
}
.proposial__social-box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 525px;
  height: 366px;
  z-index: 2;
}
.proposial__social-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 525px;
  height: 366px;
  background-image: url(/images/proposal/orange-border.svg);
  background-repeat: no-repeat;
}
.proposial__social-box::after {
  content: '';
  position: absolute;
  top: -130px;
  right: -300px;
  z-index: -1;
  width: 900px;
  height: 900px;
  background-image: url(../images/proposal/bg-img2.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.proposal__social-info {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
}
.proposal__social-info-box {
  padding: 100px 50px 100px 140px;
}
.proposal__social-img-box {
  margin-right: 26px;
  max-width: 60px;
}
.proposal__social-info-button-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 380px;
  margin-top: 75px;
  margin-left: 45px;
}
.proposal__social-info-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 42px;
  font-size: 14px;
  transition: all 0.3s;
}
.proposal_wa {
  border-radius: 1px;
  background: #1FA44C;
}
.proposal_wa:hover {
  background-color: #0B9038;
}
.proposal_tg {
  border-radius: 1px;
  background: #2FB6E1;
}
.proposal_tg:hover {
  background-color: #1BA2CD;
}

/* ------------------------IMPLEMENT------------------------ */
.implement {
  position: relative;
  z-index: 2;
  margin-top: 185px;
}
.implement__inner {
  padding-bottom: 70px;
}
.implement__inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.implement__title {
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.implement__subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 5px;
}
.implement__info-pretitle {
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
  text-transform: uppercase;
  margin: 65px 0 35px;
}
.implement__info-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.implement__info-item {
  width: 100%;
  max-width: 24%;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 40px 15px 50px;
  height: 450px;
  position: relative;
}
.implement__info-item:first-child::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 0;
  width: 55px;
  height: 155px;
  background: url(/images/implement/icon-number-1.svg);
  background-size: cover;
  z-index: 1;
}
.implement__info-item:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 26px;
  right: 0;
  width: 123px;
  height: 150px;
  background: url(/images/implement/icon-number-2.svg);
  background-size: 100%;
  z-index: 1;
}
.implement__info-item:nth-child(3)::before {
  content: '';
  position: absolute;
  top: 22px;
  right: 0;
  width: 112px;
  height: 150px;
  background: url(/images/implement/icon-number-3.svg);
  background-size: 100%;
  z-index: 1;
}
.implement__info-item:nth-child(4)::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 0;
  width: 125px;
  height: 150px;
  background: url(/images/implement/icon-number-4.svg);
  background-size: 100%;
  z-index: 1;
}
.implement__info-img-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 215px;
  max-width: 67px;
  height: 67px;
  position: relative;
  z-index: 2;
}
.implement__info-text {
  display: block;
  text-align: left;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 19px;
}

/* ------------------------PROCESS------------------------ */
.process {
  position: relative;
  z-index: 3;
}
.process__inner {
  color: #000;
  border-radius: 1px;
  /* padding: 80px 75px 100px; */
}
.process__title-wrap {
  display: flex;
  justify-content: flex-end;
}
.process__title {
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
  text-transform: uppercase;
  margin-bottom: 75px;
}
.process__title span[class="red-color"] {
  color: #E65324;
}
.process__title span[class="padding"] {
  padding-left: 90px;
}
.process__subtitle {
  font-size: 41px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 48px;
  color: #E65324;
  margin-bottom: 40px;
}
.process__tab-menu {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.process__tab-menu-item {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  opacity: 0.5;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  text-wrap: nowrap;
  padding: 10px 36px;
  margin-right: 5px;
}
.process__tab-menu-item.process__tab-menu-item_active {
  opacity: 1;
  color: #E65324;
  border: 1px solid #E65324;
}
.process__tab-menu-item:last-child {
  margin-right: 0;
}
.process__tab-list {
  height: 744px;
  position: relative;
  display: flex;
  align-items: center;
}
.process__tab-item {
  position: absolute;
  height: 100%;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-image: url(../images/process/elipse2-img.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.process__tab-item.development {
  background-image: none;
}
.process__tab-item.process__tab-item_active {
  transition-delay: 0.2s;
  z-index: 3;
  opacity: 1;
}
.process__tab-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.process__tab-pict-top {
  margin-top: -50px;
}
.process__tab-title {
  font-size: 50px;
  font-weight: 300;
  line-height: 45px;
  max-width: 880px;
  align-self: flex-start;
  margin-bottom: 45px;
}
.process__tab-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
  max-width: 514px;
  margin-bottom: 70px;
}
.process__tab-text {
  color: #FFF;
  background: rgba(230, 83, 36, 0.7);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  max-width: 620px;
  align-self: flex-end;
  border-radius: 1px;
  padding: 40px 30px;
}
.process__tab-item-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 22px;
  text-transform: uppercase;
  position: absolute;
  top: 340px;
  left: 440px;
  min-width: 400px;
}
.process__tab-item-img-box {
  width: 800px;
  height: 550px;
  position: absolute;
  top: 100px;
  left: 190px;
}
.process__tab-item-img {
  width: 100%;
  height: 100%;
}
.process__tab-item-word {
  position: absolute;
  color: #E65324;
  background-color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  border: 1px solid #E65324;
  border-radius: 50%;
}
.process__tab-item-word[data-word="1"] {
  top: 240px;
  left: 146px;
  padding: 80px 70px;
}
.process__tab-item-word[data-word="2"] {
  top: 79px;
  left: 398px;
  padding: 93px 73px;
}
.process__tab-item-word[data-word="3"] {
  top: 48px;
  left: 747px;
  padding: 109px 71px;
}
.process__tab-item-word[data-word="4"] {
  top: 322px;
  left: 858px;
  padding: 91px 42px;
}
.process__tab-item-word[data-word="5"] {
  top: 508px;
  left: 609px;
  padding: 96px 43px;
}
.process__tab-item-word[data-word="6"] {
  top: 508px;
  left: 226px;
  padding: 62px 43px;
}

/* ------------------------GETPRICE------------------------ */
.getprice {
  position: relative;
  z-index: 3;
}
.getprice__inner {
  border-radius: 1px;
  color: #FFF;
  background: #E65324;
  padding: 60px 50px;
  margin: 80px 0;
}
.getprice__title-wrap {
  display: flex;
  justify-content: space-between;
}
.getprice__title {
  font-size: 54px;
  font-weight: 300;
  line-height: 54px;
  text-transform: uppercase;
  max-width: 787px;
  margin-bottom: 110px;
}
.getprice__subtitle-box {
  display: flex;
  justify-content: end;
  margin-bottom: 55px;
}
.getprice__subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  max-width: 480px;
}
.getprice__button-box {
  display: flex;
  justify-content: space-between;
}
.getprice__button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1px;
  width: 100%;
  text-align: center;
  padding: 20px 0;
}
.getprice__button.get-btn {
  color: #E65324;
  background-color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 26px;
  height: 50px;
  margin-right: 23px;
}
.getprice__button.download-btn {
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 26px;
  height: 50px;
}
.getprice__button-img-box {
  margin-right: 20px;
}
.getprice__button-img-box img {
  width: 100%;
}

/* ------------------------GETPRICE-POPUP------------------------ */
.popup[data-popup="getprice-popup"] .popup__inner {
  background-color: rgba(0, 0, 0, 0.95);
}
.getprice__popup {
  max-width: 1020px;
  margin: 0 auto;
}
.getprice-popup__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.getprice-popup__title {
  font-size: 44px;
  font-weight: 300;
  line-height: 50px;
  max-width: 400px;
  margin-bottom: 30px;
}
.getprice-popup__subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 35px;
}
.getprice-popup__item {
  list-style-type: disc;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  opacity: 0.7;
  margin-left: 20px;
}
.getprice-popup__form {
  max-width: 529px;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 37px 75px;
}
.getprice-popup__form-title {
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  line-height: 34px;
  margin-bottom: 33px;
}
.getprice-popup__input {
  color: #fff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  width: 100%;
  height: 50px;
  padding: 15px 20px;
  margin-bottom: 18px;
}
.getprice-popup__input:focus {
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.getprice-popup__button {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
  width: 100%;
  border-radius: 1px;
  color: #fff;
  background-color: #E65324;
  padding: 15px 15px;
  height: 50px;
  margin-bottom: 20px;
}
.getprice-popup__button:hover {
  background-color: #D74E0C;
}
.getprice-popup__form-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  opacity: 0.5;
}

/* ------------------------ARTICLES------------------------ */
.articles {
  position: relative;
  z-index: 2;
  background-image: url(../images/article/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.articles::before {
  content: '';
  position: absolute;
  top: -550px;
  right: 0;
  z-index: -1;
  width: 640px;
  height: 1100px;
  background-image: url(../images/article/bg-img1.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.articles::after {
  content: '';
  position: absolute;
  top: 120px;
  left: 0;
  z-index: -1;
  width: 820px;
  height: 1300px;
  background-image: url(../images/article/bg-img2.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.article__inner {
  padding: 80px 0 130px;
}
.article__title {
  text-align: center;
  font-size: 56px;
  font-weight: 300;
  line-height: 68px;
  text-transform: uppercase;
  margin-bottom: 55px;
}
.article__title span[class="blog"] {
  color: #E65324;
}
.article__title-img-box {
  display: inline-block;
}
.article__title-img {
  vertical-align: baseline;
}
.article__title span[class="tg"] {
  color: #2FB6E1;
}
.article__title-link {
  position: relative;
  transition: opacity 0.2s;
}
.article__title-link.blog-link::after, .article__title-link.tg-link::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 5px;
  background-color: #E65324;
  height: 2px;
}
.article__title-link.tg-link::after {
  background-color: #2FB6E1;
}
.article__title-link:hover::after {
  opacity: 0;
}
.article__post-list {
  display: flex;
  gap: 24px;
}
.article__post-item {
  width: 295px;
  height: 339px;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: flex-end;
  transition: all 0.3s;
  cursor: pointer;
  padding: 33px;
}
.article__post-item:hover {
  transform: translateY(25px);
}
.article__post-text {
  font-size: 30px;
  font-weight: 300;
  line-height: 37px;
  opacity: 0.4;
}

/* ------------------------ABOUT-VIDEO------------------------ */
.about-video {
  position: relative;
  z-index: 2;
}
.about-video__inner {
  padding-bottom: 83px;
}
.about-video__title {
  font-size: 30px;
  font-weight: 300;
  line-height: 38px;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.about-video__video-box {
  width: 100%;
  height: 550px;
  border-radius: 1px;
  background-color: #D9D9D9;
}

/* ------------------------MAIN-FORM------------------------ */
.main-form__inner {
  color: #000;
  border-radius: 1px;
  /* padding: 80px 96px 80px; */
}
.main-form__title {
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
  text-transform: uppercase;
  margin-bottom: 180px;
}
.main-form__info-box {
  display: flex;
}
.main-form__subtitle {
  margin-right: 139px;
  min-width: 277px;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}
.main-form__input-box {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 13px;
}
.main-form__input {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
  padding: 15px 20px;
  width: 48%;
  height: 50px;
}
.main-form__input::placeholder {
  opacity: 0.7;
}
.main-form__input, .main-form__file-btn, .main-form__button {
  flex-grow: 1;
}
.main-form__button:hover {
  background-color: #D74E0C;
}
textarea.main-form__input, .main-form__info {
  width: 100%;
}
.main-form__file-img-box {
  width: 19px;
  height: 19px;
  margin-right: 20px;
}
.main-form__file-btn p {
  line-height: 1;
}
.main-form__button {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
  border-radius: 1px;
  background: #E65324;
}
.main-form__info {
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.07px;
  opacity: 0.3;
}

/* ------------------------FOOTER------------------------ */
.footer {
  position: relative;
  padding-bottom: 100px;
  z-index: 10;
}
.footer__inner {
  display: flex;
  gap: 38px 0;
  padding: 79px 0px 0px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__inner a:hover {
  color: #E65324;
}
.footer__numbers-title {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  opacity: .9;
  margin-bottom: 15px;
}
.footer__numbers-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.footer__number {
  display: block;
  color: #FFF;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 6px;
}
.footer__number:first-child {
  margin-right: 30px;
}
.footer__nav-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 300px;
  align-items: flex-end;
  align-items: flex-start;
}
.footer__nav-item {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
  margin-right: 20px;
}
.footer__nav-item:last-child {
  margin-right: 0;
}
.footer__button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  background-color: #E65324;
  border-radius: 1px;
  padding: 13px 30px;
  height: 50px;
}
.footer__inner a.footer__button:hover {
  color: #fff;
  background-color: #D74E0C;
}
.footer__politic-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
  text-decoration: underline;
  margin-top: 45px;
}
.footer__dev-text {
  font-size: 14px;
  line-height: 22px;
  opacity: .8;
  margin-top: 40px;
}
.footer__dev-link {
  display: inline-block;
  margin-left: 5px;
  border-bottom: 1px solid rgba(255,255,255, .8);
}
.footer__dev-link:hover {
  opacity: 1;
  border-bottom: 1px solid transparent;
}
.footer__mail {
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  text-decoration-line: underline;
  text-transform: uppercase;
}
.footer__logo-box {
  width: 100%;
  height: 100%;
}
.footer__logo-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.appear {
  opacity: 1;
}

/* ------------------------MEDIA------------------------ */
/* ------------------------MEDIA------------------------ */

/* ------------------------1200-1432------------------------ */
@media screen and (max-width:1432px) {
  .header-popup {
    display: block;
  }
  .main__services-item {
    margin-right: 10px;
  }
  .cases__item-text {
    padding-right: 20px;
  }
  .cases__cat {
    padding: 10px 20px;
  }
  .cases__item-img-box {
    max-width: 536px;
  }
  .process__tab-item {
    justify-content: center;
  }
  .process__tab-list {
    height: 650px;
  }
  .process__tab-item-img-box {
    top: 50px;
    left: 110px;
  }
  .process__tab-item-text {
    top: 290px;
    left: 350px;
  }
  .process__tab-item-word[data-word="1"] {
    top: 190px;
    left: 36px;
  }
  .process__tab-item-word[data-word="2"] {
    top: 20px;
    left: 350px;
  }
  .process__tab-item-word[data-word="3"] {
    top: 0;
    left: 700px;
  }
  .process__tab-item-word[data-word="4"] {
    top: 280px;
    left: 800px;
  }
  .process__tab-item-word[data-word="5"] {
    top: 440px;
    left: 530px;
  }
}
/* ------------------------992-1200------------------------ */
@media screen and (max-width:1200px) {
  .header {
    align-items: center;
  }
  .main__title {
    padding-left: 180px;
  }
  .main-popup__title {
    max-width: 740px;
  }
  .header__nav, .header__feedback {
    display: none;
  }
  .header-mobile__nav, .header-mobile__feedback {
    display: flex;
  }
  .main__services-item-text {
    font-size: 15px;
  }
  .cases__item-price {
    margin-bottom: 30px;
  }
  .cases__item-title {
    font-size: 42px;
    line-height: 50px;
  }
  .cases__box-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .cases__item-text, .cases__item-img-box {
    max-width: none;
  }
  .reviews__slide-title {
    font-size: 30px;
    line-height: 40px;
  }
  .reviews__slide-info {
    max-width: 405px;
  }
  .reviews__slide-subtitle {
    margin-bottom: 30px;
  }
  .results__title-btn-box {
    bottom: -70px;
  }
  .results__accordeon-body {
    max-width: 780px;
  }
  .implement__inner-wrap {
    flex-wrap: wrap;
  }
  .implement__title {
    margin-bottom: 40px;
  }
  .implement__info-img-box {
    margin: 0 0 180px;
  }
  .proposal__social-img-box {
    max-width: 40px;
  }
  .proposal__title {
    font-size: 46px;
    line-height: 54px;
  }
  .process__tab-menu {
    flex-wrap: wrap;
  }
  .process__tab-menu-item {
    margin-bottom: 10px;
    padding: 10px 20px;
  }
  .process__tab-title {
    font-size: 40px;
    line-height: 50px;
  }
  .process__tab-subtitle, .process__tab-text {
    font-size: 18px;
  }
  .process__tab-item[data-index="2"] {
    /* flex-wrap: wrap; */
    align-items: flex-start;
    padding: 0;
  }
  .process__tab-item-text {
    position: static;
    margin-bottom: 20px;
  }
  .process__tab-item-text br {
    display: none;
  }
  .process__tab-item-img-box {
    opacity: 0.2;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
  }
  .process__tab-item-word[data-word="1"], .process__tab-item-word[data-word="2"], .process__tab-item-word[data-word="3"], .process__tab-item-word[data-word="4"], .process__tab-item-word[data-word="5"], .process__tab-item-word[data-word="6"] {
    position: static;
    border-radius: 1px;
    margin-bottom: 10px;
    width: 100%;
    padding: 20px 35px;
  }
  .getprice__subtitle-box {
    margin-bottom: 50px;
  }
  .getprice__title {
    font-size: 46px;
    line-height: 54px;
  }
  .getprice__button-box {
    flex-direction: column;
  }
  .getprice__button.get-btn {
    margin-bottom: 15px;
  }
  .getprice__popup {
    width: fit-content;
  }
  .getprice-popup__inner {
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
  }
  .getprice-popup__title, .getprice-popup__subtitle {
    text-align: center;
  }
  .getprice-popup__list {
    margin-bottom: 30px;
  }
  .article__inner {
    padding: 80px 0;
  }
  .article__title {
    margin-bottom: 64px;
  }
  .article__post-item {
    height: 229px;
  }
  .article__post-item:hover {
    transform: none;
  }
  .about-video__video-box {
    height: 480px;
  }
  .main-form__title {
    text-align: center;
    margin-bottom: 80px;
  }
  .main-form__subtitle {
    text-align: center;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .main-form__info-box {
    flex-direction: column;
  }
  .footer__button-box {
    margin: 0;
  }
}
/* ------------------------768-992------------------------ */
@media screen and (max-width:992px) {
  .container {
    padding: 0 20px;
  }
  .header-popup__title, .main-popup__title, .cases__title, .reviews__title, .results__title, .proposal__title, .implement__title, .process__title, .getprice__title, .article__title, .main-form__title {
    /* h2 - titles */
    font-size: 34px;
    line-height: 42px;
  }
  .cases__item-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 25px;
  }
  .cases__box-item {
    padding: 30px 20px;
  }
  .cases__item-text {
    padding-right: 0;
  }
  .cases__item-img-box {
    margin: auto;
  }
  .cases::before, .proposial__social-box::before, .articles::after {
    width: 100vw;
  }
  .main {
    margin-bottom: 80px;
  }
  .main__title {
    font-size: 40px;
    line-height: 48px;
  }
  .main__services {
    flex-wrap: wrap;
    padding: 30px 20px;
    gap: 20px 10px;
  }
  .main__services-item {
    width: 150px;
  }
  .cases__title {
    margin-bottom: 30px;
  }
  .reviews__slide-info {
    max-width: none;;
  }
  .reviews__slide {
    flex-direction: column;
    align-items: flex-start;
  }
  .reviews__slide-video-box {
    margin-bottom: 10px;
  }
  .results__inner {
    padding: 13px 0 75px;
  }
  .results__title-box, .results__title-btn-box {
    position: static;
  }
  .results__title-btn-box {
    margin-top: 30px;
  }
  .results__title-box {
    margin-bottom: 50px;
  }
  .results__accordeon-item {
    min-height: 92px;
    padding: 20px 0;
  }
  .results__title-btn-box {
    width: 100%;
  }
  .results__accordeon-title {
    font-size: 16px;
    line-height: 22px;
  }
  .results__accordeon-item::after {
    width: 51px;
    height: 51px;
    top: 20px;
  }
  .results__accordeon-body {
    font-size: 15px;
    line-height: 20px;
    margin-top: 20px;
  }
  .results__accordeon-result-title {
    font-size: 16px;
    line-height: 22px;
  }
  .proposal__inner-red {
    padding: 30px 20px;
  }
  .proposal__title {
    max-width: 580px;
    margin-bottom: 80px;
  }
  .proposal__subtitle {
    font-size: 16px;
    line-height: 22px;
  }
  .proposal__title-pict {
    width: 100px;
    margin: 0;
  }
  .proposal__title-pict img {
    width: 100%;
  }
  .proposal__input-box {
    flex-direction: column;
    gap: 0;
  }
  .proposal__input {
    margin-bottom: 15px;
  }
  .implement {
    margin-top: 120px;
  }
  .implement__title {
    margin-bottom: 20px;
  }
  .implement__subtitle {
    width: 100%;
  }
  .implement__info-item {
    height: 350px;
  }
  .implement__inner {
    padding-bottom: 55px;
  }
  .implement__info-img-box {
    margin-bottom: 120px;
  }
  .implement__info-text {
    font-size: 18px;
    line-height: 25px;
    max-width: 290px;
    margin: 0;
  }
  .implement__info-list {
    flex-wrap: wrap;
  }
  .implement__info-item {
    width: 49%;
    max-width: none;
    margin-bottom: 15px;
  }
  .process__title span[class="padding"] {
    padding-left: 0;
  }
  .process__tab-title {
    font-size: 28px;
    line-height: 36px;
  }
  .process__title {
    margin-bottom: 60px;
  }
  .process__subtitle {
    font-size: 28px;
    line-height: 36px;
    text-align: left;
  }
  .process__tab-list {
    height: 500px;
  }
  .process__tab-menu-item {
    padding: 10px 15px;
  }
  .process__tab-item-text {
    font-size: 16px;
  }
  .process__tab-text {
    padding: 20px 40px;
  }
  .process__tab-pict {
    width: 150px;
  }
  .process__tab-pict img {
    width: 100%;
  }
  .process__tab-pict-top {
    margin-top: 0;
  }
  .getprice__inner {
    padding: 30px 25px;
    margin: 70px 0;
  }
  .getprice__title {
    width: calc(100vw - 80px);
    margin-bottom: 80px;
  }
  .getprice__subtitle {
    font-size: 16px;
    line-height: 22px;
  }
  .getprice__title-pict {
    width: 100px;
  }
  .getprice__title-pict img {
    width: 100%;
  }
  .getprice__subtitle-box {
    justify-content: flex-start;
    max-width: none;
    margin-bottom: 40px;
  }
  .getprice__button {
    padding: 30px 0;
  }
  .article__post-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__numbers {
    width: 70%;
  }
  .footer__nav-box {
    width: 50%;
  }
  .footer__politic-title {
    margin-top: 48px;
  }
  .main-form__title {
    margin-bottom: 20px;
  }
}
/* ------------------------400-786------------------------ */
@media screen and (max-width:786px) {
  .white-container {
    padding: 70px 10px;
  }
  .popup__inner {
    padding: 70px 0 120px;
  }
  .popup__inner-close {
    width: 30px;
  }
  .main {
    margin-top: -70px;
    padding-top: 155px;
  }
  .main::before {
    width: 100%;
    height: 310px;
  }
  .main__inner {
    padding-bottom: 70px;
  }
  .main__title {
    font-size: 27px;
    line-height: 33px;
    padding-left: 0;
  }
  .main__textbox-wrap {
    flex-wrap: wrap;
    margin-top: 40px;
    max-width: 400px;
  }
  .main__cta {
    max-width: 290px;
    justify-content: flex-start;
    margin-top: 20px;
  }
  .main__services-item {
    margin-right: 0;
    width: unset;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .main__services-item-text {
    line-height: 21px;
    margin-top: 0;
    margin-left: 10px;
  }
  .main__services-item-text br {
    display: none;
  }
  .main-popup__inner {
    padding: 40px;
    margin-bottom: 35px;
  }
  .main-popup__title {
    margin-bottom: 20px;
  }
  .main-popup__subtitle {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .main-popup__input-box {
    flex-direction: column;
    gap: 0px;
  }
  .main-popup__input, .main-popup__button {
    margin-bottom: 10px;
  }
  .main-popup__form-info {
    font-size: 12px;
    line-height: 16px;
  }
  .header-mobile__discuss {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    padding: 15px 0;
    margin-top: 10px;
  }
  .header-mobile__feedback {
    gap: 20px;
  }
  .header-popup__inner {
    padding: 40px;
  }
  .header-popup__title {
    margin-bottom: 20px;
  }
  .header-popup__subtitle {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .header-popup__input-box {
    gap: 13px 13px;
  }
  .header-popup__file-btn.file-btn, .header-popup__button {
    font-size: 14px;
    line-height: 20px;
    padding: 15px 0;
    width: 100%;
    height: 50px;
  }
  .header-popup__info {
    font-size: 12px;
    line-height: 16px;
  }
  .cases__title, .reviews__title, .results__title, .proposal__title, .implement__title, .process__title, .getprice__title, .article__title, .main-form__title {
    /* h2 - titles */
    font-size: 30px;
    line-height: 38px;
  }
  .header-popup__title, .main-popup__title, .getprice-popup__title {
    font-size: 26px;
    line-height: 34px;
  }
  .header-wrap {
    height: 70px;
  }
  .header__logo-box img {
    height: 35px;
  }
  .cases__inner {
    padding-bottom: 80px;
  }
  .cases__box-item {
    padding: 30px 20px;
    display: block;
  }
  .cases__item-title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .cases__item-subtitle {
    font-weight: 400;
    font-size: 14px;
  }
  .cases__item-cat-box {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .cases__item-text {
    margin-bottom: 25px;
  }
  .cases__cat {
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 10px;
  }
  .reviews__arrow {
    max-width: 34px;
  }
  .reviews__arrow-left {
    margin-right: 10px;
  }
  .reviews__slide-video-box {
    width: 100%;
    height: 200px;
  }
  .reviews__slide-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .reviews__slide-text {
    font-size: 14px;
    line-height: 20px;
  }
  .reviews__slide-link {
    font-size: 12px;
  }
  .results__inner {
    padding: 0 0 80px;
  }
  .results__title-box {
    margin-bottom: 30px;
  }
  .results__title {
    margin-bottom: 20px;
  }
  .results__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .results__title-btn-box {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }
  .results__title-btn {
    display: flex;
    justify-content: center;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    padding: 16px 0px;
  }
  .results__accordeon-title {
    padding-right: 50px;
  }
  .results__accordeon-title br {
    display: none;
  }
  .results__accordeon-item::after {
    width: 41px;
    height: 41px;
    top: 16px;
  }
  .results__accordeon-item {
    min-height: 75px;
    padding: 15px 0;
  }
  .results__accordeon-body {
    font-size: 14px;
    line-height: 26px;
    margin: 30px 0;
  }
  .results__accordeon-result-title {
    font-size: 16px;
  }
  .proposal__inner {
    padding-bottom: 60px;
  }
  .proposal__inner-red {
    position: relative;
    z-index: 10;
    padding: 30px 20px;
    margin-bottom: 80px;
  }
  .proposal__title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .proposal__subtitle {
    margin-left: 0;
    margin-bottom: 20px;
  }
  .proposal__form-info {
    font-size: 12px;
  }
  .proposal::before {
    width: 300px;
    height: 320px;
    top: 180px;
    bottom: unset;
  }
  .proposal__social-img-box {
    max-width: 30px;
    margin-right: 5px;
  }
  .proposal__social-info {
    padding: 20px;
    font-size: 14px;
  }
  .proposal__social-info-button {
    font-size: 12px;
    padding: 15px 10px;
  }
  .proposal__social {
    padding-right: 0;
  }
  .proposial__social-box {
    width: 350px;
    height: 233px;
    margin: auto;
  }
  .proposial__social-box::before {
    top: 0;
    right: 0;
    width: 350px;
    height: 233px;
    background-size: cover;
  }
  .proposal__social-info-box {
    padding: 30px 20px 10px 45px;
  }
  .proposal__social-info-button-box {
    margin: 70px auto 0;
  }
  .proposal__social-info-button {
    width: 160px;
  }
  .implement__title {
    margin-bottom: 20px;
  }
  .implement__subtitle {
    font-size: 16px;
  }
  .implement__info-list {
    grid-template-columns: 1fr;
  }
  .implement__info-img-box {
    width: 60px;
  }
  .implement__info-img-box img {
    max-width: 60px;
    max-height: 50px;
    width: auto;
    height: auto;
  }
  .implement__info-text {
    font-size: 14px;
    line-height: 20px;
  }
  .implement__info-img-box {
    margin-bottom: 80px;
  }
  .implement__info-pretitle {
    font-size: 24px;
    line-height: 30px;
    margin: 25px 0 15px;
  }
  .implement__info-item {
    padding: 30px 10px;
    height: 340px;
  }
  .implement__inner {
    padding-bottom: 70px;
  }
  .process__subtitle {
    padding-bottom: 30px;
  }
  .process__tab-menu {
    margin-bottom: 0;
    justify-content: space-between;
  }
  .process__tab-menu-item {
    width: 48%;
    justify-content: center;
    padding: 5px 15px;
    font-size: 16px;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .process__title {
    margin-bottom: 20px;
  }
  .process__subtitle {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 0;
    margin-bottom: 25px;
  }
  .process__tab-list {
    margin-bottom: 20px;
    height: 350px;
  }
  .process__tab-title {
    display: block;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .process__tab-subtitle {
    display: block;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .process__tab-subtitle br {
    display: none;
  }
  .process__tab-text {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 20px 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .process__tab-item {
    display: block;
    margin-top: 70px;
  }
  .process__tab-item-word[data-word="1"], .process__tab-item-word[data-word="2"], .process__tab-item-word[data-word="3"], .process__tab-item-word[data-word="4"], .process__tab-item-word[data-word="5"], .process__tab-item-word[data-word="6"] {
    display: inline-block;
    width: auto;
    padding: 10px 12px;
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .process__tab-item-text {
    display: block;
    font-size: 14px;
    min-width: auto;
  }
  .process__tab-pict {
    width: 90px;
  }
  .getprice__inner {
    padding: 60px 40px;
    margin-top: 60px;
  }
  .getprice__inner {
    padding: 30px 20px;
    margin: 70px 0;
  }
  .getprice__title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .getprice__title-pict {
    width: 45px;
    margin-left: 20px;
  }
  .getprice__subtitle-box {
    margin-bottom: 20px;
  }
  .getprice__subtitle {
    font-size: 16px;
    line-height: 22px;
  }
  .getprice-popup__button {
    margin-bottom: 10px;
  }
  .getprice-popup__form-text {
    font-size: 12px;
    line-height: 16px;
  }
  .getprice__button {
    padding: 15px 0;
  }
  .getprice__button-img-box {
    width: 20px;
  }
  .getprice-popup__text-box {
    padding: 0 20px;
  }
  .getprice-popup__title {
    margin-bottom: 20px;
  }
  .getprice-popup__subtitle {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .getprice-popup__item {
    font-size: 15px;
    line-height: 20px;
  }
  .getprice-popup__form {
    border-radius: 50px;
    padding: 30px;
  }
  .getprice-popup__form-title {
    font-size: 22px;
    line-height: 30px;
  }
  .article__title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .article__inner {
    padding: 60px 0;
  }
  .article__post-text {
    font-size: 20px;
    line-height: 25px;
  }
  .about-video__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 25px;
  }
  .about-video__inner {
    padding-bottom: 60px;
  }
  .about-video__video-box {
    height: 260px;
  }
  .main-form__subtitle {
    font-size: 16px;
    width: 300px;
    margin: 0 auto 25px;
    line-height: 20px;
  }
  .main-form__input {
    width: 100%;
  }
  .main-form__button {
    height: 50px;
  }
  .footer__inner {
    padding: 70px 0 0;
    gap: 28px 0;
  }
  .footer__numbers-title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
  }
  .footer__numbers {
    width: 100%;
  }
  .footer__number, .footer__mail {
    font-size: 18px;
  }
  .footer__number:first-child {
    margin-right: 15px;
  }
  .footer__nav-box {
    width: 100%;
    max-width: 370px;
  }
  .footer__politic-title {
    margin-top: 25px;
  }
  .footer__button-box {
    width: 100%;
  }
  .footer__politic-title {
    width: 100%;
  }
}
