.contacts__container {
  background-color: #434b36;
}

.contacts__content {
  padding: 60px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.contacts__vertical__line {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  height: auto;
}
.contacts__content--description {
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  padding-bottom: 18px;
}
.contacts__data--links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contacts__content--link {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: white;
  transition: all 0.4s;
}
.contacts__content--link:hover {
  color: #c3cdb2;
}

.contacts__social--buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.contacts__social--button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 20px;
  color: #434b36;
  transition: all 0.4s;
}
.contacts__social--button:hover {
  background-color: #c3cdb2;
}
.contacts__button {
  display: flex;
  align-items: center;
}
.signin_button_fill--white {
  background-color: white;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 60px;
  color: #434b36;
  transition: all 0.4s;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
.signin_button_fill--white:hover {
  background-color: #c3cdb2;
}

@media screen and (max-width: 1024px) {
  .contacts__content {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .contacts__content {
    padding-right: 20px;
    padding-left: 20px;
    flex-direction: column;
  }
  .contacts__vertical__line {
    height: 1px;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .contacts__social--buttons {
    flex-wrap: wrap;
    gap: 10px 10px;
  }
  .contacts__content--link {
    font-size: 16px;
  }
}
