/* ********************
 * * Lark.sass v3.2
 * * Description: CSS reset and adaptive layout
 * * Author: Dima Boro
 * * LastUpd: 12.09.2022
 * ******************** */
:root {
  --padding-side: 15px;
  --content-width: calc(100vw - 30px);
  --body-width: calc(100vw - var(--scrollbar-width));
  --side-width: calc( ( var(--body-width) - var(--content-width) + 30px ) / 2 );
  --scrollbar-width: 17px;
}

*::-moz-selection {
  background: #333;
  color: #fff;
}

*::selection {
  background: #333;
  color: #fff;
}

body, html {
  scroll-behavior: smooth;
}

html {
  touch-action: manipulation;
  overflow-x: hidden;
}
html.noscroll {
  overflow: hidden !important;
  padding-right: var(--scrollbar-width);
}

[class*=-box] {
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  box-sizing: border-box;
}

input, textarea, select, pre, blockquote, button {
  font: inherit;
  background: transparent;
}

input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

textarea {
  resize: none;
}

:focus {
  outline: 0;
}

[hidden] {
  display: none;
}

[draggable=false] {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

img, svg {
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  color: currentColor;
}

a, a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  cursor: pointer;
}

p:not(:last-child), .p:not(:last-child) {
  margin-bottom: 1.45em;
}

.preload * {
  transition: none !important;
}

.text-box h1, .text-box h2, .text-box h3, .text-box h4, .text-box h5, .text-box h6 {
  margin: 25px 0 15px;
}
.text-box a {
  text-decoration: underline;
}
.text-box ul, .text-box ol {
  margin: 10px 10px 20px;
}
.text-box li {
  margin: 5px 0;
}
.text-box ul li {
  list-style: disc inside;
}
.text-box ol li {
  list-style: decimal inside;
}
.text-box p {
  margin: 10px 0 15px;
}
.text-box > *:first-child {
  margin-top: 0;
}
.text-box > *:last-child {
  margin-bottom: 0;
}

.cover-image, .works-box .works-list .w-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.row {
  padding-left: var(--padding-side);
  padding-right: var(--padding-side);
}

.container, .container-full {
  position: relative;
  padding-left: var(--padding-side);
  padding-right: var(--padding-side);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.container {
  max-width: var(--content-width);
}

@media (min-width: 420px) {
  :root {
    --screen-name: sm;
    --content-width: 360px;
  }
  .hidden-sm {
    display: none !important;
  }
}
@media (max-width: 419.99px) {
  .visible-sm {
    display: none !important;
  }
}
@media (min-width: 768px) {
  :root {
    --screen-name: md;
    --content-width: 740px;
  }
  .hidden-md {
    display: none !important;
  }
}
@media (max-width: 767.99px) {
  .visible-md {
    display: none !important;
  }
}
@media (min-width: 992px) {
  :root {
    --screen-name: lg;
    --content-width: 960px;
  }
  .hidden-lg {
    display: none !important;
  }
}
@media (max-width: 991.99px) {
  .visible-lg {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  :root {
    --screen-name: xl;
    --content-width: 1190px;
  }
  .hidden-xl {
    display: none !important;
  }
}
@media (max-width: 1199.99px) {
  .visible-xl {
    display: none !important;
  }
}
@media (min-width: 1540px) {
  :root {
    --screen-name: xxl;
    --content-width: 1470px;
  }
  .hidden-xxl {
    display: none !important;
  }
}
@media (max-width: 1539.99px) {
  .visible-xxl {
    display: none !important;
  }
}
.w-100 {
  width: 100% !important;
}

.w-50 {
  width: 50% !important;
}

.w-25 {
  width: 25% !important;
}

.w-0 {
  width: 0 !important;
}

.w-auto {
  width: auto !important;
}

[tabs-here] [data-tab-name]:not(.tab-active) {
  cursor: pointer;
}
[tabs-here] [data-tab-content]:not(.tab-active) {
  display: none;
}

@keyframes round {
  0% {
    transform: none;
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 0.9;
  }
}
/* ========= General ========= */
::-moz-selection {
  background: #E25914;
  color: #fff;
}
::selection {
  background: #E25914;
  color: #fff;
}

body {
  font: 400 16px/1.3 "Ubuntu", sans-serif;
  color: #282828;
  background: #fff;
}

.wrapper {
  position: relative;
  margin: 0 auto;
  background: #fff;
  max-width: var(--body-width);
  width: 100%;
  overflow: hidden;
}

.color, .primary {
  color: #E25914;
}

.secondary {
  color: #F0AC89;
}

a, .a {
  color: currentColor;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
a:hover, .a:hover {
  color: #E25914;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.h1, .h2, .h3, .h4, .h5, .h6, .h {
  font-weight: 700;
}

.h1 {
  font-size: 64px;
}

.h2 {
  font-size: 32px;
}

.h3 {
  font-size: 24px;
  font-weight: 500;
}

.h4 {
  font-size: 20px;
}

.h5 {
  font-size: 18px;
}

.h6 {
  font-size: 16px;
}

b, strong {
  font-weight: 700;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: #E0E0E0;
  background-clip: content-box;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}
.custom-scroll::-webkit-scrollbar-track {
  background: #FFFFFF;
}
.custom-scroll::-webkit-scrollbar {
  width: 9px;
  height: 9px;
  -webkit-appearance: none;
}
.custom-scroll::-webkit-scrollbar-corner {
  background: transparent;
}

.h-title {
  padding: 40px 0 40px;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  height: 100%;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.25s;
  cursor: pointer;
  padding: 0 32px;
  height: 53px;
  max-height: 53px;
  color: #fff !important;
  transform: translate(0);
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #282828;
  box-shadow: inset 0 0 0 2px currentColor;
  transition: inherit;
  transform: translate(0);
  z-index: -1;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E25914;
  box-shadow: inset 0 0 0 1px currentColor;
  color: #E25914;
  transition: inherit;
  z-index: -1;
}
.btn:hover {
  color: #fff !important;
}
.btn:hover::after {
  background: #282828;
  box-shadow: none;
}
.btn:not(:active) {
  transform: translate(-9px, -7px);
}
.btn:not(:active)::before {
  transform: translate(9px, 7px);
}

.btn-white {
  color: #282828 !important;
}
.btn-white::before {
  color: #E25914;
}
.btn-white::after {
  background: #fff;
}
.btn-white:hover {
  color: #fff !important;
}
.btn-white:hover::after {
  background: #E25914;
}

.btn-white-alt {
  color: #282828 !important;
}
.btn-white-alt::before {
  color: #282828;
}
.btn-white-alt::after {
  background: #fff;
  color: transparent;
}
.btn-white-alt:hover {
  color: #fff !important;
}
.btn-white-alt:hover::after {
  background: #282828;
}

.round-el {
  display: none;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: round 1s linear infinite;
}

.form-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
}

.form-item {
  position: relative;
  margin-bottom: 30px;
}

.form-input input, .form-input textarea {
  display: block;
  padding: 0 32px;
  height: 53px;
  width: 100%;
  font-size: inherit;
  color: #282828;
  background: #fff;
  box-shadow: inset 0 0 0 1px #282828;
  transition: 0.2s;
}
.form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
  color: rgba(40, 40, 40, 0.5);
}
.form-input input::placeholder, .form-input textarea::placeholder {
  color: rgba(40, 40, 40, 0.5);
}
.form-input input:focus, .form-input textarea:focus {
  box-shadow: inset 0 0 0 1px #F0AC89;
}
.form-input input.invalid, .form-input textarea.invalid {
  box-shadow: inset 0 0 0 1px #e37474;
  color: #e37474;
}
.form-input textarea {
  min-height: 153px;
}

.form-checkbox {
  display: flex;
  align-self: flex-start;
  align-items: center;
  cursor: pointer;
}
.form-checkbox input[type=checkbox],
.form-checkbox input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-right: 14px;
  background: no-repeat 50%;
  border-radius: 0;
  border: 0;
  outline: 0;
  pointer-events: none;
}
.form-checkbox input[type=checkbox]:checked,
.form-checkbox input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.1454 0L5.01224 6.32097L1.99556 3.24593L0 5.03209L4.8736 10L14 1.92022L12.1454 0Z' fill='white'/%3E%3C/svg%3E");
  background-color: #E25914;
}
.form-checkbox input[type=checkbox]:not(:checked),
.form-checkbox input[type=radio]:not(:checked) {
  border: 1px solid #DADDDE;
}
.form-checkbox span {
  max-width: 520px;
  line-height: 1;
}

.form {
  position: relative;
}
.form .form-done {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(5px);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.form.done .form-done {
  visibility: visible;
  opacity: 1;
}
.form.done .form-done ~ * {
  opacity: 0.2;
  pointer-events: none;
}
.form.loading {
  pointer-events: none;
  animation: blink 0.5s infinite alternate;
}
.form.loading .btn {
  filter: grayscale(100%);
  color: transparent !important;
}
.form.loading .btn .round-el {
  display: block;
}

:root {
  --header-height: 81px;
}

.header-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: #282828;
  color: #fff;
}
.header-box .container {
  display: flex;
  align-items: center;
  height: var(--header-height);
}
.header-box a:hover {
  text-decoration: none;
}
.header-box .logo {
  margin: 8px 0 0 -6px;
}
.header-box .middle-col {
  margin: 0 49px 0 auto;
  display: flex;
  align-items: center;
}
.header-box .h-circle {
  flex-shrink: 0;
  margin: 0 17px;
  width: 8px;
  height: 8px;
  box-shadow: inset 0 0 0 2px #E25914;
  border-radius: 50%;
}
.header-box .btn {
  margin-bottom: -8px;
}

.home-box {
  margin-top: var(--header-height);
  padding-top: 40px;
}
.home-box .home-top {
  display: grid;
  grid-template-columns: 762fr 618fr;
  gap: 40px;
  font-size: 20px;
}
.home-box .left-side .h1 {
  max-width: 700px;
}
.home-box .home-image-1 {
  position: relative;
  margin-top: 40px;
  padding-bottom: 64.4855%;
  background: #E5E5E5 url("../images/main/home-1-bg.png") no-repeat 50% 50%;
  background-size: cover;
}
.home-box .home-image-1 .machine {
  position: absolute;
  left: 63px;
  bottom: 26px;
}
.home-box .home-image-1 .hi-top-info {
  position: absolute;
  top: 38px;
  right: 37px;
  width: 220px;
}
.home-box .home-image-1 .hi-bottom-info {
  position: absolute;
  right: 37px;
  bottom: 37px;
  width: 220px;
}
.home-box .home-image-1 .bi-row {
  display: flex;
  align-items: center;
  margin-top: 13px;
  line-height: 1.05;
}
.home-box .home-image-1 .bi-row .icon {
  flex-shrink: 0;
  width: 30px;
  margin-right: 10px;
}
.home-box .right-side .r-text {
  margin: 20px 0 42px;
  max-width: 600px;
}
.home-box .right-side .btn {
  margin-left: 11px;
}
.home-box .home-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  font-size: 20px;
}
.home-box .home-bottom .hb-col {
  display: flex;
  align-items: center;
}
.home-box .home-bottom .hb-big {
  margin-right: 20px;
  font-size: 3.2em;
  font-weight: 700;
  color: #E25914;
}
.home-box .home-bottom .hb-text {
  max-width: 160px;
  white-space: pre-line;
}

.calculate-box {
  padding-top: 40px;
  padding-bottom: 10px;
}
.calculate-box .top-row {
  display: flex;
  justify-content: space-between;
  max-width: 1388px;
}
.calculate-box .top-row .form-input {
  max-width: 142px;
}
.calculate-box .top-row .form-input input {
  max-width: 100px;
}
.calculate-box .top-row .form-title {
  max-width: 142px;
}
.calculate-box .form-types-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.calculate-box .form-types-list .ft-label {
  margin-right: 20px;
}
.calculate-box .form-types-list .ft-label input {
  display: none;
}
.calculate-box .form-types-list .ft-label input:checked ~ .ft-item {
  opacity: 1;
}
.calculate-box .form-types-list .ft-item {
  display: flex;
  align-items: center;
  padding: 0 32px;
  height: 53px;
  line-height: 1;
  background: #E25914;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
  opacity: 0.7;
}
.calculate-box .form-types-list .ft-item:not(:hover) {
  opacity: 0.5;
}
.calculate-box .form-check {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.calculate-box .form-check input:checked ~ .f-squre::after {
  margin-left: 0.1886792em;
}
.calculate-box .form-check input:checked ~ .f-last {
  opacity: 0.5;
}
.calculate-box .form-check input:not(:checked) ~ .f-first {
  opacity: 0.5;
}
.calculate-box .form-check .f-squre {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 1.88679em;
  height: 1em;
  margin: 0 20px;
  font-size: 53px;
  background: #E25914;
}
.calculate-box .form-check .f-squre::after {
  content: "";
  margin-left: 1em;
  width: 0.69811em;
  height: 0.69811em;
  background: #fff;
  transition: margin 0.2s;
}
.calculate-box .form-check .f-first,
.calculate-box .form-check .f-last {
  transition: opacity 0.2s;
}
.calculate-box .bottom-row {
  display: flex;
  justify-content: space-between;
  max-width: 653px;
  width: 100%;
}
.calculate-box .bottom-row .form-title {
  max-width: 108px;
}
.calculate-box .bottom-row .form-input {
  max-width: 162px;
}
.calculate-box .bottom-row .form-phone {
  max-width: 259px;
}

.services-box {
  padding-bottom: 40px;
  background: #7B7369 url("../images/main/services-bg.png") no-repeat 50%;
  background-size: cover;
}
.services-box .h2 {
  color: #fff;
}
.services-box .s-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.services-box .s-item {
  display: flex;
  flex-direction: column;
}
.services-box .s-item .s-top {
  position: relative;
}
.services-box .s-item .s-info {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 12px;
  background: #E25914;
  color: #fff;
}
.services-box .s-item .s-bottom {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  height: 100%;
  min-height: 1px;
}

.pluses-box .p-list {
  display: flex;
  justify-content: space-between;
}
.pluses-box .p-list .p-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 53px 29px;
  max-width: 333px;
  width: 100%;
  background: url("../images/icons/stroke.png") no-repeat 50% 50%;
  background-size: contain;
  color: #fff;
}

@media (min-width: 1600px) {
  .pluses-box .p-list {
    margin-left: -1px;
    margin-right: -12px;
  }
}
.about-box {
  padding-top: 30px;
}
.about-box .about-row {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 80px;
}
.about-box .r-text {
  max-width: 620px;
  margin-bottom: 32px;
}
.about-box .benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 37px 20px;
  max-width: 690px;
}
.about-box .benefits-list .b-item {
  display: flex;
}
.about-box .benefits-list .icon {
  width: 60px;
  flex-shrink: 0;
  margin-right: 20px;
}
.about-box .benefits-list .b-text {
  white-space: pre-line;
  max-width: 400px;
}

@media (min-width: 1600px) {
  .about-box .about-row {
    margin-top: -6px;
  }
}
.works-box {
  padding-top: 35px;
}
.works-box .works-list {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: 40px;
}
.works-box .works-list .w-item {
  position: relative;
  height: calc(var(--content-width) * 0.1156465);
}
.works-box .works-list .w-3 {
  grid-column: span 3;
}
.works-box .works-list .w-4 {
  grid-column: span 4;
}
.works-box .works-list .w-5 {
  grid-column: span 5;
}
.works-box .works-list .w-6 {
  grid-column: span 6;
}
.works-box .works-list .w-9 {
  grid-column: span 9;
}
.works-box .works-list .w-v {
  grid-row: 1/4;
  height: auto;
  grid-column-end: -1;
}

.types-box {
  padding-top: 40px;
}
.types-box .type-list {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.types-box .t-text {
  margin-top: 20px;
}

.reviews-box {
  padding-top: 40px;
}
.reviews-box .reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.reviews-box .reviews-item {
  padding: 20px;
  color: #420E08;
  background: #F5F5F5;
}
.reviews-box .r-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.reviews-box .r-name {
  color: #E25914;
}
.reviews-box .r-date {
  opacity: 0.5;
}

@media (min-width: 1600px) {
  .reviews-box .reviews-item {
    padding-right: 40px;
  }
}
.callback-box {
  padding-top: 40px;
  overflow: hidden;
}
.callback-box .callback-wrap {
  background: #E25914;
}
.callback-box .callback-wrap .container {
  display: flex;
}
.callback-box .cb-left {
  margin-left: calc(var(--side-width) * -1);
  width: 100%;
  background: #C8CCD5 url("../images/main/callback-bg.png") no-repeat 50% 50%;
  background-size: cover;
}
.callback-box .cb-form {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 462px;
  padding: 40px 0 20px 60px;
  color: #fff;
}
.callback-box .cb-form .round-el {
  border-top-color: #282828;
  border-bottom-color: #282828;
}
.callback-box .cb-form .form-row {
  display: grid;
  align-items: end;
  grid-template-columns: auto auto;
  gap: 50px;
  margin-top: 39px;
}
.callback-box .cb-form .form-input:last-child {
  margin: -10px 0 0;
}
.callback-box .cb-form .form-input input {
  height: 36px;
  padding: 0 20px;
  box-shadow: none;
}
.callback-box .cb-form .bottom-el {
  margin-top: 20px;
  font-size: 11px;
}
.callback-box .cb-form .bottom-el .a-black {
  color: #282828;
  opacity: 1;
}
.callback-box .cb-form .bottom-el a {
  opacity: 0.5;
}
.callback-box .cb-form .bottom-el a:hover {
  text-decoration: underline;
  color: currentColor;
}
.callback-box .cb-form .bottom-el p:not(:last-child) {
  margin-bottom: 1.6em;
}

@media (min-width: 1600px) {
  .callback-box .cb-left {
    margin-right: -9px;
  }
  .callback-box .cb-form {
    left: 9px;
  }
}
.footer-box {
  padding: 40px 0;
  background: #282828;
  color: #fff;
}
.footer-box .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-box .h3 {
  margin-bottom: 35px;
}
.footer-box .left-col .logo {
  display: inline-block;
  margin-left: -18px;
  margin-bottom: 27px;
}
.footer-box ul {
  display: grid;
  gap: 17px;
}
.footer-box .f-item {
  display: flex;
  align-items: center;
  line-height: 1;
}
.footer-box .f-item .icon {
  flex-shrink: 0;
  margin-right: 10px;
}

@media (min-width: 1600px) {
  .footer-box .middle-col {
    padding-left: 3px;
  }
}
@media (max-width: 1539.98px) {
  .h1 {
    font-size: 45px;
  }
  .h2 {
    font-size: 27px;
  }
  .h3 {
    font-size: 22px;
  }
  .form-input input, .form-input textarea {
    padding: 0 20px;
    max-height: 50px;
  }
  .btn {
    padding: 0 20px;
    max-height: 50px;
  }
  .calculate-box .form-types-list .ft-item {
    padding: 0 20px;
    height: 50px;
  }
  .calculate-box .form-check .f-squre {
    font-size: 50px;
  }
  .header-box {
    font-size: 14px;
  }
  .header-box .logo {
    margin: 0;
  }
  .header-box .h-circle {
    margin: 0 10px;
  }
  .home-box .home-image-1 .machine {
    left: 0;
    max-width: 360px;
  }
  .home-box .home-top {
    font-size: inherit;
  }
  .home-box .home-bottom {
    font-size: 18px;
  }
  .calculate-box .form-types-list .ft-label {
    margin-right: 10px;
  }
  .calculate-box .form-types-list {
    margin-bottom: -10px;
  }
  .calculate-box .form-check .f-squre {
    margin: 0 10px;
  }
  .calculate-box .top-row .form-title {
    max-width: 110px;
  }
  .pluses-box .p-list .p-item {
    font-size: 14px;
  }
  .about-box .about-row {
    gap: 40px;
  }
  .about-box .left-side {
    max-width: 500px;
  }
  .about-box .r-text {
    margin-bottom: 0;
  }
  .works-box .works-list {
    gap: 20px;
  }
}
@media (max-width: 1199.98px) {
  :root {
    --header-height: 70px;
  }
  .h1 {
    font-size: 38px;
  }
  .h2 {
    font-size: 25px;
  }
  .h3 {
    font-size: 18px;
  }
  .h-title {
    padding: 40px 0 30px;
  }
  .form-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .form-input input, .form-input textarea {
    padding: 0 17px;
    max-height: 45px;
  }
  .btn {
    padding: 0 17px;
    max-height: 45px;
  }
  .calculate-box .form-types-list .ft-item {
    padding: 0 17px;
    height: 45px;
  }
  .calculate-box .form-check .f-squre {
    font-size: 45px;
  }
  .header-box .logo {
    max-width: 180px;
  }
  .header-box {
    font-size: 12px;
  }
  .header-box .h-circle {
    margin: 0 7px;
  }
  .header-box .middle-col {
    margin-right: 30px;
  }
  .home-box .home-image-1 .machine {
    max-width: 55%;
  }
  .home-box .home-image-1 .hi-top-info {
    top: 0;
  }
  .home-box .home-image-1 .hi-bottom-info {
    bottom: 0;
  }
  .home-box .home-image-1 .hi-top-info,
  .home-box .home-image-1 .hi-bottom-info {
    right: 0;
    margin: 20px;
    width: 11em;
  }
  .home-box .home-image-1 .bi-row {
    margin-top: 0;
  }
  .home-box .home-bottom {
    font-size: 13px;
  }
  .calculate-box .top-row {
    flex-wrap: wrap;
  }
  .calculate-box .top-row .form-item:first-child {
    width: 100%;
  }
  .calculate-box .bottom-row .form-title {
    max-width: 80px;
  }
  .calculate-box .form-types-list .ft-label {
    display: block;
  }
  .services-box .s-list {
    gap: 20px;
  }
  .services-box .s-item .s-bottom {
    padding: 15px;
  }
  .services-box .s-item .s-info {
    font-size: inherit;
  }
  .pluses-box .p-list .p-item {
    font-size: 12px;
    padding: 20px 45px;
    margin-right: -15px;
  }
  .about-box {
    padding-top: 0;
  }
  .about-box .about-row {
    gap: 20px;
  }
  .about-box .left-side {
    max-width: 320px;
  }
  .about-box .benefits-list .icon {
    max-width: 50px;
  }
  .about-box .benefits-list .icon svg {
    max-width: 100%;
  }
  .about-box .benefits-list {
    gap: 25px 15px;
  }
  .types-box {
    padding-top: 0;
  }
  .callback-box .cb-form {
    padding-left: 40px;
  }
  .footer-box .h3 {
    margin-bottom: 25px;
  }
  .footer-box ul {
    gap: 10px;
  }
}
@media (max-width: 991.98px) {
  .header-box .h-circle {
    display: none;
  }
  .header-box .middle-col {
    display: grid;
    grid-template-columns: auto auto;
    gap: 3px 10px;
  }
  .home-box .home-bottom {
    display: grid;
    justify-content: center;
    grid-template-columns: auto auto;
    margin-top: 40px;
    gap: 0 30px;
  }
  .home-box .home-bottom .hb-col:nth-child(3) {
    order: 2;
  }
  .pluses-box .p-list {
    display: grid;
    justify-content: start;
    grid-template-columns: auto auto;
  }
  .pluses-box .p-list .p-item {
    margin-right: 0;
    max-width: 290px;
  }
  .pluses-box .p-list .p-item .p-text {
    display: flex;
    align-items: center;
    height: 88px;
    max-width: 180px;
  }
  .about-box .left-side {
    display: none;
  }
  .about-box .about-row {
    display: block;
  }
  .works-box .works-list {
    gap: 10px;
  }
  .types-box .type-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .types-box .type-list .type-item {
    max-width: 50%;
  }
  .types-box .type-list .type-item:not(:last-child) {
    margin-bottom: 30px;
  }
  .reviews-box .reviews-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-box .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-box .left-col {
    grid-column: 1/-1;
    order: 2;
  }
  .footer-box .left-col .logo {
    margin: 0 -10px 10px;
    max-width: 180px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --scrollbar-width: 0px;
  }
  body {
    font-size: 14px;
  }
  .h1 {
    font-size: 33px;
  }
  .h2 {
    font-size: 22px;
  }
  .h3 {
    font-size: 16px;
  }
  .h-title {
    padding: 40px 0 20px;
    text-align: center;
  }
  .form-title {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }
  .form-input input, .form-input textarea {
    padding: 0 15px;
    max-height: 40px;
  }
  .btn {
    padding: 0 15px;
    max-height: 40px;
    font-size: 12px;
  }
  .calculate-box .form-types-list .ft-item {
    padding: 0 15px;
    max-height: 40px;
  }
  .calculate-box .form-check .f-squre {
    font-size: 40px;
  }
  .header-box .logo {
    max-width: 130px;
    margin-right: auto;
  }
  .header-box .middle-col {
    display: none;
    grid-template-columns: 1fr;
  }
  .header-box .middle-col .h-time,
  .header-box .middle-col .h-address {
    display: none;
  }
  .home-box .h1 {
    text-align: center;
  }
  .home-box .home-image-1 {
    margin-top: 30px;
  }
  .home-box .home-image-2 {
    display: none;
  }
  .home-box .home-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-box .right-side {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home-box .right-side .r-text {
    margin: 0 0 30px;
    text-align: center;
  }
  .home-box .home-image-1 .bi-row .icon {
    width: 25px;
    margin-right: 7px;
  }
  .home-box .home-image-1 .bi-row .icon svg {
    max-width: 100%;
  }
  .home-box .home-image-1 .hi-top-info, .home-box .home-image-1 .hi-bottom-info {
    margin: 15px;
    width: 10.8em;
  }
  .home-box .home-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .home-box .home-bottom .hb-col:nth-child(3) {
    order: initial;
  }
  .calculate-box {
    padding: 0;
  }
  .calculate-box .form-input input {
    text-align: center;
  }
  .calculate-box .form-item,
  .calculate-box .form-input {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .calculate-box .form-types-list {
    justify-content: center;
  }
  .calculate-box .form-types-list .ft-label {
    margin: 0 5px 7px;
  }
  .calculate-box .top-row .form-title {
    max-width: none;
  }
  .calculate-box .bottom-row .form-title {
    max-width: none;
  }
  .calculate-box .bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
  }
  .calculate-box .form-btn {
    grid-column: 1/-1;
    justify-content: center;
  }
  .calculate-box .form-btn .form-title {
    display: none;
  }
  .services-box {
    background: #282828;
  }
  .services-box .s-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .pluses-box .p-list {
    grid-template-columns: auto;
    justify-content: center;
  }
  .about-box .h-title {
    text-align: left;
  }
  .about-box .benefits-list {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .works-box {
    padding-top: 0;
  }
  .works-box .works-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .works-box .works-list .w-item {
    grid-column: initial;
    grid-row: initial;
    height: calc(var(--content-width) * 0.25);
  }
  .works-box .works-list .w-item:last-child {
    display: none;
  }
  .types-box .type-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .types-box .type-list .type-item {
    max-width: 280px;
  }
  .types-box .t-text {
    margin-top: 10px;
  }
  .callback-box .cb-left {
    display: none;
  }
  .callback-box .cb-form {
    padding-left: 0;
  }
  .callback-box .cb-form .form-row {
    gap: 20px;
    margin-top: 20px;
  }
  .footer-box .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .footer-box ul {
    width: 250px;
    max-width: 100%;
    text-align: left;
  }
  .footer-box .right-col {
    margin: 30px 0 20px;
  }
  .footer-box .h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 359.98px) {
  .h1 {
    font-size: 27px;
  }
  .form-title {
    font-size: 13px;
  }
  .header-box .logo {
    max-width: 120px;
    margin-left: -10px;
  }
  .home-box .home-image-1 .hi-top-info, .home-box .home-image-1 .hi-bottom-info {
    margin: 10px;
    width: 7em;
  }
  .calculate-box .form-check .f-squre {
    font-size: 35px;
  }
  .calculate-box .top-row .form-item, .calculate-box .top-row .form-input {
    width: calc(50% - 5px);
  }
  .calculate-box .form-check .f-squre {
    margin: 0 5px;
  }
  .callback-box .cb-form {
    padding-top: 20px;
  }
  .callback-box .cb-form .bottom-el p:not(:last-child) {
    margin-bottom: 1.3em;
  }
}