@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Regular.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Medium.ttf) format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-SemiBold.ttf) format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Bold.ttf) format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-ExtraBold.ttf) format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  letter-spacing: 0%;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  color: #0f1838;
}

.bodyStopScroll {
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none !important;
}

.justify-start {
  justify-content: start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: end;
}

.align-start {
  align-items: start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.show {
  display: flex !important;
}

.w-full {
  width: 100%;
}

.m-0 {
  margin: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.relative {
  position: relative !important;
}

button {
  outline: none;
  border: none;
  padding: 0;
  transition: 0.3s all;
}
button:hover {
  cursor: pointer;
}

input, textarea, select, button {
  border: none;
  outline: none;
  transition: 0.3s all;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s all;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 40px;
}

.input-box {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.input-box label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
  display: block;
}
.input-box label sup {
  color: #f22411;
}
.input-box .form_inp {
  width: 100%;
  height: 42px;
  font-size: 16px;
  transition: 0.3s all;
  border-radius: 10px;
  border: 1px solid #9A9A9A;
  padding: 0 20px;
}
.input-box .form_inp::placeholder {
  color: rgba(155, 155, 155, 0.5019607843);
}
.input-box .form_inp:focus {
  border-color: #3B87BE;
}

.text-box {
  width: 100%;
  margin-bottom: 12px;
}
.text-box textarea {
  width: 100%;
  height: 200px;
  padding: 20px;
  resize: none;
  border-radius: 5px;
  border: 1px solid #CFD7EB;
  color: #0F1838;
  font-size: 18px;
  font-weight: 500;
  padding: 20px;
}
.text-box textarea::placeholder {
  color: #576071;
}
.text-box textarea:focus {
  border-color: #435FC2;
}

.input-check {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
}
.input-check .form_check {
  appearance: none;
  width: 19px;
  height: 19px;
  border: 1px solid #474747;
  border-radius: 4px;
  margin-right: 9px;
  background: transparent;
  cursor: pointer;
}
.input-check .form_check::after {
  content: url(../images/svg/checked.svg);
  margin: 0px 0 0 3px;
  display: none;
}
.input-check .form_check:checked::after {
  display: block;
}
.input-check .form_check:checked {
  background: #fff;
}
.input-check label {
  display: block;
  width: 95%;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  color: #6d6d6d;
}
.input-check label a {
  color: #6d6d6d;
  border-bottom: 1px solid #6D6D6D;
}

.select-item {
  margin-bottom: 20px;
}

.select-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.select {
  position: relative;
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
}
.select-head {
  width: 100%;
  height: 42px;
  background: #fff;
  border: 1px solid #9A9A9A;
  color: rgba(155, 155, 155, 0.5019607843);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  cursor: pointer;
}
.select .options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  overflow: hidden;
  z-index: 50;
  display: none;
  padding: 12px 20px;
  border: 1px solid #9A9A9A;
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.select .options li {
  cursor: pointer;
  margin-bottom: 7px;
  padding-bottom: 7px;
  color: #000;
  border-bottom: 1px solid rgba(19, 50, 32, 0.3);
}
.select .options li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.select .options li:hover {
  color: #466EA2;
}
.select .options .active {
  color: #466EA2;
}

.showSelect .select-head {
  border-radius: 10px 10px 0 0;
  color: #000;
}
.showSelect .options {
  display: block;
}

.selected {
  color: #000;
}

.btn {
  width: 163px;
  height: 41px;
  border-radius: 13px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s all;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to right, #4694cd, #589fd4, #69aada, #79b5e1, #89c0e8);
  color: #fff;
}
.btn:hover {
  background-image: linear-gradient(to left, #4694cd, #589fd4, #69aada, #79b5e1, #89c0e8);
  color: #fff;
}

.title-text {
  font-size: 44px;
  line-height: 48px;
  color: #4D4D4D;
  font-weight: 600;
  letter-spacing: -1.32px;
}
.title-text span {
  background: linear-gradient(90deg, #4192CC, #83B6DA);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.swiper-btns .prev, .swiper-btns .next {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #54A160;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all;
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.swiper-btns .prev:hover, .swiper-btns .next:hover {
  background: #3b87be;
}
.swiper-btns .prev {
  left: 20px;
}
.swiper-btns .next {
  right: 0;
}

.header {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  border-radius: 25px;
  background: #fff;
  z-index: 99;
  backdrop-filter: blur(47.4px);
  padding: 7px 16px;
  max-width: 1400px;
  margin: 0 auto;
}
.header .nav-list li {
  margin-right: 37px;
  font-size: 20px;
  color: #000;
}
.header .nav-list li:hover {
  color: #3b87be;
}
.header .nav-list li:last-child {
  margin-right: 0;
}
.header .phone-num {
  font-size: 20px;
  color: #000;
}
.header .phone-num:hover {
  color: #3b87be;
}
.header .socials {
  margin: 0 26px 0 30px;
  display: flex;
}
.header .socials a {
  display: block;
}
.header .socials a:first-child {
  margin-right: 8px;
}

main {
  max-width: 1430px;
  margin: 0 auto;
}
body {
  overflow-x: hidden;
}
main .wrapper {
  position: relative;
  height: 748px;
  padding: 128px 0 50px;
  overflow: hidden;
}
main .wrapper-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
main .wrapper-master {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 820px;
  object-fit: contain;
}
main .wrapper .master-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  right: 5%;
  top: 30%;
  z-index: 5;
}
main .wrapper .master-info .master-name, main .wrapper .master-info .master-text {
  padding: 9px 16px;
  border-radius: 15px;
  background: #62b870;
  color: #fff;
  line-height: 100%;
}
main .wrapper .master-info .master-name {
  font-size: 28px;
  font-weight: 600;
}
main .wrapper .master-info .master-text {
  font-size: 18px;
  font-weight: 500;
  margin-top: 7px;
}
main .wrapper .container {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: start;
}
main .wrapper .container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -8%;
  transform: translateY(-50%);
  width: 72%;
  height: 130%;
  background: radial-gradient(ellipse at 40% 50%,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.72) 38%,
    rgba(255, 255, 255, 0.2)  62%,
    rgba(255, 255, 255, 0)    80%
  );
  filter: blur(12px);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
main .wrapper .title-text {
  font-size: 60px;
  line-height: 109%;
  max-width: 929px;
  font-weight: 700;
}
main .wrapper .wrapper-info {
  width: 387px;
  height: 112px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px;
  margin: 30px 0 18px;
}
main .wrapper .wrapper-info .info-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}
main .wrapper .wrapper-info .info-text {
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
  color: #fff;
  position: relative;
  z-index: 3;
}
main .wrapper .wrapper-list {
  width: 445px;
  background-image: linear-gradient(to right, #d4faff, #ffffff);
  backdrop-filter: blur(30px);
  padding: 16px 36px 16px 22px;
  border-radius: 25px;
}
main .wrapper .wrapper-list ul li {
  display: flex;
  align-items: start;
  font-size: 18px;
  line-height: 110%;
  color: #000001;
}
main .wrapper .wrapper-list ul li::before {
  content: "·";
  margin-right: 5px;
  font-size: 40px;
}
main .wrapper .wrapper-sale {
  position: relative;
  margin-top: 28px;
}
main .wrapper .wrapper-sale .sale-text {
  padding: 20px 34px;
  border-radius: 16px;
  color: #fff;
  background-image: linear-gradient(to right, #3885bd, #4e93c8, #62a2d2, #76b1dd, #89c0e8);
  font-size: 28px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
main .wrapper .wrapper-sale .sale-img {
  width: 117px;
  position: absolute;
  left: 89%;
  top: 45%;
  transform: translateY(-50%);
}
main .wrapper_business {
  padding: 150px 0 80px;
  overflow: hidden;
}
main .wrapper_business .wrapper-master {
  width: 615px;
}
main .wrapper_business .master-info {
  right: 30%;
  top: 50%;
}
main .wrapper_business .wrapper-list {
  width: 482px;
  padding: 19px 22px;
  margin: 43px 0 34px;
}
main .wrapper_business .wrapper-sale {
  margin-top: 0;
}
main .wrapper_business .wrapper-sale .sale-text {
  padding: 20px 34px;
  font-size: 26px;
}
main .wrapper_business .wrapper-sale .sale-img {
  left: 95%;
}
main .whyUs .whyUs-item {
  margin: 61px 0 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 42px;
  border: 2px solid #3B87BE;
  border-radius: 18px;
  position: relative;
}
main .whyUs .whyUs-item .leaf {
  position: absolute;
  width: 95px;
  left: -55px;
  top: -60px;
  z-index: -1;
}
main .whyUs .whyUs-item .item {
  display: flex;
  align-items: center;
}
main .whyUs .whyUs-item .item-img {
  margin-right: 21px;
}
main .whyUs .whyUs-item .item-title {
  font-size: 34px;
  line-height: 159%;
  font-weight: 800;
  color: #3b87be;
}
main .whyUs .whyUs-item .item-text {
  font-size: 20px;
  line-height: 159%;
  color: #292929;
}
main .whyUs .whyUs-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
}
main .whyUs .whyUs-card {
  width: 100%;
  height: 256px;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  background-image: linear-gradient(to right, #f0faeb, #edfae8, #eafae6, #e6fbe3, #e2fbe1);
  overflow: hidden;
}
main .whyUs .whyUs-card .card-title {
  font-size: 24px;
  line-height: 27px;
  font-weight: 600;
  color: #000;
  max-width: 276px;
}
main .whyUs .whyUs-card .card-text {
  font-size: 20px;
  line-height: 27px;
  font-weight: 500;
  color: #000;
  max-width: 276px;
  margin-top: 10px;
}
main .whyUs .whyUs-card .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .whyUs .whyUs-card .card-icon {
  position: absolute;
  bottom: 0;
  right: 5px;
}
main .whyUs .whyUs-card:nth-child(5) .card-icon {
  bottom: 13px;
}
main .stepWorks {
  background: #e2f0fa;
  margin: 62px 0 40px;
  padding: 45px 0 77px;
  position: relative;
}
main .stepWorks .children {
  position: absolute;
  top: 0;
  right: 0;
  height: 196px;
  object-fit: contain;
}
main .stepWorks .leaf {
  position: absolute;
  width: 102px;
  object-fit: contain;
  top: -75px;
  right: 0;
}
main .stepWorks .container {
  padding-right: 0;
}
main .stepWorks .swiper-slide {
  width: auto;
}
main .stepWorks-box {
  margin-top: 50px;
  padding-left: 57px;
  position: relative;
}
main .stepWorks-card {
  width: 339px;
  height: 482px;
  border-radius: 30px;
  background: #fff;
  padding: 23px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
main .stepWorks-card .card-title {
  font-size: 26px;
  line-height: 112%;
  font-weight: 700;
  color: #133220;
  max-width: 265px;
}
main .stepWorks-card .card-num {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(141, 192, 23, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #133220;
}
main .stepWorks-card .card-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
}
main .stepWorks-card .card-text {
  font-size: 14px;
  line-height: 19.5px;
  color: #133220;
}
main .pricelist-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 53px;
  margin-top: 41px;
}
main .pricelist-card {
  width: 100%;
  height: 530px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: end;
}
main .pricelist-card .card-img {
  width: 100%;
  height: 413px;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: top;
}
main .pricelist-card .card-info {
  width: 100%;
  height: 187px;
  border-radius: 25px 25px 0 0;
  background-image: linear-gradient(to right, #e8ffe9, #e9ffe9, #ebffea, #ecffea, #edffeb);
  padding: 12px 10px 29px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
main .pricelist-card .card-info .card-title {
  font-size: 25px;
  line-height: 110%;
  font-weight: 500;
  color: #4d4d4d;
  letter-spacing: 0.5px;
}
main .pricelist-card .card-info .card-price {
  font-size: 28px;
  line-height: 20px;
  font-weight: 500;
  color: #4d4d4d;
  margin-top: 10px;
  margin-bottom: 14px;
}
main .pricelist-card .card-info .btn {
  width: 100%;
  height: 41px;
}
main .pricelist-card .card-info .btn span {
  display: block;
  margin-right: 3px;
}
main .calculate {
  position: relative;
  padding: 40px 0 13px;
  margin: 64px 0 40px;
}
main .calculate-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
main .calculate .container {
  position: relative;
  z-index: 3;
}
main .calculate .title-subtext {
  margin-top: 12px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
}
main .calculate-form {
  background: #fff;
  padding: 13.5px 28.5px;
  border-radius: 30px;
  box-shadow: 4px 4px 40px 0px rgba(0, 0, 0, 0.12);
}
main .calculate-form form {
  margin-top: 20px;
}
main .calculate-form .title-text {
  font-size: 38px;
  color: #4d4d4d;
}
main .calculate-form .input-box {
  width: 49%;
}
main .calculate-form .btn {
  width: 100%;
  height: 43px;
  border-radius: 50px;
  background-image: linear-gradient(to right, #5ca665, #73b774, #8ac984, #a0db94, #b7eda4);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}
main .services-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
main .services .service {
  width: 100%;
  height: 332px;
  background: #f7f9f8;
  border-radius: 35px;
  padding: 40px;
  overflow: hidden;
  position: relative;
}
main .services .service-text {
  font-size: 24px;
  line-height: 100%;
  color: #2f2f2f;
  position: relative;
  z-index: 2;
}
main .services .service-img, main .services .service-flower {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .services .service-img {
  object-position: top;
}
main .services .service-flower {
  object-position: bottom right;
}
main .services_business {
  margin: 40px 0 80px;
}
main .services_business .services-box {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
main .services_business .service {
  height: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  background-image: linear-gradient(to bottom, #ebf7fa, #e8f5fa, #e5f3fa, #e3f1fb, #e1effb);
}
main .services_business .service-icon {
  position: absolute;
  bottom: 17px;
  right: 17px;
}
main .services_business .service-title, main .services_business .service-text {
  font-size: 24px;
  line-height: 27px;
  font-weight: 600;
  color: #000;
  max-width: 276px;
  text-align: center;
}
main .services_business .service-text {
  font-weight: 500;
  font-size: 20px;
  margin-top: 10px;
}
main .doc {
  margin: 89px 0 83px;
}
main .doc .doc-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 23px;
}
main .doc .doc-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
main .doc .doc-item .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
}
main .doc .doc-item .item-brend {
  object-fit: contain;
  max-width: 100%;
  height: 129px;
  border-radius: 18px;
}
main .doc .doc-item .item-brend:first-child {
  margin-bottom: 23px;
}
main .doc_business .doc-box {
  margin-top: 50px;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
}
main .ourWorks .title-subtext {
  font-size: 20px;
  line-height: 150%;
  color: #2f2f2f;
  margin-top: 10px;
}
main .ourWorks-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-row-gap: 10px;
  margin-top: 40px;
}
main .ourWorks .ourWork {
  width: 29%;
  height: 329px;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
}
main .ourWorks .ourWork-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
main .ourWorks .ourWork .add-review {
  width: 194px;
  height: 49px;
  background-image: linear-gradient(to right, #62ab6a, #77ba77, #8bca85, #a0da93, #b4eaa2);
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 3;
  font-size: 18px;
  font-weight: 500;
}
main .ourWorks .ourWork .add-review:hover {
  background-image: linear-gradient(to left, #62ab6a, #77ba77, #8bca85, #a0da93, #b4eaa2);
}
main .ourWorks .ourWork:nth-child(1), main .ourWorks .ourWork:nth-child(6), main .ourWorks .ourWork:nth-child(7), main .ourWorks .ourWork:nth-child(12) {
  width: 40.5%;
}
main .example .ourWork {
  height: 455px;
}
main .example .ourWork:nth-child(1), main .example .ourWork:nth-child(6), main .example .ourWork:nth-child(7), main .example .ourWork:nth-child(12) {
  width: 29% !important;
}
main .example .ourWork:nth-child(3), main .example .ourWork:nth-child(4) {
  width: 40.5% !important;
}
main .cope {
  margin: 80px 0 115px;
}
main .cope-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 14px;
  grid-row-gap: 10px;
  margin-top: 43px;
}
main .cope-item {
  width: 100%;
  height: 154px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative;
}
main .cope-item .cope-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: 0.3s all;
}
main .cope-item .cope-text {
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  margin-right: 20px;
  position: relative;
  z-index: 3;
}
main .cope-item .cope-link {
  position: relative;
  z-index: 3;
}
main .cope-item:hover .cope-bg {
  transform: scale(1.05);
}
main .equipment {
  margin-bottom: 50px;
}
main .equipment .title-text {
  margin-bottom: 25px;
}
main .equipment-info {
  width: 49%;
}
main .equipment .equipment-title {
  background: linear-gradient(90deg, #4192CC, #83B6DA);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 26px;
  line-height: 150%;
  font-weight: 500;
}
main .equipment .equipment-brend {
  margin: 14px 0 26px;
}
main .equipment .equipment-brend img {
  max-height: 129px;
  object-fit: contain;
  border-radius: 18px;
  max-width: 53%;
}
main .equipment .equipment-brend img:first-child {
  max-width: 45%;
  margin-right: 23px;
}
main .equipment .equipment-list li {
  display: flex;
  align-items: start;
  font-size: 20px;
  line-height: 150%;
  color: #000001;
}
main .equipment .equipment-list li::before {
  content: "·";
  margin-right: 5px;
  font-size: 40px;
}
main .equipment ul.equipment-list {
  background-image: linear-gradient(to right, #62b870, #84c680, #a2d393, #bde1a7, #d7efbd);
  padding: 22px;
  border-radius: 25px;
}
main .equipment ul.equipment-list li {
  color: #fff;
}
main .equipment ol.equipment-list {
  margin: 15px 0 46px;
}
main .equipment .equipment-img img {
  width: 49%;
  height: 440px;
  border-radius: 35px;
  object-fit: cover;
}
main .reviews {
  background: #e2f0fa;
  padding: 50px 0 40px;
}
main .reviews-box {
  margin-top: 40px;
  position: relative;
}
main .reviews .prev {
  top: 35%;
  left: 0;
}
main .reviews .next {
  top: 35%;
  right: -40px;
}
main .reviews .review {
  width: 100%;
  border-radius: 35px;
  overflow: hidden;
}
main .reviews .review img {
  width: 100%;
  object-fit: contain;
}
main .reviews .review-btns {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
main .reviews .review-btns .btn {
  width: auto;
  height: 58px;
  padding: 0 20px;
  border-radius: 13px;
  font-size: 20px;
  font-weight: 500;
}
main .reviews .review-btns .btn:first-child {
  margin-right: 20px;
  background-image: linear-gradient(to right, #62ab6a, #77ba77, #8bca85, #a0da93, #b4eaa2);
}
main .reviews .review-btns .btn:first-child:hover {
  background-image: linear-gradient(to left, #62ab6a, #77ba77, #8bca85, #a0da93, #b4eaa2);
}
main .videos {
  margin: 48px 0 80px;
}
main .videos-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
main .videos .video {
  position: relative;
  width: 30%;
  height: 435px;
  border-radius: 35px;
  overflow: hidden;
}
main .videos .video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main .videos .video .video-poster {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  object-fit: cover;
  object-position: top;
}
main .videos .video .play-btn {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
main .videos .video:first-child {
  width: 38%;
}
main .videos_business .video {
  height: 635px;
}
main .faqs-box {
  max-width: 840px;
  margin: 30px auto 0;
}
main .faqs .faq {
  padding: 30px 0;
  border-bottom: 1px solid #D7DAE2;
}
main .faqs .faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
main .faqs .faq-head .faq-title {
  font-size: 24px;
  line-height: 24px;
  color: #111;
}
main .faqs .faq-head .arrow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to right, #62ab6a, #77ba77, #8bca85, #a0da93, #b4eaa2);
}
main .faqs .faq-head .arrow-icon img {
  transition: 0.3s all;
}
main .faqs .faq-body {
  transition: 0.8s all;
  max-height: 0;
  overflow: hidden;
}
main .faqs .faq-body .faq-text {
  font-size: 20px;
  line-height: 120%;
  color: #111;
  margin-top: 20px;
}
main .faqs .showFaq .faq-head .arrow-icon img {
  transform: rotate(180deg);
}
main .faqs .showFaq .faq-body {
  max-height: 1000px;
  transition: 3s all;
}
main .sale {
  margin: 106px 0 80px;
}
main .sale .sale-info {
  position: relative;
  width: 65%;
  padding: 40px;
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  align-items: start;
}
main .sale .sale-info .sale-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: bottom right;
}
main .sale .sale-info .info {
  width: 50%;
  position: relative;
  z-index: 3;
  margin-right: 20px;
}
main .sale .sale-info .sale-title {
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #111;
}
main .sale .sale-info .sale-text {
  font-size: 22px;
  line-height: 24px;
  color: #111;
  margin: 15px 0 23px;
}
main .sale .sale-info .sale-link {
  width: 314px;
  height: 58px;
  border-radius: 13px;
  background-image: linear-gradient(to right, #62ab6a, #77ba77, #8bca85, #a0da93, #b4eaa2);
  font-size: 20px;
  font-weight: 500;
}
main .sale .sale-info .status {
  background-image: linear-gradient(to right, #62ab6a, #77ba77, #8bca85, #a0da93, #b4eaa2);
  padding: 20px;
  border-radius: 13px;
  color: #fff;
  font-size: 45px;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: -0.13px;
  position: relative;
  z-index: 3;
}
main .sale .sale-img {
  width: 33%;
  height: 100%;
  border-radius: 35px;
  object-fit: cover;
}
main .banner {
  margin-bottom: 40px;
}
main .banner-box {
  border-radius: 35px;
  padding: 40px;
  overflow: hidden;
  position: relative;
  min-height: 448px;
}
main .banner-box .banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: bottom left;
}
main .banner-box .banner-title {
  width: 50%;
  font-size: 42px;
  line-height: 50px;
  font-weight: 500;
  color: #111;
  position: relative;
  z-index: 3;
}
main .banner-box .banner-form {
  width: 50%;
  position: relative;
  z-index: 3;
}
main .banner-box .banner-form .form-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #2f2f2f;
  margin-bottom: 20px;
}
main .banner-box .banner-form .form-item .input-box {
  width: 49%;
}
main .banner-box .banner-form .input-box {
  margin-bottom: 20px;
}
main .banner-box .banner-form .input-box label {
  display: none;
}
main .banner-box .banner-form .input-box .form_inp {
  background: #fff;
  border-radius: 13px;
  border-color: #fff;
  padding: 0 20px;
}
main .banner-box .banner-form .input-box .form_inp::placeholder {
  color: #2f2f2f;
}
main .banner-box .banner-form .submit-btn {
  width: 100%;
  height: 50px;
  border-radius: 13px;
  color: #fff;
  background-image: linear-gradient(to right, #5da1d2, #6caedd, #7bbae8, #89c7f4, #98d4ff);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
  margin-bottom: 20px;
}
main .decide-info {
  width: 46%;
}
main .decide-list {
  background-image: linear-gradient(to right, #62b870, #84c680, #a2d393, #bde1a7, #d7efbd);
  padding: 24px 22px;
  border-radius: 25px;
  margin-top: 30px;
}
main .decide-list li {
  font-size: 20px;
  line-height: 150%;
  color: #fff;
  display: flex;
  align-items: start;
}
main .decide-list li::before {
  content: "·";
  margin-right: 5px;
  font-size: 40px;
}
main .decide-img {
  width: 49%;
}
main .decide-img img {
  width: 49%;
  height: 337px;
  border-radius: 35px;
  object-fit: cover;
}
main .clean {
  margin-top: 90px;
}
main .clean-card .card-info {
  padding: 13px 17px 20px;
}
main .clean-card .card-info .btn {
  font-size: 16px;
}
main .clean .clean-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  line-height: 20px;
  font-weight: 700;
  color: #4d4d4d;
  margin-top: 40px;
}
main .clean .clean-info .btn {
  width: 450px;
  height: 48px;
  border-radius: 30px;
  margin-top: 23px;
  background-image: linear-gradient(to right, #62ab6a, #77ba77, #8bca85, #a0da93, #b4eaa2);
}
main .howWeWork {
  padding: 45px 0 95px;
  background: #EAFFDC;
}
main .howWeWork-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 38px;
}
main .howWeWork .item {
  width: 100%;
  height: 460px;
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 29px;
  background: #fff;
  backdrop-filter: blur(4px);
}
main .howWeWork .item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 112%;
  color: #133220;
  margin-right: 15px;
}
main .howWeWork .item-num {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1793c0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  color: #fff;
}
main .howWeWork .item-img {
  width: 155px;
}
main .howWeWork .item-text {
  font-size: 14px;
  line-height: 18px;
  color: #133220;
}
main .chooseUs {
  padding: 40px 0 63px;
}
main .chooseUs-box {
  margin-top: 40px;
}
main .chooseUs-list {
  width: 60%;
  background-image: linear-gradient(to right, #3f88bd, #4f98cd, #5fa8de, #6fb8ee, #7ec9ff);
  padding: 32px 22px;
  border-radius: 30px;
  color: #fff;
}
main .chooseUs-list li {
  font-size: 22px;
  line-height: 150%;
  color: #fff;
  display: flex;
  align-items: start;
}
main .chooseUs-list li::before {
  content: "·";
  margin-right: 5px;
  font-size: 40px;
}
main .chooseUs-img {
  width: 38%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
main .order {
  margin-bottom: 25px;
}
main .order-box {
  border-radius: 35px;
  background: #eaffdc;
  padding: 40px 40px 22px;
  display: flex;
  justify-content: space-between;
}
main .order-info {
  width: 50%;
}
main .order-info .title-subtext {
  font-size: 22px;
  line-height: 24px;
  color: #111;
  margin: 15px 0 30px;
}
main .order-info .phone-num {
  font-size: 32px;
  line-height: 50px;
  color: #111;
  font-weight: 500;
}
main .order-info .info-text {
  font-size: 18px;
  line-height: 24px;
  color: #111;
}
main .order-form {
  max-width: 429px;
}
main .order-form .btn {
  width: 149px;
  height: 34px;
  font-size: 16px;
  margin-top: 8px;
}
main .order-form .btn span {
  display: block;
  margin-right: 3px;
}
main .wrapper_about {
  height: auto;
  padding: 154px 0 40px;
  overflow: hidden;
}
main .wrapper_about .container {
  align-items: end;
  flex-direction: row;
  justify-content: space-between;
}
main .wrapper_about .about-info {
  width: 49%;
}
main .wrapper_about .about-info .title-text {
  color: #fff;
}
main .wrapper_about .about-info .info-text {
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: #fff;
  margin-top: 15px;
}
main .wrapper_about .about-img {
  width: 40%;
  height: 467px;
  border-radius: 35px;
  object-fit: cover;
}
main .contacts {
  margin: 60px 0 80px;
}
main .contacts-info {
  width: 49%;
}
main .contacts-info .contact-img {
  transform: translateY(-30px);
  margin-bottom: 30px;
}
main .contacts-info .contact-item {
  padding: 40px;
  border-radius: 35px;
  background: #f5f5f5;
  color: #2f2f2f;
  margin-bottom: 20px;
}
main .contacts-info .contact-item .item-title {
  font-size: 36px;
  line-height: 50px;
  font-weight: 600;
  color: #4d4d4d;
  margin-bottom: 10px;
}
main .contacts-info .contact-item .work-time__list li {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1490196078);
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 5px 0 8px;
}
main .contacts-info .contact-item .work-time__list li:last-child {
  margin-bottom: 0;
}
main .contacts-info .contact-item .work-time__list li span {
  display: block;
  font-size: 18px;
  line-height: 25px;
}
main .contacts-info .contact-item .work-time__list li span:first-child {
  margin-right: 10px;
}
main .contacts-info .phone {
  background: #b3e5fc;
}
main .contacts-info .phone .phone-num {
  font-size: 24px;
  color: #111;
}
main .contacts-info .socials .social {
  display: flex;
  align-items: center;
  font-size: 20px;
  margin-bottom: 5px;
}
main .contacts-info .socials .social:last-child {
  margin-bottom: 0;
}
main .contacts-info .socials .social-icon {
  margin-right: 14px;
}
main .contacts-info .socials .social-name {
  font-size: 24px;
  min-width: 96px;
}
main .contacts-info .doc_item {
  background: #eaffea;
}
main .contacts-info .doc_item .doc-list li {
  margin-bottom: 10px;
}
main .contacts-info .doc_item .doc-list li:last-child {
  margin-bottom: 0;
}
main .contacts-info .doc_item .doc-list a {
  display: block;
  padding: 10px 20px;
  border: 1px solid #515151;
  border-radius: 10px;
}
main .address {
  margin-bottom: 50px;
}
main .address .title-subtext {
  font-size: 24px;
  line-height: 100%;
  color: #2f2f2f;
  margin: 10px 0 40px;
}
main .address .address-map {
  width: 100%;
  height: 314px;
  border-radius: 35px;
  background: #2f2f2f;
}
main .address .address-map .map-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  margin-top: 16px;
}
main .banner_about {
  background: #e2f0fa;
}
main .banner_about .banner-title {
  font-weight: 600;
  width: 100%;
}
main .banner_about .banner-info {
  position: relative;
  z-index: 3;
  width: 300px;
}
main .banner_about .links {
  display: flex;
  margin-top: 33px;
}
main .banner_about .links .btn {
  padding: 18px 20px;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.13px;
  height: 58px;
  font-weight: 500;
  white-space: nowrap;
}
main .banner_about .links .btn:first-child {
  background-image: linear-gradient(to right, #62ab6a, #77ba77, #8bca85, #a0da93, #b4eaa2);
  margin-right: 18px;
}
main .banner_about .banner-box .banner-form .submit-btn {
  background-image: linear-gradient(to right, #62ab6a, #77ba77, #8bca85, #a0da93, #b4eaa2);
}

.footer {
  background: #3d3d3d;
  color: #fff;
  padding: 40px 0 60px;
  max-width: 100%;
}
.footer .footer-nav {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.footer .footer-nav:first-child {
  margin-right: 40px;
}
.footer .footer-nav .logo img {
  width: 138px;
}
.footer .footer-nav .footer-text {
  line-height: 100%;
  margin-top: 20px;
}
.footer .footer-nav .nav-title {
  font-size: 16px;
  font-weight: 700;
}
.footer .footer-nav .nav-list {
  margin-top: 20px;
}
.footer .footer-nav .nav-list li {
  margin-bottom: 5px;
}
.footer .footer-nav .nav-list li:hover {
  color: #5da1d2;
}

.popUp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(34, 34, 34, 0.8);
  z-index: 999;
  overflow-y: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  cursor: pointer;
}
.popUp-content {
  width: 500px;
  background: #466EA2;
  position: relative;
  animation: popUp-anim 0.3s linear;
  padding: 35px 20px 24px;
  border-radius: 12px;
  margin: 50px auto;
}
.popUp .popUp-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 115%;
  color: #fff;
  margin-bottom: 24px;
}
.popUp .popUp-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 10px;
  color: #2b2a29;
}
.popUp .popUp-form {
  margin-top: 16px;
}
.popUp .popUp-form .input-box {
  margin-bottom: 16px;
}
.popUp .popUp-form .input-box label {
  font-size: 18px;
  font-weight: 600;
  color: #2b2a29;
}
.popUp .popUp-form .input-box .form_inp {
  background: #fafafa;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  padding: 0 16px;
}
.popUp .popUp-form .input-box .form_inp::placeholder {
  color: #2b2a29;
}
.popUp .popUp-form .submit_btn {
  width: 100%;
  height: 51px;
  font-size: 20px;
}
.popUp .popUp-form .form-links-title {
  font-size: 16px;
  font-weight: 600;
  color: #2b2a29;
  margin-bottom: 20px;
}
.popUp .popUp-form .form-links .socials .social {
  display: block;
  margin-right: 10px;
}
.popUp .popUp-form .form-links .socials .social img {
  width: 25px;
}
.popUp .popUp-form .form-links .phone-link {
  font-size: 12px;
  font-weight: 700;
  color: #2b2a29;
}

@keyframes popUp-anim {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.popUp-thanks .popUp-content {
  width: 634px;
  padding: 39px 20px 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.popUp-thanks .popUp-title {
  font-size: 32px;
  text-align: center;
}
.popUp-thanks .popUp-subtitle {
  font-size: 12px;
  margin: 9px 0 23px;
  color: #fff;
}
.popUp-thanks .backTo-link {
  width: 332px;
  height: 39px;
  background: #fff;
  color: #222;
}

@media (max-width: 1300px) {
  .header .nav-list li {
    font-size: 16px;
    margin-right: 15px;
  }
  .header .phone-num {
    font-size: 16px;
  }
}/*# sourceMappingURL=main.css.map */

/* ===================== BURGER BUTTON ===================== */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: transparent;
  gap: 6px;
  flex-shrink: 0;
}
.burger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: #0f1838;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===================== MOBILE NAV ===================== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 98;
  padding: 88px 24px 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-nav .nav-list {
  margin-bottom: 28px;
}
.mobile-nav .nav-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-nav .nav-list li a {
  display: block;
  padding: 18px 0;
  font-size: 20px;
  font-weight: 500;
  color: #0f1838;
}
.mobile-nav .nav-list li a:hover {
  color: #3b87be;
}
.mobile-nav .nav-phone {
  font-size: 22px;
  font-weight: 600;
  color: #0f1838;
  margin-bottom: 18px;
  display: block;
}
.mobile-nav .nav-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}
.mobile-nav .nav-socials img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.mobile-nav .order-btn {
  width: 100%;
  height: 52px;
  font-size: 16px;
  border-radius: 13px;
  text-align: center;
}

/* ===================== 1600px (широкий десктоп) ===================== */
@media (min-width: 1600px) {
  .container {
    max-width: 1560px;
    padding: 0 48px;
  }
  main .calculate-bg {
     border-radius: 20px; 
  }
  main .wrapper-bg {
    border-radius: 20px;
  }
  .header {
    max-width: 1580px;
  }
  .header .nav-list li {
    font-size: 22px;
    margin-right: 44px;
  }
  .header .phone-num {
    font-size: 22px;
  }
  .header .socials {
    margin: 0 32px 0 36px;
  }
  .btn {
    width: 180px;
    height: 46px;
    font-size: 17px;
    border-radius: 14px;
  }
  .title-text {
    font-size: 50px;
    line-height: 56px;
  }
  main {
    max-width: 1600px;
  }
  main .wrapper {
    height: 840px;
    padding: 140px 0 60px;
  }
  main .wrapper .title-text {
    font-size: 68px;
    line-height: 110%;
    max-width: 1060px;
  }
  main .wrapper-master {
    width: 840px;
  }
  main .wrapper .wrapper-info {
    width: 430px;
    height: 124px;
    margin: 36px 0 22px;
  }
  main .wrapper .wrapper-info .info-text {
    font-size: 28px;
  }
  main .wrapper .wrapper-list {
    width: 500px;
    padding: 20px 40px 20px 26px;
  }
  main .wrapper .wrapper-list ul li {
    font-size: 20px;
  }
  main .wrapper .wrapper-sale .sale-text {
    font-size: 32px;
    padding: 22px 40px;
  }
  main .wrapper_business {
    padding: 170px 0 100px;
  }
  main .wrapper_business .wrapper-master {
    width: 680px;
  }
  main .wrapper_business .wrapper-list {
    width: 530px;
  }
  main .whyUs .whyUs-item {
    margin: 70px 0 50px;
    padding: 28px 52px;
  }
  main .whyUs .whyUs-item .item-title {
    font-size: 40px;
  }
  main .whyUs .whyUs-item .item-text {
    font-size: 22px;
  }
  main .whyUs .whyUs-card {
    height: 290px;
    border-radius: 34px;
    padding: 24px;
  }
  main .whyUs .whyUs-card .card-title {
    font-size: 26px;
    line-height: 30px;
  }
  main .whyUs .whyUs-card .card-text {
    font-size: 22px;
    line-height: 30px;
  }
  main .stepWorks {
    margin: 72px 0 48px;
    padding: 52px 0 88px;
  }
  main .stepWorks-card {
    width: 380px;
    height: 540px;
    border-radius: 34px;
  }
  main .stepWorks-card .card-title {
    font-size: 28px;
  }
  main .stepWorks-card .card-text {
    font-size: 16px;
    line-height: 22px;
  }
  main .pricelist-box {
    grid-gap: 64px;
    margin-top: 50px;
  }
  main .pricelist-card {
    height: 590px;
  }
  main .pricelist-card .card-img {
    height: 460px;
  }
  main .pricelist-card .card-info {
    height: 210px;
    padding: 16px 12px 32px;
  }
  main .pricelist-card .card-info .card-title {
    font-size: 30px;
  }
  main .pricelist-card .card-info .card-price {
    font-size: 30px;
  }
  main .calculate {
    margin: 76px 0 50px;
    padding: 50px 0 18px;
  }
  main .calculate .title-subtext {
    font-size: 24px;
    line-height: 28px;
    margin-top: 16px;
  }
  main .calculate-form {
    padding: 18px 34px;
    border-radius: 34px;
  }
  main .calculate-form .title-text {
    font-size: 42px;
  }
  main .services .service {
    height: 370px;
    border-radius: 40px;
    padding: 46px;
  }
  main .services .service-text {
    font-size: 26px;
  }
  main .doc .doc-box {
    grid-gap: 28px;
  }
  main .ourWorks .ourWork {
    height: 370px;
    border-radius: 40px;
  }
  main .cope-item {
    height: 174px;
    border-radius: 24px;
  }
  main .cope-item .cope-text {
    font-size: 26px;
  }
  main .equipment .equipment-list li {
    font-size: 22px;
  }
  main .equipment .equipment-img img {
    height: 400px;
  }
  main .reviews {
    padding: 60px 0 50px;
  }
  main .reviews-box {
    margin-top: 50px;
  }
  main .reviews .review-btns .btn {
    height: 64px;
    font-size: 22px;
    padding: 0 28px;
  }
  main .videos .video {
    height: 490px;
  }
  main .videos .video:first-child {
    width: 38%;
  }
  main .faqs .faq-head .faq-title {
    font-size: 26px;
  }
  main .faqs .faq-body .faq-text {
    font-size: 22px;
  }
  main .sale {
    margin: 120px 0 96px;
  }
  main .sale .sale-info {
    width: 66%;
    padding: 50px;
    border-radius: 40px;
  }
  main .sale .sale-info .sale-title {
    font-size: 48px;
    line-height: 58px;
  }
  main .sale .sale-info .sale-text {
    font-size: 24px;
    line-height: 28px;
  }
  main .sale .sale-info .sale-link {
    width: 360px;
    height: 64px;
    font-size: 22px;
    border-radius: 14px;
  }
  main .sale .sale-info .status {
    font-size: 52px;
    padding: 24px;
  }
  main .sale .sale-img {
    width: 32%;
  }
  main .banner-box {
    border-radius: 40px;
    padding: 50px;
    min-height: 500px;
  }
  main .banner-box .banner-title {
    font-size: 48px;
    line-height: 58px;
  }
  main .banner-box .banner-form .submit-btn {
    height: 58px;
    font-size: 20px;
  }
  main .howWeWork-item {
    grid-gap: 24px;
    margin-top: 46px;
  }
  main .howWeWork .item {
    height: 510px;
    padding: 24px;
    border-radius: 32px;
  }
  main .howWeWork .item-title {
    font-size: 26px;
  }
  main .howWeWork .item-img {
    width: 180px;
  }
  main .howWeWork .item-text {
    font-size: 16px;
    line-height: 20px;
  }
  main .chooseUs-list li {
    font-size: 24px;
  }
  main .order-box {
    padding: 50px 50px 28px;
    border-radius: 40px;
  }
  main .order-info .title-subtext {
    font-size: 24px;
  }
  main .order-info .phone-num {
    font-size: 36px;
  }
  main .wrapper_about {
    padding: 170px 0 50px;
  }
  main .wrapper_about .about-info .title-text {
    font-size: 50px;
  }
  main .wrapper_about .about-info .info-text {
    font-size: 22px;
    line-height: 28px;
  }
  main .wrapper_about .about-img {
    height: 530px;
  }
  main .contacts-info .contact-item {
    padding: 48px;
    border-radius: 40px;
  }
  main .contacts-info .contact-item .item-title {
    font-size: 40px;
  }
  main .contacts-info .contact-item .work-time__list li span {
    font-size: 20px;
    line-height: 28px;
  }
  main .contacts-info .phone .phone-num {
    font-size: 28px;
  }
  main .contacts-info .socials .social-name {
    font-size: 26px;
  }
  .footer {
    padding: 50px 0 70px;
  }
  .footer .footer-nav .logo img {
    width: 160px;
  }
  .footer .footer-nav .nav-title {
    font-size: 18px;
  }
  .footer .footer-nav .nav-list li {
    font-size: 16px;
  }
}

/* ===================== 1920px+ (Full HD и шире) ===================== */
@media (min-width: 1920px) {
  .container {
    max-width: 1800px;
    padding: 0 60px;
  }
  .header {
    max-width: 1860px;
  }
  .header .nav-list li {
    font-size: 24px;
    margin-right: 52px;
  }
  .header .phone-num {
    font-size: 24px;
  }
  .header .socials {
    margin: 0 40px 0 44px;
  }
  .btn {
    width: 200px;
    height: 52px;
    font-size: 18px;
    border-radius: 16px;
  }
  .title-text {
    font-size: 58px;
    line-height: 64px;
    letter-spacing: -1.8px;
  }
  main {
    max-width: 1920px;
  }
  main .wrapper {
    height: 960px;
    padding: 160px 0 70px;
  }
  main .wrapper .title-text {
    font-size: 80px;
    line-height: 108%;
    max-width: 1200px;
  }
  main .wrapper-master {
    width: 980px;
  }
  main .wrapper .master-info .master-name {
    font-size: 34px;
  }
  main .wrapper .master-info .master-text {
    font-size: 22px;
  }
  main .wrapper .wrapper-info {
    width: 490px;
    height: 136px;
    margin: 40px 0 26px;
    border-radius: 28px;
  }
  main .wrapper .wrapper-info .info-text {
    font-size: 32px;
  }
  main .wrapper .wrapper-list {
    width: 570px;
    padding: 22px 44px 22px 28px;
    border-radius: 28px;
  }
  main .wrapper .wrapper-list ul li {
    font-size: 22px;
  }
  main .wrapper .wrapper-sale {
    margin-top: 34px;
  }
  main .wrapper .wrapper-sale .sale-text {
    font-size: 36px;
    padding: 26px 48px;
    border-radius: 20px;
  }
  main .wrapper_business {
    padding: 195px 0 110px;
  }
  main .wrapper_business .wrapper-master {
    width: 760px;
  }
  main .wrapper_business .wrapper-list {
    width: 600px;
  }
  main .whyUs .whyUs-item {
    margin: 80px 0 60px;
    padding: 34px 64px;
    border-radius: 22px;
  }
  main .whyUs .whyUs-item .item-title {
    font-size: 48px;
  }
  main .whyUs .whyUs-item .item-text {
    font-size: 26px;
  }
  main .whyUs .whyUs-box {
    grid-gap: 20px;
  }
  main .whyUs .whyUs-card {
    height: 330px;
    border-radius: 38px;
    padding: 28px;
  }
  main .whyUs .whyUs-card .card-title {
    font-size: 30px;
    line-height: 34px;
  }
  main .whyUs .whyUs-card .card-text {
    font-size: 24px;
    line-height: 32px;
  }
  main .stepWorks {
    margin: 82px 0 55px;
    padding: 60px 0 100px;
  }
  main .stepWorks-card {
    width: 420px;
    height: 600px;
    border-radius: 38px;
  }
  main .stepWorks-card .card-title {
    font-size: 32px;
  }
  main .stepWorks-card .card-text {
    font-size: 18px;
    line-height: 25px;
  }
  main .pricelist-box {
    grid-gap: 70px;
    margin-top: 56px;
  }
  main .pricelist-card {
    height: 660px;
  }
  main .pricelist-card .card-img {
    height: 510px;
  }
  main .pricelist-card .card-info {
    height: 240px;
    padding: 18px 14px 36px;
  }
  main .pricelist-card .card-info .card-title {
    font-size: 34px;
  }
  main .pricelist-card .card-info .card-price {
    font-size: 34px;
  }
  main .calculate {
    margin: 86px 0 58px;
    padding: 58px 0 22px;
  }
  main .calculate .title-subtext {
    font-size: 28px;
    line-height: 32px;
    margin-top: 18px;
  }
  main .calculate-form {
    padding: 22px 40px;
    border-radius: 38px;
  }
  main .calculate-form .title-text {
    font-size: 46px;
  }
  main .services-box {
    grid-gap: 14px;
  }
  main .services .service {
    height: 420px;
    border-radius: 44px;
    padding: 50px;
  }
  main .services .service-text {
    font-size: 30px;
  }
    main .services_business .service-title, main .services_business .service-text {
    font-size: 34px;
  }
  main .doc .doc-box {
    grid-gap: 32px;
  }
  main .ourWorks .ourWork {
    height: 420px;
    border-radius: 44px;
  }
  main .cope-box {
    grid-column-gap: 18px;
    grid-row-gap: 14px;
  }
  main .cope-item {
    height: 196px;
    border-radius: 28px;
    padding: 14px 28px;
  }
  main .cope-item .cope-text {
    font-size: 30px;
    line-height: 30px;
  }
  main .equipment .equipment-title {
    font-size: 30px;
  }
  main .equipment .equipment-list li {
    font-size: 24px;
  }
  main .equipment .equipment-img img {
    height: 460px;
    border-radius: 44px;
  }
  main .reviews {
    padding: 70px 0 58px;
  }
  main .reviews-box {
    margin-top: 56px;
  }
  main .reviews .review-btns .btn {
    height: 72px;
    font-size: 24px;
    padding: 0 34px;
    border-radius: 16px;
  }
  main .videos .video {
    height: 560px;
    border-radius: 44px;
  }
  main .faqs .faq {
    padding: 36px 0;
  }
  main .faqs .faq-head .faq-title {
    font-size: 28px;
    line-height: 28px;
  }
  main .faqs .faq-body .faq-text {
    font-size: 24px;
    margin-top: 24px;
  }
  main .sale {
    margin: 140px 0 110px;
  }
  main .sale .sale-info {
    width: 64%;
    padding: 60px;
    border-radius: 44px;
  }
  main .sale .sale-info .sale-title {
    font-size: 56px;
    line-height: 66px;
  }
  main .sale .sale-info .sale-text {
    font-size: 28px;
    line-height: 32px;
    margin: 20px 0 28px;
  }
  main .sale .sale-info .sale-link {
    width: 420px;
    height: 72px;
    font-size: 24px;
    border-radius: 16px;
  }
  main .sale .sale-info .status {
    font-size: 60px;
    line-height: 50px;
    padding: 28px;
    border-radius: 16px;
  }
  main .sale .sale-img {
    width: 34%;
    border-radius: 44px;
  }
  main .banner-box {
    border-radius: 44px;
    padding: 60px;
    min-height: 560px;
  }
  main .banner-box .banner-title {
    font-size: 56px;
    line-height: 66px;
    width: 46%;
  }
  main .banner-box .banner-form {
    width: 48%;
  }
  main .banner-box .banner-form .form-text {
    font-size: 18px;
    line-height: 26px;
  }
  main .banner-box .banner-form .submit-btn {
    height: 64px;
    font-size: 22px;
    border-radius: 16px;
    margin-bottom: 24px;
  }
  main .howWeWork {
    padding: 60px 0 110px;
  }
  main .howWeWork-item {
    grid-gap: 28px;
    margin-top: 52px;
  }
  main .howWeWork .item {
    height: 570px;
    padding: 28px;
    border-radius: 36px;
  }
  main .howWeWork .item-title {
    font-size: 28px;
  }
  main .howWeWork .item-img {
    width: 200px;
  }
  main .howWeWork .item-text {
    font-size: 18px;
    line-height: 22px;
  }
  main .chooseUs {
    padding: 50px 0 76px;
  }
  main .chooseUs-list {
    padding: 40px 28px;
    border-radius: 36px;
  }
  main .chooseUs-list li {
    font-size: 26px;
  }
  main .order-box {
    padding: 60px 60px 36px;
    border-radius: 44px;
  }
  main .order-info .title-subtext {
    font-size: 26px;
    line-height: 28px;
    margin: 18px 0 36px;
  }
  main .order-info .phone-num {
    font-size: 42px;
  }
  main .order-info .info-text {
    font-size: 20px;
  }
  main .wrapper_about {
    padding: 196px 0 60px;
  }
  main .wrapper_about .about-info .title-text {
    font-size: 58px;
  }
  main .wrapper_about .about-info .info-text {
    font-size: 24px;
    line-height: 32px;
    margin-top: 18px;
  }
  main .wrapper_about .about-img {
    height: 600px;
    border-radius: 44px;
  }
  main .contacts {
    margin: 80px 0 100px;
  }
  main .contacts-info .contact-item {
    padding: 56px;
    border-radius: 44px;
    margin-bottom: 26px;
  }
  main .contacts-info .contact-item .item-title {
    font-size: 46px;
    line-height: 60px;
  }
  main .contacts-info .contact-item .work-time__list li span {
    font-size: 22px;
    line-height: 30px;
  }
  main .contacts-info .phone .phone-num {
    font-size: 32px;
  }
  main .contacts-info .socials .social-name {
    font-size: 28px;
  }
  main .contacts-info .socials .social {
    font-size: 24px;
  }
  main .address .title-subtext {
    font-size: 28px;
    margin: 14px 0 48px;
  }
  main .address .address-map {
    height: 380px;
    border-radius: 44px;
  }
  .footer {
    padding: 60px 0 84px;
  }
  .footer .footer-nav .logo img {
    width: 180px;
  }
  .footer .footer-nav .footer-text {
    font-size: 16px;
    margin-top: 24px;
  }
  .footer .footer-nav .nav-title {
    font-size: 20px;
  }
  .footer .footer-nav .nav-list {
    margin-top: 24px;
  }
  .footer .footer-nav .nav-list li {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

/* ===================== 1400px ===================== */
@media (max-width: 1400px) {
  main .wrapper .title-text {
    font-size: 52px;
    max-width: 800px;
  }
}

/* ===================== 1200px ===================== */
@media (max-width: 1200px) {
  .title-text {
    font-size: 36px;
    line-height: 44px;
  }
  main .wrapper {
    min-height: 680px;
    padding: 120px 0 50px;
    height: auto;
  }
  main .wrapper .title-text {
    font-size: 46px;
    line-height: 115%;
    max-width: 700px;
  }
  main .wrapper-master {
    width: 520px;
  }
  main .wrapper .wrapper-info {
    width: 340px;
  }
  main .wrapper .wrapper-list {
    width: 400px;
  }
  main .whyUs .whyUs-box {
    grid-template-columns: repeat(2, 1fr);
  }
  main .whyUs .whyUs-card {
    height: 220px;
  }
  main .pricelist-box {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 28px;
  }
  main .howWeWork-item {
    grid-template-columns: repeat(2, 1fr);
  }
  main .howWeWork .item {
    height: auto;
    min-height: 400px;
  }
  main .doc .doc-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 18px;
  }
}

/* ===================== 1024px ===================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  .header .nav-list li {
    font-size: 13px;
    margin-right: 12px;
  }
  .header .phone-num {
    font-size: 13px;
  }
  .header .socials {
    margin: 0 10px 0 10px;
  }
  .header .order-btn {
    font-size: 12px;
    width: 120px;
    height: 36px;
    border-radius: 10px;
  }
  .title-text {
    font-size: 32px;
    line-height: 40px;
  }
  main .wrapper {
    min-height: 560px;
    padding: 110px 0 40px;
  }
  main .wrapper .title-text {
    font-size: 38px;
    max-width: 560px;
  }
  main .wrapper-master {
    width: 400px;
  }
  main .wrapper .wrapper-info {
    width: 300px;
  }
  main .wrapper .wrapper-list {
    width: 340px;
  }
  main .wrapper .wrapper-sale .sale-text {
    font-size: 22px;
  }
  main .whyUs .whyUs-item {
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 24px;
  }
  main .pricelist-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
  }
  main .calculate .container {
    flex-direction: column;
  }
  main .calculate-info {
    margin-bottom: 24px;
  }
  main .calculate-form {
    width: 100%;
  }
  main .services-box {
    grid-template-columns: repeat(3, 1fr);
  }
  main .services .service {
    height: 260px;
  }
  main .ourWorks .ourWork {
    height: 240px;
  }
  main .ourWorks .ourWork,
  main .ourWorks .ourWork:nth-child(1),
  main .ourWorks .ourWork:nth-child(6),
  main .ourWorks .ourWork:nth-child(7),
  main .ourWorks .ourWork:nth-child(12) {
    width: 32% !important;
  }
  main .cope-item {
    height: 130px;
  }
  main .cope-item .cope-text {
    font-size: 20px;
  }
  main .equipment .container {
    flex-wrap: wrap;
  }
  main .equipment-info {
    width: 100%;
    margin-bottom: 24px;
  }
  main .equipment .equipment-img img {
    height: 260px;
  }
  main .reviews .next {
    right: 0;
  }
  main .reviews .review-btns .btn {
    font-size: 16px;
    padding: 0 14px;
  }
  main .videos .video {
    height: 300px;
  }
  main .sale .sale-info {
    width: 68%;
  }
  main .sale .sale-img {
    width: 30%;
  }
  main .banner-box .banner-title {
    font-size: 32px;
    line-height: 40px;
  }
  main .chooseUs-list {
    width: 55%;
  }
  main .chooseUs-img {
    width: 42%;
  }
  main .wrapper_about .about-info {
    width: 52%;
  }
  main .wrapper_about .about-img {
    width: 44%;
    height: 360px;
  }
  main .contacts-info {
    width: 47%;
  }
  main .order-box {
    flex-direction: column;
  }
  main .order-info {
    width: 100%;
    margin-bottom: 24px;
  }
  main .order-form {
    max-width: 100%;
    width: 100%;
  }
  main .decide-info {
    width: 48%;
  }
  main .decide-img {
    width: 48%;
  }
  main .services_business .services-box {
    grid-template-columns: repeat(2, 1fr);
  }
  main .doc_business .doc-box {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
  .footer .container {
    flex-wrap: wrap;
    gap: 24px 36px;
  }
  .footer .footer-nav:first-child {
    width: 100%;
    margin-right: 0;
  }
}

/* ===================== 768px (планшет) ===================== */
@media (max-width: 768px) {
  /* Бургер */
  .burger-btn {
    display: flex;
  }
  .header nav,
  .header .header-links {
    display: none;
  }
  .container {
    padding: 0 16px;
  }
  .header {
    padding: 8px 16px;
  }
  .header .logo img {
    height: 42px;
  }
  .title-text {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: -0.5px;
  }

  /* Hero */
  main .wrapper {
    height: auto;
    min-height: auto;
    padding: 80px 0 36px;
  }
  main .wrapper-master {
    width: 240px;
    opacity: 0.25;
    right: -10px;
  }
  main .wrapper .master-info {
    display: none;
  }
  main .wrapper .container {
    position: relative;
    z-index: 6;
  }
  main .wrapper .title-text {
    font-size: 24px;
    line-height: 130%;
    max-width: 100%;
  }
  main .wrapper .wrapper-info {
    width: 100%;
    height: auto;
    padding: 16px;
    margin: 18px 0 14px;
    border-radius: 18px;
  }
  main .wrapper .wrapper-info .info-text {
    font-size: 16px;
  }
  main .wrapper .wrapper-list {
    width: 100%;
    padding: 14px 18px;
    border-radius: 18px;
  }
  main .wrapper .wrapper-list ul li {
    font-size: 14px;
  }
  main .wrapper .wrapper-sale {
    margin-top: 18px;
  }
  main .wrapper .wrapper-sale .sale-text {
    font-size: 17px;
    padding: 14px 20px;
  }
  main .wrapper .wrapper-sale .sale-img {
    display: none;
  }
  main .wrapper_business {
    padding: 88px 0 36px;
  }
  main .wrapper_business .wrapper-list {
    width: 100%;
  }
  main .wrapper_business .wrapper-master {
    width: 200px;
    opacity: 0.25;
  }
  main .wrapper_business .master-info {
    display: none;
  }

  /* whyUs */
  main .whyUs .whyUs-item {
    margin: 24px 0 20px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-radius: 14px;
  }
  main .whyUs .whyUs-item .item-title {
    font-size: 24px;
  }
  main .whyUs .whyUs-item .item-text {
    font-size: 15px;
    line-height: 140%;
  }
  main .whyUs .whyUs-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
  }
  main .whyUs .whyUs-card {
    height: 190px;
    border-radius: 20px;
    padding: 16px;
  }
  main .whyUs .whyUs-card .card-title {
    font-size: 16px;
    line-height: 20px;
  }
  main .whyUs .whyUs-card .card-text {
    font-size: 13px;
    line-height: 18px;
    margin-top: 6px;
  }

  /* stepWorks */
  main .stepWorks {
    margin: 30px 0 20px;
    padding: 28px 0 44px;
  }
  main .stepWorks .children {
    display: none;
  }
  main .stepWorks-box {
    margin-top: 28px;
    padding-left: 16px;
  }
  main .stepWorks-card {
    width: 240px;
    height: 360px;
    border-radius: 20px;
  }
  main .stepWorks-card .card-title {
    font-size: 18px;
  }

  /* pricelist */
  main .pricelist-box {
    grid-template-columns: 1fr;
    grid-gap: 16px;
    margin-top: 24px;
  }
  main .pricelist-card {
    height: auto;
  }
  main .pricelist-card .card-img {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 200px;
    border-radius: 20px 20px 0 0;
  }
  main .pricelist-card .card-info {
    position: relative;
    height: auto;
    border-radius: 0 0 20px 20px;
    padding: 14px 12px 18px;
  }

  /* calculate */
  main .calculate {
    margin: 36px 0 20px;
    padding: 28px 0;
  }
  main .calculate .container {
    flex-direction: column;
  }
  main .calculate-info {
    margin-bottom: 20px;
  }
  main .calculate .title-subtext {
    font-size: 15px;
    margin-top: 8px;
  }
  main .calculate-form {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
  }
  main .calculate-form .title-text {
    font-size: 20px;
  }
  main .calculate-form .input-box {
    width: 100%;
  }

  /* services */
  main .services-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
  }
  main .services .service {
    height: 200px;
    padding: 20px;
    border-radius: 24px;
  }
  main .services .service-text {
    font-size: 17px;
	line-height: 116%;

  }
  main .services_business .services-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
  }
  main .services_business .service {
    height: 200px;
  }
  main .services_business .service-title,
  main .services_business .service-text {
    font-size: 16px;
  }

  /* doc */
  main .doc {
    margin: 36px 0 28px;
  }
  main .doc .doc-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
  main .doc_business .doc-box {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  /* ourWorks */
  main .ourWorks-box {
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
  }
  main .ourWorks .ourWork,
  main .ourWorks .ourWork:nth-child(1),
  main .ourWorks .ourWork:nth-child(6),
  main .ourWorks .ourWork:nth-child(7),
  main .ourWorks .ourWork:nth-child(12) {
    width: 100% !important;
    height: 220px;
    border-radius: 20px;
  }
  main .example .ourWork,
  main .example .ourWork:nth-child(1),
  main .example .ourWork:nth-child(3),
  main .example .ourWork:nth-child(4),
  main .example .ourWork:nth-child(6) {
    width: 100% !important;
    height: 220px;
  }

  /* cope */
  main .cope {
    margin: 40px 0 50px;
  }
  main .cope-box {
    grid-template-columns: 1fr;
    grid-row-gap: 8px;
    margin-top: 24px;
  }
  main .cope-item {
    height: 100px;
    border-radius: 14px;
  }
  main .cope-item .cope-text {
    font-size: 17px;
  }

  /* equipment */
  main .equipment {
    margin-bottom: 36px;
  }
  main .equipment .container {
    flex-direction: column;
  }
  main .equipment-info {
    width: 100%;
    margin-bottom: 20px;
  }
  main .equipment .title-text {
    margin-bottom: 16px;
  }
  main .equipment .equipment-brend img {
    max-width: 48%;
  }
  main .equipment .equipment-brend img:first-child {
    max-width: 48%;
    margin-right: 10px;
  }
  main .equipment .equipment-img img {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
  }

  /* reviews */
  main .reviews {
    padding: 32px 0 28px;
  }
  main .reviews .next {
    right: 0;
    transform: translateX(50%);
  }
  main .reviews .review-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }
  main .reviews .review-btns .btn {
    width: 100%;
    height: auto;
    padding: 14px 12px;
    font-size: 15px;
    text-align: center;
    margin-right: 0 !important;
  }

  /* videos */
  main .videos {
    margin: 30px 0 40px;
  }
  main .videos-box {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  main .videos .video,
  main .videos .video:first-child {
    width: 100%;
    height: 240px;
    border-radius: 20px;
  }
  main .videos_business .video {
    height: 280px;
  }

  /* faqs */
  main .faqs-box {
    margin: 20px auto 0;
  }
  main .faqs .faq {
    padding: 18px 0;
  }
  main .faqs .faq-head .faq-title {
    font-size: 16px;
    line-height: 22px;
  }
  main .faqs .faq-body .faq-text {
    font-size: 15px;
  }

  /* sale */
  main .sale {
    margin: 48px 0 36px;
  }
  main .sale .container {
    flex-direction: column;
    gap: 16px;
  }
  main .sale .sale-info {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-radius: 24px;
  }
  main .sale .sale-info .info {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
  main .sale .sale-info .sale-title {
    font-size: 28px;
    line-height: 36px;
  }
  main .sale .sale-info .sale-text {
    font-size: 16px;
  }
  main .sale .sale-info .sale-link {
    width: 100%;
    height: 48px;
    font-size: 16px;
    text-align: center;
  }
  main .sale .sale-info .status {
    font-size: 30px;
    line-height: 32px;
    padding: 16px;
    width: 100%;
    text-align: center;
  }
  main .sale .sale-img {
    width: 100%;
    height: 220px;
    border-radius: 24px;
  }

  /* banner */
  main .banner {
    margin-bottom: 24px;
  }
  main .banner-box {
    flex-direction: column;
    padding: 24px 20px 28px;
    border-radius: 24px;
    min-height: auto;
    gap: 20px;
  }
  main .banner-box .banner-title {
    width: 100%;
    font-size: 22px;
    line-height: 30px;
  }
  main .banner-box .banner-form {
    width: 100%;
  }
  main .banner-box .banner-form .form-text {
    font-size: 14px;
  }
  main .banner-box .banner-form .form-item .input-box {
    width: 100%;
  }

  /* about page */
  main .wrapper_about {
    padding: 88px 0 28px;
    height: auto;
  }
  main .wrapper_about .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  main .wrapper_about .about-info {
    width: 100%;
  }
  main .wrapper_about .about-info .title-text {
    font-size: 26px;
    line-height: 32px;
  }
  main .wrapper_about .about-info .info-text {
    font-size: 15px;
    margin-top: 12px;
  }
  main .wrapper_about .about-img {
    width: 100%;
    height: 260px;
    border-radius: 20px;
  }

  /* contacts */
  main .contacts {
    margin: 36px 0 40px;
  }
  main .contacts-box {
    flex-direction: column;
  }
  main .contacts-info {
    width: 100%;
    margin-bottom: 0;
  }
  main .contacts-info .contact-img {
    transform: none;
    margin-bottom: 16px;
  }
  main .contacts-info .contact-img img {
    max-width: 110px;
  }
  main .contacts-info .contact-item {
    padding: 22px;
    border-radius: 22px;
    margin-bottom: 12px;
  }
  main .contacts-info .contact-item .item-title {
    font-size: 22px;
    line-height: 36px;
  }
  main .contacts-info .contact-item .work-time__list li span {
    font-size: 13px;
  }
  main .contacts-info .phone .phone-num {
    font-size: 20px;
  }
  main .contacts-info .socials .social-name {
    font-size: 18px;
  }

  /* address */
  main .address {
    margin-bottom: 28px;
  }
  main .address .title-subtext {
    font-size: 16px;
    margin: 8px 0 20px;
  }
  main .address .address-map {
    height: 220px;
    border-radius: 22px;
  }

  /* banner_about */
  main .banner_about .banner-title {
    font-size: 22px;
    line-height: 28px;
  }
  main .banner_about .banner-info {
    width: 100%;
  }
  main .banner_about .links {
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }
  main .banner_about .links .btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
    margin-right: 0 !important;
    text-align: center;
  }

  /* decide */
  main .decide .container {
    flex-direction: column;
    gap: 24px;
  }
  main .decide-info {
    width: 100%;
  }
  main .decide-list {
    margin-top: 18px;
    padding: 18px 16px;
  }
  main .decide-list li {
    font-size: 16px;
  }
  main .decide-img {
    width: 100%;
  }
  main .decide-img img {
    width: 48%;
    height: 384px;
    border-radius: 20px;
  }

  /* howWeWork */
  main .howWeWork {
    padding: 30px 0 50px;
  }
  main .howWeWork-item {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    margin-top: 22px;
  }
  main .howWeWork .item {
    height: auto;
    min-height: 300px;
    padding: 16px;
    border-radius: 20px;
  }
  main .howWeWork .item-title {
    font-size: 16px;
    margin-right: 8px;
  }
  main .howWeWork .item-img {
    width: 148px;
  }
  main .howWeWork .item-text {
    font-size: 13px;
  }

  /* chooseUs */
  main .chooseUs {
    padding: 30px 0 48px;
  }
  main .chooseUs-box {
    flex-direction: column;
    gap: 20px;
    margin-top: 22px;
  }
  main .chooseUs-list {
    width: 100%;
    padding: 20px 18px;
    border-radius: 20px;
  }
  main .chooseUs-list li {
    font-size: 17px;
  }
  main .chooseUs-img {
    width: 100%;
    height: 240px;
    border-radius: 20px;
  }

  /* order */
  main .order {
    margin-bottom: 18px;
  }
  main .order-box {
    flex-direction: column;
    padding: 24px 20px 20px;
    border-radius: 24px;
    gap: 20px;
  }
  main .order-info {
    width: 100%;
  }
  main .order-info .title-subtext {
    font-size: 16px;
    margin: 10px 0 18px;
  }
  main .order-info .phone-num {
    font-size: 24px;
  }
  main .order-form {
    max-width: 100%;
    width: 100%;
  }
  main .order-form .btn {
    width: 100%;
    height: 44px;
    margin-top: 12px;
  }

  /* clean */
  main .clean {
    margin-top: 40px;
  }
  main .clean .clean-info {
    font-size: 18px;
  }
  main .clean .clean-info .btn {
    width: 100%;
    height: 50px;
  }

  /* footer */
  .footer {
    padding: 28px 0 36px;
  }
  .footer .container {
    flex-direction: column;
    gap: 20px;
    flex-wrap: nowrap;
  }
  .footer .footer-nav {
    width: 100%;
    margin-bottom: 0;
  }
  .footer .footer-nav:first-child {
    margin-right: 0;
  }
}

/* ===================== 480px (мобильный) ===================== */
@media (max-width: 480px) {
    main .wrapper-bg {
    bottom: 0;
    top: auto;
    height: 428px;
    }
    .swiper-btns .prev, .swiper-btns .next {
        width: 33px;
    height: 33px;
    }
	#bg-about-photo {
		object-position: center;
	}
	#txt-about-shadule {
		text-align: right;
	}
	main .stepWorks-card .card-img {
		top: 45%;
		width: 150px;
	}
  .title-text {
    font-size: 22px;
    line-height: 28px;
  }
  main .wrapper .title-text {
    font-size: 21px;
  }
  main .wrapper_about .about-info .title-text {
    font-size: 22px;
  }

  /* whyUs → 1 колонка */
  main .whyUs .whyUs-box {
    grid-template-columns: 1fr;
  }
  main .whyUs .whyUs-card {
    height: 160px;
  }
  main .whyUs .whyUs-item {
    flex-direction: column;
    gap: 14px;
  }

  /* stepWorks */
  main .stepWorks-card {
    width: 220px;
    height: 394px;
  }

  /* pricelist */
  main .pricelist-card .card-img {
    height: 180px;
  }

  /* services → 1 колонка */
  main .services-box {
    grid-template-columns: 1fr;
  }
  main .services .service {
    height: 213px;
  }
  main .services_business .services-box {
    grid-template-columns: 1fr;
  }

  /* doc → 1 колонка */
  main .doc .doc-box {
    grid-template-columns: 1fr;
  }

  /* ourWorks высоты */
  main .ourWorks .ourWork,
  main .ourWorks .ourWork:nth-child(1),
  main .ourWorks .ourWork:nth-child(6),
  main .ourWorks .ourWork:nth-child(7),
  main .ourWorks .ourWork:nth-child(12) {
    height: 200px;
  }

  /* cope */
  main .cope-item {
    height: 90px;
  }
  main .cope-item .cope-text {
    font-size: 15px;
  }

  /* howWeWork → 1 колонка */
  main .howWeWork-item {
    grid-template-columns: 1fr;
  }

  /* decide → стопка */
  main .decide-img {
    flex-direction: column;
    gap: 10px;
  }
  main .decide-img img {
    width: 100%;
    margin-bottom: 0;
  }

  /* sale */
  main .sale .sale-info .sale-title {
    font-size: 24px;
  }
  main .sale .sale-info .status {
    font-size: 24px;
  }

  /* footer — 2 колонки для разделов */
  .footer .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 16px;
  }
  .footer .footer-nav:first-child {
    width: 100%;
  }
  .footer .footer-nav {
    width: calc(50% - 8px);
  }
}

/* Contacts socials — fix overflow on mobile */
@media (max-width: 768px) {
  main .contacts-info .socials .social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 10px;
    word-break: break-all;
    overflow-wrap: break-word;
    min-width: 0;
  }
  main .contacts-info .socials .social-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
  }
  main .contacts-info .socials .social-name {
    flex-shrink: 0;
    min-width: 40px;
    font-size: 16px;
  }
  main .contacts-info .socials .social-link {
    font-size: 12px;
    word-break: break-all;
    overflow-wrap: break-word;
    flex: 1 1 100%;
    min-width: 0;
    padding-left: 38px;
  }
}

/* =================== HEADER PHONE MOBILE =================== */
.header-phone-mobile {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: #0f1838;
  white-space: nowrap;
  flex: 1;
  text-align: center;
  padding: 0 8px;
}
.header-phone-mobile:hover { color: #3b87be; }

@media (max-width: 768px) {
  .header-phone-mobile { display: block; }
}

/* =================== POPUP FIXES =================== */
.popUp-close {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-subtitle {
  font-size: 15px;
  line-height: 140%;
  color: #e0e0e0;
  margin-bottom: 16px;
  min-height: 0;
}
.popUp-form .btn.submit_btn {
  width: 100%;
  height: 51px;
  font-size: 18px;
  margin-top: 8px;
  border-radius: 13px;
}

/* =================== PRICELIST MOBILE FONT FIX =================== */
@media (max-width: 768px) {
  main .pricelist-card .card-info .card-title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
  }
  main .pricelist-card .card-info .card-price {
    font-size: 17px;
    margin-top: 6px;
  }
}
@media (max-width: 480px) {
  main .pricelist-card .card-info .card-title {
    font-size: 17px;
    line-height: 21px;
  }
  main .pricelist-card .card-info .card-price {
    font-size: 15px;
  }
}

/* =================== 2400px+ (Ultra-wide) =================== */
@media (min-width: 2400px) {
  .container {
    max-width: 2200px;
    padding: 0 80px;
  }
  .header {
    max-width: 2360px;
    padding: 10px 24px;
    border-radius: 30px;
  }
  .header .nav-list li {
    font-size: 28px;
    margin-right: 64px;
  }
  .header .phone-num { font-size: 28px; }
  .header .socials { margin: 0 52px 0 56px; }
  .header .socials a img { width: 34px; height: 34px; }
  .btn {
    width: 240px;
    height: 62px;
    font-size: 20px;
    border-radius: 18px;
  }
  .title-text {
    font-size: 72px;
    line-height: 80px;
    letter-spacing: -2.2px;
  }
  main { max-width: 2400px; }
  main .wrapper {
    height: 1100px;
    padding: 200px 0 80px;
  }
  main .wrapper .title-text {
    font-size: 96px;
    line-height: 106%;
    max-width: 1480px;
  }
  main .wrapper-master { width: 1160px; }
  main .wrapper .master-info .master-name { font-size: 40px; }
  main .wrapper .master-info .master-text { font-size: 26px; }
  main .wrapper .wrapper-info {
    width: 580px;
    height: 160px;
    margin: 48px 0 30px;
    border-radius: 32px;
    padding: 24px;
  }
  main .wrapper .wrapper-info .info-text { font-size: 38px; }
  main .wrapper .wrapper-list {
    width: 680px;
    padding: 28px 52px 28px 32px;
    border-radius: 32px;
  }
  main .wrapper .wrapper-list ul li { font-size: 26px; }
  main .wrapper .wrapper-sale { margin-top: 40px; }
  main .wrapper .wrapper-sale .sale-text {
    font-size: 42px;
    padding: 30px 56px;
    border-radius: 22px;
  }
  main .wrapper_business { padding: 230px 0 130px; }
  main .wrapper_business .wrapper-master { width: 880px; }
  main .wrapper_business .wrapper-list { width: 720px; }
  main .whyUs .whyUs-item {
    margin: 96px 0 72px;
    padding: 40px 78px;
    border-radius: 26px;
  }
  main .whyUs .whyUs-item .item-title { font-size: 58px; }
  main .whyUs .whyUs-item .item-text { font-size: 30px; }
  main .whyUs .whyUs-box { grid-gap: 24px; }
  main .whyUs .whyUs-card {
    height: 390px;
    border-radius: 44px;
    padding: 32px;
  }
  main .whyUs .whyUs-card .card-title { font-size: 36px; line-height: 42px; }
  main .whyUs .whyUs-card .card-text  { font-size: 28px; line-height: 36px; }
  main .stepWorks { margin: 100px 0 66px; padding: 70px 0 120px; }
  main .stepWorks-card { width: 500px; height: 700px; border-radius: 44px; }
  main .stepWorks-card .card-title { font-size: 36px; }
  main .stepWorks-card .card-text  { font-size: 20px; line-height: 28px; }
  main .pricelist-box { grid-gap: 84px; margin-top: 66px; }
  main .pricelist-card { height: 780px; }
  main .pricelist-card .card-img { height: 600px; }
  main .pricelist-card .card-info { height: 280px; padding: 22px 16px 40px; }
  main .pricelist-card .card-info .card-title { font-size: 40px; }
  main .pricelist-card .card-info .card-price { font-size: 38px; }
  main .calculate { margin: 100px 0 70px; padding: 68px 0 28px; }
  main .calculate .title-subtext { font-size: 32px; line-height: 38px; margin-top: 22px; }
  main .calculate-form { padding: 28px 48px; border-radius: 44px; }
  main .calculate-form .title-text { font-size: 54px; }
  main .services-box { grid-gap: 18px; }
  main .services .service { height: 500px; border-radius: 52px; padding: 60px; }
  main .services .service-text { font-size: 36px; }
  main .doc .doc-box { grid-gap: 38px; }
  main .ourWorks .ourWork { height: 500px; border-radius: 52px; }
  main .cope-box { grid-column-gap: 22px; grid-row-gap: 18px; }
  main .cope-item { height: 232px; border-radius: 32px; padding: 18px 34px; }
  main .cope-item .cope-text { font-size: 36px; line-height: 36px; }
  main .equipment .equipment-title { font-size: 36px; }
  main .equipment .equipment-list li { font-size: 28px; }
  main .equipment .equipment-img img { height: 560px; border-radius: 52px; }
  main .reviews { padding: 84px 0 70px; }
  main .reviews-box { margin-top: 66px; }
  main .reviews .review-btns .btn { height: 84px; font-size: 28px; padding: 0 40px; border-radius: 18px; }
  main .videos .video { height: 660px; border-radius: 52px; }
  main .faqs .faq { padding: 42px 0; }
  main .faqs .faq-head .faq-title { font-size: 34px; line-height: 34px; }
  main .faqs .faq-body .faq-text { font-size: 28px; margin-top: 28px; }
  main .sale { margin: 160px 0 130px; }
  main .sale .sale-info { width: 63%; padding: 72px; border-radius: 52px; }
  main .sale .sale-info .sale-title { font-size: 66px; line-height: 78px; }
  main .sale .sale-info .sale-text { font-size: 34px; line-height: 40px; margin: 24px 0 34px; }
  main .sale .sale-info .sale-link { width: 500px; height: 86px; font-size: 28px; border-radius: 18px; }
  main .sale .sale-info .status { font-size: 72px; line-height: 60px; padding: 32px; border-radius: 18px; }
  main .sale .sale-img { width: 35%; border-radius: 52px; }
  main .banner-box { border-radius: 52px; padding: 72px; min-height: 660px; }
  main .banner-box .banner-title { font-size: 66px; line-height: 78px; width: 46%; }
  main .banner-box .banner-form { width: 48%; }
  main .banner-box .banner-form .form-text { font-size: 22px; line-height: 30px; }
  main .banner-box .banner-form .submit-btn { height: 76px; font-size: 26px; border-radius: 18px; margin-bottom: 28px; }
  main .howWeWork { padding: 72px 0 130px; }
  main .howWeWork-item { grid-gap: 34px; margin-top: 64px; }
  main .howWeWork .item { height: 680px; padding: 34px; border-radius: 44px; }
  main .howWeWork .item-title { font-size: 34px; }
  main .howWeWork .item-img { width: 240px; }
  main .howWeWork .item-text { font-size: 22px; line-height: 28px; }
  main .chooseUs { padding: 60px 0 90px; }
  main .chooseUs-list { padding: 48px 34px; border-radius: 44px; }
  main .chooseUs-list li { font-size: 30px; }
  main .order-box { padding: 72px 72px 44px; border-radius: 52px; }
  main .order-info .title-subtext { font-size: 30px; line-height: 34px; margin: 22px 0 42px; }
  main .order-info .phone-num { font-size: 50px; }
  main .order-info .info-text { font-size: 24px; }
  main .wrapper_about { padding: 230px 0 72px; }
  main .wrapper_about .about-info .title-text { font-size: 70px; }
  main .wrapper_about .about-info .info-text { font-size: 28px; line-height: 38px; margin-top: 22px; }
  main .wrapper_about .about-img { height: 720px; border-radius: 52px; }
  main .contacts { margin: 96px 0 120px; }
  main .contacts-info .contact-item { padding: 66px; border-radius: 52px; margin-bottom: 30px; }
  main .contacts-info .contact-item .item-title { font-size: 54px; line-height: 72px; }
  main .contacts-info .contact-item .work-time__list li span { font-size: 26px; line-height: 36px; }
  main .contacts-info .phone .phone-num { font-size: 38px; }
  main .contacts-info .socials .social-name { font-size: 34px; }
  main .contacts-info .socials .social { font-size: 28px; }
  main .address .title-subtext { font-size: 34px; margin: 18px 0 56px; }
  main .address .address-map { height: 460px; border-radius: 52px; }
  .footer { padding: 72px 0 100px; }
  .footer .footer-nav .logo img { width: 210px; }
  .footer .footer-nav .footer-text { font-size: 20px; margin-top: 28px; }
  .footer .footer-nav .nav-title { font-size: 24px; }
  .footer .footer-nav .nav-list { margin-top: 28px; }
  .footer .footer-nav .nav-list li { font-size: 20px; margin-bottom: 10px; }
}

/* =====================================================================
   НОВЫЕ ПРАВКИ: ФОНЫ, АНИМАЦИИ, ХОВЕРЫ, ПОПАП, КАРТА
   ===================================================================== */

/* --- Header shadow --- */
.header {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

/* --- Full-width colored sections --- */
main .stepWorks,
main .reviews,
main .howWeWork,
main .wrapper_about {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* --- Button hover effects --- */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.btn:hover::after {
  background: rgba(255, 255, 255, 0.14);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(65, 146, 204, 0.32);
  color: #fff;
}
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Nav link hovers */
.header .nav-list li a {
  position: relative;
}
.header .nav-list li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b87be;
  transition: width 0.3s ease;
}
.header .nav-list li a:hover::after { width: 100%; }

/* --- Scroll reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Card hover */
.whyUs-card,
.pricelist-card,
.stepWorks-card,
.cope-item,
.howWeWork .item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whyUs-card:hover,
.stepWorks-card:hover,
.howWeWork .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.pricelist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}



/* --- card-icon on mobile --- */
@media (max-width: 768px) {
    main .whyUs .whyUs-item .item-img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  flex-shrink: 0;
}
main .pricelist-card .card-info .card-title {
        margin-bottom: 24px !important;
}
  main .whyUs .whyUs-card .card-icon {
    width: 70px;
    opacity: 0.25;
  }
}
@media (max-width: 480px) {
  main .whyUs .whyUs-card .card-icon {
    display: none;
  }
}

/* --- pricelist card mobile: flex column so img doesn't overlap --- */
@media (max-width: 768px) {
  main .pricelist-card {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  main .pricelist-card .card-img {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 200px;
    border-radius: 20px 20px 0 0;
    object-fit: cover;
  }
  main .pricelist-card .card-info {
    position: relative;
    height: auto;
    border-radius: 0 0 20px 20px;
    padding: 14px 14px 20px;
    z-index: auto;
  }
}
@media (max-width: 480px) {
  main .pricelist-card .card-img { height: 180px; }
}
#txt-photo-index {
	max-width: 100px;
}
#txt-photo-index-2 {
	max-width: 201px;
}

/* --- ourWork button: show on hover, cover face fix --- */
main .ourWorks .ourWork .add-review {
  left: auto;
  right: 20px;
  bottom: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease, background-image 0.3s ease;
}
@media (min-width: 769px) {
  main .ourWorks .ourWork .add-review {
    transform: translateY(6px);
  }
  main .ourWorks .ourWork:hover .add-review {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ourWork2 — face at center, push object-position */
main .ourWorks .ourWork:nth-child(2) .ourWork-img {
  object-position: center 20%;
}

/* --- Mobile hero: master image visible and harmonious --- */
@media (max-width: 768px) {
  main .wrapper {
    min-height: 520px;
    padding-bottom: 0;
  }
  main .wrapper-master {
    width: 372px;
    max-width: 270px;
    opacity: 0.85;
    right: -8px;
    bottom: 0;
    z-index: 2;
  }
  main .wrapper .container {
    position: relative;
    z-index: 6;
    padding-right: 48%;
  }
  main .wrapper_business .wrapper-master {
    width: 52%;
    max-width: 240px;
    opacity: 0.8;
  }
  main .wrapper_business .container {
    padding-right: 45%;
  }
}
@media (max-width: 480px) {
  main .wrapper .container {
    padding-right: 16px;
  }
  main .wrapper-master {
    width: 55%;
    max-width: 220px;
    opacity: 0.5;
    z-index: 1;
  }
  main .wrapper_business .container {
    padding-right: 16px;
  }
  main .wrapper_business .wrapper-master {
    opacity: 0.45;
  }
}

/* --- Calculate section: bg visible on mobile --- */
@media (max-width: 768px) {
  main .calculate {
    padding-top: 0;
  }
  main .calculate-bg {
    object-position: right center;
    opacity: 0.6;
  }
  main .calculate .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* --- Yandex map iframe --- */
.address-map {
  overflow: hidden;
}
.address-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 35px;
}

/* =====================================================================
   POPUP REDESIGN
   ===================================================================== */
.popUp-content {
  background: #ffffff;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
  animation: popUpIn 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
  position: relative;
}

@keyframes popUpIn {
  from { opacity: 0; transform: scale(0.9) translateY(-18px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Gradient top bar */
.popUp-content::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(to right, #4192CC, #69aada, #83B6DA);
}

/* Close button */
.popUp-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #999;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}
.popUp-close:hover {
  background: #f0f4f8;
  color: #0f1838;
}

/* Popup inner padding */
.popUp-content > .popUp-close ~ * {
  padding-left: 28px;
  padding-right: 28px;
}

/* Title */
.popUp .popUp-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f1838;
  margin: 0;
  padding: 22px 28px 0;
  line-height: 130%;
}

/* Subtitle */
.popUp-subtitle {
  font-size: 13px;
  line-height: 150%;
  color: #4192CC;
  margin: 6px 0 0;
  padding: 0 28px;
  min-height: 0;
  font-weight: 500;
}

/* Form */
.popUp .popUp-form {
  margin-top: 16px;
  padding: 0 28px 28px;
}
.popUp .popUp-form .input-box {
  margin-bottom: 14px;
}
.popUp .popUp-form .input-box label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.popUp .popUp-form .input-box .form_inp {
  background: #f5f8fc;
  border: 1.5px solid #dde6f0;
  border-radius: 10px;
  color: #0f1838;
  font-size: 15px;
  height: 44px;
  padding: 0 16px;
}
.popUp .popUp-form .input-box .form_inp:focus {
  border-color: #4192CC;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(65, 146, 204, 0.12);
}
.popUp .popUp-form .input-box .form_inp::placeholder {
  color: #b0b8c8;
}
.popUp .popUp-form .submit_btn {
  width: 100%;
  height: 48px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  margin-top: 6px;
  background-image: linear-gradient(to right, #4192CC, #5ba5d8, #83B6DA);
  letter-spacing: 0.3px;
}
.popUp .popUp-form .submit_btn:hover {
  background-image: linear-gradient(to left, #4192CC, #5ba5d8, #83B6DA);
}
.popUp .input-check {
  margin-top: 14px;
}
.popUp .input-check label {
  font-size: 11px;
  color: #aaa;
  font-weight: 400;
}
.popUp .input-check label a {
  color: #4192CC;
}

/* Thanks popup */
.popUp-thanks .popUp-content {
  background: linear-gradient(135deg, #3f8ecc 0%, #5ba8d8 50%, #83B6DA 100%);
  border-radius: 24px;
  box-shadow: 0 28px 72px rgba(65, 146, 204, 0.38);
  animation: popUpIn 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.popUp-thanks .popUp-content::before { display: none; }
.popUp-thanks .popUp-close { color: rgba(255,255,255,0.7); }
.popUp-thanks .popUp-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.popUp-thanks .popUp-title {
  color: #fff;
  text-align: center;
  padding: 40px 28px 0;
  font-size: 28px;
}
.popUp-thanks .popUp-subtitle {
  color: rgba(255,255,255,0.88);
  text-align: center;
  font-size: 16px;
  padding: 10px 28px 0;
}
.popUp-thanks .backTo-link {
  width: auto;
  min-width: 200px;
  height: 46px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  margin: 28px auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  backdrop-filter: blur(4px);
}
.popUp-thanks .backTo-link:hover {
  background: rgba(255,255,255,0.32);
  color: #fff;
  transform: translateY(-2px);
}
.popUp-thanks .popUp-content .popUp-close ~ * { padding: 0; }


/* html overflow fix — prevents scroll from full-width sections */
html { overflow-x: hidden; }

/* card-title margin-bottom in pricelist */
main .pricelist-card .card-info .card-title {
  margin-bottom: 20px;
}

/* card-num — no squish */
main .stepWorks-card .card-num {
  min-width: 35px;
  flex-shrink: 0;
}
main .howWeWork .item-num {
  min-width: 34px;
  flex-shrink: 0;
}

/* equipment-img — bigger height */
main .equipment .equipment-img img {
  height: 500px;
}

/* Hero animations on load */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
main .wrapper .title-text {
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}
main .wrapper .wrapper-info {
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}
main .wrapper .wrapper-list {
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.38s both;
}
main .wrapper .wrapper-sale {
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
main .wrapper-master {
  animation: heroSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

/* Scroll reveal — slower, smoother */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid cards */
.whyUs-card:nth-child(1) { transition-delay: 0.05s; }
.whyUs-card:nth-child(2) { transition-delay: 0.13s; }
.whyUs-card:nth-child(3) { transition-delay: 0.21s; }
.whyUs-card:nth-child(4) { transition-delay: 0.29s; }
.whyUs-card:nth-child(5) { transition-delay: 0.37s; }
.whyUs-card:nth-child(6) { transition-delay: 0.45s; }

.pricelist-card:nth-child(1) { transition-delay: 0.05s; }
.pricelist-card:nth-child(2) { transition-delay: 0.13s; }
.pricelist-card:nth-child(3) { transition-delay: 0.21s; }
.pricelist-card:nth-child(4) { transition-delay: 0.05s; }
.pricelist-card:nth-child(5) { transition-delay: 0.13s; }
.pricelist-card:nth-child(6) { transition-delay: 0.21s; }

.howWeWork .item:nth-child(1) { transition-delay: 0.05s; }
.howWeWork .item:nth-child(2) { transition-delay: 0.15s; }
.howWeWork .item:nth-child(3) { transition-delay: 0.25s; }
.howWeWork .item:nth-child(4) { transition-delay: 0.35s; }

.cope-item:nth-child(odd)  { transition-delay: 0.05s; }
.cope-item:nth-child(even) { transition-delay: 0.15s; }

/* =====================================================================
   МОБИЛЬНЫЙ ГЕРОЙ — мастер видимый и большой
   ===================================================================== */
@media (max-width: 768px) {
  main .wrapper {
    min-height: 600px;
    height: auto;
    padding: 84px 0 0;
  }
  main .wrapper-master {
    width: 414px;
    max-width: 100% !important;
    opacity: 1;
    right: 0;
    bottom: 0;
    z-index: 3;
    animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
  }
  main .wrapper .container {
    position: relative;
    z-index: 5;
    padding-right: 16px;
    padding-bottom: 200px;
  }
  main .wrapper .title-text {
    max-width: 58vw;
    font-size: 22px;
    line-height: 128%;
  }
  main .wrapper .wrapper-info {
    width: 60vw;
    max-width: 60vw;
    height: auto;
    padding: 14px;
    margin: 16px 0 12px;
    border-radius: 16px;
  }
  main .wrapper .wrapper-list {
    width: 62vw;
    max-width: 62vw;
    padding: 12px 14px;
    border-radius: 16px;
  }
  main .wrapper .wrapper-list ul li {
    font-size: 13px;
    line-height: 130%;
  }
  main .wrapper .wrapper-sale {
    margin-top: 14px;
	width: 150px;
  }
  main .wrapper .wrapper-sale .sale-text {
    font-size: 16px;
    padding: 12px 14px;
    width: 147px;
    display: inline-block;
  }
  /* Business wrapper */
  main .wrapper_business {
    min-height: 560px;
    padding: 84px 0 0;
  }
  main .wrapper_business .wrapper-master {
    width: 89% !important;
    /* max-width: 340px !important; */
    opacity: 1 !important;
    margin-top: 10px;
    right: -51px;
    bottom: 0;
  }
  main .wrapper_business .container {
    padding-right: 16px;
    padding-bottom: 180px;
  }
  main .wrapper_business .wrapper-list {
    width: auto !important;
    max-width: none !important;
    margin-top: 17px;
    margin-bottom: 55px;
  }
  main .wrapper_business .wrapper-sale .sale-text {
    font-size: 15px;
    padding: 10px 16px;
  }
}
@media (max-width: 400px) {
  main .wrapper-master {
    width: 55%;
    max-width: 210px;
    opacity: 0.9;
  }
  main .wrapper .title-text {
    max-width: 100%;
    font-size: 20px;
  }
  main .wrapper .wrapper-info,
  main .wrapper .wrapper-list {
    width: 100%;
    max-width: 100%;
  }
  main .wrapper_business .wrapper-list {
    width: 100%;
    max-width: 100%;
  }
}

/* =====================================================================
   CARD-IMG МОБИЛКА — надёжный фикс перекрытия
   ===================================================================== */
@media (max-width: 768px) {
  main .pricelist-card {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  main .pricelist-card .card-img {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 240px !important;
    border-radius: 20px 20px 0 0 !important;
    object-fit: cover !important;
    object-position: top center !important;
    flex-shrink: 0;
  }
  main .pricelist-card .card-info {
    position: relative !important;
    height: auto !important;
    border-radius: 0 0 20px 20px !important;
    padding: 14px 14px 20px !important;
    z-index: 1 !important;
    flex-shrink: 0;
  }
}
@media (max-width: 480px) {
  main .pricelist-card .card-img {
    height: 317px !important;
  }
}

/* =====================================================================
   ГЛАВНАЯ — ШИРОКОФОРМАТНЫЕ ЭКРАНЫ (missing elements)
   ===================================================================== */
@media (min-width: 1600px) {
  /* Секции только главной что не покрыты */
  main .pricelist-box {
    grid-gap: 64px;
    margin-top: 50px;
  }
  main .doc .doc-box {
    grid-gap: 28px;
    margin-top: 30px;
  }
  main .services-box {
    grid-gap: 14px;
  }
  main .services .service {
    height: 370px;
    padding: 46px;
  }
  main .services .service-text {
    font-size: 26px;
  }
  main .ourWorks .ourWork {
    height: 370px;
  }
  main .ourWorks-box {
    grid-row-gap: 14px;
    margin-top: 48px;
  }
}
@media (min-width: 1920px) {
  main .pricelist-box {
    grid-gap: 70px;
    margin-top: 60px;
  }
  main .doc .doc-box {
    grid-gap: 34px;
    margin-top: 40px;
  }
  main .services .service {
    height: 430px;
    padding: 52px;
  }
  main .services .service-text {
    font-size: 30px;
  }
  main .ourWorks .ourWork {
    height: 430px;
  }
}

/* =====================================================================
   МОБИЛЬНЫЙ ГЕРОЙ — текст без max-width, крупный мастер, белый овал
   ===================================================================== */
@media (max-width: 768px) {
  /* Белый овал адаптируется под мобиль */
  main .wrapper .container::before {
        width: 100%;
        height: 61%;
        left: -11%;
        background: radial-gradient(ellipse at 35% 45%, rgba(255, 255, 255, 0.88) 10%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.1) 68%, transparent 85%);
        filter: blur(16px);
        top: 52px;
  }

  /* Текст — без ограничения ширины, крупнее */
  main .wrapper .title-text {
    max-width: none !important;
    font-size: 29px !important;
    line-height: 128% !important;
  }
  main .wrapper .wrapper-info {
    width: auto !important;
    max-width: none !important;
  }
  main .wrapper .wrapper-list {
    width: auto !important;
    max-width: none !important;
	margin-bottom:0px;
  }
  main .wrapper .wrapper-sale .sale-text {
    max-width: none !important;
    display: inline-block;
    padding: 12px 14px;
    width: 147px;
  }
  main .wrapper .container {
    padding-right: 16px !important;
    padding-bottom: 260px;
  }

  /* Мастер — крупнее, полностью виден */
  main .wrapper-master {
    width: 438px !important;
    max-width: 100% !important;
    opacity: 1 !important;
    right: -4px;
    bottom: 0;
    z-index: 3;
    animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
  }
  main .wrapper_business .wrapper-master {
    width: 89% !important;
    /* max-width: 340px !important; */
    opacity: 1 !important;
    margin-top: 10px;
    right: -51px;
  }
  main .wrapper_business .container {
    padding-right: 16px !important;
    padding-bottom: 230px;
  }
  main .wrapper_business .wrapper-list {
    width: auto !important;
    max-width: none !important;
    margin-top: 17px;
    margin-bottom: 55px;
  }
}

@media (max-width: 400px) {
  main .wrapper-master {
    width: 438px !important;
    max-width: 100% !important;
    opacity: 1 !important;
  }
  main .wrapper .title-text {
    font-size: 25px !important;
  }
  main .wrapper .container {
    padding-bottom: 220px;
  }
}

/* ===== About page only ===== */
/* .wrapper_about используется только на странице о компании */
main .wrapper_about .container::before {
  display: none;
}

@media (max-width: 768px) {
  main .wrapper_about .container {
    padding-bottom: 84px;
  }
  main .wrapper_about .wrapper-bg {
    height: 100%;
    object-position: center;
  }
  main .contacts-info .work-time__list li span:last-child {
    text-align: right;
  }
}