.services-socials {
  margin: 120px 0;
}

.services-socials__wrapper {
  padding: 80px 60px;
  border-radius: 20px;
  background: var(--Gray);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.services-socials__text-wrapper {
  max-width: 745px;
}

.services-socials__title {
  margin-bottom: 22px;
  color: var(--Black);
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.services-socials__text {
  color: var(--Black);
  font-size: 20px;
  font-weight: 400;
}

.services-socials__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.services-socials__item {
  width: 60px;
  height: 60px;
  transition: var(--TransitionStatic);
}

.services-socials__item:hover {
  scale: 1.07;
}

@media screen and (max-width: 1200px) {
  .services-socials {
    margin: 80px 0;
  }

  .services-socials__wrapper {
    padding: 60px 16px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .services-socials__text-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .services-socials__title {
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--Dark-blue);
  }

  .services-socials__text {
    font-size: 18px;
  }

  .services-socials__list {
    gap: 35px;
    width: 100%;
  }

  .services-socials__item {
    width: 50px;
    height: 50px;
  }
}
