#homepage-1 .ck-content {
  display: flex;
  flex-direction: column;
}

/* Default desktop order */
.ps-top-categories {
  order: 1;
}
.ps-home-banner {
  order: 2;
}
/* All other divs */
#homepage-1 .ck-content > div:not(.ps-top-categories):not(.ps-home-banner) {
  order: 3;
}

/* On mobile swap the first two, but keep others last */
@media (max-width: 768px) {
  .ps-top-categories {
    order: 2;
  }
  .ps-home-banner {
    order: 1;
  }
  #homepage-1 .ck-content > div:not(.ps-top-categories):not(.ps-home-banner) {
    order: 3;
  }
}

@media (max-width: 1200px) {
  .header--mobile {
    background-color: white;
    border-bottom: 1px solid #efefef;
  }
  
  .header.header--mobile{
        background: linear-gradient(126deg, #ffe0a9, #f5b746);
	}
  
  .header--mobile.header--sticky .navigation--mobile{
    background-color: white;
  }
}