@font-face {
  font-family: "Cruinn";
  src:
    url("https://opt-tuning.ru/wp-content/themes/MGSTUNING/fonts/Cruinn/Cruinn-Medium.ttf")
      format("truetype"),
    url("https://opt-tuning.ru/wp-content/themes/MGSTUNING/fonts/Cruinn/Cruinn-Bold.ttf")
      format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tschichold";
  src: url("https://opt-tuning.ru/wp-content/themes/MGSTUNING/fonts/Tschichold/Tschichold-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

body {
  background-color: #151515;
  font-family: "Roboto", Arial, sans-serif;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: none;
  border: none;
  outline: none;
}

.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}

.mobile_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile_overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile_nav {
  position: absolute;
  display: none;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0px 20px;
  z-index: 9;
  top: 100px;
}

.mobile_nav ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.mobile_nav ul li {
  position: relative;
  list-style: none;
  text-align: center;
  width: 100%;
  height: 69px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}

.mobile_nav ul li a {
  font-size: 28px;
  color: #151515;
  text-decoration: none;
}

.mobile_block {
  width: 100%;
  display: none;
  justify-content: space-between;
  align-items: center;
}

.mobile_left ul {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
}

.mobile_left ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile_left ul li a {
  color: #151515;
  text-decoration: none;
}

.mobile_right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile_right a {
  color: #151515;
  text-decoration: none;
}

.mobile_nav.active {
  display: flex;
}

.burger span {
  transition: all 0.3s ease;
}

.burger.active {
  justify-content: center;
  position: relative;
}

.burger.active span {
  position: absolute;
  left: 10px;
  width: calc(100% - 20px);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #151515;
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.burger span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

.header {
  position: fixed;
  width: calc(100% - 60px);
  top: 10px;
  z-index: 9;
  margin: 0px 30px;
  height: 60px;
  overflow: hidden;
  background-size: cover;
  background-position: 50%;
  border-radius: 30px;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/navbg.png");
  background-size: cover;
  background-position: 50%;
  opacity: 0.9; /* регулируешь прозрачность */
  z-index: -1;
}

.header .header_row {
  display: flex;
  height: 60px;
  justify-content: space-between;
  align-items: center;
}

.header .header_left ul {
  display: flex;
  gap: 25px;
}

.header .header_left ul li {
  list-style: none;
}

.header .header_left ul li a {
  font-size: 16px;
  font-family: "Cruinn", Arial, sans-serif;
  color: #151515;
  text-decoration: none;
}

.header .header_left ul li a:hover {
  color: #e50a03;
}

.header .top_logo {
  position: absolute;
  width: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header .top_logo img {
  display: block;
  width: 100%;
}

.header .header_right ul {
  display: flex;
  gap: 25px;
}

.header .header_right ul li {
  list-style: none;
  display: flex;
  align-items: center;
}

.header .header_right ul li img {
  display: block;
  margin-right: 5px;
}

.header .header_right ul li a {
  font-size: 16px;
  font-family: "Cruinn", Arial, sans-serif;
  color: #151515;
  text-decoration: none;
}

.header .header_right ul li a:hover {
  color: #e50a03;
}

.top {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 950px;
  background-image: url("../images/mainbg.jpg");
  background-position: 50% 0%;
  background-size: cover;
  border-radius: 0 0 32px 32px;
  display: flex;
  align-items: flex-end;
}

.top_img {
  width: 100%;
}

.top_img img {
  display: block;
  width: 100%;
}

.top_content {
  width: 100%;
  padding: 0 30px 30px;
}

.top_content h1 {
  font-family: "Tschichold", Arial, sans-serif;
  font-size: clamp(40px, 9vw, 173px);
  text-transform: uppercase;
  font-weight: 400;
}

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

.top_title span:nth-child(1) {
  align-self: flex-start;
}

.top_title span:nth-child(2) {
  align-self: stretch;
  text-align: center;
}

.top_title span:nth-child(3) {
  align-self: flex-end;
}

.advantages_block {
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
  top: -150px;
}

.advantages_block span {
  position: relative;
  font-family: "Cruinn", Arial, sans-serif;
  color: #151515;
  font-size: 16px;
  line-height: 32px;
  height: 32px;
  padding-left: 40px;
}

.advantages_block span::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("../images/top/icon1.svg");
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top_button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fe0b03;
  color: #151515;
  height: 98px;
  width: 100%;
  border-radius: 50px;
  margin-top: -120px;
  cursor: pointer;
}

.top_button:hover {
  background-color: #e50a03;
}

.top_button:hover a {
  color: #ffffff;
}

.top_button a {
  font-family: "Cruinn", Arial, sans-serif;
  font-size: 32px;
  text-decoration: none;
  color: #151515;
}

.populary_product {
  position: relative;
  width: 100%;
  padding-top: 72px;
}

.populary_product h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 75px;
  color: #ffffff;
  margin-bottom: 44px;
}

.populary_row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.populary_item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.populary_icon {
  position: absolute;
  top: 39px;
  right: 32px;
}

.populary_icon img {
  display: block;
}

.product_img {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
  border-radius: 32px;
}

.product_img img {
  display: block;
  width: 100%;
}

.product_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}

.product_content h3 {
  font-family: "Cruinn";
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.product_content p {
  font-family: "Cruinn";
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
}

.product_content .product_price {
  font-family: "Cruinn";
  font-weight: 900;
  font-size: 32px;
  line-height: 100%;
  color: #ffffff;
}

.populary_item .icon_link {
  position: absolute;
  right: 32px;
  top: 39px;
}

.icon_link .icon-arrow {
  fill: #1e1e1e;
  transition: fill 0.2s ease;
}

.icon_link:hover .icon-arrow {
  fill: #ffffff;
}

.every_detail {
  position: relative;
  width: 100%;
  padding-top: 72px;
}

.every_detail_color {
  background-color: #ffffff;
  border-radius: 32px;
  padding: 72px 30px;
  background-image: url("../images/covernew.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 35%;
}

.every_detail_color h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 75px;
  color: #151515;
  margin-bottom: 44px;
  text-align: center;
}

.every_detail_mobile_img {
  display: none;
  width: 100%;
  margin: 0 auto;
}

.every_detail_mobile_img img {
  display: block;
  width: 100%;
}

.every_detail_row {
  display: flex;
  margin-bottom: 200px;
}

.every_detail_row:last-child {
  margin-bottom: 0;
}

.row_1 {
  justify-content: space-around;
}
.row_2 {
  justify-content: space-between;
}
.row_3 {
  justify-content: space-around;
}

.every_detail_item {
  width: 26%;
}

.every_detail_center img {
  width: 280px;
  height: auto;
}

.every_detail_row h4 {
  font-family: "Cruinn";
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #151515;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.every_detail_row p {
  font-family: "Cruinn";
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #151515;
}

.why_us {
  position: relative;
  width: 100%;
  padding-top: 72px;
}

.why_us h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 75px;
  color: #ffffff;
  margin-bottom: 44px;
}

.why_us_row {
  display: flex;
  gap: 12px;
}

.why_us_item {
  flex: 1;
  border: 2px dashed #313131;
  border-radius: 32px;
  padding: 32px;
}

.why_us_title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.why_us_title img {
  display: block;
  width: 52px;
}

.why_us_title h4 {
  font-family: "Cruinn";
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  text-transform: uppercase;
}

.why_us_item p {
  font-family: "Cruinn";
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #bebebe;
}

.portfolio {
  position: relative;
  width: 100%;
  padding-top: 72px;
}

.portfolio h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 75px;
  color: #ffffff;
  margin-bottom: 44px;
}

.portfolio_row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.portfolio_item {
  width: calc(25% - 9px);
}

.portfolio_item img {
  display: block;
  width: 100%;
}

.tehnology {
  position: relative;
  width: 100%;
  padding-top: 72px;
}

.tehnology h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 75px;
  color: #151515;
  margin-bottom: 44px;
  margin-top: 72px;
}

.tehnology_color {
  background-color: #ffffff;
  border-radius: 32px;
  padding: 12px;
}

.tehnology_row {
  display: flex;
  gap: 12px;
}

.tehnology_items:first-child {
  width: 50%;
}

.tehnology_items:last-child {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.tehnology_item {
  position: relative;
  width: calc(50% - 6px); /* три сверху */
}

.tehnology_item img {
  display: block;
  width: 100%;
}

.tehnology_item h4 {
  font-family: "Cruinn";
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 9;
  color: #ffffff;
  font-size: 24px;
  line-height: 22px;
}

.tehnology_item:last-child {
  width: 100%; /* одна снизу на всю ширину */
}

.selection {
  position: relative;
  width: 100%;
  padding-top: 72px;
}

.selection h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 75px;
  color: #ffffff;
  margin-bottom: 44px;
}

.selection_row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.selection_img {
  width: 50%;
}

.selection_img img {
  display: block;
  width: 100%;
}

.big_img {
  overflow: hidden;
  border-radius: 32px;
}

.thumbs_img {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.thumb {
  flex: 1;
  height: auto;
  border-radius: 32px;
  border: 1.5px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active {
  border-color: #4a9eff;
}

.thumb:hover:not(.active) {
  border-color: #555;
}

.selection_form {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 44px;
  background-color: #1e1e1e;
  border-radius: 24px;
  padding: 25px;
}

.section-label {
  font-family: "Cruinn";
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 28px;
  margin-bottom: 8px;
}
.pill-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  width: 70%;
}
.pill {
  font-family: "Cruinn";
  padding: 6px 13px;
  border-radius: 12px;
  border: 1px solid #444;
  font-size: 13px;
  cursor: pointer;
  background-color: #272727;
  color: #ffffff;
  transition: all 0.15s;
}
.pill.active {
  background: #ffffff;
  color: #151515;
}
.pill:hover:not(.active) {
  border-color: #666;
  color: #fff;
}
.radio-group {
  font-family: "Cruinn";
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.radio-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 18px;
  color: #ccc;
}
.radio-item input {
  accent-color: #4a9eff;
  cursor: pointer;
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.disabled_check {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.good_check {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.check-item {
  font-family: "Cruinn";
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  color: #aaa;
  cursor: pointer;
  margin-right: 12px;
}
.check-item input {
  accent-color: #4a9eff;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.check-item.included {
  color: #ddd;
}
.check-item.included .ico {
  color: #4a9eff;
  font-size: 14px;
  margin-top: 1px;
}
.check-item.included input[type="checkbox"]:disabled {
  accent-color: #4a9eff;
  opacity: 1;
  cursor: default;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
}

.price-val {
  font-family: "Cruinn";
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s;
}
.price-val.bump {
  color: #fe0b03;
}
.btn-submit {
  font-family: "Cruinn";
  width: 100%;
  padding: 15px;
  background: #fe0b03;
  border: none;
  border-radius: 50px;
  color: #151515;
  font-size: 32px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 23px;
}
.btn-submit:hover {
  background: #c52828;
}

.extras-note {
  font-family: "Cruinn";
  font-size: 11px;
  color: #555;
  margin-top: 4px;
}

/* убираем стандартные */
input[type="checkbox"],
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 1.5px solid #444;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.15s;
  position: relative;
}

/* radio — круглый */
input[type="radio"] {
  border-radius: 50%;
}

/* checkbox — квадратный со скруглением */
input[type="checkbox"] {
  border-radius: 8px;
}

/* hover */
input[type="checkbox"]:hover,
input[type="radio"]:hover {
  border-color: #ffffff;
}

/* radio — выбран */
input[type="radio"]:checked {
  border-color: #ffffff;
  background: transparent;
}
input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* checkbox — выбран */
input[type="checkbox"]:checked {
  border-color: #ffffff;
}
input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  top: 1px;
  left: 6px;
  transform: rotate(45deg);
}

/* disabled (включённые в базу) — синий и залочен */
input[type="checkbox"]:disabled {
  background: #272727;
  opacity: 1;
  cursor: default;
  border: none;
}
input[type="checkbox"]:disabled::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  border-top: none;
  border-left: none;
  top: 3px;
  left: 8px;
  transform: rotate(45deg);
}

.prize {
  font-family: "Cruinn";
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 233px;
  height: 81px;
  background-color: #ffffff;
  border-radius: 12px;
  top: 28px;
  right: 28px;
}

.prize span {
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
}

.prize span:last-child {
  font-size: 16px;
  margin-top: 12px;
}

.tehno {
  position: relative;
  width: 100%;
  padding-top: 72px;
}

.tehno h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 75px;
  color: #ffffff;
  margin-bottom: 44px;
}

.tehno_row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: stretch;
}

.tehno_item {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.tehno_item img {
  margin-top: auto; /* картинка всегда прижата к низу */
  display: block;
  width: 100%;
}

.tehno_content {
  width: 75%;
  overflow: hidden;
  flex: 1; /* занимает всё оставшееся место между верхом и картинкой */
  min-height: 0; /* важно! без этого flex-item не обрезает контент */
}

.tehno_content p {
  font-family: "Cruinn";
  color: #bebebe;
  font-size: 14px;
}

.tehno_content p:first-child {
  margin-bottom: 15px;
}

.complect {
  position: relative;
  width: 100%;
  padding-top: 72px;
}

.complect h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 75px;
  color: #ffffff;
  margin-bottom: 44px;
}

.complect_row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: stretch;
}

.complect_form {
  background-color: #ffffff;
  border-radius: 32px;
  width: 50%;
  padding: 32px;
}

.complect_form p {
  font-family: "Cruinn";
  color: #151515;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
}

.form__field {
  width: 100%;
  margin-bottom: 12px;
}

.form__field.first {
  margin-top: 24px;
}

.form__field select {
  width: 100%;
  height: 60px;
  border-radius: 24px;
  background-color: #eaeaea;
  text-align: center;
  border: 1px solid #151515;
  font-family: "Cruinn";
  color: #151515;
  font-size: 24px;
  line-height: 28px;
  padding-left: 20px;
}

.form__field input {
  width: 100%;
  height: 60px;
  border-radius: 24px;
  background-color: #eaeaea;
  text-align: center;
  border: 1px solid #151515;
  font-family: "Cruinn";
  color: #151515;
  font-size: 24px;
  line-height: 28px;
}

.form__field textarea {
  width: 100%;
  height: 200px;
  font-family: "Cruinn";
  color: #8f8f8f;
  font-size: 24px;
  line-height: 28px;
  padding-left: 24px;
  padding-top: 17px;
  border-radius: 24px;
  border: 1px solid #151515;
  background-color: #eaeaea;
}

.form__flex {
  display: flex;
  justify-content: space-between;
}

.form__flex .form__field {
  width: 49%;
}

.form__flex .form__field input {
  padding-left: 24px;
  text-align: left;
}

.form__policy span {
  font-family: "Cruinn";
  font-size: 14px;
}

.form__submit {
  margin-top: 24px;
}

.form__submit input {
  font-family: "Cruinn";
  color: #151515;
  font-size: 32px;
  width: 100%;
  height: 80px;
  text-align: center;
  background-color: #fe0b03;
  border-radius: 40px;
  border: none;
}

.wpcf7-spinner {
  display: none !important;
}

/* Скрываем стандартный чекбокс */
.wpcf7-acceptance input[type="checkbox"] {
  display: none;
}

/* Стилизация контейнера */
.wpcf7-acceptance label {
  position: relative;
  padding-left: 30px; /* место для квадратика */
  cursor: pointer;
  user-select: none;
}

/* Квадратик для чекбокса */
.wpcf7-acceptance label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 2px solid #151515;
  border-radius: 8px;
}

/* Галочка при включении */
.wpcf7-acceptance input[type="checkbox"]:checked + span::after {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  color: #151515 !important;
  font-size: 16px;
  text-align: center;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 8px;
}

.wpcf7-form br {
  display: none;
}

/* Стили текста */
.wpcf7-acceptance span {
  display: inline-block;
  vertical-align: middle;
}

.form__policy {
  margin-top: 15px;
}

.form__policy .wpcf7-list-item {
  margin-left: 0px;
}
.form__policy .wpcf7-list-item-label {
  font-size: 14px;
  font-weight: 400;
  color: rgb(99, 99, 99);
  font-family: "Cruinn";
  padding-left: 15px;
}

.wpcf7-not-valid-tip {
  font-family: "Cruinn";
  margin-top: 5px;
}

.complect_img {
  width: 50%;
}

.complect_img img {
  display: block;
  width: 100%;
}

.how_order {
  position: relative;
  width: 100%;
  padding-top: 72px;
  background-position: 50% 85%;
  background-image: url("../images/howOrder/bg.png");
  background-repeat: no-repeat;
  overflow: hidden;
}

.how_order h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 75px;
  color: #ffffff;
  margin-bottom: 44px;
}

.how_order_row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.how_order_item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.how_order_item:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}
.how_order_item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.how_order_item:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}
.how_order_item:nth-child(5) {
  grid-column: 5;
  grid-row: 2;
}
.how_order_item:nth-child(6) {
  grid-column: 6;
  grid-row: 1;
}

.how_order_item {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.how_order_item::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}

.how_order_item:nth-child(1)::after {
  top: 100%;
  background-image: url("../images/howOrder/line/item1.png");
}

.how_order_item:nth-child(2)::after {
  top: -50%;
  background-image: url("../images/howOrder/line/item2.png");
}

.how_order_item:nth-child(4)::after {
  top: 50%;
  left: 100%;
  background-image: url("../images/howOrder/line/item3.png");
}

.how_order_item:nth-child(5)::after {
  top: -5%;
  left: 100%;
  background-image: url("../images/howOrder/line/item4.png");
}

.how_order_item span {
  position: relative;
  color: #ffffff;
  font-size: 62px;
  font-family: "Tschichold", Arial, sans-serif;
  z-index: 1;
}

.how_order_item .how_order_content {
  position: relative;
  margin-top: 32px;
  z-index: 1;
}

.how_order_item h4 {
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  font-family: "Cruinn";
  text-transform: uppercase;
}

.how_order_item p {
  font-size: 14px;
  line-height: 16px;
  color: #bebebe;
  font-family: "Cruinn";
  margin-top: 12px;
}

.how_order_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #282828;
  opacity: 0.7;
  z-index: 0;
  border-radius: 32px;
}

.add_order {
  position: relative;
  width: 100%;
  padding-top: 72px;
}

.add_order h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 75px;
  color: #ffffff;
  margin-bottom: 44px;
}

.upsell {
  position: relative;
  width: 100%;
  padding-top: 72px;
  overflow: hidden;
}

.upsell__title {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 65px;
  color: #ffffff;
  margin-bottom: 44px;
}

/* Слайдер */
.upsell__slider {
  overflow: hidden;
}

.upsell__track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Карточка — 3 видимых, перелистывание по 1 */
.upsell__card {
  position: relative;
  flex: 0 0 calc((100% - 24px) / 3);
  background: #1e1e1e;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 12px;
}

.upsell__block {
  position: relative;
  border: 2px solid #ffffff;
  border-radius: 32px;
  overflow: hidden;
}

.upsell__img {
  width: 100%;
  aspect-ratio: 4 / 4;
  overflow: hidden;
}

.upsell__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.upsell__card:hover .upsell__img-wrap img {
  transform: scale(1.03);
}

.upsell__content {
  top: 0;
  left: 0;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  justify-content: space-between;
  height: 100%;
}

.upsell__content_mobile {
  display: none;
}

.upsell__content_mobile2 {
  display: none;
}

.icon_link_mobile {
  display: none;
  position: absolute;
  right: 16px;
  top: 16px;
}

.upsell__name {
  font-family: "Cruinn";
  color: #ffffff;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

.upsell__desc {
  font-family: "Cruinn";
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  margin: 0;
}

.upsell__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.upsell__tags span {
  font-family: "Cruinn";
  font-size: 16px;
  line-height: 18px;
  background-color: #ffffff;
  border: 1px solid #444;
  color: #151515;
  padding: 3px 10px;
  border-radius: 20px;
}

.upsell__price {
  font-family: "Cruinn";
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.upsell__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 16px 20px;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 50px;
  overflow: hidden;
  font-weight: 500;
  text-decoration: none;
  font-family: "Cruinn";
  color: #ffffff;
  font-size: 32px;
}

.upsell__btn:hover {
  background: #2a2a2a;
}

.upsell__arrow {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 90px;
  height: 90px;
  border: 1px solid #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.upsell__arrow img {
  display: block;
  width: 100%;
}

/* Футер */
.upsell__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.upsell__divider {
  flex: 1;
  height: 1px;
  background: #ffffff;
  margin: 0 20px;
}

.upsell__counter {
  font-family: "Cruinn";
  color: #ffffff;
  font-size: 28px;
  line-height: 30px;
}

.upsell__controls {
  display: flex;
  gap: 10px;
}

.upsell__prev,
.upsell__next {
  width: 144px;
  height: 90px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.upsell__prev img,
.upsell__next img {
  display: block;
  width: 100%;
}

.upsell__prev:disabled,
.upsell__next:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 1024px) {
  .upsell__card {
    flex: 0 0 calc(50% - 40px);
  }
}

@media (max-width: 767px) {
  .upsell__card {
    flex: 0 0 calc(100% - 40px);
  }
}

/* faq */
.faq {
  position: relative;
  width: 100%;
  padding: 72px 0px;
  overflow: hidden;
}

.faq__title h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 75px;
  color: #ffffff;
  margin-bottom: 44px;
}

.faq__block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 20px;
  background-color: #1e1e1e;
  margin-bottom: 4px;
  border-radius: 32px;
}

.faq__block .faq__question {
  position: relative;
  display: flex;
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Cruinn";
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: color 0.3s ease;
}

.faq__block .faq__question .faq__number {
  font-size: 28px;
  line-height: 30px;
  color: #8f8f8f;
  border: 2px solid #8f8f8f;
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
}

.faq__block .faq__question .faq__name {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20%;
}

.faq__block .faq__question .faq__name img {
  display: block;
}

.faq__block .faq__question .faq__name p {
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
}

.faq__question .open__close {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #a1a1a1;
}

.faq__question .open__close::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%) rotate(90deg);
  width: 16px;
  height: 2px;
  background-color: #a1a1a1;
  border-radius: 1px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.faq__question .open__close::after {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%) rotate(0deg);
  width: 16px;
  height: 2px;
  background-color: #a1a1a1;
  border-radius: 1px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.faq__block.active .faq__question::before {
  transform: translateY(-50%) rotate(135deg);
}

.faq__block.active .faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__block.active .faq__question span::before {
  transform: translate(50%, -50%) rotate(135deg);
}

.faq__block.active .faq__question span::after {
  transform: translate(50%, -50%) rotate(45deg);
}

.faq__block .faq__answer {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Cruinn";
  margin-top: 0;
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.35s ease,
    margin-top 0.35s ease;
  padding-left: calc(72px + 20% + 12px + 65px);
  width: 100%;
}

.faq__block.active {
  background-color: #a1a1a1;
}

.faq__block.active .faq__question .faq__number {
  color: #151515;
  border-color: #151515;
}

.faq__block.active .faq__question .faq__name p {
  color: #151515;
}

.faq__block.active .faq__answer {
  color: #4d4d4d;
}

.faq__block.active .faq__question .open__close {
  border-color: #151515;
}

.faq__block.active .faq__question .open__close::before,
.faq__block.active .faq__question .open__close::after {
  background-color: #151515;
}

.faq__block.active .faq__question .faq__name img {
  filter: brightness(0);
}

.footer {
  position: relative;
  width: 100%;
  padding: 40px 0px;
  background-color: #ffffff;
  border-radius: 32px 32px 0 0;
}

.footer_row {
  display: flex;
  justify-content: space-between;
}

.footer_row h2 {
  font-family: "Tschichold", Arial, sans-serif;
  font-size: clamp(40px, 9vw, 173px);
  text-transform: uppercase;
  font-weight: 400;
}

.footer_nav {
  display: flex;
  width: 50%;
}

.footer__col-title {
  font-family: "Cruinn";
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 700;
}

.footer_menu li {
  list-style: none;
  margin-bottom: 12px;
}

.footer_menu li a {
  font-family: "Cruinn";
  display: block;
  color: #151515;
  font-size: 16px;
  line-height: 100%;
  text-decoration: none;
}

.footer_nav_right {
  padding-left: 100px;
}

.footer_nav_right address {
  font-style: normal;
}

.footer__contacts li {
  list-style: none;
  margin-bottom: 12px;
  font-family: "Cruinn";
}

.footer__contacts li.phone {
  margin-top: 24px;
}

.footer__contacts li a {
  font-family: "Cruinn";
  display: block;
  color: #151515;
  font-size: 16px;
  line-height: 100%;
  text-decoration: none;
}

.footer__contacts li img {
  display: block;
  width: 18px;
  margin-right: 5px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
}

.copyright_row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 50px;
}

.copyright_row .copyright {
  font-family: "Cruinn";
  font-size: 16px;
}

.copyright_row .policy {
  font-family: "Cruinn";
  color: #151515;
  text-decoration: none;
}

.copyright_row a img {
  display: block;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal-overlay2 {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay2.active {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}
.modal-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.modal-summary {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  gap: 12px;
}
.summary-item span {
  color: #888;
}
.summary-item strong {
  text-align: right;
}
.summary-price {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 4px;
  font-size: 16px;
}
.summary-price strong {
  color: #e63a2e;
  font-size: 18px;
}

.modal-form .wpcf7-acceptance label::before {
  width: 22px;
  height: 22px;
}

.modal-form .wpcf7-acceptance input[type="checkbox"]:checked + span::after {
  width: 22px;
  height: 22px;
}

.wpcf7-not-valid-tip + .wpcf7-not-valid-tip {
  display: none;
}

@media (max-width: 1600px) {
  .header .header_left ul {
    gap: 17px;
  }

  .header .header_left ul li a {
    font-size: 12px;
  }

  .header .header_right ul li a {
    font-size: 12px;
  }

  .top {
    min-height: 713px;
  }

  .top_content h1 {
    font-size: clamp(40px, 9vw, 122px);
  }

  .top_button a {
    font-size: 28px;
  }

  .advantages_block span {
    font-size: 12px;
  }

  .populary_item .icon_link {
    right: 16px;
    top: 16px;
  }

  .populary_product {
    padding-top: 40px;
  }

  .populary_product h2 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .product_content {
    padding: 16px;
  }

  .product_content h3 {
    font-size: 18px;
  }

  .product_content p {
    font-size: 12px;
  }

  .every_detail {
    padding-top: 40px;
  }

  .every_detail_color {
    padding: 38px 30px;
  }

  .every_detail_color h2 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .every_detail_row h4 {
    font-size: 18px;
    line-height: 20px;
  }

  .every_detail_row p {
    font-size: 12px;
  }

  .why_us {
    padding-top: 40px;
  }

  .why_us h2 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .why_us_title h4 {
    font-size: 18px;
  }

  .why_us_item p {
    font-size: 12px;
  }

  .portfolio {
    padding-top: 40px;
  }

  .portfolio h2 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .tehnology {
    padding-top: 40px;
  }

  .tehnology h2 {
    font-size: 72px;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .tehnology_color {
    padding: 20px;
  }

  .selection {
    padding-top: 40px;
  }

  .selection h2 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .selection_form {
    padding: 16px;
    gap: 16px;
  }

  .section-label {
    font-size: 18px;
    line-height: 20px;
  }

  .prize {
    width: 195px;
    height: 61px;
    top: 16px;
    right: 16px;
  }

  .prize span {
    font-size: 18px;
  }

  .prize span:last-child {
    font-size: 12px;
    margin-top: 4px;
  }

  .price-box {
    margin-top: 13px;
  }

  .radio-item {
    font-size: 16px;
  }

  .check-item {
    font-size: 16px;
  }

  .btn-submit {
    margin-top: 20px;
  }

  .tehno {
    padding-top: 40px;
  }

  .tehno h2 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .tehno_content p {
    font-size: 12px;
  }

  .complect {
    padding-top: 40px;
  }

  .complect h2 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .complect_form {
    padding: 16px;
  }

  .complect_form p {
    font-size: 18px;
    line-height: 20px;
  }

  .form__field input {
    height: 40px;
  }

  .form__field textarea {
    height: 140px;
  }

  .form__submit input {
    font-size: 28px;
  }

  .wpcf7-acceptance label::before {
    width: 24px;
    height: 24px;
  }

  .wpcf7-acceptance input[type="checkbox"]:checked + span::after {
    width: 24px;
    height: 24px;
  }

  .how_order {
    padding-top: 40px;
  }

  .how_order h2 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .how_order_item {
    padding: 16px;
  }

  .how_order_item .how_order_content {
    margin-top: 16px;
  }

  .how_order_item h4 {
    font-size: 18px;
    line-height: 20px;
  }

  .how_order_item p {
    font-size: 12px;
    line-height: 13px;
    margin-top: 8px;
  }

  .upsell {
    padding-top: 40px;
  }

  .upsell__title {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .upsell__name {
    font-size: 18px;
    line-height: 20px;
  }

  .upsell__desc {
    font-size: 12px;
    line-height: 13px;
  }

  .upsell__tags span {
    font-size: 12px;
  }

  .upsell__btn {
    font-size: 28px;
  }

  .faq__title h2 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .footer_row h2 {
    font-size: clamp(40px, 9vw, 122px);
  }
}

@media (max-width: 1231px) {
  .mobile_block {
    display: flex;
  }

  .header {
    width: calc(100% - 40px);
    margin: 0px 20px;
  }

  .header_left {
    display: none;
  }

  .header_right {
    display: none;
  }

  .top {
    min-height: 502px;
  }

  .top_content h1 {
    font-size: clamp(40px, 9vw, 65px);
  }

  .top_content {
    padding: 0 20px 20px;
  }

  .top_title span:nth-child(2) {
    text-align: left;
  }

  .top_title span:nth-child(3) {
    align-self: flex-start;
  }

  .advantages_block {
    flex-direction: row;
    top: 0px;
    margin-top: 12px;
  }

  .advantages_block span {
    font-size: 12px;
    line-height: 12px;
    height: auto;
  }

  .top_button {
    height: 69px;
    margin-top: 20px;
  }

  .product_img {
    border-radius: 20px;
  }

  .populary_product h2 {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .product_content {
    position: relative;
    padding: 0;
  }

  .product_content .product_price {
    font-size: 16px;
    position: relative;
    top: -25px;
    left: 10px;
  }

  .product_content h3 {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 8px;
  }

  .product_content p {
    color: #bebebe;
  }

  .populary_item .icon_link {
    width: 60px;
    right: 8px;
    top: 8px;
  }

  .populary_item .icon_link svg {
    width: 100%;
    height: auto;
  }

  .every_detail_color {
    background-image: none;
  }

  .every_detail_color h2 {
    font-size: 36px;
  }

  .every_detail_mobile_img {
    display: block;
  }

  .every_detail_row {
    margin-bottom: 16px;
  }

  .every_detail_item {
    width: 49%;
  }

  .why_us h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
  }

  .why_us_row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .why_us_item {
    flex: none;
    width: calc(50% - 8px);
  }

  .portfolio h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
  }

  .portfolio_item {
    width: calc(50% - 9px);
  }

  .tehnology h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
  }

  .tehnology_row {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .tehnology_items:first-child {
    width: 100%;
    order: 1;
  }

  .tehnology_items:last-child {
    width: 100%;
    order: 0;
    gap: 8px;
  }

  .tehnology_item h4 {
    font-size: 15px;
    line-height: 18px;
    left: 16px;
    bottom: 16px;
  }

  .tehnology_item {
    width: calc(50% - 4px);
  }

  .selection h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
  }

  .selection_row {
    flex-wrap: wrap;
  }

  .selection_img {
    width: 100%;
  }

  .big_img {
    border-radius: 20px;
  }

  .selection_form {
    width: 100%;
  }

  .btn-submit {
    font-size: 28px;
  }

  .price-box {
    justify-content: flex-start;
  }

  .tehno h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
  }

  .tehno_content {
    width: 100%;
  }

  /* картинка во втором tehno_item */
  .tehno_item:last-child {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .tehno_item:last-child img {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .complect h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
  }

  .complect_row {
    gap: 8px;
    flex-direction: column;
  }

  .complect_img {
    width: 100%;
    order: 0;
  }

  .complect_form {
    border-radius: 20px;
    width: 100%;
    order: 1;
  }

  .thumb {
    border-radius: 20px;
  }

  .pill {
    height: 50px;
  }

  .how_order {
    background-position: 50% 55%;
  }

  .how_order h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
  }

  .how_order_row {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    row-gap: 60px; /* запас под сдвиг половины карточки */
    margin-top: 20%;
  }

  /* первый ряд: 1, 2, 3 */
  .how_order_item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .how_order_item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    margin-top: -50%; /* сдвиг вверх на половину высоты карточки */
  }
  .how_order_item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  /* второй ряд: 4, 5, 6 */
  .how_order_item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }
  .how_order_item:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
    margin-top: 50%; /* сдвиг вниз на половину высоты карточки */
  }
  .how_order_item:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
  }

  .how_order_item::after {
    display: none; /* линии под десктопную раскладку, на таб не подходят */
  }

  .upsell__title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
  }

  .faq__title h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
  }

  .faq__block .faq__question .faq__number {
    font-size: 16px;
    line-height: 30px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .faq__block .faq__question .faq__name img {
    width: 36px;
  }

  .faq__block .faq__question .faq__name {
    padding-left: 10%;
    max-width: 80%;
  }

  .faq__block .faq__question .faq__name p {
    font-size: 18px;
    line-height: 18px;
  }

  .faq__block .faq__answer {
    padding-left: calc(72px + 0% + 12px + 65px);
  }

  .footer_row h2 {
    font-size: clamp(40px, 9vw, 65px);
    width: 80%;
  }

  .footer_row {
    flex-direction: column;
  }

  .footer_nav {
    margin-top: 40px;
    width: 100%;
  }

  .footer_nav_left {
    width: 45%;
  }

  .footer_nav_right {
    padding-left: 0;
    width: 45%;
  }

  .logo_footer {
    position: absolute;
    top: 0;
    right: 30px;
  }
}

@media (max-width: 731px) {
  .mobile_left ul li {
    display: none;
  }

  .mobile_left ul li p {
    font-size: 12px;
  }

  .mobile_left ul li:first-child {
    display: flex;
  }

  .mobile_right a {
    display: none;
  }

  .top_content h1 {
    font-size: 32px;
    line-height: 28px;
  }

  .top_title span:nth-child(1) {
    align-self: center;
  }

  .top_title span:nth-child(2) {
    text-align: center;
  }

  .top_title span:nth-child(3) {
    align-self: center;
  }

  .advantages_block {
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 16px;
  }

  .advantages_block span {
    width: 40%;
  }

  .top_button {
    height: 56px;
  }

  .top_button a {
    font-size: 20px;
  }

  .populary_product h2 {
    font-size: 24px;
    line-height: 20px;
  }

  .populary_row {
    flex-direction: column;
  }

  .product_content .product_price {
    font-size: 20px;
  }

  .populary_item .icon_link {
    width: 48px;
    right: 16px;
    top: 16px;
  }

  .populary_item .icon_link .icon-arrow {
    fill: #ffffff;
  }

  .every_detail_color h2 {
    font-size: 24px;
    line-height: 20px;
  }

  .every_detail_mobile_img {
    margin-bottom: 16px;
  }

  .every_detail_color {
    padding: 16px;
  }

  .every_detail_row {
    flex-direction: column;
  }

  .every_detail_item {
    width: 100%;
    margin-bottom: 16px;
  }

  .every_detail_item:last-child {
    margin-bottom: 0;
  }

  .every_detail_row h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 4px;
  }

  .every_detail_row p {
    line-height: 12px;
  }

  .why_us h2 {
    font-size: 24px;
    line-height: 20px;
  }

  .why_us_row {
    flex-direction: column;
  }

  .why_us_item {
    width: 100%;
    padding: 16px;
  }

  .why_us_title {
    flex-direction: column;
    align-items: flex-start;
  }

  .why_us_title h4 {
    font-size: 16px;
    line-height: 20px;
  }

  .portfolio h2 {
    font-size: 24px;
    line-height: 20px;
  }

  .tehnology_color {
    padding: 16px;
  }

  .tehnology h2 {
    font-size: 24px;
    line-height: 20px;
    margin-top: 0px;
  }

  .tehnology_item h4 {
    left: 8px;
    bottom: 8px;
    font-size: 16px;
    line-height: 14px;
  }

  .tehnology_item {
    width: 100%;
  }

  .selection h2 {
    font-size: 24px;
    line-height: 20px;
  }

  .thumb {
    border-radius: 12px;
  }

  .prize {
    display: none;
  }

  .section-label {
    font-size: 16px;
    line-height: 20px;
  }

  .pill-group {
    width: 100%;
  }

  .pill {
    font-size: 16px;
  }

  .btn-submit {
    font-size: 20px;
  }

  .modal-box {
    padding: 20px;
  }

  .form__submit input {
    font-size: 24px;
    height: 50px;
  }

  .tehno h2 {
    font-size: 24px;
    line-height: 20px;
  }

  .tehno_row {
    flex-direction: column;
  }

  .tehno_item {
    width: 100%;
  }

  .tehno_item:last-child img {
    position: relative;
    left: 0%;
    top: 0%;
    transform: translate(0%, 0%);
    width: 100%;
  }

  .complect h2 {
    font-size: 24px;
    line-height: 20px;
  }

  .complect_form p {
    font-size: 16px;
    line-height: 20px;
  }

  .form__field input {
    font-size: 16px;
  }

  .form__field select {
    font-size: 16px;
  }

  .form__field textarea {
    font-size: 16px;
  }

  .form__flex {
    flex-direction: column;
  }

  .form__flex .form__field {
    width: 100%;
  }

  .form__flex .form__field input {
    text-align: center;
    padding-left: 0;
  }

  .form__field input {
    padding-left: 0;
  }

  .how_order h2 {
    font-size: 24px;
    line-height: 20px;
  }

  .how_order_row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 0%;
    gap: 10px;
  }

  .how_order_item {
    margin-top: 0 !important;
    width: calc(50% - 5px);
  }

  .how_order_item h4 {
    font-size: 14px;
    line-height: 18px;
  }

  .upsell__card {
    flex: 0 0 calc(100% - 0px);
  }

  .upsell__title {
    font-size: 24px;
    line-height: 20px;
  }

  .upsell__name {
    font-size: 16px;
    line-height: 20px;
  }

  .upsell__btn {
    display: none;
  }

  .upsell__prev,
  .upsell__next {
    width: 80px;
  }

  .upsell__content {
    display: none;
  }

  .upsell__content_mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 16px;
  }

  .upsell__content_mobile2 {
    display: block;
  }

  .icon_link_mobile {
    display: block;
  }

  .upsell__price {
    font-size: 20px;
  }

  .upsell__footer {
    margin-top: 10px;
  }

  .faq__title h2 {
    font-size: 24px;
    line-height: 20px;
  }

  .faq__block {
    padding: 12px;
    border-radius: 20px;
  }

  .faq__block .faq__question .faq__name {
    padding-left: 8px;
    max-width: 75%;
  }

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

  .faq__block .faq__question .faq__name img {
    display: none;
  }

  .faq__block .faq__question .faq__name p {
    font-size: 14px;
  }

  .faq__question .open__close {
    width: 36px;
    height: 36px;
  }

  .faq__block .faq__answer {
    padding-left: calc(0px + 0% + 12px + 30px);
  }

  .footer_row h2 {
    font-size: 32px;
  }

  .footer_nav {
    margin-top: 24px;
  }

  .footer__col-title {
    font-size: 16px;
    line-height: 20px;
  }

  .footer_nav_left {
    width: 49%;
  }

  .footer_menu li {
    margin-bottom: 20px;
  }

  .footer_nav_right {
    width: 49%;
  }

  .footer__contacts li {
    margin-bottom: 20px;
  }

  .copyright_row {
    margin-top: 40px;
  }
}
