.company_info {
  grid-area: 1 / 1 / 2 / 2;
  color: #1E2741;
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 6px;
  position: relative;
  padding-left: 1.25em;
  display: inline-block;
}

.company_info p:first-child {
  text-align: justify;
}

.attr_name {
  color: #8c90a7;
}

.contacts_list {
  display: flex;
  flex-direction: column;
	justify-content: space-around;
}

.contact_us {
  display:flex;
   grid-area: 1 / 2 / 3 / 3;
   justify-self: end;
   padding: 0 3em;
}
  
  .contacts_block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  
  .map {
    margin-top: 3em;
    grid-area: 2 / 1 / 3 / 2;
  }
  
  .contacts p a {
   display:inline-block;
		margin: 1em 0 0 1em;
		position: relative;
  }

.contact_tel::before {
    content: "";
  background: url(../img/icons/phone-call.svg) no-repeat center;
    background-size: auto;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-left: 10px;
  display: block;
  position: absolute;
  left: -30px;
  top: 4px;
}

.contact_mail::before {
    content: "";
  background: url(../img/icons/email-mail.svg) no-repeat center;
    background-size: auto;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-left: 10px;
  display: block;
  position: absolute;
  left: -30px;
  top: 4px;
}

.contacts p{
    display: flex;
    flex-direction: column;
}

table {
    margin: 1em 0;
}