:root {
  --main-color:           #222222;
  --secondary-color:      #666666;
  --accent-color:         #00bd0d;
  --accent-hover-color:   rgba(200,0,0, 0.8);
  --light-grey-bg:        #f6f6f6;
  --dark-grey-bg:         #4c4c4c;
  --danger-color:         #ff0000;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
  overflow-y: scroll;
  font-size: 10px;
  font-size: clamp(7.5px, calc(100vw * 10 / 1024), 35px);
}

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  line-height: 3.1rem;
  background: #fff;
  color: var(--main-color);
  margin: 0;
  position: relative;
}

html,
body {
  min-width: 768px;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:active,
:focus:not(:focus-visible) {
  outline: none;
}

img {
  vertical-align: middle;
  border: none;
  max-width: 100%;
  height: auto;
}

b,
strong {
  font-weight: bold;
}

a {
  color: inherit;
  text-decoration: underline;
}

p,
ul,
ol,
dl,
pre,
table,
figure,
address,
fieldset,
blockquote {
  margin: 0 0 1.6rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 800;
  line-height: 1.2;
  color: inherit;
  margin: 0 0 1.6rem 0;
}

h1, .h1 {
  font-size: 4.5rem;
  line-height: 5.6rem;
  margin-bottom: 3rem;
}

h2, .h2 {
  font-size: 3.2rem;
  line-height: 4.4rem;
  margin-bottom: 2.9rem;
}

h3, .h3 {
  font-size: 2.3rem;
  line-height: 4.4rem;
  margin-bottom: 1.9rem;
}

h4, .h4 {
  font-size: 2rem;
  line-height: 3.1rem;
}

h5, .h5 {
  font-size: 2rem;
}

h6, .h6 {
  font-size: 1.6rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-control,
.form-select {
  display: block;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  transition: 0.15s ease-in-out;
  width: 100%;
  border: none;
  background-color: var(--light-grey-bg);
  color: var(--secondary-color);
  height: 4.8rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding: 1.2rem 2rem;
  border-radius: 0;
}

.form-control::placeholder {
  color: var(--secondary-color);
}

.form-select {
  max-width: 100%; 
  margin: 0;
  padding-right: 50px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23383838' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 15px 10px;
}

.form-select::-ms-expand {
  display: none;
}

textarea.form-control {
  max-width: 100%;
  min-width: 100%;
  overflow: auto;
  height: auto;
  resize: none;
}

.form-control:focus,
.form-select:focus {
  outline: none;
}

.form-note {
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin: 1.6rem auto 0;
}

.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  border: none;
  background-color: var(--dark-grey-bg);
  color: #fff;
  width: 100%;
  height: 4.8rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding: 1.2rem 2rem;
  border-radius: 0;
}

.btn:hover {
  background-color: var(--main-color);
  text-decoration: none;
  color: #fff;
}

.btn_green {
  width: auto;
  font-size: 1.6rem;
  height: auto;
  background-color: var(--accent-color);
  border-radius: .5rem;
  padding: 0.6rem 2.1rem;
}

.btn_green:hover {
  background-color: var(--accent-hover-color);
}

.form-btn-wrapper {

}

.form-btn {

}

.form-result-btn {
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: normal;
  cursor: default;
  position: relative;
}

form:not(.is-complete) .form-result-btn > span {
  opacity: 0;
}

form:not(.is-complete).is-sending .form-result-btn:after {
  content: '';
  position: absolute;
  width: 2rem;
  height: 2rem;
  left: 50%;
  top: 50%;
  margin: -1rem;
  border: 1px solid;
  border-right-color: transparent;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

form:not(.is-sending) .form-result-btn,
form.is-sending .form-btn {
  display: none;
}

.content {
  padding: 2rem;
  max-width: 102.4rem;
  margin: 0 auto;
  position: relative;
}

.container-sm {
  max-width: 65.6rem;
  margin: 0 auto;
}

.container {
  max-width: 80.6rem;
  margin: 0 auto;
}

.logo {
  position: absolute;
  left: 2rem;
  top: 1.7rem;
}

.logo img {
  display: block;
}

.contact-btn-wrapper {
  position: fixed;
  right: 2rem;
  top: 1.5rem;
  z-index: 100;
}

.social-btn {
  font-size: 1.6rem;
  height: auto;
  border-radius: 50%;
  padding: 0.6rem 0;
  text-indent: -9999px;
  width: 3.6rem;
}

.social-btn:hover {
  opacity: .7;
}

.social-btn_whatsapp {
  background: #65bc54 url('../images/whatsapp.svg') center center no-repeat !important;
  background-size: 90% 90% !important;
}

.social-btn_telegram {
  background: #64a9dc url('../images/telegram.svg') center center no-repeat !important;
  background-size: 90% 90% !important;
}

.nav {
  margin: -0.4rem 7rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 7.4rem;
}

.nav a {
  color: inherit;
  text-decoration: none;
}

.nav a:hover {
  color: inherit !important;
  border-bottom: 1px solid;
}

.hero {
  text-align: center;
  padding: 4.5rem 0 5rem;
}

.hero p {
  margin: 0 auto;
  max-width: 23em;
}

.thanks {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  min-height: calc(100vh - 7rem);
}

.thanks__inner {
  width: 100%;
}

.thanks p {
  margin: 0 auto;
  max-width: 23em;
}

.team {
  display: flex;
  margin-bottom: 3.5rem;
}

.team__item {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 1px;
  text-align: center;
}

.team__item img {
  display: block;
  width: 100%;
  height: auto;
}

.team__text {
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin: 1.2rem 0;
}

.about {
  margin-bottom: 4.4rem;
}

.numbers-speak {
  margin-bottom: 2.1rem;
}

.projects {
  margin: 0 2.5rem 7rem 7.5rem;
  position: relative;
}

.table-wrapper {
  position: relative;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.4rem;
  line-height: 2.5rem;
}

.table th,
.table td {
  text-align: left;
  vertical-align: baseline;
  padding: 0 .2rem;
}

.table th:first-child,
.table td:first-child {
  padding-left: 0;
}

.table th:last-child,
.table td:last-child {
  padding-right: 0;
  text-align: right;
}

.table th {
  font-weight: normal;
  border-bottom: 1px solid;
  padding-bottom: 0.5rem;
}

.table td {
  white-space: nowrap;
}

.table small {
  display: block;
  font-size: 0.7rem;
  line-height: 1rem;
  margin-top: -0.1rem;
  white-space: normal;
}

.table__group-header {
  position: relative;
}

.table__group-title {
  position: absolute;
  right: 100%;
  bottom: 0;
  margin: 0 1.4rem -0.7rem 0;
}

.table__space {
  font-size: 1px !important;
  line-height: 1 !important;
  padding: 0.55rem 0 !important;
}

.table__group {
  --theme: var(--main-color);
}

.table__group_red {
  --theme: var(--danger-color);
}

.table__group_green {
  --theme: var(--accent-color);
}

.table__group tr:first-child td {
  padding-top: 0.7rem;
}

.table__group tr:last-child td {
  padding-bottom: 0.5rem;
  padding-top: 1.1rem;
  color: var(--theme);
}

.table__group td:first-child {
  border-left: 1px solid var(--theme);
}

.table__group tr:first-child td:first-child {
  border-top: 1px solid var(--theme);
}

.table__group tr:last-child td:first-child {
  border-bottom: 1px solid var(--theme);
}

.table tfoot {
  color: var(--accent-color);;
}

.table tfoot {
  line-height: 1.9rem;
}

.table__foot-line {
  margin: 0.1rem 0 0.7rem;
  height: 6.9rem;
}

.table__foot-line:before {
  content: '';
  display: block;
  height: 100%;
  margin: 0 auto;
  border-left: 1px solid;
  width: 0;
}

.table__clicks {
  position: relative;
}

.table__clicks:before {
  content: '👉';
  position: absolute;
  right: 100%;
  top: 0;
  font-size: 3.6rem;
  line-height: 1;
}

.projects__total {
  position: absolute;
  left: 100%;
  bottom: -1.3rem;
  color: var(--accent-color);
  font-size: 1.4rem;
  line-height: 1.7rem;
  margin-left: 3.3rem;
}

.projects__total strong {
  display: block;
  font-size: 3.8rem;
  line-height: 4.6rem;
  font-weight: bold;
  white-space: nowrap;
}

.free-audit {
  display: flex;
  position: relative;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.free-audit__image {
  flex: 0 0 auto;
  width: 10rem;
  margin-right: 2rem;
  font-size: 1.0rem;
  line-height: 1.4rem;
}

.free-audit__image-wrapper {
  
}

.free-audit__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.free-audit__image-wrapper p {
  margin-bottom: .7rem;
}

.free-audit__content {
  display: flex;
  min-height: 10rem;
  align-items: center;
}

.free-audit__lead {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.free-audit__lead p:last-child {
  margin-bottom: 0;
}

.free-audit h4 {
  margin-bottom: 1.1rem;
}

.maximum-even {
  margin-bottom: 4.6rem;
}

.business-topics {
  margin-bottom: 5.1rem;
}

.business-topics-list {
  margin: 0;
  padding: 0;
  list-style: none;
  column-count: 3;
  column-gap: 1rem;
  font-size: 2rem;
}

.business-topics-list li {
  display: flex;
  align-items: baseline;
  column-gap: 1rem;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

.business-topics-list li > span:first-child {
  text-align: center;
  min-width: 1.4em;
}

.how-we-work {
  margin-bottom: 5rem;
}

.how-we-work-block {
  background-color: var(--light-grey-bg);
  padding: 2rem;
}

.calculate-cost-block {
  background-color: var(--light-grey-bg);
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 5rem;
}

.calculate-cost-block p {
  margin-bottom: 3rem;
}

.form-block {
  max-width: 33.8rem;
  margin: 0 auto 6rem;
  text-align: center;
}

.form-block .form-block {
  margin: 0;
}

.form-block h4 {
  margin-bottom: 3.1rem;
}

.target {
  scroll-margin-top: 2rem;
}

.page-title {
  text-align: center;
  padding: 5rem 0 2rem;
}

.projects-list {
  margin: -2rem -1rem 5rem;
  display: flex;
  flex-wrap: wrap;
}

.projects-list__item {
  flex: 0 0 auto;
  width: 33.33%;
  padding: 0 1rem;
  margin-top: 2rem;
}

.project-item {
  display: block;
  color: inherit;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 2.2rem;
  position: relative;
}

.project-item:before {
  content: '';
  display: block;
  padding-top: calc(250 * 100% / 380);
}

.project-item__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.project-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-item__image:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  transition: all 1500ms;
}

.project-item:hover .project-item__image:after {
  background-color: rgba(0, 0, 0, .8);
}

.project-item__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.project-item__content {
  width: 100%;
  text-align: center;
  color: #fff;
}

.project-item__title {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: normal;
  margin-bottom: 1.5rem;
}

.project-item__btn {
  width: auto;
  height: auto;
  border-radius: .5rem;
  font-size: 1.2rem;
  border: 2px solid #05D706;
  background-color: rgba(255,255,255,.89);
  color: var(--main-color);
  padding: 0.4rem 1.9rem;
  transition: 0.25s ease-in-out;
  transition-property: background-color, color;
}

.project-item__btn:hover {
  background-color: #05D706;
  color: #fff;
}

.project-item__text {

}

.text-center {
  text-align: center;
}

.section {
  margin-bottom: 5rem;
}

.page-header {
  display: block;
  color: inherit;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 2.2rem;
  position: relative;
  margin: 2rem -2rem;
  border-bottom: 2px solid var(--accent-color);
  overflow: hidden;
}

.page-header:before {
  content: '';
  display: block;
  padding-top: 30rem;
}

.page-header__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(min(1.3, calc(1 + var(--scroll) / 2000)));
}

.page-header__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header__image:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  transition: all 1500ms;
}

.page-header__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.page-header__content {
  width: 100%;
  text-align: center;
  color: #fff;
}

.page-header__subtitle {

}

.page-header__title {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin-bottom: 1.8rem;
}

.page-header__btn {
  width: auto;
  height: auto;
  border-radius: .5rem;
  font-size: 1.2rem;
  border: 2px solid #05D706;
  background-color: rgba(255,255,255,.89);
  color: var(--main-color);
  padding: 0.4rem 1.9rem;
  transition: 0.25s ease-in-out;
  transition-property: background-color, color;
}

.page-header__btn:hover {
  background-color: #05D706;
  color: #fff;
}

.fancybox__container .fancybox__content.popup-window>.f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: var(--secondary-color);
  --f-button-hover-color: var(--main-color);
  --f-button-bg: #fff;
  --f-button-active-bg: #fff;
  --f-button-hover-bg: #fff;
  --f-button-width: 4rem;
  --f-button-height: 4rem;
  --f-button-svg-width: 2rem;
  --f-button-svg-height: 2rem;
  opacity: 1;
  top: 0;
  right: 0;
}

.popup-window {
  background: #fff;
  padding: 4rem 3rem 3rem;
  width: 34rem;
  overflow: visible;
  border-radius: 1rem;
}

.popup-window:not(.fancybox__content) {
  display: none;
}

.popup-window .form-block {
  max-width: none;
  margin: 0;
}