/* Tablet adjustments */
@media (max-width: 1024px) {
  main {
    flex-direction: column;
    height: auto;
  }
  main .left, main .right {
    width: 100%;
    height: auto;
  }
  .content-wrapper {
    flex-wrap: wrap;
  }
  .content-wrapper .content {
    width: 100%;
    height: auto;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .sticky-header img{
    width: 50%;
  }
  header h1 {
    font-size: clamp(32px, 6vw, 48px);
  }
  img:not(.logo):not(.teaser) {
    width: 80%;
    height: auto;
    max-width: 250px;
  }
  .tab-button {
    flex: 1 1 100%;
    margin-bottom: 5px;
  }
  .tabs {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  html{
    overflow-x: hidden;
  }

  *{
    box-sizing: border-box;
  }
  body {
    font-size: 14px;
    overflow-x: hidden;
  }
  .sticky-header img{
    width: 50%;
  }
  header h1 {
    font-size: clamp(24px, 9vw, 36px);
  }
  img:not(.logo):not(.teaser) {
    max-width: 200px;
    max-height: 200px;
  }

  .left{
    padding: 2%!important;
  }
  .content-wrapper {
    flex-direction: column;
    width: 100%;
    width: 100%;
  }
  .content-wrapper .content {
    padding: 2%;
    margin: 0;
    margin-bottom: 2%;
    overflow-y: hidden;
  }

  .tab-content{
    padding: 5%;
  }
  .tabs{
    flex-direction: row;
  }
  .tab-button {
    width: 120px;
  }

  .tab p{
    display: none;
  }
  #default {
    display: none!important;
    font-size: 14px;
    padding: 10px;
  }
  .bird-container {
    display: none;
  }
}