.contacts-page_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 1440px;
  padding: 0 16px 60px;
  margin: 0 auto;
}

.contacts-page_information {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contacts-page_information-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;

}

.contacts-page_information-desc {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contacts-page_information-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts-page_information-content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #333333;
}

.contacts-page_information-content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #282828
}

.contacts-page_socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
}

.contacts-page_socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/*---------------------------------------------------*/
.contacts-page_documents {
  width: 100%;
}

.contacts-page_documents-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contacts-page_documents-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.contacts-page_documents-item {
  display: flex;
  gap: 12px;
  justify-content: start;
  align-items: center;
  padding: 10px 12px;
  background: #F5F5F5;
  border-radius: 20px;
  min-height: 70px;
}

.contacts-page_documents-item > img {
  width: 50px;
  height: 50px;
}

.contacts-page_documents-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
}

/*---------------------------------------------------*/

.contacts-page_details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.contacts-page_details-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contacts-page_details-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #282828;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .contacts-page_container {
    gap: 40px;
    padding: 44px 56px 80px;
  }

  .contacts-page_information {
    flex-direction: row;
    gap: 16px
  }

  .contacts-page_information-title {
    white-space: normal;
    word-break: keep-all;
    word-spacing: 100vw;
  }

  .contacts-page_information-content h3 {
    font-size: 24px;
  }

  .contacts-page_documents-title {
    margin-bottom: 30px;
    white-space: normal;
    word-break: keep-all;
    word-spacing: 100vw;
  }

  .contacts-page_documents-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contacts-page_details {
    flex-direction: row;
  }

  .contacts-page_information-title,
  .contacts-page_documents-title,
  .contacts-page_details-title {
    font-size: 24px;
  }

  .contacts-page_information-title,
  .contacts-page_information-desc,
  .contacts-page_documents-item,
  .contacts-page_details-title,
  .contacts-page_details-content {
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}

@media (min-width: 1280px) {
  .contacts-page_container {
    gap: 80px;
    padding: 80px 120px 100px;
  }

  .contacts-page_information-title,
  .contacts-page_information-content h3,
  .contacts-page_details-title {
    font-size: 32px;;
  }

  .contacts-page_documents-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .contacts-page_information-content p,
  .contacts-page_details-content {
    font-size: 16px;;
  }
}
