body {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}

/* Для английской версии */
html[lang="en"] body {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  letter-spacing: normal;
}

body[lang="ru"],
body[lang="kz"] {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

header {
  background-color: #000;
  border-bottom: 1px solid rgba(26, 86, 219, 0.2);
}

.nav {
  max-width: 60%;
  height: 80px;
  color: #fff;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0 20px;
}

.nav_logo a {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
}

.navbar_list {
  display: flex;
  justify-content: space-around;
}

.navbar_list a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.5s ease;
}

.navbar_list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  /* чуть ниже текста */
  width: 0%;
  height: 2px;
  background-color: rgba(26, 86, 219, 1);
  transition: width 0.3s ease;
}

.navbar_list a:hover {
  color: rgba(26, 86, 219, 1);
}

.navbar_list a:hover::after {
  width: 100%;
}

.navbar_item:not(:last-child) {
  margin-right: 50px;
}

/* Обёртка для language-selector — добавляем underline при ховере */
.language_select_wrapper {
  position: relative;
  display: inline-block;
}

.language_select_wrapper::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: rgba(26, 86, 219, 1);
  transition: width 0.3s ease;
}

.language_select_wrapper:hover::after {
  width: 50%;
}

.lang-switcher select {
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.lang-switcher select:focus {
  outline: none;
  border-color: #1a56db;
}

/* Стили для самого select */
#language-selector {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  appearance: none;
  padding-right: 20px;
}

/* Стили для выпадающих опций */
#language-selector option {
  color: #000;
  background-color: #fff;
}

/* При наведении на сам select (цвет текста меняется) */
#language-selector:hover {
  color: rgba(26, 86, 219, 1);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  height: 2px;
  width: 25px;
  background-color: #fff;
  border-radius: 1px;
  transition: 0.3s ease;
}

/* Sidebar */
.mobile_sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background-color: #000;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  transition: right 0.3s ease;
  z-index: 1000;
}

.mobile_sidebar.active {
  right: 0;
}

.mobile_nav_list {
  list-style: none;
  padding: 0;
}

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

.mobile_nav_list a,
#language-selector-mobile {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 18px;
  background: transparent;
  border: none;
  font-weight: 300;
}

.mobile_sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 150vh;
  background-color: #000;
  color: #fff;
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.mobile_sidebar.active {
  right: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    max-width: 100%;
    padding: 0 16px;
    height: 60px;
  }

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

  .hamburger {
    display: flex;
  }

  .hamburger-menu {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    padding: 10px;
    /* даём немного пространства */
  }

  .nav_navbar {
    display: none;
  }
}

main {
  color: #fff;
  background-color: #000;
}

/* Desktop Styles (No changes to your original code) */
.full-width-background {
  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 1) 100%),
    url("../images/016.jpg");
  background-size: cover;
  background-position: center;
  padding: 400px 0 65px 0;
}

.main_inner {
  max-width: 60%;
  margin: 0 auto;
  position: relative;
}

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

.first_title {
  font-weight: 700;
  font-size: 60px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(26, 86, 219, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ffffff;
  animation: fadeInUp 0.8s ease-out;
}

@supports not (-webkit-background-clip: text) {
  .first_title {
    color: #ffffff;
    background: none;
  }
}

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

.first_skills {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
}

/* Mobile and Tablet Styles */

/* For tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .full-width-background {
    padding: 300px 0 50px 0;
    /* Adjust padding for tablets */
  }

  .main_inner {
    max-width: 80%;
    /* Increase width for tablets */
    margin: 0 auto;
    /* Ensure centering */
  }

  .first_title {
    font-size: 45px;
    /* Reduce font size for title on tablets */
    text-align: center;
    /* Align title to the center */
  }

  .first_skills {
    font-size: 20px;
    /* Reduce font size for skills on tablets */
    text-align: center;
    /* Align skills to the center */
  }
}

/* For phones (max-width: 768px) */
@media (max-width: 768px) {
  .full-width-background {
    padding: 200px 0 40px 0;
    /* Adjust padding for phones */
  }

  .main_inner {
    max-width: 90%;
    /* Use 90% width for phones */
    margin: 0 auto;
    /* Ensure centering */
  }

  .first_title {
    font-size: 36px;
    /* Further reduce title size for phones */
    text-align: center;
    /* Align title to the center */
  }

  .first_skills {
    font-size: 18px;
    /* Further reduce skills font size */
    text-align: center;
    /* Align skills to the center */
  }
}

/* For very small phones (max-width: 480px) */
@media (max-width: 480px) {
  .full-width-background {
    padding: 150px 0 30px 0;
    /* Further reduce padding for very small phones */
  }

  .main_inner {
    max-width: 100%;
    /* Full width for very small phones */
    margin: 0 auto;
    /* Ensure centering */
  }

  .first_title {
    font-size: 28px;
    /* Reduce title size for small screens */
    text-align: center;
    /* Align title to the center */
  }

  .first_skills {
    font-size: 16px;
    /* Reduce skills font size for small screens */
    text-align: center;
    /* Align skills to the center */
  }
}

.second_block {
  max-width: 60%;
  margin: auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.second_title {
  font-weight: 700;
  font-size: 50px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(26, 86, 219, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ffffff;
  animation: fadeInUp 0.6s ease-out;
}

@supports not (-webkit-background-clip: text) {
  .second_title {
    color: #ffffff;
    background: none;
  }
}

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

.title {
  font-weight: 500;
  font-size: 28px;
  color: #fff;
}

@media (max-width: 1024px) {
  .second_block {
    max-width: 80%;
    padding: 60px 0;
  }

  .second_title {
    font-size: 42px;
  }

  .second_label {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .second_block {
    max-width: 90%;
    padding: 50px 0;
    gap: 25px;
  }

  .second_title {
    font-size: 34px;
  }

  .second_label {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .second_block {
    padding: 40px 0;
    gap: 20px;
  }

  .second_title {
    font-size: 28px;
  }

  .second_label {
    font-size: 14px;
  }
}

b {
  color: rgb(65, 125, 255);
}

.second_label {
  font-weight: 500;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}

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

.text {
  width: 40%;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.second_img {
  width: 40%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.second_img img {
  width: 87%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.second_img:hover img {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(26, 86, 219, 0.4);
}

@media (max-width: 1024px) {
  .second_info {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .text,
  .second_img {
    width: 80%;
  }

  .text {
    font-size: 17px;
  }

  .second_img img {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .text,
  .second_img {
    width: 90%;
  }

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

@media (max-width: 480px) {
  .text {
    font-size: 15px;
  }

  .second_info {
    gap: 30px;
  }
}

.third_inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.third_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.third_text {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.third_img {
  display: flex;
  justify-content: center;
  /* Центрируем всё по горизонтали */
  gap: 30px;
  /* Ровные отступы между картинками */
  flex-wrap: wrap;
  /* Если экран маленький — изображения переходят на новую строку */
  margin-top: 20px;
  /* Отступ сверху (по желанию) */
}

.third_img img {
  width: calc((100% - 90px) / 4);
  /* 4 картинки и 3 промежутка по 30px */
  object-fit: cover;
  aspect-ratio: 4 / 3;
  /* Чтобы все были одного соотношения (опционально) */
  border-radius: 12px;
  /* Красивые углы (опционально) */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.third_img img:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(26, 86, 219, 0.3);
  border: 2px solid rgba(26, 86, 219, 0.5);
}

@media (max-width: 1024px) {
  .third_text {
    font-size: 17px;
  }

  .third_img img {
    width: calc((100% - 30px) / 2);
    /* По 2 картинки в ряд */
  }
}

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

  .third_img {
    gap: 20px;
  }

  .third_img img {
    width: 100%;
    /* По одной картинке в ряд */
  }
}

@media (max-width: 480px) {
  .third_text {
    font-size: 15px;
  }

  .third_img {
    gap: 15px;
  }
}

.fourth_inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

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

.fourth_img {
  width: 40%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.fourth_img img {
  width: 70%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fourth_img:hover img {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(26, 86, 219, 0.4);
}

/* Медиазапросы для планшетов (максимальная ширина 1024px) */
@media (max-width: 1024px) {
  .fourth_inner {
    max-width: 80%;
    margin: auto;
  }

  .fourth_info {
    flex-direction: column;
    /* Размещаем элементы вертикально */
    gap: 20px;
    /* Уменьшаем отступы между элементами */
  }

  .fourth_img {
    width: 60%;
    /* Изображение станет меньше */
  }

  .fourth_img img {
    width: 100%;
    /* Изображение на всю ширину контейнера */
    object-fit: contain;
    /* Сохраняем пропорции изображения */
  }
}

/* Медиазапросы для планшетов (максимальная ширина 768px) */
@media (max-width: 768px) {
  .fourth_inner {
    max-width: 90%;
    margin: auto;
  }

  .fourth_info {
    flex-direction: column;
    /* Размещаем элементы вертикально */
    gap: 20px;
  }

  .fourth_img {
    width: 80%;
    /* Изображение шире */
  }

  .fourth_img img {
    width: 100%;
    /* Изображение будет занимать всю ширину */
    object-fit: contain;
  }
}

/* Медиазапросы для мобильных устройств (максимальная ширина 480px) */
@media (max-width: 480px) {
  .fourth_inner {
    max-width: 100%;
    margin: auto;
  }

  .fourth_info {
    flex-direction: column;
    /* Элементы размещаются вертикально */
    gap: 15px;
    /* Отступы между элементами уменьшаются */
  }

  .fourth_img {
    width: 100%;
    /* Изображение будет на всю ширину */
    margin-top: 15px;
    /* Добавляем отступ сверху */
  }

  .fourth_img img {
    width: 100%;
    /* Изображение на всю ширину */
    object-fit: contain;
    /* Сохраняем пропорции изображения */
  }
}

.five_inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

.five_text {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

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

.five_img {
  display: flex;
  justify-content: center;
  /* Центрируем всё по горизонтали */
  gap: 30px;
  /* Ровные отступы между картинками */
  flex-wrap: wrap;
  /* Если экран маленький — изображения переходят на новую строку */
  margin-top: 20px;
  /* Отступ сверху (по желанию) */
}

.five_img img {
  width: calc((100% - 90px) / 4);
  /* 4 картинки и 3 промежутка по 30px */
  object-fit: cover;
  aspect-ratio: 4 / 3;
  /* Чтобы все были одного соотношения (опционально) */
  border-radius: 12px;
  /* Красивые углы (опционально) */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.five_img img:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(26, 86, 219, 0.3);
  border: 2px solid rgba(26, 86, 219, 0.5);
}

/* Медиазапросы для планшетов (максимальная ширина 1024px) */
@media (max-width: 1024px) {
  .five_inner {
    max-width: 80%;
    margin: auto;
  }

  .five_text {
    font-size: 19px;
    /* Уменьшаем размер шрифта текста */
  }

  .five_info {
    flex-direction: column;
    /* Элементы размещаем вертикально */
    gap: 20px;
    /* Уменьшаем отступы между элементами */
  }

  .five_img {
    gap: 20px;
    /* Уменьшаем отступы между картинками */
  }

  .five_img img {
    width: calc((100% - 60px) / 3);
    /* 3 картинки и 2 промежутка по 20px */
    object-fit: cover;
    aspect-ratio: 4 / 3;
  }
}

/* Медиазапросы для мобильных устройств (максимальная ширина 768px) */
@media (max-width: 768px) {
  .five_inner {
    max-width: 90%;
    margin: auto;
  }

  .five_text {
    font-size: 17px;
    /* Уменьшаем размер шрифта */
  }

  .five_info {
    flex-direction: column;
    /* Элементы размещаем вертикально */
    gap: 20px;
  }

  .five_img {
    gap: 15px;
    /* Меньше отступы между картинками */
  }

  .five_img img {
    width: calc((100% - 45px) / 2);
    /* 2 картинки и 1 промежуток по 15px */
    object-fit: cover;
    aspect-ratio: 4 / 3;
  }
}

/* Медиазапросы для мобильных устройств (максимальная ширина 480px) */
@media (max-width: 480px) {
  .five_inner {
    max-width: 100%;
    margin: auto;
  }

  .five_text {
    font-size: 15px;
    /* Уменьшаем размер шрифта */
  }

  .five_info {
    flex-direction: column;
    /* Элементы размещаем вертикально */
    gap: 15px;
    /* Уменьшаем отступы */
  }

  .five_img {
    gap: 10px;
    /* Отступы между картинками */
  }

  .five_img img {
    width: 100%;
    /* Каждое изображение будет занимать всю ширину */
    object-fit: cover;
    aspect-ratio: 4 / 3;
  }
}

.six_inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

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

.six_img {
  width: 40%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.six_img img {
  width: 70%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.six_img:hover img {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(26, 86, 219, 0.4);
}

.quote-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  overflow: visible;
}

.quote {
  background: linear-gradient(40deg,
      #1a56db 0%,
      #0c2969 0%,
      #05102a 0%,
      #000 50%,
      #05102a 100%,
      #0c2969 100%,
      #1a56db 100%);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.quote_inner {
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.quote-icon {
  width: 60px;
  height: auto;
  display: block;
  margin: 20px auto;
}

.quote_author {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 18px;
  text-align: left;
  margin-bottom: 10px;
}

.quote_title {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

/* ✅ Адаптивность для планшетов и мобилок */
@media (max-width: 1024px) {
  .quote_inner {
    max-width: 80%;
  }

  .quote_title {
    font-size: 28px;
  }

  .quote-icon {
    width: 50px;
  }
}

@media (max-width: 768px) {
  .quote_inner {
    max-width: 90%;
  }

  .quote_title {
    font-size: 22px;
  }

  .quote-icon {
    width: 40px;
  }

  .quote_author {
    font-size: 16px;
  }
}

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

  .quote-icon {
    width: 30px;
  }

  .quote {
    padding: 60px 0;
  }
}

.seven_inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

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

.seven_text {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

/* Медиазапросы для планшетов (максимальная ширина 1024px) */
@media (max-width: 1024px) {
  .seven_info {
    flex-direction: column;
    /* Элементы размещаем вертикально */
    gap: 20px;
    /* Уменьшаем отступы между элементами */
  }

  .seven_text {
    font-size: 19px;
    /* Уменьшаем размер шрифта текста */
  }
}

/* Медиазапросы для мобильных устройств (максимальная ширина 768px) */
@media (max-width: 768px) {
  .seven_info {
    flex-direction: column;
    /* Элементы размещаем вертикально */
    gap: 15px;
    /* Уменьшаем отступы между элементами */
  }

  .seven_text {
    font-size: 17px;
    /* Уменьшаем размер шрифта */
  }
}

/* Медиазапросы для мобильных устройств (максимальная ширина 480px) */
@media (max-width: 480px) {
  .seven_info {
    flex-direction: column;
    /* Элементы размещаем вертикально */
    gap: 10px;
    /* Уменьшаем отступы между элементами */
  }

  .seven_text {
    font-size: 15px;
    /* Уменьшаем размер шрифта */
  }
}

footer {
  background-color: #000;
  padding: 40px 20px 40px 20px;
  width: 100%;
}

.footer {
  margin: auto;
  max-width: 60%;
  align-items: center;
}

.footer_inner {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.footer_contacts a {
  color: #fff;
  font-size: 16px;
  transition: 0.4s ease;
}

.footer_contacts a:not(:last-child) {
  margin-bottom: 10px;
}

.footer_contacts a:hover {
  color: rgba(26, 86, 219, 1);
}

.social_media {
  width: 16%;
  margin: auto;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  display: flex;
}

.social_media a {
  background-color: #1d1a33;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.social_media img {
  width: 100%;
  filter: invert(100%);
  padding: 26%;
}

.rights {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .footer {
    max-width: 80%;
  }

  .footer_inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_contacts {
    margin-bottom: 20px;
  }

  .social_media {
    width: 50%;
    margin-bottom: 30px;
  }

  .social_media a {
    width: 50px;
    height: 50px;
  }

  .social_media img {
    padding: 25%;
  }

  .rights {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    max-width: 100%;
    padding: 40px 20px;
  }

  .footer_inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_contacts a {
    font-size: 14px;
  }

  .social_media {
    width: 60%;
    margin-bottom: 40px;
  }

  .social_media a {
    width: 45px;
    height: 45px;
  }

  .social_media img {
    padding: 30%;
  }

  .rights {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px;
  }

  .footer_inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_contacts a {
    font-size: 14px;
  }

  .social_media {
    width: 70%;
    margin-bottom: 20px;
  }

  .social_media a {
    width: 40px;
    height: 40px;
  }

  .social_media img {
    padding: 35%;
  }

  .rights {
    font-size: 12px;
  }
}

.language-change {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Анимация смены языка */
[data-i18n],
[data-i18n-en],
.card_title,
.card_description {
  transition: opacity 0.3s ease, transform 0.3s ease;
}