@charset "UTF-8";
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-Medium.ttf) format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-SemiBold.ttf) format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-Bold.ttf) format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-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: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0%;
  color: #1a1a1a;
}

.bodyStopScroll {
  height: 100vh;
  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: 1370px;
  margin: 0 auto;
  padding: 0 20px;
}

.input-box {
  width: 100%;
  margin-bottom: 5px;
}
.input-box .form_inp {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  padding: 0 30px;
  font-size: 16px;
  transition: 0.3s all;
  border: 1px solid #fff;
}
.input-box .form_inp::placeholder {
  color: #000;
}
.input-box .form_inp:focus {
  border-color: #D6A827;
}

.text-box {
  width: 100%;
  margin-bottom: 5px;
}
.text-box textarea {
  width: 100%;
  height: 107px;
  border-radius: 8px;
  padding: 10px 30px;
  font-size: 16px;
  transition: 0.3s all;
  border: 1px solid #fff;
  resize: none;
}
.text-box textarea::placeholder {
  color: #000;
}
.text-box textarea:focus {
  border-color: #D6A827;
}

.input-check .form_check {
  appearance: none;
  width: 21px;
  height: 21px;
  border-radius: 5px;
  background: #fff;
  margin-right: 7px;
  cursor: pointer;
  position: relative;
}
.input-check .form_check::after {
  content: "✓";
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.input-check .form_check:checked {
  background: #D6A827;
}
.input-check label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.select-item {
  margin-bottom: 16px;
}

.select-label {
  font-size: 18px;
  font-weight: 600;
  color: #2b2a29;
  margin-bottom: 8px;
}

.select {
  position: relative;
  white-space: nowrap;
  font-size: 14px;
  line-height: 120%;
  font-weight: 600;
}
.select-head {
  width: 100%;
  height: 43px;
  border-radius: 8px;
  background: #FAFAFA;
  border: 1px solid #FAFAFA;
  padding: 0 16px;
  color: #2B2A29;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.select-head svg {
  transition: 0.3s all;
}
.select .options {
  position: absolute;
  top: 105%;
  right: 0;
  width: 100%;
  border-radius: 12px;
  background: #FAFAFA;
  border: 1px solid #FAFAFA;
  overflow: hidden;
  z-index: 50;
  display: none;
  padding: 20px;
}
.select .options li {
  cursor: pointer;
  margin-bottom: 8px;
  color: #2B2A29;
}
.select .options li:last-child {
  margin-bottom: 0;
}
.select .options li:hover {
  color: #d6a827;
}
.select .options .active {
  color: #d6a827;
  font-weight: 700;
}

.showSelect .select-head img.arrow, .showSelect .select-head svg {
  transform: rotate(180deg);
}
.showSelect .options {
  display: block;
}

.btn1, .btn2 {
  width: 100%;
  height: 51px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  background: #191919;
  border: 2px solid #191919;
  color: #fff;
  transition: 0.3s all;
}

.btn1:hover {
  background: transparent;
  color: #191919;
}

.btn2 {
  background-image: linear-gradient(to left bottom, #d6a827, #ddb536, #e5c244, #ecd053, #f3dd61, #f6e368, #f9ea6f, #fcf076, #fcf077, #fdf178, #fdf179, #fdf17a);
  color: #000;
  border: none;
}

.page-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 120%;
  color: #000;
}

.page-subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
  color: #000;
}

.title-text {
  font-size: 52px;
  font-weight: 600;
  line-height: 120%;
  color: #000;
  position: relative;
  text-transform: uppercase;
}
.title-text::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 378px;
  height: 5px;
  background-image: linear-gradient(to left bottom, #d6a827, #ddb536, #e5c244, #ecd053, #f3dd61, #f6e368, #f9ea6f, #fcf076, #fcf077, #fdf178, #fdf179, #fdf17a);
}

.swiper-btns {
  display: flex;
}
.swiper-btns .prev, .swiper-btns .next {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #f6e06d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all;
}
.swiper-btns .prev svg, .swiper-btns .next svg {
  transition: 0.3s all;
}
.swiper-btns .prev:hover, .swiper-btns .next:hover {
  background: #000;
}
.swiper-btns .prev:hover svg path, .swiper-btns .next:hover svg path {
  stroke: #f6e06d;
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination .swiper-pagination-bullet {
  margin: 0 8px !important;
  width: 18px;
  height: 18px;
  display: block;
  opacity: 1;
  transform: none;
  background: #fff;
}
.pagination .swiper-pagination-bullet-active {
  background: #F6E06D;
}

.header {
  padding-top: 25px;
}
.header-top .address {
  font-size: 18px;
}
.header-top .address img {
  margin-right: 7px;
}
.header-top .socials .social {
  display: inline-block;
  margin-right: 12px;
}
.header-top .phone-nums a {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  color: #000;
}
.header-top .header-btns {
  width: 32.3%;
}
.header-top .header-btns button {
  width: 49%;
}
.header nav .nav-list {
  padding: 15px 0 19px;
  border-bottom: 2px solid #000;
}
.header nav .nav-list li {
  font-size: 20px;
  color: #101010;
}
.header nav .nav-list li:hover {
  color: #f6e06d;
}
.header .menu {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  width: 100%;
  height: 100vh;
}
.header .menu .menu-content {
  width: 90%;
  height: 100vh;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
  animation: anim-menu 0.3s linear;
}
.header .menu .menu-content .logo {
  margin: 0;
}
.header .menu .menu-content .logo img {
  width: 108px;
}
.header .menu .menu-content .nav-list {
  margin: 65px 0 10px;
  flex-direction: column;
}
.header .menu .menu-content .nav-list li {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}
.header .menu .menu-content .menu-btns button {
  width: 168px;
  height: 51px;
  font-size: 20px;
}
.header .menu .menu-content .menu-btns button:last-child {
  margin: 12px 0 41px;
}
.header .menu .menu-content .address {
  font-size: 14px;
  font-weight: 500;
  align-items: start;
}
.header .menu .menu-content .address img {
  width: 14px;
  margin: 5px 7px 0 0;
}
.header .menu .menu-content .socials {
  font-size: 20px;
  font-weight: 7;
  margin-top: 30px;
}
.header .menu .menu-content .socials .social {
  display: block;
  margin-right: 12px;
}
.header .menu .menu-content .socials .social img {
  width: 28px;
}
@keyframes anim-menu {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}

main .wrapper .wrapper-info {
  width: 51.5%;
  margin-top: 53px;
}
main .wrapper .wrapper-info .page-subtitle {
  margin: 34px 0 44px;
}
main .wrapper .wrapper-info .info-list li {
  padding: 6px 16px;
  background-image: linear-gradient(to left bottom, #d6a827, #ddb536, #e5c244, #ecd053, #f3dd61, #f6e368, #f9ea6f, #fcf076, #fcf077, #fdf178, #fdf179, #fdf17a);
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 120%;
  margin: 0 6px 10px 0;
  border-radius: 8px;
}
main .wrapper .wrapper-info .info-list li:nth-child(5), main .wrapper .wrapper-info .info-list li:nth-child(6) {
  background: #000;
  color: #fff;
}
main .wrapper .wrapper-info .info-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  color: #000;
  margin: 50px 0;
}
main .wrapper .wrapper-info .info-btns .btn2 {
  width: 229px;
  height: 65px;
  margin-right: 25px;
  font-size: 24px;
  font-weight: 500;
}
main .wrapper .wrapper-info .info-btns .btn1 {
  font-size: 24px;
  font-weight: 500;
  width: 325px;
  height: 65px;
  background: transparent;
  color: #000;
}
main .wrapper .wrapper-info .info-btns .btn1:hover {
  background: #000;
  color: #fff;
}
main .wrapper .wrapper-slide {
  width: 47%;
  margin-top: 32px;
  position: relative;
}
main .wrapper .wrapper-slide .swiper-btns .prev, main .wrapper .wrapper-slide .swiper-btns .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
main .wrapper .wrapper-slide .swiper-btns .prev {
  left: 30px;
}
main .wrapper .wrapper-slide .swiper-btns .next {
  right: 30px;
}
main .wrapper .wrapper-slide .pagination {
  width: 100%;
  position: absolute;
  bottom: 23px;
  z-index: 3;
}
main .wrapper .wrapper-slide .wrapper-img {
  width: 100%;
  height: 750px;
  border-radius: 15px;
  object-fit: cover;
}
main .sale {
  margin: 92px 0;
}
main .sale .sale-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  margin-top: 34px;
}
main .sale .sale-card {
  width: 100%;
  height: 321px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  color: #fff;
  padding: 30px 24px;
  border-radius: 15px;
  overflow: hidden;
}
main .sale .sale-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.65);
}
main .sale .sale-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .sale .sale-card .card-title {
  font-size: 26px;
  line-height: 120%;
  font-weight: 800;
  position: relative;
  z-index: 3;
}
main .sale .sale-card .card-text {
  font-size: 18px;
  line-height: 130%;
  position: relative;
  z-index: 3;
}
main .sale .sale-card .card-link {
  width: 234px;
  height: 59px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
main .sale .sale-card .card-link:hover {
  background: #fff;
  color: #000;
}
main .quiz .quiz-box {
  background-image: url(../images/png/quiz-bg.png);
  background-size: cover;
  color: #fff;
  border-radius: 15px;
  padding: 36px 44px 46px;
}
main .quiz .quiz-title {
  font-size: 31px;
  font-weight: 800;
}
main .quiz .quiz-progress {
  margin: 55px 0 27px;
}
main .quiz .quiz-progress .progress {
  width: 19.5%;
  height: 10px;
  border-radius: 5px;
  background: rgba(246, 224, 109, 0.3019607843);
}
main .quiz .quiz-progress .active {
  background: linear-gradient(to left bottom, #d6a827, #ddb536, #e5c244, #ecd053, #f3dd61, #f6e368, #f9ea6f, #fcf076, #fcf077, #fdf178, #fdf179, #fdf17a);
}
main .quiz .step {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 27px;
}
main .quiz .quiz-next__btn {
  width: 191px;
  height: 54px;
  margin-top: 36px;
  font-size: 24px;
  pointer-events: none;
}
main .quiz .activeBtn {
  cursor: pointer;
}
main .quiz .label-radio {
  display: block;
  margin: 0 12px 12px 0;
  cursor: pointer;
}
main .quiz .label-radio input {
  display: none;
}
main .quiz .label-radio span {
  display: block;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
main .quiz .label-radio input:checked ~ span {
  background: #000;
  color: #fff;
  border-color: #000;
}
main .quiz .sale {
  margin: 37px 0 0;
}
main .quiz .label-sale {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 9px;
}
main .quiz .label-sale input {
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 9px;
}
main .quiz .label-sale input:checked {
  background: #000;
  border-color: #000;
}
main .quiz .calc-range {
  width: 100%;
  margin: 50px 0 40px;
  /* General Rules For Range Slider */
}
main .quiz .calc-range .rangeslider {
  position: relative;
  margin-top: 50px;
  padding: 0 45px 0 35px;
}
main .quiz .calc-range .rangeslider .custom-rangeslider {
  position: relative;
}
main .quiz .calc-range .rangeslider .custom-rangeslider__text {
  position: absolute;
  bottom: -20px;
  left: 35px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
main .quiz .calc-range .rangeslider .custom-rangeslider__label-min, main .quiz .calc-range .rangeslider .custom-rangeslider__label-max {
  position: absolute;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  border: 1px solid #fff;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
main .quiz .calc-range .rangeslider .custom-rangeslider__label-min {
  left: 0;
}
main .quiz .calc-range .rangeslider .custom-rangeslider__label-max {
  width: 35px;
  right: 0;
}
main .quiz .calc-range .custom-rangeInput {
  width: 100%;
  background: transparent;
  appearance: none;
  box-sizing: border-box;
  cursor: pointer;
  outline: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  height: 20px;
}
main .quiz .calc-range .custom-rangeInput::-webkit-slider-thumb {
  appearance: none;
  box-sizing: border-box;
  background-color: #D6A827;
  width: 29px;
  height: 29px;
  border: none;
  border-radius: 50%;
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
main .quiz .calc-range .custom-rangeInput::-webkit-slider-thumb:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
main .quiz .calc-range .custom-rangeInput::-webkit-slider-thumb {
  margin-top: -13px;
}
main .quiz .calc-range .custom-rangeInput::-moz-range-thumb {
  appearance: none;
  box-sizing: border-box;
  background-color: #D6A827;
  width: 29px;
  height: 29px;
  border: none;
  border-radius: 50%;
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
main .quiz .calc-range .custom-rangeInput::-moz-range-thumb:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
main .quiz .calc-range .custom-rangeInput::-ms-thumb {
  appearance: none;
  box-sizing: border-box;
  background-color: #D6A827;
  width: 29px;
  height: 29px;
  border: none;
  border-radius: 50%;
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
main .quiz .calc-range .custom-rangeInput::-ms-thumb:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
main .quiz .calc-range .custom-rangeInput::-ms-thumb {
  margin: auto;
}
main .quiz .calc-range .custom-rangeInput::-webkit-slider-runnable-track {
  appearance: none;
  box-sizing: border-box;
  height: 5px;
  width: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  background: grey;
}
main .quiz .calc-range .custom-rangeInput::-moz-range-track {
  appearance: none;
  box-sizing: border-box;
  height: 5px;
  width: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  background: grey;
}
main .quiz .calc-range .custom-rangeInput::-ms-track {
  appearance: none;
  box-sizing: border-box;
  height: 5px;
  width: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  background: grey;
  color: transparent;
  border: none;
  outline: none;
}
main .quiz .calc-range .custom-rangeInput:focus, main .quiz .calc-range .custom-rangeInput:active {
  outline: none;
}
main .quiz .calc-range .custom-rangeInput::-ms-tooltip {
  display: none;
}
main .quiz .calc-range .custom-rangeslider__tooltip {
  line-height: 20px;
  position: absolute;
  height: 20px;
  width: 40px;
  padding: 3px 3px;
  padding-right: 25px;
  top: -35px;
  left: 0;
  text-align: center;
  transform: translate(-26%, 0);
  font-size: 16px;
  font-weight: 500;
}
main .quiz .calc-range .custom-rangeslider__label {
  width: 100%;
  display: block;
}
main .quiz .calc-range .custom-rangeslider__label span {
  display: block;
}
main .quiz .calc-range .custom-rangeslider__label-min {
  float: left;
}
main .quiz .calc-range .custom-rangeslider__label-max {
  float: right;
}
main .quiz .calc-range .custom-rangeslider__label:after {
  content: "";
  display: table;
  clear: both;
}
main .quiz .calculation-title {
  font-size: 31px;
  line-height: 120%;
  font-weight: 800;
  color: #fff;
}
main .quiz .calculation .method-call {
  margin: 15px 0 42px;
}
main .quiz .calculation .input-item .input-box {
  width: 363px;
}
main .quiz .calculation .input-item .input-box:first-child {
  margin-right: 22px;
}
main .quiz .calculation .input-check {
  margin: 27px 0 31px;
}
main .quiz .calculation .submit__btn {
  width: 316px;
  height: 54px;
  font-size: 24px;
}
main .factures {
  margin: 92px 0;
}
main .factures-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 43px;
  margin-top: 49px;
}
main .factures .facture {
  border-radius: 10px;
  border: 1px solid #D6A827;
  overflow: hidden;
  text-align: center;
}
main .factures .facture-img {
  width: 100%;
  border-radius: 10px;
  height: 261px;
  object-fit: cover;
}
img {
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-user-drag: none; /* запрещает перетаскивание */
  pointer-events: auto;
}
main .factures .facture-title {
  font-size: 22px;
  line-height: 120%;
  font-weight: 800;
  color: #000;
  margin: 16px 0 19px;
}
main .factures .facture-text, main .factures .facture-price {
  font-size: 17px;
  line-height: 120%;
  font-weight: 600;
  color: #808080;
}
main .factures .facture-calc__btn {
  width: 222px;
  height: 41px;
  font-size: 18px;
  margin: 26px 0 24px;
}
main .types-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 33px;
  margin-top: 49px;
}
main .types .type {
  border-radius: 15px;
  border: 1px solid #D6A827;
  overflow: hidden;
  text-align: center;
  padding-bottom: 27px;
}
main .types .type-img {
  width: 100%;
  height: 213px;
  border-radius: 14px;
}
main .types .type-title {
  font-size: 18px;
  line-height: 120%;
  font-weight: 800;
  color: #000;
  margin: 26px 0 10px;
}
main .types .type-info {
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #808080;
}
main .banner {
  margin: 92px 0;
}
main .banner-box {
  background-image: url(../images/png/banner.png);
  background-size: cover;
  padding: 58px 20px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
}
main .banner-box .banner-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 120%;
  color: #fff;
}
main .banner-box .banner-title::before {
  display: none;
}
main .banner-box .title-subtext {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
  margin: 20px 0 38px;
}
main .banner-box .request_btn {
  width: 322px;
  height: 49px;
  font-size: 20px;
  font-weight: 500;
}
main .manufacturers-box {
  margin-top: 49px;
}
main .manufacturers .manufacturer {
  border: 1px solid #D6A827;
  border-radius: 15px;
  padding: 35px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
main .manufacturers .manufacturer-title {
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: end;
}
main .manufacturers .manufacturer-title span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-left: 14px;
}
main .manufacturers .manufacturer-img {
  max-width: 100%;
  margin: 8px 0 13px;
}
main .manufacturers .manufacturer .status {
  padding: 2px 12px;
  border-radius: 50px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}
main .manufacturers .manufacturer-list {
  margin: 47px 0 29px;
  width: 100%;
}
main .manufacturers .manufacturer-list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 9px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  border-bottom: 1px dashed #808080;
}
main .manufacturers .manufacturer-calc__btn {
  height: 47px;
  font-size: 18px;
  font-weight: 500;
}
main .cost-factors {
  margin: 92px 0;
}
main .cost-factors-box {
  margin-top: 44px;
}
main .cost-factors-item {
  width: 49%;
  height: 483px;
  border-radius: 15px;
  overflow: hidden;
  padding: 60px 30px;
  position: relative;
}
main .cost-factors-item .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .cost-factors-item .item-list {
  font-size: 22px;
  line-height: 142%;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 2;
}
main .whyUs-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 34px;
  margin-top: 50px;
}
main .whyUs .whyUs-item {
  border-radius: 15px;
  border: 1px solid #D6A827;
  overflow: hidden;
  text-align: center;
  padding-bottom: 38px;
}
main .whyUs .whyUs-item .item-img {
  width: 100%;
  height: 366px;
  border-radius: 0 0 15px 15px;
  object-fit: cover;
}
main .whyUs .whyUs-item .item-title {
  font-size: 28px;
  font-weight: 800;
  margin: 48px 0 10px;
}
main .whyUs .whyUs-item .item-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #808080;
}
main .customer {
  margin: 92px 0;
}
main .customer-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 32px;
  margin-top: 50px;
}
main .customer-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #D6A827;
  display: flex;
  align-items: center;
  padding-left: 66px;
  height: 250px;
}
main .customer-item .item-img {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  object-fit: cover;
  object-position: right;
}
main .customer-item .item-info {
  position: relative;
  z-index: 2;
}
main .customer-item .item-title {
  font-size: 28px;
  font-weight: 800;
}
main .customer-item .item-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #808080;
  margin-top: 10px;
}
main .supervisor-box {
  width: 100%;
  background-image: url(../images/png/supervisor-bg.png);
  background-size: cover;
  border-radius: 15px;
  overflow: hidden;
  padding: 77px 85px 67px;
}
main .supervisor-box .supervisor-photo {
  width: 296px;
  height: 296px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-right: 90px;
}
main .supervisor-box .supervisor-info {
  color: #fff;
}
main .supervisor-box .supervisor-info .info-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
}
main .supervisor-box .supervisor-info .info-subtext {
  font-size: 20px;
  font-weight: 800;
  line-height: 120%;
  margin: 33px 0 10px;
}
main .supervisor-box .supervisor-info .info-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}
main .supervisor-box .supervisor-info .tg-link {
  width: 321px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 17px;
}
main .supervisor-box .supervisor-info .socials .social {
  display: block;
  margin-right: 14px;
}
main .supervisor-box .supervisor-info .socials .social:last-child {
  margin-right: 24px;
}
main .supervisor-box .supervisor-info .phone a {
  display: block;
  margin-right: 14px;
  font-size: 21px;
  font-weight: 700;
}
main .supervisor-box .supervisor-info .phone a:last-child {
  margin: 0;
}
main .gallery {
  margin: 92px 0;
}
main .gallery-box {
  margin-top: 49px;
}
main .gallery .gallery-item .item-img {
  width: 100%;
  height: 216px;
  border-radius: 12px;
  object-fit: cover;
}
main .gallery .gallery-view__all {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  width: 330px;
  height: 65px;
  font-size: 24px;
  background: transparent;
  color: #101010;
}
main .gallery .gallery-view__all:hover {
  background: #101010;
  color: #fff;
}
main .gallery_page .gallery-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}
main .gallery_page .gallery-item .item-img {
  height: 300px;
}
main .banner2 .banner-box {
  background-image: url(../images/png/banner2-bg.png);
  padding: 56px 0 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .banner2 .banner-box .title-subtext {
  max-width: 600px;
  margin: 22px 0 46px;
}
main .videos-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 32px;
  margin-top: 49px;
}
main .videos .video {
  position: relative;
  width: 100%;
  height: 552px;
  border-radius: 12px;
  overflow: hidden;
}
main .videos .video .video-poster {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  object-fit: cover;
}
main .videos .video video {
  width: 100%;
  height: 100%;
}
main .videos .video .play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #D6A827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
main .working {
  margin: 92px 0;
}
main .working-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 32px;
  margin-top: 50px;
}
main .working-item {
  width: 100%;
  min-height: 490px;
  border-radius: 15px;
  border: 1px solid #D6A827;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main .working-item .item-num {
  background: linear-gradient(to left bottom, #d6a827, #ddb536, #e5c244, #ecd053, #f3dd61, #f6e368, #f9ea6f, #fcf076, #fcf077, #fdf178, #fdf179, #fdf17a);
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 17px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
main .working-item .item-img {
  width: 100%;
  height: 252px;
  border-radius: 10px;
  margin: 19px 0;
  object-fit: cover;
}
main .working-item .item-title {
  font-size: 26px;
  font-weight: 800;
  color: #d6a827;
}
main .working-item .item-subtitle {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-top: 18px;
}
main .reviews-box {
  margin-top: 49px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 26px;
}
main .reviews .review img {
  width: 100%;
  object-fit: contain;
}
main .reviews .reviews-all__link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  width: 432px;
  height: 65px;
  font-size: 24px;
  background: transparent;
  color: #101010;
}
main .reviews .reviews-all__link:hover {
  background: #101010;
  color: #fff;
}
main .faqs {
  margin: 92px 0;
}
main .faqs .faqs-box {
  margin-top: 50px;
}
main .faqs .faq-head {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-top: 2px solid #D6A827;
}
main .faqs .faq-head .faq-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  color: #000;
  width: 90%;
}
main .faqs .faq-head .faq-btn {
  width: 32x;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
  cursor: pointer;
}
main .faqs .faq-head .faq-btn svg {
  transition: 0.3s all;
}
main .faqs .faq-body {
  transition: 0.5s all;
  max-height: 0;
  overflow: hidden;
}
main .faqs .faq-body .faq-text {
  font-size: 20px;
  line-height: 130%;
  color: #000;
  padding: 0 12px 20px;
}
main .faqs .faq:first-child .faq-head {
  border: none;
}
main .faqs .showFaq .faq-head .faq-btn {
  background: transparent;
}
main .faqs .showFaq .faq-head .faq-btn svg {
  transition: 0.3s all;
  transform: rotate(45deg);
}
main .faqs .showFaq .faq-body {
  transition: 2s all;
  max-height: 1000px;
}
main .banner_form .banner-box {
  background-image: url(../images/png/banner-form.png);
}
main .banner_form .banner-title {
  text-align: center;
}
main .banner_form .form {
  width: 977px;
  margin: 40px auto 0;
}
main .banner_form .form-item {
  width: 49%;
}
main .banner_form .form .submit_btn {
  width: 478px;
  height: 56px;
  margin-top: 28px;
  font-size: 20px;
}
main .contacts-box {
  margin-top: 49px;
}
main .contacts-info {
  width: 49%;
  height: 370px;
  border-radius: 12px;
  border: 2px solid #D6A827;
}
main .contacts-info .info {
  margin-left: 10%;
}
main .contacts-info .info-item {
  font-size: 18px;
  line-height: 130%;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
main .contacts-info .info-item img {
  margin-right: 15px;
}
main .contacts-info .info-item .info-title {
  font-weight: 800;
  margin-right: 5px;
}
main .contacts-info .info-item a, main .contacts-info .info-item p {
  display: block;
  margin-top: 5px;
}
main .contacts-map {
  width: 49%;
}
main .contacts-map .map {
  width: 100%;
  height: 370px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.footer {
  margin-top: 76px;
  padding-bottom: 23px;
}
.footer a:hover {
  color: #d6a827;
}
.footer-nav {
  padding-top: 34px;
  border-top: 2px solid #D6A827;
}
.footer .footer-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 182%;
}
.footer .footer-item .copyright {
  margin-top: 15px;
}
.footer .footer-item .item-link a:nth-child(3) {
  display: none;
}
.footer .footer-item .nav-title {
  background: linear-gradient(to left bottom, #d6a827, #ddb536, #e5c244, #ecd053, #f3dd61, #f6e368, #f9ea6f, #fcf076, #fcf077, #fdf178, #fdf179, #fdf17a);
  padding: 2px 16px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: capitalize;
}
.footer .footer-item .sale-list li {
  background: #000;
  color: #fff;
  padding: 3px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.footer .footer-item .socials {
  margin-top: 8px;
}
.footer .footer-item .socials .social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
}
.footer .footer-item .socials .social:last-child {
  margin-right: 0;
}
.footer .policy-link {
  font-size: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: -100px; /* Изначально спрятана ниже экрана */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background: #222;
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transition: bottom 0.5s ease; /* Анимация выплывания */
  font-family: sans-serif;
}

/* Класс для показа плашки */
.cookie-banner.show {
  bottom: 20px;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-accept {
  background: #d6a827;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: bold;
}

.btn-close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 0 5px;
}

.btn-close:hover {
  color: #fff;
}

.popUp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  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: 386px;
  background: #fff;
  position: relative;
  animation: popUp-anim 0.3s linear;
  padding: 24px;
  border-radius: 12px;
  margin: 50px auto;
}
.popUp .popUp-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 115%;
  color: #2b2a29;
}
.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;
  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 .input-check {
  margin: 16px 0 28px;
}
.popUp .popUp-form .input-check .form_check {
  width: 14px;
  height: 14px;
  background: #808080;
  border-radius: 2px;
}
.popUp .popUp-form .input-check .form_check::after {
  content: url(../images/svg/checked.svg);
  top: 65%;
  display: none;
}
.popUp .popUp-form .input-check .form_check:checked {
  background: transparent;
}
.popUp .popUp-form .input-check .form_check:checked::after {
  display: block;
}
.popUp .popUp-form .input-check label {
  color: #2b2a29;
  font-size: 14px;
}
.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-request .popUp-content {
  width: 514px;
}
.popUp-request .popUp-form .input-check {
  margin-bottom: 16px;
}
.popUp-request .popUp-form .form-links-title {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

.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;
}
.popUp-thanks .popUp-subtitle {
  font-size: 12px;
  margin: 9px 0 23px;
}
.popUp-thanks .backTo-link {
  width: 332px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #101010;
}

@media (max-width: 1400px) {
  .popUp-calc {
    display: block;
  }
}
.page-title {
  font-size: 50px;
}

.page-subtitle {
  font-size: 20px;
}

.title-text {
  font-size: 36px;
}
.title-text::before {
  width: 260px;
  height: 3px;
}

.header {
  padding-top: 15px;
}
.header .logo img {
  width: 120px;
}
.header-top .address {
  font-size: 14px;
}
.header-top .address img {
  width: 25px;
}
.header-top .socials .social {
  margin-right: 8px;
}
.header-top .socials .social img {
  width: 30px;
}
.header-top .phone-nums a {
  font-size: 18px;
}
.header-top .header-btns {
  width: auto;
}
.header-top .header-btns button {
  width: auto;
  font-size: 16px;
  height: 40px;
  padding: 0 10px;
  text-wrap: nowrap;
}
.header-top .header-btns button:first-child {
  margin-right: 10px;
}
.header nav .nav-list li {
  font-size: 16px;
}

main .sale .sale-box {
  grid-template-columns: repeat(4, 1fr);
}
main .factures-box {
  grid-gap: 14px;
}
main .types-box {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
}

.type-img {
    width: 100%;
    flex-shrink: 0;
    display: block;
}
main .cost-factors-item {
  height: auto;
}
main .whyUs-box {
  grid-gap: 15px;
}
main .customer-box {
  grid-gap: 12px;
}
main .customer-item {
  padding-left: 20px;
  height: auto;
  min-height: 164px;
}
main .customer-item .item-info {
  width: 60%;
}
main .customer-item .item-title {
  font-size: 18px;
}
main .customer-item .item-title br {
  display: none;
}
main .customer-item .item-subtitle {
  font-size: 14px;
  margin-top: 5px;
}
main .customer-item .item-subtitle br {
  display: none;
}
main .supervisor-box {
  padding: 37px 22px 27px;
}
main .supervisor .supervisor-photo {
  width: 200px;
  height: 200px;
  margin-right: 40px;
}
main .working-box {
  grid-gap: 14px;
}
main .working-item {
  min-height: 305px;
  padding: 20px 17px;
}
main .working-item .item-num {
  height: 20px;
  padding: 0 10px;
}
main .working-item .item-img {
  height: 156px;
  margin: 12px 0 6px;
}
main .working-item .item-title {
  font-size: 16px;
}
main .working-item .item-title br {
  display: none;
}
main .working-item .item-subtitle {
  font-size: 12px;
  margin-top: 6px;
  line-height: 100%;
}
main .working-item .item-subtitle br {
  display: none;
}
main .banner_form .form {
  width: 850px;
}

@media (max-width: 992px) {
  .page-title {
    font-size: 32px;
  }
  .page-subtitle {
    font-size: 16px;
  }
  .title-text {
    font-size: 30px;
  }
  .title-text::before {
    width: 100%;
    height: 5px;
  }
  .input-box .form_inp {
    height: 41px;
    padding: 0 20px;
    font-size: 14px;
  }
  .text-box textarea {
    width: 100%;
    height: 72px;
    padding: 10px 23px;
    font-size: 14px;
  }
  .header {
    padding-top: 15px;
  }
  .header .logo {
    display: block;
    margin-top: 25px;
  }
  .header .logo img {
    width: 112px;
  }
  .header-top {
    position: relative;
  }
  .header-top .address {
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header-top .address span {
    display: none;
  }
  .header-top .address img {
    width: 11px;
  }
  .header-top .socials {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  .header-top .phone-nums {
    margin-top: 30px;
  }
  .header-top .phone-nums a {
    font-size: 14px;
  }
  .header-top .header-btns {
    flex-direction: column;
  }
  .header-top .header-btns button {
    width: 150px;
    font-size: 14px;
    height: 30px;
    padding: 0 10px;
    text-wrap: nowrap;
  }
  .header-top .header-btns button:first-child {
    margin: 0 0 5px 0;
  }
  .header nav .nav-list li {
    font-size: 16px;
  }
  main .wrapper .wrapper-info {
    width: 100%;
    margin-top: 18px;
  }
  main .wrapper .wrapper-info .info-box {
    background-image: url(../images/png/wrapper-mob.png);
    background-position: center;
    background-size: cover;
    padding: 31px 11px 11px;
    border-radius: 8px;
  }
  main .wrapper .wrapper-info .page-subtitle {
    margin: 20px 0 30px;
  }
  main .wrapper .wrapper-info .info-list li {
    padding: 6px 10px;
    font-size: 12px;
    margin: 0 5px 10px 0;
  }
  main .wrapper .wrapper-info .info-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 130%;
    color: #000;
    margin: 25px 0 0;
  }
  main .wrapper .wrapper-info .info-btns {
    justify-content: space-between;
    margin-top: 13px;
  }
  main .wrapper .wrapper-info .info-btns .btn2 {
    width: 49%;
    height: 46px;
    font-size: 18px;
    margin-right: 0;
  }
  main .wrapper .wrapper-info .info-btns .btn1 {
    width: 49%;
    height: 46px;
    font-size: 18px;
  }
  main .wrapper .wrapper-slide {
    display: none;
  }
  main .quiz .quiz-box {
    padding: 30px 12px 46px;
  }
  main .quiz .quiz-title {
    font-size: 24px;
  }
  main .quiz .quiz-progress {
    margin: 20px 0;
  }
  main .quiz .quiz-progress .progress {
    height: 10px;
  }
  main .quiz .step {
    font-size: 14px;
    margin-bottom: 13px;
  }
  main .quiz .quiz-next__btn {
    width: 223px;
    height: 40px;
    margin: 20px auto 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main .quiz .label-radio {
    margin: 0 8px 7px 0;
  }
  main .quiz .label-radio span {
    display: block;
    padding: 8.5px 11.5px;
    font-size: 16px;
  }
  main .quiz .sale {
    margin: 37px 0 0;
  }
  main .quiz .label-sale {
    font-size: 16px;
    margin-bottom: 14px;
  }
  main .quiz .label-sale input {
    width: 25px;
    height: 25px;
    margin-right: 14px;
  }
  main .quiz .calc-range {
    margin: 50px 0 60px;
    /* General Rules For Range Slider */
  }
  main .quiz .calc-range .rangeslider {
    padding: 0;
  }
  main .quiz .calc-range .rangeslider .custom-rangeslider__text {
    bottom: -20px;
    left: 0px;
    font-size: 14px;
  }
  main .quiz .calc-range .rangeslider .custom-rangeslider__label-min, main .quiz .calc-range .rangeslider .custom-rangeslider__label-max {
    display: none;
  }
  main .quiz .calculation-title {
    font-size: 20px;
  }
  main .quiz .calculation .method-call {
    margin: 15px 0 42px;
  }
  main .quiz .calculation .method-call .label-radio:nth-child(2), main .quiz .calculation .method-call .label-radio:nth-child(3) {
    display: none;
  }
  main .quiz .calculation .method-call .socials {
    display: flex !important;
  }
  main .quiz .calculation .method-call .socials .social {
    display: block;
    margin-right: 10px;
  }
  main .quiz .calculation .method-call .socials .social img {
    width: 25px;
  }
  main .quiz .calculation .input-item {
    flex-direction: column;
  }
  main .quiz .calculation .input-item .input-box {
    width: 100%;
  }
  main .quiz .calculation .input-item .input-box:first-child {
    display: none;
  }
  main .quiz .calculation .input-item .input-box:first-child {
    margin: 0;
  }
  main .quiz .calculation .input-check {
    display: none;
  }
  main .quiz .calculation .submit__btn {
    width: 100%;
    height: 41px;
    font-size: 18px;
  }
  main .factures {
    margin: 46px 0;
  }
  main .factures-box {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
  }
  main .factures .facture {
    border-radius: 10px;
  }
  main .factures .facture-img {
    height: 178px;
  }
  main .factures .facture-title {
    font-size: 20px;
    margin: 18px 0 5px;
  }
  main .factures .facture-text, main .factures .facture-price {
    font-size: 16px;
  }
  main .factures .facture-calc__btn {
    margin: 18px 0 21px;
  }
  main .types-box {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
  }
  main .types .type {
    padding-bottom: 16px;
  }
  main .types .type-img {
    height: 133px;
  }
  main .types .type-title {
    font-size: 16px;
    margin: 5px 0 0;
  }
  main .types .type-info {
    font-size: 14px;
  }
  main .banner {
    margin: 47px 0;
  }
  main .manufacturers .title-text {
    margin-right: 20px;
  }
  main .manufacturers .container {
    padding-right: 0;
  }
  main .manufacturers-box {
    margin-top: 24px;
  }
  main .manufacturers .swiper-slide {
    width: auto;
  }
  main .manufacturers .swiper-btns {
    display: flex !important;
    margin-top: 32px;
  }
  main .manufacturers .swiper-btns .prev {
    margin-right: 66px;
  }
  main .manufacturers .manufacturer {
    width: 267px;
    padding: 28px 6px;
  }
  main .manufacturers .manufacturer-title {
    font-size: 20px;
  }
  main .manufacturers .manufacturer-img {
    margin: 5px 0 8px;
    height: 43px;
  }
  main .manufacturers .manufacturer .status {
    padding: 2px 12px;
    font-size: 14px;
  }
  main .manufacturers .manufacturer-list {
    margin: 43px 0 23px;
  }
  main .manufacturers .manufacturer-list li {
    padding-bottom: 8px;
    margin-bottom: 7px;
  }
  main .manufacturers .manufacturer-calc__btn {
    height: 38px;
  }
  main .cost-factors {
    margin: 49px 0;
  }
  main .cost-factors-box {
    margin-top: 30px;
    flex-direction: column;
  }
  main .cost-factors-item {
    width: 100%;
    padding: 70px 20px 50px;
  }
  main .cost-factors-item .item-list {
    font-size: 14px;
  }
  main .cost-factors-item:last-child {
    height: 257px;
    margin-top: 16px;
  }
  main .whyUs-box {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
  }
  main .whyUs .whyUs-item {
    padding-bottom: 16px;
  }
  main .whyUs .whyUs-item .item-img {
    height: 141px;
  }
  main .whyUs .whyUs-item .item-title {
    font-size: 16px;
    margin: 8px 0 2px;
  }
  main .whyUs .whyUs-item .item-subtitle {
    font-size: 16px;
  }
  main .customer-box {
    grid-template-columns: repeat(1, 1fr);
  }
  main .customer-item .item-img {
    width: 100%;
    object-fit: contain;
  }
  main .supervisor-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  main .supervisor-box .supervisor-photo {
    width: 100px;
    height: 100px;
    margin: 0 0 18px 0;
  }
  main .supervisor-box .supervisor-info .info-title {
    font-size: 18px;
  }
  main .supervisor-box .supervisor-info .info-subtext {
    font-size: 14px;
    margin: 20px 0 10px;
  }
  main .supervisor-box .supervisor-info .info-text {
    font-size: 14px;
  }
  main .supervisor-box .supervisor-info .tg-link {
    width: 100%;
    height: 41px;
    margin: 25px 0 17px;
  }
  main .supervisor-box .supervisor-info .info-links {
    justify-content: center;
  }
  main .supervisor-box .supervisor-info .socials .social {
    display: block;
    margin-right: 8px;
  }
  main .supervisor-box .supervisor-info .socials .social img {
    width: 32px;
  }
  main .supervisor-box .supervisor-info .socials .social:last-child {
    margin-right: 14px;
  }
  main .supervisor-box .supervisor-info .phone a {
    margin-right: 0;
    font-size: 16px;
  }
  main .supervisor-box .supervisor-info .phone a:last-child {
    display: none;
  }
  main .gallery {
    margin: 49px 0;
  }
  main .gallery-box {
    margin-top: 24px;
  }
  main .gallery .gallery-item .item-img {
    height: 190px;
  }
  main .gallery-btns {
    justify-content: space-between;
    margin-top: 14px;
  }
  main .gallery .swiper-btns {
    display: flex !important;
  }
  main .gallery .swiper-btns .prev {
    margin-right: 14px;
  }
  main .gallery .gallery-view__all {
    margin: 0;
    width: 226px;
    height: 35px;
    font-size: 18px;
    text-align: center;
  }
  main .banner2 .banner-box {
    padding: 65px 17px 38px;
    text-align: center;
  }
  main .banner2 .banner-box .title-subtext {
    margin: 16px 0 43px;
    text-align: center;
  }
  main .banner2 .banner-box .request_btn {
    width: 252px;
    height: 42px;
    font-size: 18px;
  }
  main .videos-box {
    grid-gap: 12px;
    margin-top: 24px;
  }
  main .videos .video {
    height: 595px;
  }
  main .working {
    margin: 49px 0;
  }
  main .working-box {
    margin-top: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
  main .reviews-box {
    margin-top: 24px;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }
  main .faqs {
    margin: 49px 0;
  }
  main .faqs .faqs-box {
    margin-top: 24px;
  }
  main .faqs .faq-head {
    height: 50px;
    padding: 8px 12px;
  }
  main .faqs .faq-head .faq-title {
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
  }
  main .faqs .faq-head .faq-btn {
    width: 30x;
    height: 30px;
  }
  main .faqs .faq-head .faq-btn svg {
    width: 17.5px;
  }
  main .faqs .faq-body .faq-text {
    font-size: 14px;
    padding-bottom: 10px;
  }
  main .faqs .showFaq .faq-head .faq-btn {
    background: transparent;
  }
  main .faqs .showFaq .faq-head .faq-btn svg {
    transition: 0.3s all;
    transform: rotate(45deg);
  }
  main .faqs .showFaq .faq-body {
    transition: 2s all;
    max-height: 1000px;
  }
  main .banner_form .form {
    width: 100%;
    margin: 40px auto 0;
    flex-direction: column;
  }
  main .banner_form .form-item {
    width: 100%;
  }
  main .banner_form .form .submit_btn {
    width: 100%;
    height: 41px;
    margin-top: 12px;
    font-size: 18px;
  }
  main .contacts-box {
    margin-top: 24px;
    flex-direction: column;
  }
  main .contacts-info {
    width: 100%;
    height: 241px;
    padding-left: 30px;
  }
  main .contacts-info .info {
    margin-left: 0;
  }
  main .contacts-info .info-item {
    font-size: 16px;
    margin-bottom: 7px;
  }
  main .contacts-info .info-item img {
    width: 18px;
    margin-right: 5px;
    margin-top: 5px;
  }
  main .contacts-map {
    width: 100%;
    margin-top: 12px;
  }
  main .contacts-map .map {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .footer {
    margin-top: 48px;
    padding-bottom: 15px;
  }
  .footer a:hover {
    color: #d6a827;
  }
  .footer-nav {
    padding-top: 24px;
    border-top: 2px solid #000;
    flex-wrap: wrap;
    position: relative;
  }
  .footer .footer-item {
    width: 24%;
    margin-bottom: 20px;
    font-size: 12px;
  }
  .footer .footer-item:first-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer .footer-item .logo img {
    width: 132px;
  }
  .footer .footer-item .item-link {
    flex-direction: row;
  }
  .footer .footer-item .item-link a:nth-child(1), .footer .footer-item .item-link a:nth-child(2) {
    display: none;
  }
  .footer .footer-item .item-link a:nth-child(3) {
    display: block;
    margin-right: 5px;
  }
  .footer .footer-item .item-link a:nth-child(3)::after {
    content: ",";
  }
  .footer .footer-item .copyright {
    margin: 5px 0 35px;
    text-align: center;
    line-height: 120%;
    display: flex;
    flex-direction: column;
  }
  .footer .footer-item .copyright span {
    display: block !important;
  }
  .footer .footer-item .nav-title {
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 12px;
    margin-bottom: 8px;
  }
  .footer .footer-item .sale-list {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .footer .footer-item .sale-list li {
    padding: 0px 6px;
    border-radius: 8px;
    margin-bottom: 5px;
    font-size: 12px;
    border-radius: 30px;
  }
  .footer .footer-item .socials {
    margin-top: 8px;
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer .footer-item .socials .social {
    margin-right: 10px;
  }
  .footer .footer-item .socials .social:last-child {
    margin-right: 0;
  }
  .footer .footer-item .socials .social img {
    width: 25px;
  }
  .footer .footer-item:last-child .nav-title {
    background: none;
    padding: 0;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .footer .policy-link {
    display: none;
  }
}
@media (max-width: 767px) {
  main .sale {
    margin: 46px 0;
  }
  main .sale .sale-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 12px;
    margin-top: 24px;
  }
  main .sale .sale-card {
    height: auto;
    padding: 17px 22px;
  }
  main .sale .sale-card .card-title {
    font-size: 22px;
  }
  main .sale .sale-card .card-title br {
    display: none;
  }
  main .sale .sale-card .card-text {
    font-size: 14px;
    margin: 6px 0 12px;
  }
  main .sale .sale-card .card-text br {
    display: none;
  }
  main .sale .sale-card .card-link {
        width: 192px;
        height: 36px;
        font-size: 16px;
        margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .header {
    padding: 11px 0 0;
  }
  .header-top {
    padding-right: 57px;
    border-bottom: 2px solid #000;
  }
  .header-top .socials {
    display: none;
  }
  .header-top .phone-nums {
    margin-top: 35px;
    flex-direction: column-reverse;
  }
  .header-top .phone-nums a {
    font-size: 14px;
  }
  .header-top .header-btns {
    position: absolute;
    top: 10px;
    right: 57px;
  }
  .header-top .header-btns button {
    width: 148px;
    height: 27px;
    font-size: 16px;
    margin: 0;
  }
  .header-top .header-btns button:last-child {
    display: none;
  }
  .header nav {
    display: none;
  }
  .header .menu-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 43px;
    height: 43px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .header .menu-btn img:last-child {
    display: none;
  }
  .header .clickedMenu img:first-child {
    display: none;
  }
  .header .clickedMenu img:last-child {
    display: block;
  }
  main .wrapper .wrapper-info .info-btns {
    flex-direction: column;
  }
  main .wrapper .wrapper-info .info-btns .btn1, main .wrapper .wrapper-info .info-btns .btn2 {
    width: 100%;
  }
  main .wrapper .wrapper-info .info-btns .btn1 {
    margin-top: 8px;
  }
  main .factures-box {
    grid-template-columns: repeat(1, 1fr);
  }
  main .types-box {
    grid-template-columns: repeat(2, 1fr);
  }
  main .banner-box {
    padding: 37px 15px 50px;
    text-align: left;
  }
  main .banner-box .banner-title {
    font-size: 24px;
  }
  main .banner-box .title-subtext {
    font-size: 16px;
    margin: 17px 0;
    text-align-last: left;
  }
  main .banner-box .request_btn {
    width: 100%;
    height: 49px;
    font-size: 18px;
  }
  main .banner2 .banner-box .title-subtext {
    text-align: center;
  }
  main .videos-box {
    grid-template-columns: repeat(1, 1fr);
  }
  main .videos .video {
    height: 595px;
  }
  main .reviews-box {
    grid-template-columns: repeat(1, 1fr);
  }
  main .reviews .review:nth-child(6), main .reviews .review:nth-child(5), main .reviews .review:nth-child(4) {
    display: none;
  }
  main .reviews .reviews-all__link {
    margin-top: 11px;
    width: 100%;
    height: 41px;
    font-size: 18px;
  }
  main .banner_form .banner-box {
    padding: 57px 17px;
  }
.input-check label{
    font-size: 12px;
}
  main .gallery_page .gallery-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
  main .gallery_page .gallery-item .item-img {
    height: 200px;
  }
  .footer .footer-item {
    width: 49%;
  }
  .footer .footer-item .nav-title {
    margin: 0 auto 8px;
  }
  .footer .footer-item .nav-list, .footer .footer-item .sale-list {
    margin: 0 auto;
  }
  .popUp .popUp-content {
    width: 96% !important;
    padding: 24px 16px;
  }
  .popUp .popUp-form .input-check label {
    font-size: 12px;
  }
  .popUp-thanks .popUp-content {
    padding: 53px 14px 43px;
  }
  .popUp-thanks .popUp-title {
    font-size: 24px;
  }
  .popUp-thanks .popUp-subtitle {
    margin: 8px 0 19px;
  }
  .cookie-banner.show {
    bottom: 10px;
  }
  .cookie-banner {
    padding: 10px;
    width: 98%;
  }
  .cookie-content {
    gap: 10px;
  }
  .cookie-content p {
    font-size: 12px;
  }
  .cookie-actions {
    gap: 5px;
  }
  .btn-accept {
    font-size: 12px;
    padding: 6px 8px;
  }
}/*# sourceMappingURL=main.css.map */