.showhArea {
  max-width: 980px;
  margin: 0 auto;
}

.switch {
  visibility: hidden;
}

img {
  max-width: 100%;
}

.spOnly {
  display: none;
}

@media screen and (max-width: 768px) {
  .spOnly {
    display: block;
  }
}

.pcOnly {
  display: block;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }
}

.note {
  color: #9aa0a6;
  font-size: 12px;
  margin-top: 40px;
}

.rText {
  padding-left: 7%;
}

@media screen and (max-width: 768px) {
  .rText {
    padding-left: 0;
  }
}

#Intro {
  text-align: center;
}

#Intro .headerIcon {
  width: 25%;
  margin: 40px auto;
}

@media screen and (max-width: 768px) {
  #Intro .headerIcon {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  #Intro .mvText {
    width: 80%;
    margin: 20px auto;
  }
}

#Intro .feature {
  padding: 3%;
}

#Intro .feature .col4 {
  width: 86%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: baseline;
}

#Intro .feature .col4 .flexItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #Intro .feature .col4 .flexItem {
    flex-direction: row;
    width: 100%;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  #Intro .feature .col4 .flexItem .icon {
    width: 20%;
    text-align: center;
    margin-right: 5px;
  }
  #Intro .feature .col4 .flexItem .icon img {
    height: 1.7rem;
  }
}

@media screen and (max-width: 768px) {
  #Intro .feature .col4 {
    flex-direction: column;
    max-width: 320px;
  }
}

#Design {
  padding: 3%;
  text-align: center;
}

#Design h2 {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  #Design h2 {
    font-size: 26px;
    margin: 30px auto 10px;
  }
}

#Design h4 {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  #Design h4 {
    font-size: 20px;
    margin: 30px auto 10px;
  }
}

#Design .col2 {
  display: flex;
  align-items: center;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #Design .col2 {
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
  }
}

#Design .col2 > div {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #Design .col2 > div {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #Design .col2.reverse {
    flex-direction: column-reverse;
  }
}

#Design .displayGrid {
  display: grid;
  grid-template-columns: .333fr .667fr;
  grid-template-rows: 1fr;
  grid-auto-columns: 1fr;
  gap: 20px;
  grid-auto-flow: row;
  grid-template-areas: "a b";
}

@media screen and (max-width: 768px) {
  #Design .displayGrid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-auto-columns: 1fr;
    grid-template-areas: "a" "b";
  }
}

#Design .a {
  grid-area: a;
}

#Design .b {
  grid-area: b;
}

#Design .displayGrid.reverse {
  display: grid;
  grid-template-columns: 0.667fr 0.333fr;
  grid-template-rows: 1fr;
  grid-auto-columns: 1fr;
  gap: 20px 20px;
  grid-auto-flow: row;
  grid-template-areas: "c d";
}

@media screen and (max-width: 768px) {
  #Design .displayGrid.reverse {
    margin-bottom: 60px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-auto-columns: 1fr;
    grid-template-areas: "c" "d";
  }
}

#Design .c {
  grid-area: c;
}

#Design .d {
  grid-area: d;
}

#Health {
  text-align: center;
  padding: 3%;
  background: #d2dce8;
}

#Health h2 {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  #Health h2 {
    font-size: 26px;
    margin: 30px auto 10px;
  }
}

#Health .col3 {
  width: 86%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px 6%;
  grid-template-areas: "a b c";
}

@media screen and (max-width: 768px) {
  #Health .col3 {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c";
  }
}

@media screen and (max-width: 768px) {
  #Health .col3 h4 {
    font-size: 20px;
    margin: 30px auto 10px;
  }
}

#Health .offerBox {
  width: 86%;
  background: #c5d0de;
  border-radius: 20px;
  padding: 1% 4%;
  box-sizing: border-box;
  margin: 20px auto;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #Health .offerBox {
    padding: 2% 4%;
  }
}

#Health .offerBox.col2 {
  display: flex;
}

@media screen and (max-width: 768px) {
  #Health .offerBox.col2 {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

#Health .offerBox.col2 .inner {
  display: flex;
  align-items: center;
}

#Health .offerBox.col2 .inner p {
  margin: 0 0 0 10px;
}

@media screen and (max-width: 768px) {
  #Health .offerBox.col2 .inner p {
    margin: 6px 6px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  #Health .offerBox.col2 .right {
    flex-direction: column;
  }
}

#Wear {
  background: #ebebf1;
}

#Wear h2 {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  #Wear h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

#Wear .col2 {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #Wear .col2 {
    flex-direction: column;
  }
  #Wear .col2 .rText {
    padding-left: 0;
    margin-top: 30px;
    padding-bottom: 6%;
  }
}

#Wear .col2 div {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #Wear .col2 div {
    width: 100%;
    text-align: center;
  }
}

#Smarts {
  padding: 3%;
  text-align: center;
}

#Smarts h2 {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  #Smarts h2 {
    font-size: 26px;
    margin: 30px auto 10px;
  }
}

#Smarts .col4 {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

#Smarts .col4 .flexItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(25% - 20px);
}

@media screen and (max-width: 768px) {
  #Smarts .col4 .flexItem {
    width: calc(100% - 40px);
    margin: 30px 20px;
  }
}

@media screen and (max-width: 768px) {
  #Smarts .col4 .flexItem h4 {
    font-size: 20px;
    margin: 10px;
  }
}

@media screen and (max-width: 768px) {
  #Smarts .col4 {
    flex-direction: column;
  }
}

#Connected {
  padding: 3%;
  background: #f4efe5;
  text-align: center;
}

#Connected h2 {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  #Connected h2 {
    font-size: 26px;
    margin: 30px auto 10px;
  }
}

#Connected .col3 {
  width: 86%;
  margin: 20px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px 20px;
  grid-template-areas: "a b c";
}

@media screen and (max-width: 768px) {
  #Connected .col3 {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c";
  }
}

@media screen and (max-width: 768px) {
  #Connected .col3 h4 {
    font-size: 20px;
    margin: 10px;
  }
}

#Connected .col3 .a {
  grid-area: a;
}

#Connected .col3 .b {
  grid-area: b;
}

#Connected .col3 .c {
  grid-area: c;
}

#All_Bands {
  padding: 3%;
  background: #fff;
  text-align: center;
}

#All_Bands h2 {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  #All_Bands h2 {
    font-size: 26px;
    margin: 30px auto 10px;
  }
}

#All_Bands .col4 {
  margin: 20px auto;
  display: grid;
  grid-template-columns: .936fr 1fr 1fr .936fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px 20px;
  grid-template-areas: "a b c d" "a2 b2 c2 d2";
}

@media screen and (max-width: 768px) {
  #All_Bands .col4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas: "a a2" "b b2" "c c2" "d d2";
  }
}

#All_Bands .a {
  grid-area: a;
}

#All_Bands .b {
  grid-area: b;
}

#All_Bands .c {
  grid-area: c;
}

#All_Bands .d {
  grid-area: d;
}

#All_Bands .a2 {
  grid-area: a2;
}

#All_Bands .b2 {
  grid-area: b2;
}

#All_Bands .c2 {
  grid-area: c2;
}

#All_Bands .d2 {
  grid-area: d2;
}

#Bands {
  background: #f5f5f5;
  padding: 3%;
}

#Bands h2 {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  #Bands h2 {
    font-size: 26px;
    margin: 30px auto 10px;
  }
}

#Bands .col2 {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #Bands .col2 {
    flex-direction: column;
  }
}

#Bands .col2 div {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #Bands .col2 div {
    width: 100%;
    text-align: center;
  }
}
