.hero_banner{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  min-height: 692px;
  max-width: 1310px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (max-width: 767px){
  .hero_banner{
    flex-direction: column;
  }
}

@media only screen and (max-width: 992px){
  .hero_banner{
    min-height: 450px;
  }
  {#  .hero_banner_text{
    margin-top: 35px !important;
  }
#}
}

.hero_banner_text,
.hero_banner_picture{
  width: 50%;
}

.hero_banner_picture{
  display: flex;
  align-items: flex-end;
}

.hero_banner_text{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: auto;
  max-width: 1310px;
  padding: 20px 0;
  text-align: center;
}

@media only screen and (max-width: 767px){
  .hero_banner_text,
  .hero_banner_picture{
    width: 100%;
  }
  
  .hero_banner_text{
    padding: 0;
  }

  .hero_banner_picture img{
    transform: translateX(-10%);
  }
}