.about {
  padding: 96px 70px 96px;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 60px;
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1279px) {
  .about {
    padding: 70px 96px 70px;
  }
}

@media (max-width: 1200px) {
  .about {
    padding: 70px 60px 70px;
    gap: 40px;
  }
}

@media (max-width: 1023px) {
  .about {
    padding: 50px 30px 50px;
  }
}

@media (max-width: 903px) {
  .about {
    padding: 50px 30px 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 70px 15px 70px;
  }
}
.advantages {
  padding: 96px 0 96px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  min-height: 500px;
  background: linear-gradient(to right, #515dfc, #8a4acd);
  box-sizing: border-box;
  /* border: 1px solid red; */
}

@media (max-width: 1279px) {
  .advantages {
    padding: 70px 0 70px;
  }
}

@media (max-width: 767px) {
  .advantages {
    padding: 70px 15px 70px;
  }
}
* html {
  padding: 0;
  margin: 0;
}

.body {
  min-width: 320px;
  /* max-width: 1440px; */
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  color: #000000;
  background-color: #f2f2f2;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #1e0ff4 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 300px;
  /* max-width: 1440px; */
  background-color: #111827;
  margin: 0;
  padding: 96px 70px 96px;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #9ca3af;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

@media (max-width: 1279px) {
  .footer {
    padding: 70px 96px 70px;
  }
}

@media (max-width: 1200px) {
  .footer {
    padding: 70px 60px 70px;
  }
}

@media (max-width: 1023px) {
  .footer {
    padding: 50px 60px 50px;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 70px 60px 70px;
  }
}

@media (max-width: 500px) {
  .footer {
    padding: 70px 15px 70px;
  }
}
.form {
  margin: 0;
  padding: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f6f4f4;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

/* Контейнер для поля ввода и ошибки */

.form__field-container {
  padding: 0;
  position: relative;
}

/* Исходное состояние - резервируем место для ошибок */

.form__error {
  display: block;
  min-height: 20px;
  /* Резервируем фиксированную высоту */
  color: #ff0000;
  font-size: 14px;
  margin-top: 5px;
  opacity: 0;
  /* Скрываем, но место остается */
  transition: opacity 0.3s ease;
  line-height: 1.2;
}

/* Показываем ошибку */

.form__error.show {
  opacity: 1;
}

/* Исходное состояние поля - без рамки */

.form__table_data-input,
.form__table_input_about {
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

/* Состояние при вводе - фиолетовая рамка */

.form__table_data-input.typing,
.form__table_input_about.typing {
  border-color: #8a2be2;
}

/* Состояние ошибки - красная рамка */

.form__table_data-input.invalid,
.form__table_input_about.invalid {
  border-color: #ff0000;
}

/* Состояние валидности - зеленая рамка */

.form__table_data-input.valid,
.form__table_input_about.valid {
  border-color: #00aa00;
}

/* Стили для неактивной кнопки */

.form__submit-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.form__submit-button:enabled {
  transition: all 0.3s ease;
}

/* Счетчик символов для textarea */

.form__char-counter {
  font-size: 12px;
  color: #666;
  text-align: right;
  margin-top: 3px;
}

.form__char-counter.over-limit {
  color: #ff0000;
}

@media (max-width: 1279px) {
  .form {
    padding: 70px 0 70px;
  }
}
.header {
  padding: 5px 50px 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  max-width: 99, 7%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 1s ease 0.4s both;
}

.header:first-child {
  align-self: flex-start;
  justify-content: flex-start;
}

header.scrolled {
  background: rgba(102, 126, 234, 0.95);
  backdrop-filter: blur(10px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .header {
    display: flex;
    justify-content: space-between;
    padding: 5px 20px 5px;
  }
}

.mainpage-websait {
  background-color: #d3fafe !important;
}
.mainpage {
  padding: 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 100vh;
  background-color: #e9f0ff;
  box-sizing: border-box;
}

@media (max-width: 1279px) {
  .mainpage {
    padding: 70px;
  }
}

@media (max-width: 1023px) {
  .mainpage {
    padding: 50px 60px 50px;
  }
}

@media (max-width: 903px) {
  .mainpage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 20px 20px 70px;
  }
}

@media (max-width: 600px) {
  .mainpage {
    padding: 20px 15px 20px;
    gap: 25px;
  }
}
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.error-container {
  max-width: 600px;
}

.error-code {
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  animation: glitch 1s infinite;
}

.error-title {
  font-size: 32px;
  margin: 20px 0;
  font-weight: 600;
}

.error-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-primary {
  background: #fff;
  color: #667eea;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.search-box {
  margin-top: 40px;
  width: 100%;
  max-width: 400px;
}

.search-input {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.helpful-links {
  margin-top: 50px;
}

.helpful-links h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.helpful-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.helpful-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.helpful-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

@keyframes glitch {
  0%, 100% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }
}

@media (max-width: 768px) {
  .error-code {
    font-size: 100px;
  }

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

  .error-description {
    font-size: 16px;
  }
}
.body-server {
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  background: #e74c3c;
  color: white;
  text-align: center;
  padding: 20px;
}

.h1-server {
  font-size: 100px;
  margin: 0;
}

.h2-server {
  font-size: 32px;
  margin: 20px 0;
}

.p-server {
  font-size: 18px;
  margin-bottom: 30px;
}

.a-server {
  display: inline-block;
  padding: 12px 30px;
  background: white;
  color: #e74c3c;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.privacy-agreement {
  margin: 0;
  display: flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: clamp(0.75rem, 0.7143rem + 0.1786vw, 0.875rem);
  color: #666;
}

.privacy-agreement.invalid {
  color: #ff0000;
}

.privacy-agreement.invalid a {
  color: #ff0000;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .privacy-agreement {
    gap: 5px;
  }
}

.privacy-agreement input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.privacy-agreement a {
  color: #4CAF50;
  text-decoration: underline;
}
.production {
  padding: 70px 500px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  gap: 24px;
}

@media (max-width: 2309px) {
  .production {
    padding: 70px 500px 70px;
  }
}

@media (max-width: 2069px) {
  .production {
    padding: 70px 300px 70px;
  }
}

@media (max-width: 1669px) {
  .production {
    padding: 70px 100px 70px;
  }
}

@media (max-width: 1279px) {
  .production {
    padding: 70px 30px 70px;
  }
}

@media (max-width: 767px) {
  .production {
    padding: 70px 15px 70px;
  }
}
.services {
  padding: 96px 70px 96px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

@media (max-width: 2309px) {
  .services {
    padding: 70px 500px 70px;
  }
}

@media (max-width: 2069px) {
  .services {
    padding: 70px 300px 70px;
  }
}

@media (max-width: 1669px) {
  .services {
    padding: 70px 100px 70px;
  }
}

@media (max-width: 1279px) {
  .services {
    padding: 70px 0 70px;
  }
}

@media (max-width: 767px) {
  .services {
    padding: 70px 15px 70px;
  }
}
.about__btn_project {
  align-self: center;
  margin-top: 40px;
  width: 220px;
}
.about__foto {
  max-width: 500px;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 1280px) {
  .about__foto {
    max-width: 400px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .about__foto {
    width: 100%;
    height: auto;
  }
}
.about__me {
  display: flex;
  flex-direction: column;
  max-width: 880px;
}
.about__me_mission {
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: #eff6ff;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 903px) {
  .about__me_mission {
    width: 100%;
  }
}
.about__me_text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: -1px;
  color: #374151;
}
.about__me_title {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #374151;
}
.about__table {
  padding: 0 0 15px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.about__table_logo {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 14px;
  height: 14px1;
}
.about__table_text {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #374151;
}
.about__table_title {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: #374151;
}
.about__text {
  margin: 0;
  padding: 0 0 24px 0;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.7679rem + 0.5357vw, 1.25rem);
  line-height: 25px;
  color: #374151;
  width: 100%;
}
.about__title {
  margin: 0;
  padding: 0 0 24px 0;
  font-weight: 600;
  font-size: clamp(1.875rem, 1.5179rem + 1.7857vw, 3.125rem);
  line-height: 100%;
  color: #374151;
  width: 100%;
}
.advantages__subtitle {
  margin: 0;
  padding: 0 0 24px 0;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.7679rem + 0.5357vw, 1.25rem);
  line-height: 25px;
  text-align: center;
  color: white;
}
.advantages__table {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

@media (max-width: 1029px) {
  .advantages__table {
    margin: 0 100px 0;
  }
}

@media (max-width: 806px) {
  .advantages__table {
    margin: 0 30px 0;
  }
}

@media (max-width: 700px) {
  .advantages__table {
    margin: 0;
  }
}
.advantages__table-element {
  width: 210px;
  height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1029px) {
  .advantages__table-element {
    min-width: 290px;
    min-height: 190px;
  }
}

/* @media (max-width: 705px) {
  .advantages__table-element {
        min-width: 520px;
        min-height: 190px;
  }
}  */

@media (max-width: 636px) {
  .advantages__table-element {
    width: 85%;
  }
}

/* @media (max-width: 636px) {
  .advantages__table-element {
    min-width: 390px;
  }
}  */
.advantages__table_fast-title {
  color: #f472b6;
}
.advantages__table_img {
  margin-top: 20px;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.advantages__table_img-fast {
  background-color: #f472b6;
}
.advantages__table_img-price {
  background-color: #facc15;
}
.advantages__table_img-quality {
  background-color: #4ade80;
}
.advantages__table_img-support {
  background-color: #22d3ee;
}
.advantages__table_logo {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
}
.advantages__table_price-title {
  color: #facc15;
}
.advantages__table_quality-title {
  color: #4ade80;
}
.advantages__table_subtitle {
  margin: 0;
  padding: 0 30px 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: white;
}
.advantages__table_support-title {
  color: #22d3ee;
}
.advantages__table_title {
  margin: 0;
  padding-top: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
}
.advantages__title {
  margin: 0;
  padding: 0 0 24px 0;
  font-weight: 600;
  font-size: clamp(1.875rem, 1.5179rem + 1.7857vw, 3.125rem);
  line-height: 100%;
  text-align: center;
  color: white;
}
.footer__company {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 15px;
  width: 30%;
}

@media (max-width: 730px) {
  .footer__company {
    width: 100%;
  }
}
.footer__company_about {
  margin: 0;
}
.footer__company_logo {
  width: 127px;
  height: 36px;
}
.footer__company_logo-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f4f4;
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.footer__company_logo-social {
  padding: 12px 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1f2937;
  transition: transform 0.2s ease;
}

.footer__company_logo-social:hover {
  opacity: 0.7;
  transform: scale(1.09);
}
.footer__company_logotips {
  position: sticky;
  right: 10px;
  top: 100px;
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 60px;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  width: 20%;
  box-sizing: border-box;
}

@media (max-width: 730px) {
  .footer__contacts {
    width: 100%;
  }
}
.footer__contacts_table {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  list-style-type: none;
}
.footer__contacts_table-day {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #9ca3af;
  min-width: 170px;
}
.footer__contacts_table-email {
  background-image: url("../logo-svg/trungul_svg.svg");
  background-size: cover;
  width: 17px;
  height: 17px;
}

.footer__contacts_table-email::after {
  margin-left: 30px;
  content: "@digistart_help";
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #9ca3af;
}
.footer__contacts_table-number {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #9ca3af;
  min-width: 170px;
}
.footer__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1440px;
}

@media (max-width: 730px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.footer__line {
  margin: 48px 0 0;
  padding: 32px 0 0;
  width: 1440px;
  border-top: 1px solid #dadada;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 627px) {
  .footer__line {
    flex-direction: column-reverse;
    gap: 5px;
  }
}

@media (max-width: 1580px) {
  .footer__line {
    width: 98%;
  }
}
.footer__privacy {
  color: #4CAF50;
  text-decoration: underline;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  /* color: #9ca3af; */
}
.footer__services {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  width: 25%;
}

@media (max-width: 920px) {
  .footer__services {
    width: 30%;
  }
}

@media (max-width: 730px) {
  .footer__services {
    width: 100%;
  }
}
.footer__services_title {
  margin: 0 0 25px;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: white;
}
.footer__services_title-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #9ca3af;
  text-decoration: none;
  transition: transform 0.2s ease,
    color 0.2s ease;
}

/* 
.footer__services_title-link:active {
    transform: scale(1.1);
} */

.footer__services_title-link:hover {
  opacity: 0.7;
  transform: scale(1.04);
  color: white;
}
.footer__wots {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  color: #9ca3af;
}
.form__button {
  margin-top: 15px;
  padding: 16px 32px;
  text-decoration: none;
  background: linear-gradient(to right, #515dfc, #8a4acd);
  border-radius: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.form__button:hover {
  opacity: 0.7;
  transform: scale(1.04);
}
.form__char-counter {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.form__input-privacy {
  display: block;
  min-height: 40px;
  /* Резервируем фиксированную высоту */
  color: #ff0000;
  font-size: 14px;
  margin-top: 5px;
  opacity: 0;
  /* Скрываем, но место остается */
  transition: opacity 0.3s ease;
  line-height: 1.2;
}

.form__input-privacy.show {
  opacity: 1;
}

.form__table {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #eff6ff, #faf5ff);
  border-radius: 20px;
  max-width: 850px;
  border: 1px solid black;
}

/* @media (max-width: 1279px) {
    .form__table {
        width: 60%;
    }
} */

@media (max-width: 1023px) {
  .form__table {
    padding: 38px;
    margin: 0;
    /* width: 70%; */
  }
}

@media (max-width: 900px) {
  .form__table {
    width: 70%;
  }
}

@media (max-width: 767px) {
  .form__table {
    width: 70%;
  }
}

@media (max-width: 600px) {
  .form__table {
    padding: 15px;
    width: 80%;
  }
}
.form__table-checkbox {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  /* padding-left: 12px; */
}

@media (max-width: 600px) {
  .form__table-checkbox {
    padding-left: 10px;
  }
}
.form__table-checkbox-all {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}

@media (max-width: 750px) {
  .form__table-checkbox-all {
    flex-direction: row;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.form__table_data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .form__table_data {
    width: 100%;
  }
}
.form__table_data-checkbox {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: flex-start; */
  gap: 10px;
  margin-bottom: 5px;
  padding-left: 5px;
  width: 100%;
  border: none;
  text-align: left;
}

@media (max-width: 1023px) {
  .form__table_data-checkbox {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .form__table_data-checkbox {
    padding: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .form__table_data-checkbox-context {
    padding: 0;
    margin-right: 30px;
    margin-bottom: 10px;
  }
}
.form__table_data-checkbox-description {
  margin: 0;
  padding: 0 12px 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  color: #374151;
}

@media (max-width: 600px) {
  .form__table_data-checkbox-description {
    margin-top: 15px;
    padding: 0;
  }
}
.form__table_data-checkbox-input {
  display: flex;
  justify-content: center;
  border: 1px solid #000;
  font-family: inherit;
  font-size: inherit;
  background-color: white;
  margin-top: 3px;
  margin-left: 20px;
  padding: 16px 24px;
  /* width: 20px; */
  border-radius: 10px;
  /* запрет на растягивание */
  /* resize: none; */
}

.form__table_data-checkbox-input::placeholder {
  color: rgb(0 0 0 / 0.6);
}

.form__table_data-checkbox-input:focus {
  /* outline: 2px solid #000; */
  outline-offset: 0;
}

@media (max-width: 600px) {
  .form__table_data-checkbox-input {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .form__table_data-checkbox-smm {
    padding: 0;
    margin-right: 34px;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .form__table_data-checkbox-target {
    padding: 0;
    margin: 0;
  }
}
.form__table_data-input {
  display: flex;
  border: 1px solid #000;
  font-family: inherit;
  font-size: inherit;
  background-color: white;
  margin-top: 15px;
  padding: 16px 24px;
  width: 360px;
  border-radius: 10px;
  box-sizing: border-box;
  /* запрет на растягивание */
  resize: none;
}

.form__table_data-input::placeholder {
  color: rgb(0 0 0 / 0.6);
}

.form__table_data-input:focus {
  outline: 0.3px solid #a99999;
  outline-offset: 0;
}

@media (max-width: 1023px) {
  .form__table_data-input {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .form__table_data-input {
    width: 250px;
  }
}

@media (max-width: 830px) {
  .form__table_data-input {
    width: 230px;
  }
}

@media (max-width: 767px) {
  .form__table_data-input {
    width: 100%;
  }
}
.form__table_data-label {
  padding: 0 0 12px;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  color: #374151;
}

@media (max-width: 1023px) {
  .form__table_data-label {
    padding: 0;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: left;
  }
}
.form__table_data-left {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border: none;
}

@media (max-width: 767px) {
  .form__table_data-left {
    flex-direction: column;
    width: 100%;
    gap: 1px;
  }
}
.form__table_data-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border: none;
}

@media (max-width: 767px) {
  .form__table_data-right {
    flex-direction: column;
    width: 100%;
    gap: 1px;
  }
}
.form__table_input_about {
  display: flex;
  border: 1px solid #000;
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
  margin-top: 15px;
  padding: 16px 24px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  /* запрет на растягивание */
  resize: none;
  background: #ffffff;
}

.form__table_input_about::placeholder {
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8036rem + 0.3571vw, 1.125rem);
  line-height: 30px;
  text-align: left;
  color: #c6c6c6;
}

.form__table_input_about:focus {
  outline: 0.3px solid #a99999;
  outline-offset: 0;
}
.form__table_label_about {
  padding: 0 12px 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  color: #374151;
  width: 100%;
}
.form__table_label_warning {
  width: 97%;
  /* padding: 7px 12px 0; */
  font-weight: 400;
  font-size: 12px;
  line-height: 25px;
  text-align: left;
  color: #a7abb4;
}
.form__table_label_warning-submit {
  text-align: center;
}
.form__table_textarea {
  width: 97%;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  color: #374151;
}

@media (max-width: 600px) {
  .form__table_textarea {
    margin-top: 5px;
    padding: 0;
  }
}
.form__text {
  margin: 0;
  padding: 0 24px 40px;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.7679rem + 0.5357vw, 1.25rem);
  line-height: 25px;
  text-align: center;
  color: #374151;
}

@media (max-width: 1280px) {
  .form__text {
    padding: 0 24px 40px;
  }
}
.form__title {
  margin: 0;
  padding: 0 24px 30px;
  font-weight: 600;
  font-size: clamp(1.875rem, 1.5179rem + 1.7857vw, 3.125rem);
  line-height: 100%;
  text-align: center;
  color: #374151;
}
.header__bar {
  display: none;
}

@media (max-width: 767px) {
  .header__bar {
    display: block;
    cursor: pointer;
    width: 40px;
    height: 43px;
    transition: transform 0.2s ease;
  }

  .header__bar:hover {
    opacity: 0.7;
    transform: scale(1.09);
  }
}
.header__burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.header__burger span {
  width: 25px;
  height: 3px;
  background: black;
  margin: 3px 0;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .header__burger {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

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

  .header__burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}
.header__link {
  padding: 8px 24px;
  text-decoration: none;
  background-color: #2563eb;
  border-radius: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: white;
  box-shadow: 0 10px 20px rgba(15, 11, 11, 0.3);
  transition: transform 0.2s ease;
}

.header__link:hover {
  opacity: 0.7;
  transform: scale(1.09);
}

@media (max-width: 1075px) {
  .header__link {
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  .header__link {
    padding: 8px 16px;
  }
}
.header__logo {
  display: flex;
  justify-self: flex-start;
  align-items: flex-start;
}
.header__logo_img {
  width: 127px;
  height: 36px;
  transition: transform 0.2s ease;
}

.header__logo_img:hover {
  opacity: 0.7;
  transform: scale(1.09);
}
.header__nav {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  /* gap: 50px; */
}
.header__nav-links {
  margin: 0;
  display: flex;
  list-style: none;
  gap: 2rem;
  color: #374151;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header__nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(102, 126, 234, 0.95);
    flex-direction: column;
    align-items: center;
    padding-top: 144px;
    transition: right 0.3s ease;
    display: none;
  }

  .header__nav-links.active {
    right: 0;
    display: flex;
    color: white;
  }
}
.header__nav_menu {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #374151;
  transition: transform 0.2s ease;
}

.header__nav_menu:hover {
  opacity: 0.7;
  transform: scale(1.09);
}

@media (max-width: 767px) {
  .header__nav_menu {
    color: white;
  }
}


.header__nav_menu-burger {
  display: none;
}

@media (max-width: 767px) {
  .header__nav_menu-burger {
    display: flex;
  }
}
/* .header__nav_menu-services {
    transition: transform 0.2s ease, color 0.2s ease;
}

.header__nav_menu-services:hover {
    opacity: 0.7;
    transform: scale(1.04);
    color: black;
} */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

@media (max-width: 767px) {
  .header-main {
    display: none;
    align-items: start;
  }
}
/* .mainpage__background {
    width: 100%;
    background-color:  #e9f0ff;
  } */
.landing__description_logo {
  margin-right: 7px;
  width: 15px;
  height: 10px;
}

@media (max-width: 399px) {
  .landing__description_logo {
    margin-right: 2px;
  }
}
.landing__info_price {
  /* width: 112px; */
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
}

@media (max-width: 1023px) {
  .landing__info_price {
    /* width: 112px; */
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    text-align: left;
  }
}

@media (max-width: 400px) {
  .landing__info_price {
    font-size: 14px;
  }
}

@media (max-width: 355px) {
  .landing__info_price {
    font-size: 12px;
  }
}
.landing__info_text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  max-width: 132px;
}

@media (max-width: 1023px) {
  .landing__info_text {
    font-size: 14px;
  }
}
.landing__text {
  margin: 0 0 32px;
  font-weight: 400;
  font-size: clamp(0.8125rem, 0.6875rem + 0.625vw, 1.25rem);
  animation: fadeInUp 1s ease 0.2s both;
  line-height: 25px;
  color: #374151;
}

@media (max-width: 767px) {
  .landing__text {
    margin: 0 0 16px;
    flex-basis: auto;
  }
}
.landing__title-main {
  margin: 48px 0 0;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0, 5em;
  font-size: clamp(1.875rem, 1.3393rem + 2.6786vw, 3.75rem);
  animation: fadeInUp 1s ease;
}

.landing__title {
  margin: 12px 0 12px;
  color: #2563eb;
  font-weight: 800;
  line-height: 1.2;
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 3.125rem);
  position: relative;
  overflow: hidden;
  height: 1.2em;
  /* Фиксированная высота для одной строки */
  text-align: left;
  /* Прижимаем к левому краю */
  width: 100%;
}

.text-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  white-space: nowrap;
  /* Принудительно в одну строку */
  transition: transform 0.6s ease-in-out,
    opacity 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(100%);
  /* Начальная позиция снизу */
}

.text-slide.active {
  opacity: 1;
  transform: translateY(0);
  /* Активная позиция */
}

.text-slide.slide-out-up {
  transform: translateY(-100%);
  /* Уход вверх */
  opacity: 0;
}

.text-slide.slide-in-down {
  transform: translateY(100%);
  /* Вход снизу */
  opacity: 0;
}

/* Мобильные устройства */

@media (max-width: 903px) {
  .landing__title-main {
    margin: 24px 0 12px;
  }

  .landing__title {
    font-size: clamp(1.125rem, 4vw, 2rem);
    height: 1.2em;
    /* Сохраняем фиксированную высоту */
    text-align: left;
    /* Остается прижатым к левому краю */
  }

  .text-slide {
    white-space: nowrap;
    /* Остается в одну строку */
    overflow: hidden;
    /* Обрезаем если не помещается */
    text-overflow: ellipsis;
    /* Добавляем троеточие если текст слишком длинный */
  }
}

@media (max-width: 480px) {
  .landing__title {
    font-size: clamp(1rem, 5vw, 1.5rem);
    height: 1.2em;
  }
}
.landing__title-websait {
  margin: 48px 0 0;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0, 5em;
  font-size: clamp(1.875rem, 1.3393rem + 2.6786vw, 3.75rem);
  animation: fadeInUp 1s ease;
}

.landing__title-websait {
  margin: 12px 0 12px;
  color: #2563eb;
  line-height: 1.2;
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 3.125rem);
  position: relative;
  overflow: hidden;
  height: 1.2em;
  /* Фиксированная высота для одной строки */
  text-align: left;
  /* Прижимаем к левому краю */
  width: 100%;
}
.images {
  display: flex;
  flex-direction: column;
  position: relative;
}
.landing {
  box-sizing: border-box;
  /* max-width: 1000px; */
  width: 50%;
}

@media (max-width: 903px) {
  .landing {
    width: 550px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
}

@media (max-width: 593px) {
  .landing {
    width: 90%;
  }
}
.landing__btn {
  display: flex;
  gap: 20px;
  margin: 0 0 40px;
  padding: 0;
  box-sizing: border-box;
}

@media (max-width: 1279px) {
  .landing__btn {
    width: 90%;
  }
}

@media (max-width: 1179px) {
  .landing__btn {
    width: 100%;
  }
}

/* @media (max-width: 1023px) {
  .landing__btn {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 40px;
    padding: 0;
    width: 90%;
  }
} */

@media (max-width: 903px) {
  .landing__btn {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 40px;
    margin: 0 0 40px;
    padding: 0;
    width: 90%;
  }
}

@media (max-width: 700px) {
  .landing__btn {
    display: none;
  }
}

@media (max-width: 530px) {
  .landing__btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* width: 80%; */
  }
}

@media (max-width: 430px) {
  .landing__btn {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
.landing__btn_price {
  padding: 16px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #2563eb;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2563eb;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.landing__btn_price:hover {
  opacity: 0.7;
  transform: scale(1.04);
}

@media (max-width: 1075px) {
  .landing__btn_price {
    font-size: 16px;
  }
}

@media (max-width: 903px) {
  .landing__btn_price {
    padding: 8px 16px;
    min-width: 230px;
  }
}

@media (max-width: 570px) {
  .landing__btn_price {
    padding: 8px 8px;
    min-width: 190px;
    font-size: 14px;
  }
}

@media (max-width: 530px) {
  .landing__btn_price {
    padding: 8px 8px;
    min-width: 180px;
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .landing__btn_price {
    min-width: 290px;
    font-size: 12px;
  }
}
.landing__btn_project {
  padding: 16px 28px;
  text-decoration: none;
  background-color: #2563eb;
  border-radius: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  max-width: 300px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.landing__btn_project:hover {
  opacity: 0.7;
  transform: scale(1.04);
}

@media (max-width: 1075px) {
  .landing__btn_project {
    font-size: 16px;
  }
}

@media (max-width: 903px) {
  .landing__btn_project {
    padding: 8px 16px;
    min-width: 230px;
  }
}

@media (max-width: 570px) {
  .landing__btn_project {
    padding: 8px 8px;
    min-width: 190px;
    font-size: 14px;
  }
}

@media (max-width: 530px) {
  .landing__btn_project {
    padding: 8px 8px;
    min-width: 180px;
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .landing__btn_project {
    min-width: 290px;
    font-size: 12px;
  }
}
.landing__description-websait {
  background-color: #dbeafe !important;
}
.landing__info_about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  color: #374151;
}

@media (max-width: 1023px) {
  .landing__info_about {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }
}
.landing__info_customization-price {
  color: #16a34a;
}
.landing__info_landing_price {
  color: #2563eb;
}
.landing__info_smm-price {
  color: #9333ea;
}
.production__element {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 200px;
}
.production__element_description {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: black;
  text-align: center;
}

@media (max-width: 767px) {
  .production__element_description {
    font-size: 14px;
  }
}
.production__element_number {
  padding: 25px;
  border-radius: 50%;
  color: white;
  font-weight: 600;
  font-size: 24px;
  line-height: 25px;
}
.production__element_number-dis {
  background: linear-gradient(to right, #b453e6, #de4aab);
}
.production__element_number-issled {
  background: linear-gradient(to right, #2d8fed, #5caffc);
}
.production__element_number-prod {
  background: linear-gradient(to right, #f76a1f, #f0493f);
}
.production__element_number-raketa {
  background: linear-gradient(to right, #7063f2, #9e57f6);
}
.production__element_number-strat {
  background: linear-gradient(to right, #1ec265, #14bb79);
}
.production__element_title {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 25px;
  color: black;
}

@media (max-width: 1151px) {
  .production__element_title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .production__element_title {
    font-size: 18px;
  }
}
.production__table {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: wrap;
}

@media (max-width: 454px) {
  .production__table {
    gap: 40px;
  }
}
.production__text {
  margin: 0;
  padding: 0 0 24px 0;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.7679rem + 0.5357vw, 1.25rem);
  line-height: 25px;
  color: #374151;
  text-align: center;
}
.production__title {
  margin: 0;
  /* padding: 0 0 24px 0; */
  font-weight: 600;
  font-size: clamp(1.875rem, 1.5179rem + 1.7857vw, 3.125rem);
  line-height: 100%;
  color: #374151;
}
.services__all {
  padding: 32px 32px 32px 120px;
  text-decoration: none;
  min-width: 290px;
  width: 520px;
  min-height: 200px;
  border-radius: 20px;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* карточки для страницы websait */

.services__all-websait {
  padding: 110px 32px 32px 32px;
  width: 360px;
  min-height: 310px;
}

@media (max-width: 1151px) {
  .services__all-websait {
    min-height: 200px;
  }
}

@media (max-width: 1011px) {
  .services__all-websait {
    min-height: 200px;
  }
}

.services__all:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1151px) {
  .services__all {
    padding: 30px 30px 30px 90px;
    width: 450px;
  }
}

@media (max-width: 1011px) {
  .services__all {
    width: 400px;
    min-height: 320px;
  }
}

@media (max-width: 911px) {
  .services__all {
    padding: 30px;
    width: 350px;
  }
}

@media (max-width: 811px) {
  .services__all {
    padding: 30px 30px 30px 90px;
    width: 80%;
    min-height: 200px;
  }
}

@media (max-width: 600px) {
  .services__all {
    width: 90%;
  }
}

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

@media (max-width: 450px) {
  .services__all {
    padding: 30px;
  }
}
.services__icons {
  position: absolute;
  top: 30px;
  left: 30px;
}
.services__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.services__list-content {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: black;
}

.services__list-content::before {
  padding: 0 8px 8px 0;
  content: "\2713\0020";
  color: rgb(5, 206, 5);
}
.services__subtitle {
  margin: 0;
  padding: 0 24px 70px;
  font-weight: 400;
  font-size: clamp(0.8125rem, 0.6875rem + 0.625vw, 1.25rem);
  line-height: 40px;
  text-align: center;
}

@media (max-width: 1280px) {
  .services__subtitle {
    padding: 0 24px 40px;
  }
}
.services__table {
  padding: 0;
  margin: 0;
  row-gap: 30px;
  column-gap: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* width: 100%; */
}

@media (max-width: 767px) {
  .services__table {
    min-width: 290px;
  }
}
.services__table_context {
  position: relative;
  background-color: #e0fce9;
  border: 1px solid #8dfdb1;
}
.services__table_description {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: black;
}

@media (max-width: 767px) {
  .services__table_description {
    font-size: 14px;
  }
}
.services__table_img {
  position: absolute;
  left: 32px;
  top: 32px;
  width: 60px;
  height: 60px;
  border-radius: 20%;
}

@media (max-width: 1151px) {
  .services__table_img {
    left: 15px;
    top: 30px;
  }
}

/* 
@media (max-width: 911px) {
    .services__table_img {
        width: 350px;
}

}
@media (max-width: 811px) {
    .services__table_img {
        width: 80%;
}
}

@media (max-width: 600px) {
    .services__table_img {
        width: 90%;
}
}

@media (max-width: 500px) {
    .services__table_img {
        padding: 15px 15px 15px 45px;
}
} */
.services__table_img-context {
  background-color: #16a34a;
}
.services__table_img-landing {
  background-color: #2563eb;
}
.services__table_img-secure {
  background-color: #4f46e5;
}
.services__table_img-seo {
  background-color: #dc2626;
}
.services__table_img-smm {
  background-color: #ea580c;
}
.services__table_img-target {
  background-color: #9333ea;
}
.services__table_landing {
  position: relative;
  background-color: #ebf4ff;
  border: 1px solid #b9d8ff;
}
.services__table_logo {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  filter: invert(1);
}
.services__table_logo-link {
  position: absolute;
  bottom: 5px;
  right: 5px;
  filter: invert(1);
}
.services__table_secure {
  position: relative;
  background-color: #e8eeff;
  border: 1px solid #c9d7ff;
}
.services__table_seo {
  position: relative;
  background-color: #feebeb;
  border: 1px solid #fbd2d2;
}
.services__table_smm {
  position: relative;
  background-color: #fff0dc;
  border: 1px solid #f9d6a7;
}
.services__table_target {
  position: relative;
  background-color: #f7efff;
  border: 1px solid #e8d3fd;
}
.services__table_title {
  margin: 0;
  padding: 0 0 8px 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 25px;
  color: black;
}

@media (max-width: 1151px) {
  .services__table_title {
    font-size: 20px;
  }
}

@media (max-width: 1011px) {
  .services__table_title {
    max-width: 230px;
  }
}

@media (max-width: 911px) {
  .services__table_title {
    max-width: 150px;
    padding: 0 0 15px 60px;
  }
}

@media (max-width: 811px) {
  .services__table_title {
    padding: 0 0 8px 0;
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  .services__table_title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .services__table_title {
    padding: 0 0 15px 60px;
    max-width: 150px;
  }
}

@media (max-width: 450px) {
  .services__table_title {
    max-width: 150px;
    padding-left: 60px;
  }
}
.services__table_title-landing {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 5px 5px 5px 5px;
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  color: #374151;
  border-radius: 10px;
  background-color: #dcfce7;
}

@media (max-width: 1151px) {
  .services__table_title-landing {
    right: 15px;
    top: 34px;
  }
}
.services__title {
  margin: 0;
  padding: 0 24px 24px;
  font-weight: 600;
  font-size: clamp(1.875rem, 1.5179rem + 1.7857vw, 3.125rem);
  line-height: 100%;
  text-align: center;
  min-height: 80px;
}
/* Применяем эффект только на мобильных устройствах */

@media (max-width: 768px) {
  .card {
    transform: scale(0.9);
    opacity: 0.7;
  }

  .card.visible {
    transform: scale(1);
    opacity: 1;
  }

  /* Дополнительный эффект при ховере/тапе */

  .card.visible:active {
    transform: scale(0.98);
  }
}

/* Для планшетов */

@media (max-width: 1024px) and (min-width: 769px) {
  .card {
    transform: scale(0.95);
  }

  .card.visible {
    transform: scale(1);
  }
}
.images__lowspan {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 150px;
  height: 50px;
  padding: 12px;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #2563eb;
  background-color: white;
  border-radius: 12px;
  position: absolute;
  bottom: -14px;
  left: -14px;
}

.images__lowspan::after {
  content: "без переплат";
  font-size: 14px;
  color: #485563;
  text-align: left;
}
.images__picture {
  border-radius: 20px;
  max-width: 450px;
  width: 100%;
  max-height: auto;
}

@media (max-width: 1082px) {
  .images__picture {
    max-width: 350px;
  }
}

@media (max-width: 903px) {
  .images__picture {
    max-width: 550px;
  }
}
.images__upspan {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  padding: 16px;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: white;
  background: linear-gradient(to right, #575ffb, #56fb82);
  border-radius: 12px;
  position: absolute;
  top: -14px;
  right: -14px;
}

.images__upspan::after {
  content: "качество";
  font-size: 14px;
}
.landing__description {
  margin: 0;
  padding: 4px;
  font-weight: 400;
  font-size: clamp(0.625rem, 0.5536rem + 0.3571vw, 0.875rem);
  line-height: 100%;
  border-radius: 30px;
  background-color: #dcfce7;
  text-align: left;
  display: flex;
  align-items: flex-start;
  max-width: 320px;
}

@media (max-width: 399px) {
  .landing__description {
    padding: 4px 8px 4px;
  }
}
.landing__info {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  max-width: 600px;
}