@media (orientation: landscape){
  .indexbody{
    display: flex;
    flex-direction: column;
    margin: 0px;
  }

  .indexfull {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("back.jpg")
      center / cover;
  }

  .indexlogo{
    width: 50%; height:50%;
  }

  .companyfull {
    display: block;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("back_bw.jpg")
      center / cover;
  }

  .companybody{
    display: flex;
    flex-direction: row;
    margin: 0px;
  }

  .companylogo{
    width: 20%; height:20%;
  }

  h4{
    font-size: 15px;
    margin-top: 1.0%;
    margin-bottom: 0px;
  }

  p{
    font-size: 15px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .text{
    font-weight: bold;
    color: #0097fc;
  }

}
@media (orientation: portrait){
  .indexbody{
    display: flex;
    flex-direction: column;
    margin: 0px;
  }
  
  .indexfull {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("back.jpg")
      center / cover;
  }
  
  .indexlogo{
    width: 90%; height:50%;
  }
  
  .companyfull {
    display: block;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("back_bw.jpg")
      center / cover;
  }
  
  .companybody{
    display: flex;
    flex-direction: row;
    margin: 0px;
  }
  
  .companylogo{
    width: 50%; height:20%;
  }
  
  .text{
    font-weight: bold;
    color: #0097fc;
  }
}