.contact {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  max-width: 1140px;
  margin: 0 auto;

  .contact__section {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 36px;
    flex-direction: row;
    justify-content: center;

    @media screen and (max-width: 991px) {
      flex-direction: column;
    }
  }

  .contact__section_margin-top_l {
    margin-top: 56px;
  }

  .contact__title {
    display: flex;
    width: 25%;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0;
    padding: 20px 0;

    @media screen and (max-width: 991px) {
      width: 100%;
    }
  }

  .contact__title_hidden {
    display: none;
  }

  .contact__information {
    display: grid;
    width: 85%;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 120px;
    gap: 16px 16px;

    @media screen and (min-width: 436px) and (max-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
      width: 100%;
    }

    @media screen and (max-width: 435px) {
      grid-template-columns: 1fr;
      width: 100%;
    }
  }

  .information__element {
    display: flex;
    flex-direction: column;
    padding: 20px 0;

    .information__title {
      margin: 0;
      font-size: 15px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .information__line {
      margin: 0;
      font-size: 15px;
    }

    .information__link {
      color: #000;
      text-decoration: none;

      &:hover {
        color: #c84848;
      }
    }
  }

  .contact__feedback {
    width: 85%;

    @media screen and (max-width: 991px) {
      width: 100%;
    }
  }

  .contact__socials {
    display: flex;
    width: 85%;
    flex-direction: row;
    align-items: center;
    gap: 20px;

    @media screen and (min-width: 436px) and (max-width: 768px) {
      width: 100%;
    }

    @media screen and (max-width: 435px) {
      width: 100%;
    }

    .contact__social {
      width: 40px;
      height: 40px;
    }

    .contact__social-icon {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}
