section {
  display: inline-block;
  width: 100%;
  margin-bottom: 160px;
}

.column_wrapper {
  display: inline-block;
  width: 100%;
}

.column_wrapper.white_content {
  padding: 80px;
}

.column_wrapper.margin_bottom_80 {
  margin-bottom: 80px;
}

.column_wrapper.margin_top_40 {
  margin-top: 40px;
}

.column_wrapper.margin_top_80 {
  margin-top: 80px;
}

.column_wrapper.margin_bottom_60 {
  margin-bottom: 60px;
}

.column_wrapper.margin_bottom_40 {
  margin-bottom: 40px;
}

.column_container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.column_container.branding-navigation {
  gap: 40px;
  justify-content: flex-start;
}

.column_container .column {
  display: inline-block;
  width: 100%;
  /* background-repeat: no-repeat; */
  /* background-position: center; */
  /* background-size: cover; */
}

.column.height1 {
  height: 640px;
}

.column.height2 {
  height: 680px;
}

.column.height3 {
  height: 700px;
}

.column img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.column .bg_img {
  display: flex;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: flex-start;
}

.column .column_content {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.column .column_content img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.column .image_container {
  display: inline-block;
  width: 100%;
  height: 500px;
  margin-bottom: 40px;
  overflow: hidden;
}

.column_container.two .column {
  display: inline-block;
  width: calc((100% - 40px)/2);
}

.column_container.three .column {
  display: inline-block;
  width: calc((100% - 80px)/3);
}

.column_container.four .column {
  display: inline-block;
  width: calc((100% - 120px)/4);
}

.column_container.five .column {
  display: inline-block;
  width: calc((100% - 160px)/5);
}

/* responsive */
@media screen and (max-width:1260px) {
  .column_container .column {
    display: block;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 20px;
  }

  .column_container .column.res-order-0 {
    order: 0;
    margin-bottom: 0;
  }

  .column_container .column.res-order-1 {
    order: 1;
    margin-bottom: 40px;
  }

  .column_container .column.res-order-2 {
    order: 2;
    margin-bottom: 0;
  }

  .column_container .column.res-order-3 {
    order: 3;
  }

  .column_container .column:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width:768px) {
  section {
    margin-bottom: 80px;
  }
  
  .column.height1.gift_shop {
    height: 292px;
  }

  .gift_shop.img2 .bg_img {
    background-image: url('../j_images/brand1_img2_mobile.png')
  }

  .gift_shop.img3 .bg_img {
    background-image: url('../j_images/brand1_img3_mobile.png')
  }

  .column.height1.currys {
    height: 292px;
  }

  .currys.img3 .bg_img {
    background-image: url('../j_images/brand3_img3_mobile.jpg')
  }

  .column.height1.airpe {
    height: 292px;
  }

  .airpe.img3 .bg_img {
    background-image: url('../j_images/brand2_img3_mobile.jpg')
  }

  .column_wrapper.white_content {
    padding: 20px;
  }
}