/*allgemein*/

.contentText{
    width: 90%;
    margin-left: 5%;
    margin-bottom: 100px;
}

.contentTextBasic{
    width: 90%;
    margin-left: 5%;
}

.container {
    display: flex;
    align-items: center;
    width: 90%;
    margin-left: 5%;
    margin-top: 30px;
    overflow: hidden;
  }

  .container img {
    height: 450px;
    width: 40%;
    object-fit: cover;
  }

  .text {
    width: 40%;
  }
/*PC*/

@media only screen and (min-width: 1001px){
    .heroSection{
        width: 100%;
    }

    .heroContent {
        padding: 50px 5%;
    }

    .contentText{
        margin-bottom: 200px;
    }

    .text {
        width: 40%;
        margin-left: 10%;
      }
    
    .container{
        margin-bottom: 150px;
    }
}

/*mobile*/
/*  */
@media only screen and (max-width: 1000px) {
    .heroSection {
        width: 100%;
        display: flex;
    }

    .heroContent {
        padding: 50px 5%;
    }

    .container {
        flex-direction: column;
        margin-bottom: 100px;
      }
    
      .container img {
        width: 100%;
        height: 290px;
        margin-top: 0px;
      }
  
      .text {
        width: 100%;
        margin-top: 30px;
      }
}
