.contact_block{
  display:flex;
  flex-direction: column;
  align-items: center;
}

.contact_page{
  display: flex;
  align-items: center;
  margin:1.3rem;
}

.contact_page .picture {
  width: 2.5rem;
}

.contact_page .block {
  flex:5;
  display:flex;
  justify-content: center;
  font-size:1.5rem;
  padding-left: 1rem;
}

.contact_block .logo{
  display:flex;
  justify-content: center;
  height: 20rem;
  max-height: 30vh;
}

.contact_block .logo img{
  height: 50%;
  margin-top: auto;
  margin-bottom: auto;
}

@media (max-width: 768px) {
  .contact_page{
    flex-direction: column;
    gap: 1rem;
  }

  .contact_block .logo {
    display: none;
  }

  .contact_block .logo img {
    display: none;
  }
}