
  
  .subtitle.js-animated {
    opacity: 1;
    transform: translateX(0);
  }
  

  
  .subtitle.js-animated::after {
    opacity: 1;
    transform: scaleX(1);
  }
  
  .feedback__row {
    
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 100px;
  }
  
  .feedback__col {
    width: 48%;
  }
  
  .feedback__title,
  .feedback__text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .feedback__title.js-animated,
  .feedback__text.js-animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  .feedback__form {
    display: flex;
    flex-direction: column;
  }
  
  .label {
    margin-bottom: 20px;
    position: relative;
  }
  
  .input-line {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 10px 0;
    font-size: 16px;
    background: transparent;
    color: #333;
    outline: none;
  }
  
  .input-line::placeholder {
    color: #888;
    font-style: italic;
  }
  
  .input-line:focus {
    border-color: #333;
  }
  
  .textarea {
    resize: vertical;
  }
  
  .form__btn-block {
    margin-top: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #333;
    color: white;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
  }
  
  .btn--dark {
    background-color: #444;
  }
  
  .js-animated {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.js-animated.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade--bottom {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade--right {
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mini {
    font-size: 16px;
    font-weight: bold;
    font-family: Forum;
    color: rgb(139, 107, 77);
    margin-bottom: 20px;
    margin-top: 30px; /* Добавленный отступ сверху */
}
.mini_title {
	margin-top: 28px;
	font-family: auto;
	margin-bottom: 20px;
	color: #6a3f24;
	font-size: 74px;
	font-weight: bold;
    margin-left: 72px;
  }
  /* Адаптация для мобильных устройств */
@media (max-width: 768px) {
  .contacts-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin: 50px auto;
      padding: 0 20px; /* Уменьшаем отступы */
  }

  .contact-column {
      width: 100%; /* Каждая колонка будет занимать всю ширину */
      margin-bottom: 30px; /* Добавляем отступ между колонками */
  }

  .contact-column h3 {
      font-size: 18px; /* Уменьшаем заголовки */
  }

  .contact-column p,
  .contact-column a {
      font-size: 16px; /* Чуть уменьшаем текст */
  }
}
  .mini_text {
	margin-bottom: 20px;
    margin-left: 76px;
	color: #8b6b4d;
	font-size: 16px;
	line-height: 1.5;
  }
  .contacts-section a:hover,
.social-icons a:hover {
  color: #6a3f24;
}
/* Мобильная адаптация */
@media (max-width: 768px) {
    .feedback__row {
      flex-direction: column;
      gap: 20px;
      margin-top: 50px;
    }
  
    .feedback__col {
      width: 100%;
    }
  
    .feedback__title,
    .feedback__text {
      font-size: 14px;
      transform: translateY(0);
      opacity: 1;
    }
  
    .mini_title {
      font-size: 40px;
      margin-left: 0;
      text-align: center;
    }
  
    .mini_text {
      margin-left: 0;
      font-size: 14px;
      text-align: center;
    }
  
    .contacts-section a,
    .social-icons a {
      font-size: 20px;
      display: block;
      margin-bottom: 10px;
    }
  
    .input-line {
      font-size: 14px;
      padding: 8px 0;
    }
  
    .textarea {
      font-size: 14px;
      padding: 8px;
    }
  
    .btn {
      padding: 10px 15px;
      font-size: 14px;
    }
  }
  
  /* Блок для экранов с шириной больше 768px (большие экраны) */
  @media (min-width: 769px) {
    .feedback__row {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      margin-top: 100px;
    }
  
    .feedback__col {
      width: 48%;
    }
  
    .mini_title {
      font-size: 74px;
      margin-left: 72px;
    }
  
    .mini_text {
      font-size: 16px;
      margin-left: 76px;
    }
  
    .contacts-section a,
    .social-icons a {
      font-size: 18px;
    }
  
    .input-line {
      font-size: 16px;
      padding: 10px 0;
    }
  
    .textarea {
      font-size: 16px;
      padding: 10px;
    }
  
    .btn {
      padding: 12px 20px;
      font-size: 16px;
    }
  }
  