.socials {
  width: 100%;
}

.socials .container {
  padding: 74px 70px 73px 60px;
  border-radius: 20px;
  background: var(--Cultured);
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px 30px;
}

.stages_wrap {
  width: 100%;
  max-width: 503px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stages_wrap h2 {
  font-size: 24px;
}

.socials_desc {
  font-size: 20px;
  font-weight: 400;
}

.socials_items {
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.socials_item {
  max-width: 60px;
  max-height: 60px;
}

.socials_link,
.socials_link svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: var(--TransitionSlow);
  fill: currentColor;
}

.socials_link:hover {
  scale: 1.08;
  opacity: 0.8;
  filter: drop-shadow(0 0 6px #1b2550ad) drop-shadow(0 0 14px #1b25506f)
    saturate(1.3);
}

@media (max-width: 992px) {
  .socials .container {
    padding: 60px 20px;
  }

  .stages_wrap {
    max-width: 100%;
    gap: 24px;
  }

  .stages_wrap h2 {
    font-size: 24px;
  }

  .socials_desc {
    font-size: 18px;
  }

  .socials_items {
    width: 100%;
    max-width: 480px;
    gap: 35px;
  }

  .socials_item {
    max-width: 50px;
    max-height: 50px;
  }
}

@media (max-width: 768px) {
  .socials {
    padding: 0 15px;
  }

  .socials .container {
    flex-direction: column;
  }
}
