:root {
  --primary-bg: #f2f2f2;
  --black: #242527;
  --white: #ffffff;
  --red: #f2272c;
  --font-primary: "Inter", sans-serif;
}

html {
  overflow-x: hidden;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: var(--primary-bg);
  font-family: var(--font-primary);
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  position: relative;
  color: var(--black);
}

body::before {
  content: "";
  position: absolute;
  background-image: url("/assets/images/wave.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.modal-mass-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-mass {
  background: linear-gradient(to bottom right, #242527 60%, #3a1314 100%);
  padding: 80px;
  color: var(--white);
  border-radius: 10px;
  text-align: center;
  width: 738px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 60px;
}

.modal-mass-title {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
}

.modal-mass-text {
  font-size: 24px;
  margin-bottom: 60px;
}

.modal-mass-button {
  background: var(--red);
  color: white;
  border: none;
  padding: 25px 50px;
  height: 70px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.modal-mass-button:hover {
  background: #ff4348;
}

.about-company {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding-bottom: 150px;
}

.about-company::before {
  content: "";
  position: absolute;
  background-image: url("/assets/images/wave1.svg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 110%;
}

.section {
  margin-bottom: 100px;
}

/* Общие стили для кнопок */
.btn {
  color: var(--white);
  padding: 20px 45px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

.btn-circle {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.btn-circle::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  background-position: center;
}

/* Красные кнопки */
.btn-red {
  background: var(--red);
}

.btn-red:hover {
  background-color: #ff4348;
}

.btn-circle-red {
  background-color: var(--red);
}

.btn-circle-red:hover {
  background-color: #ff4348;
}

.btn-circle-red::before {
  background-image: url("/bitrix/templates/ctr/assets/images/tabler_arrow-up.svg");
}

/* Белые кнопки */
.btn-circle-white {
  background-color: var(--white);
}

.btn-circle-white:hover {
  background-color: #ff4348;
}

.btn-circle-white::before {
  background-image: url("/bitrix/templates/ctr/assets/images/arrow-black.svg");
  width: 25px;
}

/* Черные кнопки */
.btn-black {
  background: var(--black);
}

.btn-black:hover {
  background-color: #3b3e44;
}

.btn-circle-black,
.btn-circle-black-rotate {
  background-color: var(--black);
}

.btn-circle-black:hover {
  background-color: #3b3e44;
}

.btn-circle-black::before {
  background-image: url("/bitrix/templates/ctr/assets/images/tabler_arrow-up.svg");
}

.btn-circle-black-rotate::before {
  background-image: url("/bitrix/templates/ctr/assets/images/tabler_arrow-up.svg");
  transform: rotate(180deg);
}

.card-btn-case .btn-circle-case:hover {
  background-color: var(--red);
  color: var(--white);
}

a {
  text-decoration: none;
}
/* Header Start */

.header {
  padding: 26px 0;
  color: var(--white);
}

.wrapper {
  max-width: 1790px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
}

.logo img {
  width: auto;
  height: auto;
  margin-right: 10px;
}

.extra-nav {
  display: none;
}

.menu-modul {
  display: none;
}

.button-mobul,
.contact-mobul {
  display: none;
}
.contact-text {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
}

.contact-info-header,
.info-header {
  display: flex;
  align-items: center;
}
.email {
  color: var(--red);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  margin-right: 100px;
}

.email:hover {
  text-decoration: underline;
}

.footer-links li a:hover {
  color: var(--red);
}

.phone {
  font-weight: bold;
  font-size: 36px;
  color: var(--black);
  text-decoration: none;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu,
.menu-2 {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 30px;
  width: 100%;
}

.nav li {
  position: relative;
  background: var(--white);
  flex: 1;
  border-radius: 50px;
}

.extra-nav li {
  position: relative;
  background: var(--white);
  flex-grow: 1;
  border-radius: 50px;
}

.nav a {
  background: var(--white);
  padding: 20px 0;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  display: block;
  white-space: nowrap;
  line-height: 30px;
}

.extra-nav a {
  background: var(--white);
  padding: 20px 0;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  display: block;
  white-space: nowrap;
  line-height: 30px;
}

.nav a:hover {
  color: var(--red);
}

.extra-nav a:hover {
  color: var(--red);
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 25px 35px;
  border-radius: 40px;
  transition: visibility 0s, opacity 0.3s ease-in-out;
  z-index: 10000;
}

.submenu a {
  padding: 15px 12px;
  color: black;
  white-space: nowrap;
}

/* Header End */

.hero-block {
  background-position: center;
  background-repeat: no-repeat;
  overflow: visible;
  position: relative;
}

.hero-block__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.slogan {
  font-size: 22px;
  color: #a6a6a6;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
  margin-top: 20px;
}

.title {
  font-size: 80px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.2;
  padding-bottom: 43px;
}

.title-serv {
  font-size: 80px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.2;
}

.highlight {
  color: var(--red);
}

.form {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  max-width: 920px;
  align-items: center;
}

.input-container input {
  padding: 21px 10px 21px 55px;
  border-radius: 50px;
  border: none;
  font-size: 18px;
  max-width: 245px;
  width: 100%;
}

.input-container {
  position: relative;
}

.input-container .input-icon {
  position: absolute;
  left: 20px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
}

.policy {
  font-size: 14px;
  color: #7b7b7b;
  margin-top: 20px;
}

.policy-link {
  text-decoration: underline;
  color: #7b7b7b;
}

.hero-block__image img {
  width: 100%;
  height: auto;
}

/* Mодальное окна */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to bottom right, #242527 60%, #3a1314 100%);
  padding: 86px 90px;
  border: none;
  max-width: 738px;
  width: 100%;
  border-radius: 60px;
}

.close {
  position: absolute;
  top: 35px;
  right: 35px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ff4848;
}

#form {
  max-width: 450px;
  margin: 0 auto;
}

.form-title {
  white-space: nowrap;
  font-size: 60px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
  text-align: center;
}

.description-white {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 36px;
  white-space: nowrap;
  text-align: center;
}

.no-wrap {
  white-space: nowrap;
}

.input-field {
  position: relative;
  margin: 0 auto;
  max-width: 450px;
  width: 100%;
}

.close-contact-info,
.close-menu {
  display: none;
}

.input-icon {
  position: relative;
  display: inline-block;
  width: 100%;
}

.input-icon input {
  width: 100%;
  padding-left: 55px;
  box-sizing: border-box;
  height: 70px;
  border: none;
  border-radius: 100px;
  margin-bottom: 10px;
  font-size: 18px;
}

.textarea {
  height: 140px;
}

.input-icon textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: 12px 40px 12px 55px;
  height: 140px;
  font-size: 18px;
  border-radius: 20px;
  margin-bottom: 35px;
}

.icon {
  position: absolute;
  top: 45%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 17px;
  pointer-events: none;
}

.input-icon .icon-comments {
  top: 13%;
}

.btn-form {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.form-policy {
  text-align: center;
  line-height: 150%;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.card {
  background-image: url("/bitrix/templates/ctr/assets/images/Subtract.png");
  background-size: cover;
  border-radius: 40px;
  width: 565px;
  padding: 70px 17px 10px 60px;
  text-align: left;
  transition: transform 0.3s;
  max-width: 100%;
  position: relative;
  background-position: right bottom;
}

.card-img {
  margin-bottom: 49px;
}

.card-title {
  margin-bottom: 21px;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -3%;
}

.card-slogan {
  margin-bottom: 19px;
  border-radius: 10px;
  padding: 5px 16px;
  background-color: #f2f2f2;
  font-size: 16px;
  font-weight: 600;
  width: 145px;
  white-space: nowrap;
  text-align: center;
}

.card-text {
  max-width: 380px;
  width: 100%;
  color: #5b5b5b;
  line-height: 160%;
  font-size: 18px;
  margin-bottom: 50px;
}

.card-btn {
  position: absolute;
  bottom: 2px;
  right: 10px;
}

.btn-card {
  width: 90px;
  height: 90px;
  margin-bottom: 16px;
}

.btn-card:hover {
  background-color: var(--red);
}

.card-btn-advantages {
  position: absolute;
  top: 20px;
  right: 20px;
}

.card-btn .btn-circle-black::before {
  background-size: 50px 50px;
  background-position: center;
  width: 100%;
  height: 100%;
}

.case-container {
  border-radius: 60px;
  background: linear-gradient(to bottom right, #242527 60%, #3a1314 100%);
  padding: 80px 70px;
  position: relative;
}

.title-white {
  color: var(--white);
  font-weight: 600;
  font-size: 60px;
  text-align: left;
}
.case-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/bitrix/templates/ctr/assets/images/wave.png");
  overflow: hidden;
  background-size: contain;
  background-position: center;
  border-radius: 60px;
  z-index: 0;
  opacity: 0.4;
}

.case-title {
  display: flex;
  align-items: flex-end;
  gap: 55px;
  margin-bottom: 75px;
}

.card-case {
  background: url("/bitrix/templates/ctr/assets/images/Subtract3.svg");
  border-radius: 40px;
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  padding: 60px 70px;
  position: relative;
  margin-bottom: 60px;
}

.desc {
  font-size: 22px;
  color: #7b7b7b;
}
.name-case {
  color: #7b7b7b;
  margin-bottom: 5px;
}

.title-card-case {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.content {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

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

.box {
  font-size: 20px;
  font-weight: 700;
  padding: 10px 20px;
  color: var(--white);
  white-space: nowrap;
  border-radius: 10px;
  margin-bottom: 20px;
}

.black-box {
  width: 173px;
  background-color: var(--black);
}

.red-box {
  width: 198px;
  background-color: var(--red);
}

.card-btn-case {
  position: absolute;
  right: 0;
  top: 0;
}

.btn-case {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  text-align: center;
  z-index: 10;
}

.card-btn-case .btn-circle-case {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 32px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

.btn-card-advantages {
  width: 90px;
  height: 90px;
}

.card-advantages {
  background-image: url("/bitrix/templates/ctr/assets/images/Subtract2.png");
  background-position: top right;
  background-size: cover;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  border-radius: 40px;
  width: 565px;
  padding: 40px 17px 10px 60px;
  max-width: 100%;
  position: relative;
}

.img-advantages {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.card-title-advantages {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -3%;
}

.card-text-advantages {
  max-width: 450px;
  width: 100%;
  color: #7b7b7b;
  line-height: 160%;
  font-size: 18px;
  margin-bottom: 50px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  gap: 260px;
}
.section-title {
  font-weight: 600;
  font-size: 60px;
  margin-bottom: 35px;
  color: var(--black);
}

.section-text {
  font-weight: 500px;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 30px;
  line-height: 170%;
}

.last-text {
  margin-bottom: 50px;
}

.btn-more {
  background-color: var(--white);
  max-width: 278px;
  width: 100%;
  height: 70px;
  border: none;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.contact-content {
  background: linear-gradient(to bottom right, #242527 60%, #3a1314 100%);
  padding: 86px 120px;
  border: none;
  max-width: 738px;
  width: 100%;
  border-radius: 60px;
}

.text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review {
  min-width: calc(100% / 3 - 10px);
  padding: 45px 50px;
  margin: 5px;
  background: var(--white);
  text-align: center;
  border-radius: 40px;
  border: 2px solid #f2f2f2;
  align-items: flex-start;
}

.review-header {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  flex-direction: column;
}

.review-name {
  font-weight: 700;
  color: var(--black);
  font-size: 20px;
  text-align: left;
  margin-bottom: 5px;
}

.review-position {
  font-weight: 500;
  color: #7b7b7b;
  margin-bottom: 25px;
  text-align: left;
}

.review-icon {
  margin-bottom: 26px;
}

.review-text {
  color: var(--black);
  line-height: 170%;
  text-align: left;
}

.read-more {
  color: #7b7b7b;
}

.slider-container {
  background: var(--white);
  border-radius: 60px;
  padding: 50px 70px;
  width: 100%;
  margin: auto;
  position: relative;
  text-align: left;
}

.reviews-wrapper,
.gallery-wrapper {
  width: 100%;
  overflow: hidden;
}

.reviews-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.pagination-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  align-items: center;
}

.page-counter {
  font-size: 18px;
  font-weight: bold;
  background: #f2f2f2;
  padding: 25px 40px;
  border-radius: 100px;
}

.active-page {
  color: #000;
  font-weight: bold;
}

.inactive-page {
  color: #cccccc;
}

.separator {
  color: #cccccc;
  margin: 0 5px;
}

.prev-btn,
.next-btn {
  background-color: #f2f2f2;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/bitrix/templates/ctr/assets/images/arrow-left.svg") no-repeat center;
  background-size: contain;
  display: block;
}

.next-btn::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/bitrix/templates/ctr/assets/images/arrow-right.svg") no-repeat center;
  background-size: contain;
  display: block;
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--red);
}

.phone-icon:hover {
  background-color: black;
}

.phone-icon:hover img {
  filter: invert(1);
}

.burger-menu:hover {
  background-color: black;
}

.burger-menu:hover img {
  filter: invert(1);
}

.footer-container {
  color: white;
  border-radius: 60px;
  background: linear-gradient(to bottom right, #242527 60%, #3a1314 100%);
  margin-bottom: 40px;
  padding: 100px 70px;
}

.footer-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 45px;
}

.footer-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details-all {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-details {
  margin-right: 90px;
}
.footer-text-container {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}
.footer-links li {
  margin-right: 38px;
}

.footer-links li:last-child {
  margin-right: 0;
}

.footer-links a {
  color: white;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-footer {
  font-size: 18px;
  color: #7b7b7b;
}

.email-footer {
  font-size: 24px;
}

.phone-footer {
  color: var(--white);
}

.social-icons {
  display: flex;
  flex-direction: row;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #555555;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.social-icons a:hover {
  background-color: #413e3e;
}

.social-icons a.whatsapp {
  background-image: url("/bitrix/templates/ctr/assets/images/whatsapp.svg");
}

.social-icons a.telegram {
  background-image: url("/bitrix/templates/ctr/assets/images/telegtam.svg");
}

.burger-menu {
  display: none;
}

.phone-icon {
  display: none;
}

.burger-line {
  width: 30px;
  height: 4px;
  background-color: #000;
  margin: 4px 0;
}

/* Начало второй страницы */

.breadcrumb_mobul {
  display: none;
}

.breadcrumb {
  padding: 15px 0 45px 30px;
  color: #7b7b7b;
  font-size: 14px;
}

.breadcrumb__dash {
  margin-right: 5px;
  margin-left: 5px;
}

.breadcrumb__home {
  color: var(--red);
}

.text-block__content {
  background: var(--white);
  padding: 120px 150px 90px;
  border-radius: 60px;
}

.block {
  margin-bottom: 60px;
}

.block-h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: justify;
  line-height: 120%;
}

.block-text {
  font-size: 18px;
  line-height: 180%;
  max-width: 1187px;
  text-align: justify;
}

.block-h2,
.block-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: justify;
  line-height: 120%;
}

.ordered-list {
  max-width: 1047px;
  list-style-position: inside;
  padding-left: 0;
  text-align: justify;
  line-height: 160%;
  font-size: 18px;
}

.ordered-list li {
  margin-bottom: 20px;
}

.icon-list {
  list-style-type: none;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.text-bold {
  font-weight: 600;
  border: 2px solid red;
  padding: 44px 50px;
  border-radius: 40px;
  font-size: 18px;
  line-height: 180%;
  text-align: justify;
}
/* отзывы */

.review-2 {
  min-width: calc(100% / 2 - 10px);
  padding: 45px 50px;
  margin: 5px;
  background: var(--white);
  text-align: center;
  border-radius: 40px;
  border: 2px solid #f2f2f2;
  align-items: flex-start;
}

.gallery-item {
  min-width: calc(100% / 2 - 10px);
  margin: 5px;
  background: var(--white);
  text-align: center;
  border-radius: 40px;
  border: 2px solid #f2f2f2;
  align-items: flex-start;
}

.reviews-slider_1,
.gallery-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.prev-btn_1,
.next-btn_1,
.prev-btn-gallery,
.next-btn-gallery {
  background-color: #f2f2f2;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn-gallery:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/bitrix/templates/ctr/assets/images/arrow-left.svg") no-repeat center;
  background-size: contain;
  display: block;
}

.prev-btn_1:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/bitrix/templates/ctr/assets/images/arrow-left.svg") no-repeat center;
  background-size: contain;
  display: block;
}

.next-btn_1::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/bitrix/templates/ctr/assets/images/arrow-right.svg") no-repeat center;
  background-size: contain;
  display: block;
}

.next-btn-gallery::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/bitrix/templates/ctr/assets/images/arrow-right.svg") no-repeat center;
  background-size: contain;
  display: block;
}

.prev-btn_1:hover,
.next-btn_1:hover {
  background: var(--red);
}

.prev-btn-gallery:hover,
.next-btn-gallery:hover {
  background: var(--red);
}

.gallery-item img {
  max-width: 740px;
  width: 100%;
  height: 555px;
  object-fit: contain;
}

.data-table {
  width: 100%;
  border-collapse: separate;
  border-radius: 30px;
  border: 2px solid #f2f2f2;
  overflow: hidden;
}

.data-table thead {
  background-color: #f2f2f2;
}

.data-table thead th {
  padding: 29px 50px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
}

th,
td {
  text-align: left;
  white-space: nowrap;
}

.data-table td {
  padding: 22px 50px;
  text-align: left;
  border: 1px solid #f2f2f2;
}

.data-table thead th:nth-child(2) {
  border-left: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.table-wrapper {
  overflow-x: auto;
  max-width: 100%;
}

.document-container {
  display: flex;
  align-items: center;
  border: 2px solid #f2f2f2;
  padding: 30px 40px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.document-container img {
  width: 30px;
  height: 30px;
  margin-right: 45px;
}

.document-container button {
  border: none;
  background: none;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: 600;
  color: #7b7b7b;
  font-size: 16px;
}

.document-name {
  flex-grow: 1;
  font-weight: 600;
  font-size: 20px;
  color: var(--black);
}

.video-container {
  position: relative;
  max-width: 1190px;
  width: 100%;
}

.video_frame {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  padding: 56.25% 0 0 0;
  overflow: hidden;
  background-image: url("/bitrix/templates/ctr/assets/images/advantages2.svg");
}

#video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  border: none;
}

/* конец второй страницы */

/* Начало страницы Services */

.opic {
  font-size: 28px;
  line-height: 180%;
  margin-bottom: 30px;
}

.card-container-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.img-advantages {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

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

.card-top-services {
  margin-top: 30px;
}

.text-22 {
  font-size: 22px;
  font-weight: 600;
  line-height: 150%;
  color: var(--black);
}

.card-case-rabota {
  position: relative;
  background-image: url("/bitrix/templates/ctr/assets/images/Subtract-rabota.svg");
  background-size: cover;
  background-position: right top;
  padding: 50px 100px 50px 50px;
  height: 200px;
  display: flex;
  align-items: center;
  border-radius: 40px;
}

.card-btn-case-black .btn-circle-case-black {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 20px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

.card-btn-case-black {
  position: absolute;
  top: 0;
  right: 0;
}

.about-content-rabota {
  display: flex;
  justify-content: space-between;
  gap: 110px;
  align-items: center;
}

.block-rabota {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

.title-white-52 {
  color: var(--white);
  font-weight: 700;
  font-size: 52px;
  text-align: center;
}

.tarif-card {
  background: linear-gradient(142.75deg, #242527 44.22%, #3a1314 99.1%);
  padding: 50px 20px;
  border-radius: 50px;
  width: max-content;
  color: #fff;
  text-align: center;
  flex-grow: 1;
}

.block-tarif-cards {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.tarif-content {
  background: var(--white);
  padding: 70px 60px;
  border-radius: 40px;
  height: 400px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.desc-tarif {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  color: var(--black);
}

.price {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
}

.card-btn-services {
  position: absolute;
  top: 10px;
  right: 10px;
}

.receive-container {
  border-radius: 60px;
  background: linear-gradient(to bottom right, #242527 60%, #3a1314 100%);
  padding: 80px 70px;
  position: relative;
}

.card-receive {
  display: flex;
  flex-direction: row;
  padding: 40px;
  gap: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  margin-bottom: 10px;
  min-height: 200px;
  align-items: center;
}

.title-card-receive {
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 120%;
}

.desc-receive {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #8e8e8e;
}

.receive-container .button-container {
  margin-top: 50px;
}

.solution-container {
  border-radius: 60px 70px;
  background: linear-gradient(to bottom right, #242527 60%, #3a1314 100%);
  padding: 80px 70px;
}

.solution-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.solution-text {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.title-solution {
  font-size: 60px;
  font-family: 600;
  line-height: 110%;
  color: var(--white);
  width: 80%;
}

.solution-desc {
  font-size: 24px;
  font-weight: 500;
  color: white;
  line-height: 150%;
}

.title-solution {
  flex-basis: 55%;
}

.solution-text > div {
  flex-basis: 45%;
}

.card-solution {
  position: relative;
  background-image: url("/bitrix/templates/ctr/assets/images/Subtract-solution.svg");
  background-size: cover;
  background-position: right top;
  border-radius: 40px;
  padding: 50px;
  min-height: 220px;
  flex: 1;
}

.text-grey {
  font-size: 20px;
  color: #7b7b7b;
}

.text-30 {
  font-size: 30px;
  line-height: 130%;
  color: var(--black);
  font-weight: 700;
}

.content-sol {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.block-solution {
  display: flex;
  gap: 20px;
}

.card-btn-case-black .btn-circle-case-red {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 40px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

/* Конец страницы Services */

/* 1440 */
@media screen and (max-width: 1440px) {
  .hero-block__image {
    flex: 1;
    flex-shrink: 0;
  }

  .hero-block__image img {
    width: 100%;
  }

  .card-advantages {
    width: auto;
  }

  .hero-block__image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .wrapper {
    max-width: 1350px;
  }

  .menu {
    margin-top: 10px;
  }

  .nav a {
    font-size: 19px;
    padding: 15px 0;
  }

  .extra-nav a {
    font-size: 19px;
    padding: 15px 0;
  }

  .logo img {
    width: 160px;
  }

  .contact-text {
    font-size: 18px;
  }

  .email {
    font-size: 18px;
    margin: 50px;
  }

  .phone {
    font-size: 22px;
  }

  .title {
    font-size: 60px;
    font-weight: 600;
  }

  .btn {
    padding: 18px 25px;
    font-size: 19px;
    font-weight: 600;
    align-items: center;
  }

  .card-title {
    font-weight: 600;
    font-size: 35px;
  }

  .card-img {
    margin-bottom: 19px;
  }

  .card-img img {
    width: 60px;
    height: 60px;
  }

  .title-white {
    font-weight: 500;
    font-size: 55px;
  }

  .img-advantages img {
    max-width: 80%;
  }

  .about-content {
    gap: 70px;
  }

  .contact-content {
    padding: 65px 90px;
    max-width: 600px;
  }
  .form-title {
    font-size: 50px;
  }

  .section-title {
    font-size: 55px;
  }

  .footer-links a {
    font-size: 18px;
  }

  .footer-text-container {
    flex-direction: column;
    gap: 30px;
  }
  .btn-footer {
    margin-top: 20px;
  }

  .btn-case {
    height: 70px;
  }

  .card {
    padding: 50px 17px 10px 40px;
  }

  .card-text {
    max-width: 300px;
    margin-bottom: 30px;
  }

  .btn-card {
    width: 80px;
    height: 80px;
  }

  .title-card-case {
    margin-bottom: 30px;
  }

  .review {
    flex: 0 0 calc(100% / 2.5 - 10px);
    padding: 40px;
  }

  .modal-content {
    padding: 50px 70px;
    max-width: 550px;
  }

  .text-block__content {
    padding: 80px 90px 60px;
  }

  .solution-container {
    padding: 50px;
  }

  .card-solution {
    padding: 40px 30px;
    background-image: url("/bitrix/templates/ctr/assets/images/Subtract-sol2.svg");
  }

  .title-solution {
    font-size: 48px;
  }

  .solution-desc {
    font-size: 20px;
  }

  .about-content-rabota {
    flex-direction: column;
    gap: 40px;
  }

  .button-container .btn-circle-none {
    display: none;
  }

  .tarif-content {
    height: auto;
  }

  .title-white-52 {
    font-size: 40px;
  }

  .tarif-content {
    padding: 20px 30px;
    margin-top: 25px;
    gap: 20px;
  }

  .desc-tarif {
    font-size: 18px;
  }

  .tarif-card {
    padding: 50px 20px 20px;
  }

  .card-case-rabota {
    border-radius: 40px;
  }

  .card-solution {
    display: flex;
    align-items: center;
  }

  .header {
    padding: 0;
  }

  .no-wrap {
    white-space: normal;
  }

  .title-serv {
    font-size: 60px;
  }

  .opic {
    font-size: 23px;
  }

  .card-solution {
    padding: 40px 40px;
  }
}

@media (max-width: 1360px) {
  .wrapper {
    max-width: 1200px;
  }

  .input-container input {
    max-width: 200px;
    padding: 18px 8px 18px 45px;
  }

  .input-container .input-icon {
    left: 15px;
    width: 16px;
    height: 16px;
    top: calc(50% - 10px);
  }

  .btn {
    padding: 17px 22px;
    font-size: 19px;
    font-weight: 500;
  }

  .img-advantages img {
    max-width: 70%;
  }

  .card-title-advantages {
    font-size: 28px;
  }

  .text-footer {
    font-size: 16px;
  }

  .phone {
    font-size: 19px;
  }

  .btn-circle {
    width: 50px;
    height: 50px;
  }
  .social-icons a {
    width: 50px;
    height: 50px;
  }

  .section-text {
    margin-bottom: 20px;
  }

  .last-text {
    margin-bottom: 30px;
  }

  .btn-card {
    width: 70px;
    height: 70px;
  }

  .card-btn {
    bottom: 4px;
    right: 20px;
  }

  .title-card-case {
    font-size: 30px;
    font-weight: 600;
    max-width: 800px;
  }

  .box {
    font-size: 18px;
    text-align: center;
  }

  .input-icon input {
    height: 55px;
  }

  .btn-form {
    max-width: 370px;
  }

  .description-white {
    font-size: 20px;
  }

  .section {
    margin-bottom: 80px;
  }

  .card-title {
    font-size: 30px;
  }

  .desc {
    font-size: 20px;
  }

  .card-text-advantages {
    margin-bottom: 30px;
  }

  .btn-card-advantages {
    width: 70px;
    height: 70px;
  }

  .nav li {
    padding: 0 40px;
  }
}

@media (max-width: 1200px) {
  .our-advantages-services .img-advantages img {
    max-width: 50%;
  }

  .our-advantages-services .img-advantages {
    height: auto;
  }

  .wrapper {
    width: 100%;
    padding: 0 42px;
  }

  .hero-block__text {
    flex: 1;
  }

  .hero-block__image {
    flex: 1;
    flex-shrink: 0;
  }

  .hero-block__image img {
    width: 100%;
  }

  .hero-block__image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .nav a {
    font-size: 18px;
    padding: 12px 0;
  }

  .logo img {
    width: 140px;
  }

  .contact-text {
    font-size: 16px;
  }

  .email,
  .phone {
    font-size: 16px;
  }

  .title {
    font-size: 56px;
  }

  .btn {
    padding: 18px 22px;
    font-size: 18px;
    white-space: nowrap;
  }

  .btn-card-advantages {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 1090px) {
  .input-icon input {
    height: 60px;
  }

  .form-title {
    font-size: 34px;
  }

  .header-container {
    padding: 25px 0;
  }
  .modal-content {
    max-width: 500px;
  }

  .description-white {
    white-space: normal;
  }

  .input-icon .icon-comments {
    top: 14%;
  }

  .btn-form {
    max-width: 300px;
  }

  .hero-block {
    padding-bottom: 50px;
  }
  .hero-block__content {
    position: relative;
  }

  .form-abs {
    position: absolute;
    width: 100%;
  }

  #form-hero .input-container {
    width: 100%;
    height: 70px;
  }

  #form-hero .input-container input {
    height: 100%;
  }

  .hero-block__text {
    flex: 1.2;
  }

  .input-container input {
    max-width: 100%;
  }

  .input-container input {
    padding-left: 65px;
  }

  .input-container .input-icon {
    left: 30px;
    width: 20px;
    height: 20px;
  }

  .contact-info-header {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .phone {
    font-weight: 700;
    font-size: 24px;
  }

  .email {
    margin: 0;
  }
  .logo img {
    width: 200px;
  }

  .nav a {
    font-size: 16px;
  }

  .btn {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
  }

  .btn-circle {
    width: 60px;
    height: 60px;
  }

  .nav li {
    padding: 0 33px;
  }

  .card-title {
    font-size: 24px;
  }

  .card-text {
    font-size: 14px;
    margin-bottom: 70px;
  }

  .title-white {
    font-weight: 600;
    font-size: 48px;
  }

  .desc {
    font-size: 18px;
  }

  .title-card-case {
    font-size: 28px;
    font-weight: 700;
    max-width: 679px;
  }

  .box {
    font-size: 16px;
  }

  .section-text,
  .card-text-advantages {
    font-size: 16px;
  }

  .content {
    gap: 30px;
  }

  .case-container {
    padding: 60px 50px;
  }

  .card-btn-case .btn-circle-case {
    font-size: 28px;
  }

  .case-container::before {
    opacity: 0.9;
  }
  .btn-case {
    font-size: 24px;
    font-weight: 600;
  }

  .img-advantages img {
    max-width: 60%;
  }

  .card-advantages {
    padding: 60px 17px 10px 30px;
  }

  .card-title-advantages {
    font-size: 24px;
  }

  .section-title {
    font-weight: 600;
    font-size: 48px;
  }

  .about-content {
    flex-direction: column;
    gap: 60px;
  }

  #quote-form {
    display: flex;
    flex-direction: column;
  }

  .input-icon .icon-comments {
    top: 13%;
  }

  .button-fit-content {
    width: 430px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .policy-center {
    max-width: 380px;
    margin: 0 auto;
    padding-top: 20px;
  }

  .form-input {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .form-input > * {
    flex: 1;
  }

  .input-icon textarea {
    height: 200px;
  }

  .contact-content {
    max-width: 100%;
    padding: 55px 80px;
  }

  .contact-details {
    display: flex;
    gap: 23px;
    flex-direction: column-reverse;
  }
  .form-title {
    font-size: 36px;
  }

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

  .description-white {
    margin-bottom: 40px;
  }

  .info-header {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .slider-container {
    padding: 50px 50px;
  }

  .review {
    flex: 0 0 calc(100% / 2 - 10px);
  }

  .footer-menu {
    align-items: flex-start;
  }

  .btn-footer {
    margin-top: 0px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links a {
    font-size: 16px;
  }

  .cont-3 {
    display: flex;
    gap: 23px;
    flex-direction: column;
  }

  .cont-1 .logo {
    margin-bottom: 35px;
  }

  .contact-details {
    margin-right: 0px;
  }

  .contact-details-all {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 23px;
  }

  .email-footer {
    font-size: 20px;
  }

  .btn-footer-text {
    font-size: 16px;
  }

  #form-hero .btn {
    max-width: 255px;
    width: 100%;
    height: 70px;
  }

  #form-hero .btn-circle {
    width: 90px;
    height: 70px;
  }

  .card-slogan {
    margin-bottom: 29px;
  }

  .card {
    padding: 40px 45px 10px 40px;
  }

  .footer-container {
    padding: 60px 80px;
  }

  .text-block__content {
    padding: 70px 80px 50px;
  }

  .block-h1 {
    font-size: 36px;
  }

  .block-h2,
  .block-title {
    font-size: 28px;
  }

  .ordered-list,
  .block-text,
  .text-block,
  .text-bold {
    font-size: 16px;
  }

  .gallery-item img {
    max-width: 380px;
    height: 285px;
  }

  .data-table thead th {
    padding: 27px 30px;
    font-size: 16px;
  }

  .data-table td {
    font-size: 14px;
    padding: 18px 30px;
  }

  .price {
    font-size: 24px;
  }

  .tarif-content {
    height: 320px;
    justify-content: space-around;
  }

  .card-receive {
    gap: 30px;
  }

  .title-card-receive {
    font-size: 28px;
  }

  .desc-receive {
    font-size: 20px;
  }

  .case-title {
    margin-bottom: 30px;
  }

  .text-30 {
    font-size: 22px;
  }

  .breadcrumb {
    padding: 15px 0 10px 10px;
  }
}

@media (max-width: 992px) {
  .card-container-1 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card-advantages {
    padding: 30px 17px 10px 30px;
  }

  .card-advantages {
    width: auto;
  }

  .breadcrumb {
    display: none;
  }

  .tarif-content {
    height: auto;
  }

  .breadcrumb_mobul {
    display: block;
  }

  .breadcrumb_mobul {
    padding: 15px 0 25px 10px;
    font-size: 14px;
  }

  .review-2 {
    min-width: calc(100% / 1 - 10px);
  }

  .burger-menu,
  .phone-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 100px;
    overflow: hidden;
  }

  .burger-menu img {
    width: 30px;
    height: auto;
  }

  .phone-icon img {
    width: 30px;
    height: auto;
  }

  .nav {
    display: none;
    width: 100%;
    max-width: 700px;
    margin: 10px auto;
    padding: 10px;
    background-color: #fff;
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;
    z-index: 10;
    transform: translateX(0);
    transition: transform 0.3s ease;
    border-radius: 40px;
  }

  .modal-mass {
    width: 600px;
    padding: 50px;
  }

  .modal-mass-title {
    font-size: 40px;
  }

  .modal-mass-text {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .contact-info-header {
    display: none;
    position: absolute;
    width: 100%;
    max-width: 700px;
    margin: 10px auto;
    padding: 10px;
    top: 180px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 45px;
    border-radius: 40px;
    z-index: 1000;
  }

  .button-mobul {
    display: flex;
    align-items: center;
  }

  .contact-info-header.active {
    display: block;
  }

  .menu-modul {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-align: left;
    border-radius: 5px;
    padding: 20px 33px;
    font-weight: 700;
    font-size: 22px;
  }

  .contact-mobul {
    display: block;
    margin-bottom: 37px;
    color: var(--black);
    text-align: left;
    border-radius: 5px;
    font-weight: 700;
    font-size: 22px;
  }

  .extra-nav {
    display: block;
  }

  .nav.active {
    transform: translateX(0);
    display: block;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .nav a {
    text-align: left;
  }

  .close-menu,
  .close-contact-info {
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: #000;
    display: block;
  }

  .contact-text,
  .contact-info-header {
    display: none;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo img {
    max-width: 150px;
  }

  #form-hero .button-container {
    display: flex;
    width: 100%;
  }

  .menu-2{
    margin-top: 0px;
  }
  .submenu {
    position: relative;
    top: 100%;
    left: 0;
    background: white;
    padding: 0;
    border-radius: 40px;
    transition: visibility 0s, opacity 0.3s ease-in-out;
    z-index: 10000;
    box-shadow: none;
    font-size: 14px;
  }

  .submenu li a {
    color: #7b7b7b;
  }

  .submenu li {
    color: #7b7b7b;
    padding: 0;
  }

  .block-solution {
    gap: 20px;
    flex-direction: column;
  }

  .card-solution {
    background-image: url(/bitrix/templates/ctr/assets/images/Subtract-case.svg);
  }

  .block-tarif-cards {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .our-advantages-services .card-btn-advantages {
    position: absolute;
    top: 0;
    right: 0;
  }

  .extra-nav {
    margin-bottom: 30px;
  }
  .btn-circle-none {
    display: none;
  }

  #form-hero .btn {
    max-width: 655px;
  }
  .hero-block__content {
    flex-direction: column;
    margin-bottom: 100px;
  }

  .menu-2 {
    margin-top: 0;
  }

  .extra-nav {
    margin-bottom: 0;
  }

  .opic {
    text-align: center;
    margin-bottom: 0;
  }

  .title {
    text-align: center;
    padding-bottom: 23px;
  }

  .card-container-1 {
    grid-template-columns: 1fr;
  }

  .title-serv {
    text-align: center;
    padding-bottom: 5px;
  }

  .hero-block__image img {
    width: 80%;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-block__text {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }

  .input-icon input {
    height: 60px;
  }

  .form-title {
    font-size: 34px;
  }

  .modal-content {
    max-width: 500px;
  }

  .description-white {
    white-space: normal;
  }

  .input-icon .icon-comments {
    top: 14%;
  }

  .btn-form {
    max-width: 300px;
  }

  .form-abs {
    bottom: -25%;
  }

  .form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .card-container {
    gap: 20px;
  }

  .card-title {
    font-size: 700;
  }

  .card-case {
    background-image: url("/bitrix/templates/ctr/assets/images/Subtract-case.svg");
    background-size: cover;
    background-position: right top;
    padding: 40px 50px;
  }

  body::before {
    transform: translate(-50%, -40%);
    width: 160%;
    height: 120%;
  }

  .card-btn-case .btn-circle-case {
    width: 70px;
    height: 70px;
  }

  .case-title {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
  }

  .content {
    flex-direction: column;
  }

  .card-text-advantages {
    margin-bottom: 20px;
  }

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

  .btn-card-advantages,
  .btn-card {
    width: 90px;
    height: 90px;
  }

  .info-header {
    margin-bottom: 20px;
    gap: 20px;
  }

  .card-receive {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

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

  .card-receive {
    gap: 20px;
  }

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

  .about-company {
    padding-bottom: 60px;
  }
}

@media (max-width: 700px) {
  .form-abs {
    bottom: -20%;
  }

  .policy {
    text-align: center;
  }

  .play-btn {
    width: 50px;
    height: 50px;
  }

  .play-icon {
    width: 16px;
  }
  .content-rab {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .card-case-rabota {
    padding: 40px;
    height: auto;
  }
}

@media (max-width: 640px) {
  .extra-nav a {
    font-size: 17px;
  }

  .header {
    padding-bottom: 0;
  }

  .block-h1,
  .block-h2,
  .ordered-list,
  .block-text,
  .text-block,
  .text-bold,
  .block-title {
    text-align: left;
  }

  .text-block__content {
    padding: 60px 50px 20px;
  }

  .btn-card-advantages,
  .btn-card {
    width: 80px;
    height: 80px;
  }

  .case .wrapper {
    padding: 0;
  }

  .modal-mass {
    width: 500px;
    padding: 40px;
  }

  .modal-mass-title {
    font-size: 30px;
  }

  .modal-mass-text {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .modal-mass-button {
    padding: 25px;
    font-size: 18px;
  }
  .footer .wrapper {
    padding: 0;
  }

  .footer-container {
    margin-bottom: 0;
    border-radius: 40px 40px 0 0;
  }

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

  .contact-info-header,
  .nav {
    max-width: 500px;
  }

  .form-abs {
    bottom: -29%;
  }

  .hero-block__content {
    margin-bottom: 150px;
  }

  .review {
    flex: 0 0 calc(100% / 1 - 10px);
  }

  .card-solution {
    padding: 40px;
  }

  .card-btn-case-black .btn-circle-case-red {
    width: 60px;
    height: 60px;
  }

  .receive-container {
    padding: 60px 50px;
  }

  .section-title {
    margin-bottom: 15px;
  }
}

@media (max-width: 560px) {
  .btn-card-advantages,
  .btn-card {
    width: 65px;
    height: 65px;
  }

  .footer-menu {
    gap: 20px;
    justify-content: center;
  }

  .extra-nav a {
    font-size: 15px;
    padding: 10px 0;
  }

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

  .button-fit-content {
    width: 300px;
  }

  .contact-details-all {
    flex-direction: row;
  }

  .footer-li-mobul {
    margin-bottom: 30px;
  }

  .cont-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .cont-1 .logo {
    margin-bottom: 0px;
  }

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

  .footer-menu {
    margin-bottom: 0;
  }

  .btn {
    font-size: 18px;
  }
  .footer-links li {
    margin-right: 0px;
  }

  .btn-form {
    max-width: 220px;
  }

  #form textarea {
    height: 140px;
  }

  .footer-text-container {
    align-items: center;
  }

  .card-btn-case-black .btn-circle-case-red {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .modal-mass {
    width: 300px;
    padding: 30px;
  }

  .modal-mass-title {
    font-size: 25px;
  }

  .modal-mass-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .modal-mass-button {
    padding: 10px;
    font-size: 16px;
  }

  .wrapper {
    padding: 0 20px;
  }

  .contact-info-header,
  .nav {
    max-width: 400px;
  }

  .contact-content {
    padding: 36px 42px;
  }

  #form-hero .btn {
    font-size: 18px;
  }

  .logo img {
    max-width: 120px;
  }

  .burger-menu,
  .phone-icon {
    width: 35px;
    height: 35px;
  }

  .phone-icon img {
    width: 25px;
  }

  .btn {
    font-size: 16px;
    font-weight: 700;
    padding: 22px 22px;
  }

  .modal-content {
    max-width: 400px;
  }

  .extra-nav a {
    font-size: 14px;
  }
  .header {
    padding-bottom: 0;
  }

  .slogan {
    font-size: 18px;
    margin-bottom: 0;
  }

  .title {
    font-size: 36px;
  }

  .form-abs {
    bottom: -45%;
  }

  .card-case {
    padding: 36px 21px;
  }

  .card-text-advantages {
    margin-bottom: 0px;
  }

  .card-btn-case .btn-circle-case {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .title-card-case {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .card-case {
    margin-bottom: 30px;
  }

  .section {
    margin-bottom: 40px;
  }

  .card-advantages {
    padding: 20px 17px 30px 20px;
  }

  .card-btn-advantages {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .section-title {
    font-size: 35px;
  }
  .slider-container {
    padding: 40px 20px;
  }

  .title-white {
    font-size: 30px;
  }

  .footer-container {
    padding: 40px 30px;
  }

  .footer-menu {
    flex-direction: column;
    align-content: center;
  }

  .cont-1 {
    margin: 0 auto;
  }

  .footer-links li {
    margin-right: 0;
    align-items: center;
  }

  .hero-block__content {
    margin-bottom: 220px;
  }

  .footer-li-mobul {
    margin: 0 auto;
    align-items: center;
  }

  .contact-info {
    align-items: center;
    flex-direction: column;
  }

  .section-text li {
    margin-left: 20px;
  }

  .footer-text-container {
    gap: 20px;
  }

  .contact-details-all {
    flex-direction: row;
  }

  .input-icon textarea {
    height: 140px;
  }

  .modal-content {
    padding: 50px 30px;
  }

  .contact-details {
    flex-direction: column-reverse;
  }

  .logo .footer-logo {
    max-width: 165px;
  }

  body::before {
    transform: translate(-50%, -40%);
    width: 160%;
    height: 120%;
  }

  .title {
    padding-bottom: 0px;
  }

  .btn-form {
    max-width: 240px;
  }

  .our-review .wrapper {
    padding: 0;
  }

  .about-company {
    padding-bottom: 40px;
  }

  .text-block .wrapper {
    padding: 0;
  }

  .text-block__content {
    padding: 40px 30px 20px;
  }

  .block-h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .block {
    margin-bottom: 40px;
  }

  .block-h2,
  .block-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .ordered-list,
  .block-text,
  .text-block,
  .text-bold {
    font-size: 15px;
  }

  .ordered-list li {
    margin-bottom: 15px;
  }

  .text-bold {
    padding: 30px;
    line-height: 160%;
  }

  .review-2 {
    padding: 30px;
  }
  .breadcrumb_mobul {
    padding-left: 0px;
  }

  .gallery-item {
    min-width: calc(100% / 1 - 10px);
  }

  .page-counter {
    max-width: 260px;
    width: 100%;
  }

  .doc {
    display: flex;
  }

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

  .document-container img {
    margin-right: 15px;
  }

  .document-container button {
    padding: 0;
    font-size: 14px;
  }

  .document-name {
    font-size: 16px;
  }

  #video {
    height: 180px;
  }

  .title-serv {
    font-size: 32px;
  }
  .opic {
    font-size: 16px;
  }

  .solution .wrapper {
    padding: 0;
  }

  .solution-container {
    padding: 30px 20px;
  }
  .card-solution {
    min-height: 160px;
  }
  .title-solution {
    font-size: 32px;
    font-weight: 600;
  }

  .solution-text {
    gap: 30px;
  }

  .solution-desc {
    font-size: 16px;
  }

  .solution-container {
    padding: 30px 20px 60px;
  }

  .section-title {
    font-size: 28px;
  }

  .card-title-advantages {
    font-size: 20px;
  }

  .section-text,
  .card-text-advantages {
    font-size: 14px;
  }

  .our-services .card-advantages {
    padding: 40px;
  }

  .receive .wrapper {
    padding: 0;
  }

  .title-card-receive {
    font-size: 18px;
  }

  .desc-receive {
    font-size: 14px;
  }

  .card-receive {
    padding: 30px;
  }

  .receive-container {
    padding: 50px 20px;
  }

  .text-22 {
    font-size: 16px;
  }

  .block-rabota {
    margin-top: 30px;
  }

  .our-services .img-service {
    width: 70px;
  }

  .card-top-services {
    margin-top: 20px;
  }
  .title-white-52 {
    font-size: 28px;
  }

  .desc-tarif {
    font-size: 16px;
  }
  .card-case-rabota {
    padding: 30px 0 30px 40px;
  }
}

@media (max-width: 360px) {
  .text-block__content {
    padding: 30px 20px 10px;
  }

  .logo img {
    max-width: 100px;
  }

  .phone-icon img {
    width: 16px;
  }

  .burger-menu img {
    width: 20px;
  }

  .header-container .btn {
    font-size: 11px;
  }

  .extra-nav a {
    font-size: 11px;
    padding: 5px 0;
  }

  .slogan {
    font-size: 16px;
  }

  .title {
    font-size: 32px;
  }

  .form-abs {
    bottom: -65%;
  }

  #form-hero .input-container {
    height: 60px;
  }

  #form-hero .btn {
    max-width: 255px;
    height: 60px;
    font-size: 16px;
  }

  #form-hero .btn-circle {
    width: 60px;
    height: 60px;
  }

  .btn-card-advantages,
  .btn-card {
    width: 75px;
    height: 75px;
  }

  .case-container {
    padding: 50px 20px;
  }

  .title-white {
    font-size: 28px;
  }

  .desc {
    font-size: 14px;
  }

  .title-card-case {
    font-size: 20px;
  }

  .section-text,
  .card-text-advantages {
    font-size: 16px;
  }

  .box {
    font-size: 12px;
    width: 120px;
    padding: 10px;
  }

  .case-title {
    gap: 10px;
    margin-bottom: 20px;
  }

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

  #form-hero .btn {
    font-size: 16px;
  }

  .policy {
    font-size: 12px;
  }

  .card-btn-case {
    right: -5px;
    top: -5px;
  }

  .btn-card-advantages,
  .btn-card {
    width: 70px;
    height: 70px;
  }

  .card-btn-advantages {
    top: 0px;
    right: 0px;
  }

  .case-container::before {
    background-size: 390%;
  }

  .btn-case {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .btn-more {
    margin: 0 auto;
    font-size: 16px;
  }

  .form-title {
    font-size: 28px;
  }

  .description-white {
    font-size: 16px;
  }

  .contact-content {
    padding: 36px 25px;
  }

  .form-title {
    margin-bottom: 10px;
  }

  .description-white {
    margin-bottom: 20px;
  }

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

  .form-input {
    gap: 0;
  }

  .icon {
    left: 10%;
  }

  .input-icon textarea {
    font-size: 16px;
  }

  .button-fit-content {
    width: 280px;
  }

  .input-icon textarea {
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .review {
    padding: 30px;
  }

  .prev-btn,
  .next-btn {
    width: 50px;
    height: 50px;
  }

  .page-counter {
    padding: 18px 20px;
    width: 100%;
  }

  .footer-menu {
    gap: 0;
  }

  .cont-1 {
    padding-bottom: 30px;
  }

  .button-mobul .btn {
    font-size: 16px;
  }

  .modal-content {
    padding: 40px 20px;
    max-width: 320px;
  }

  .btn-form {
    max-width: 220px;
  }

  .close {
    top: 15px;
  }
  .modal-content .btn {
    font-size: 18px;
  }
  .menu-2 {
    margin-top: 15px;
  }
  .contact-info-header,
  .nav {
    max-width: 320px;
  }

  .nav {
    top: 150px;
  }

  .contact-info-header {
    top: 150px;
  }

  .contact-info-header .btn {
    padding: 20px 22px;
  }

  .contact-mobul {
    margin-bottom: 25px;
  }

  .page-counter {
    max-width: 200px;
  }

  .prev-btn_1,
  .next-btn_1,
  .prev-btn-gallery,
  .next-btn-gallery {
    width: 50px;
    height: 50px;
  }

  .footer-links {
    margin-bottom: 25px;
  }

  .header-container {
    padding: 25px 0 0;
  }

  .card-solution {
    background-image: url(/bitrix/templates/ctr/assets/images/Subtract-solution.svg);
  }

  .text-30 {
    font-size: 20px;
  }
  .card-solution {
    padding: 40px 0 30px 30px;
  }

  .card-solution .text-grey {
    font-size: 16px;
  }

  .our-services .img-service {
    width: 60px;
  }

  .card-receive img {
    width: 50px;
  }

  .receive-container .button-container {
    margin-top: 20px;
  }

  .card-case-rabota {
    padding: 30px;
  }

  .content-rab img {
    width: 56px;
  }

  .section-title {
    margin-bottom: 10px;
  }

  .hero-block__image {
    transform: scale(1.1);
  }

  .form-abs {
    bottom: -80%;
  }
}
.news_detail {
	border-radius: 30px;
    padding: 30px;
    overflow: hidden;
}
.date_share {
	display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.text_block_page ul.ya-share2__list {
	flex-direction: row;
    gap: 5px;
}
.new_page_flex {
	display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 40px;
}
.new_right_content {width: calc(100% - 390px);}
.new_left_content {
	width: 340px;
    border-radius: 30px;
    padding: 30px;
    overflow: hidden;
    background: var(--white);
}
.another_art {
	font-weight: 600;
    font-size: 22px;
    margin-bottom: 29px;
    color: var(--black);
    line-height: 1.2;
}
a.another_article {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
a.another_article img {
	width: 80px;
	height: 80px;
	object-fit: cover;
}
.another_article_right {
    width: calc(100% - 95px);
    display: flex;
    flex-direction: column;
    gap: 5px;
	margin-top: -4px;
}
.another_article_right .another_article_name {
    display: block;
    font-size: 16px;
    line-height: 1.3;
    color: var(--black);
    font-weight: 500;
}
.show_another_arts {
	display: flex;
    flex-direction: column;
    gap: 20px;
	margin-bottom: 30px;
}
.another_article:hover .another_article_name {color: var(--red);}
.search-tags-cloud {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
    margin-top: -15px;
}
.search-tags-cloud a {
    font-family: var(--font-primary);
    background: #eef2f4;
    color: var(--black) !important;
    padding: 0px 10px;
    border-radius: 10px;
    cursor: pointer;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-tags-cloud a:hover {
	background: var(--red);
	color: #ffffff !important;
}
form[name="arrFilter_form"] {display: none !important;}
.search_tag {
	margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 20px;
}
.search_tag a {
	color: var(--red);
    text-decoration: underline;
    cursor: pointer;
}
.search_tag a:hover {color: var(--black);}
.news_detail > ul > li, .news_detail > ol > li {
	display: flex;
    align-items: center;
    gap: 10px;
}
.news_detail > ul > li:before {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    background: var(--red);
    border-radius: 50%;
	min-width: 7px;
}
.news_detail > ol {
	list-style-type: none; 
    counter-reset: num;
}
.news_detail > ol > li:before {
    content: counter(num) '. ';
    counter-increment: num;
    color: var(--red);
    font-style: normal;
}
@media (max-width: 992px){
	.new_page_flex {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
	}
	.new_right_content, .new_left_content {width: 100%;}
	.blog_page_section {margin-top: 30px;}
	.news_detail {margin-top: 10px;}
}
.case-container2 .title-card-case {max-width: 89%;}
@media (max-width: 992px){
	.card-case {background: #fff;}
	.card-btn-case .btn-circle-case {background: transparent;}
}
@media (max-width: 767px){
	.card-btn-case .btn-circle-case {
		margin-top: 10px;
        margin-right: 10px;
	}
}