/* Grundlegende Formatierung */
body {
  font-family: Arial, sans-serif;
  background-color: #FAF9F6;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

.wrap{
  max-width:100rem;
  margin:0 auto;
}

.sotho{
  margin: 2rem auto; 
}

.sotho img{
  max-width:15rem;
}

.flex{
  display: flex;
  justify-content: center;
}

.logo img{
  max-width:10rem;
  margin:0 auto 1rem auto;
}

.image-wrap{
  max-width:35vw;
}

.web{
  width: 30vw;
  overflow: hidden; /* wichtig, falls etwas übersteht */
  position: relative;
}

.web img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* oder contain */
  display: block; /* entfernt evtl. unerwünschten Whitespace */
}

.Web-ICHORtec{
  padding-right:1rem;
}

.Web-CAREtower{
  padding-left:1rem;
}

/* @media */

@media only screen and (max-width:1200px){
.sotho{
  width:18rem;
}
.web{
  width: 45vw;
}
.image-wrap{
  max-width:80vw;
}
.logo img{
  max-width:10rem;
  margin:0 auto 1rem auto;
}
}

@media only screen and (max-width:600px){
.flex{
  display: block;
}
.sotho{
  margin:10% auto 2rem auto;
}
.image-wrap{
  margin:0 auto;
}
.image-wrap.ICHORtec{
  margin-bottom:3rem;
}
.web{
  width:auto;
  padding:0 1rem;
}
}