.Contact_Infos_Container{
    .Contact_Infos_Flex{
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    gap:16px;
  }
  
  .Contact_Infos_Element{
    width: 33%
  }
  
  .Subtitle{
    font-family: var(--title-font);
    font-size:32px;
    font-weight:800;
    text-transform:uppercase;
  }
  
  .Subtitle, .Link{
    color: var(--blue)
  }
  
}

@media screen and (max-width:1024px){
  .Contact_Infos_Container{
    .Contact_Infos_Flex{
      flex-direction:column;
      justify-content:flex-start;
    }
    .Contact_Infos_Element{
      width:100%;
    }
  }
}