* {
  border: 0px solid black;
}

.body-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding-top: 100px;
}

.contentContainerItem {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  border-radius: 20px;
  margin: 1%;
  height: 190px;
}

.contentEnContainerItem {
  box-sizing: border-box;
  display: flex;
  /* justify-content: space-between; */
  flex-direction: row;
  border-radius: 20px;
  margin: 1%;
  height: 260px;
  width: 100%;
}

.contentContainer {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.content {
  box-sizing: border-box;
  display: flex;
  width: 60%;
  height: auto;
  align-self: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.mainTitle {
  display: flex;
  align-self: flex-start;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Noto Sans HK', sans-serif;
}
.contentTitle {
  font-size: 24px;
  margin: 1% 2%;
  font-family: 'Noto Sans HK', sans-serif;
  font-weight: 700;
}

.contentDescription {
  font-size: 16px;
  width: 100%;
  margin: 2%;
  font-family: 'Noto Sans HK', sans-serif;
}

.contentImage {
  display: flex;
  width: 40%;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 1% 4% 1% 2%;
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 2vw 1vw;
}
.banner > img {
  width: 100%;
  height: auto;
}

.footerLogoContainer {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 500px;
  padding-top: 40px;
  padding-bottom: 20px;
}

.footerLogo {
  padding-right: 30px;
}

.footerLogo > img {
  width: 100%;
  height: auto;
}


@media (min-width:0px) {
  .contentImage > img {
    width: 100%;
    max-height: auto;
  }
  .contentContainer {
    flex-direction: column;
  }
  .contentContainerItem {
    width: 100%;
  }
  .content {
    margin: 2vh 0.7vh 2vh 2vh
  }
  .mainTitle {
    margin: 10px 5px;
  }
  .body-container {
    padding-top: 13vw;
  }
  .contentTitle{
    font-size: 18px;
  }
  .contentDescription{
    font-size: 11px;
  }
}

@media (min-width:280px) {
  .contentImage > img {
    width: auto;
    height: 80px;
  }
}

@media (min-width:400px) {
  .contentImage > img {
    width: auto;
    height: 100px;
  }
}

@media (min-width:600px) {

  .contentImage > img {
    width: auto;
    height: 120px;
  }
  .contentTitle{
    font-size: 24px;
  }
  .contentDescription{
    font-size: 16px;
  }
}

@media (min-width:800px) {

  .contentImage > img {
    width: auto;
  }
}

@media (min-width:1280px) {
  .contentContainer {
    flex-direction: row;
  }
  .content {
    margin: 2.8vh;
  }
  .contentImage > img {
    width: auto;
    max-height: 12vw;
  }
  .mainTitle {
    margin: 10px 5px;
  }
  .content {
    margin: 10px 10px 20px 20px
  }
  .contentContainerItem {
    width: 600px;
  }
  .body-container {
    padding-top: 120px;
  }
}
