/*
*
*
Custome css pro stránku site
*
*
*/

#section-1 {
  padding: 10px 10px;
}

#section-1 .wrapper {
  max-width: 1200px;
  margin: 0px auto 50px auto;
}

#section-2 {
  padding: 10px 10px;
  background-color: var(--pozadi-1);
}

#section-2 .wrapper {
  max-width: 1200px;
  margin: 50px auto 50px auto;
  display: flex;
  flex-direction: row;
  gap: 30px;
}

#section-2 img {
  max-width: 400px;
}

#section-3 {
  padding: 10px 10px;
}

#section-3 .wrapper {
  max-width: 1200px;
  margin: 50px auto 50px auto;
  display: flex;
  flex-direction: row;
  gap: 30px;
}

#section-3 img {
  max-width: 400px;
}

@media only screen and (max-width: 950px) {
  #section-2 .wrapper {
    flex-direction: column;
    align-items: center;
  }

  #section-3 .wrapper {
    flex-direction: column;
    align-items: center;
  }

  #section-3 img {
    order: 2;
  }
}
