@import "./header.css";
@import "./footer.css";

*{
  box-sizing: border-box;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans TC', sans-serif;
  letter-spacing: 0.04em;
  overflow: hidden;
  overflow-y: scroll;
}
 
img, embed{
  max-width: 100%;
}

div.flex_container{
  display: flex;
  flex-direction: column;
  width: 100%;
}


/*====== 進場 banner ======*/

div.first_banner{
  /* border: 1px solid black; */
  text-align: center;
  margin: 60px auto 0;
  width: 1080px;
  height: auto;
  position: relative;
  z-index: -1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

div.first_banner_title{
  font-size: 28px;
  font-weight: 700;
  padding: 20px 0 0;
  height: 60px;
  position: absolute;
  top: 6%;
}

div.first_banner_subtitle{
  padding: 10px 0;
  height: 50px;
  position: absolute;
  top: 18%;
}

img.dreamer{
  width: 900px;
  z-index: -2;
}


/*====== 行動版 RWD | 320px ~ 414px ======*/
@media screen and (min-width: 320px) and (max-width: 413.98px){

  div.first_banner{
    margin: 80px auto 0;
    width: 100%;
    height: 100%;
  }
  
  div.first_banner_title{
    font-size: 24px;
    top: -20px;
  }
  div.first_banner_subtitle{
    font-size: 14px;
    padding-top: 10px;
    top: 15%;
  }

} 



/*====== 行動版 RWD | 414px ~ 768px ======*/
@media screen and (min-width: 414px) and (max-width: 767.98px){
  div.first_banner{
    margin: 80px auto 0;
    width: 100%;
    height: 100%;
  }
  
  div.first_banner_title{
    font-size: 25px;
    padding-top: 20px;
    top: 3%;
  }
  div.first_banner_subtitle{
    font-size: 14px;
    padding-top: 20px;
    top: 15%;
  }

}


/*====== 行動版 RWD | 768px ~ 1200px ======*/
@media screen and (min-width: 768px) and (max-width: 1199.98px){
  div.first_banner{
    width: 100%;
  }
  
  div.first_banner_title{
    padding-top: 20px;
  }
 
}


/*====== 我們的使命 ======*/

div.mission_block{
  /* border: 1px solid red; */
  text-align: center;
  margin: 0 auto;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

div.our_mission{
  /* width: 1080px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 60px; */
  min-width: 100%;
  background-image: linear-gradient(180deg, #F7CCC5 0%, rgba(247, 204, 197, 0) 100%);
}

div.mission_title, div.team_title{
  font-size: 28px;
  font-weight: 700;
  border-bottom: 1px solid black;
  width: 450px;
  padding: 20px 0 25px;
  margin-top: 50px;
  margin-bottom: 10px;
}

div.mission_intro, div.team_intro{
  /* border: 1px solid red; */
  line-height: 250%;
  padding: 20px 0 0;
  width: 62%;
  
}

div.brand_feature_block{
  margin: 0 auto 40px;
  /* border: 1px solid blue; */
  width: 1080px;
  padding-bottom: 30px;
}

div.feature_row{
  width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* border: 1px solid green; */
  height: 600px;
}

div.row_card{
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

img.feature_img{
  width: 500px;
}

div.card_title{
  font-size: 28px;
  font-weight: 700;
  padding: 10px 0;
  position: relative;
  top: -100px;
}

div.card_text{
  line-height: 200%;
  width: 436px;
  position: relative;
  top: -80px;
}

a.tool_link{
  color: #2869D1;
  text-decoration: none;
  border-bottom: 1px solid #2869D1;
}

div.go_signup{
  width: 1080px;
  margin: 0px auto 40px;
  padding: 40px 0;
  line-height: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

div.go{
  width: 400px;
  border-top: 1px solid black;
  padding-top: 30px;
}
 
button.start{
  background-color: #2869D1;
  padding: 6px 18px 8px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  text-align:center;
  letter-spacing: 0.1em;
  font-size: 16px;
  width: 115px;
}

button.start:hover{
  box-shadow: 1px 2px 2px 0px #00000040;
}


/*====== 行動版 RWD | 320px ~ 414px ======*/
@media screen and (min-width: 320px) and (max-width: 413.98px){

  div.mission_block{
    width: 100%;
  }
  div.our_mission{
    min-width: 100%;
  }

  div.mission_title{
    font-size: 24px;
    width: 100%;
  }

  div.mission_intro{
    font-size: 16px;
    width: 81%;
  }

  br.-break{
    display: none;
  }

  div.brand_feature_block{
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  div.feature_row{
    width: 100%;
    flex-direction: column;
    height: auto;
  }

  div.row_card{
    margin: -60px auto -30px;
  }

  div.card_title{
    font-size: 26px;
    width: 100%;
    margin-top: 20px;
  }

  div.card_text{
    font-size: 16px;
    width: 83%;
  }

  div.go_signup{
    width: 100%;
    margin-top: -20px;
    margin-bottom: 20px;
    padding-top: 0;
  }

  div.go{
    width: 100%;
  }

}

/*====== 行動版 RWD | 414px ~ 460px ======*/
@media screen and (min-width: 414px) and (max-width: 459.98px){

  div.mission_block{
    width: 100%;
  }
  div.our_mission{
    min-width: 100%;
  }

  div.mission_title{
    font-size: 26px;
    width: 100%;
  }

  div.mission_intro{
    font-size: 16px;
    width: 87%;
  }

  br.-break{
    display: none;
  }

  div.brand_feature_block{
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  div.feature_row{
    width: 100%;
    flex-direction: column;
    height: auto;
  }

  div.row_card{
    margin: -60px auto -30px;
  }

  div.card_title{
    font-size: 26px;
    width: 100%;
  }

  div.card_text{
    font-size: 16px;
    width: 83%;
  }

  div.go_signup{
    width: 100%;
    margin-top: -20px;
    padding-top: 0;
    padding-bottom: 20px;
  }

  div.go{
    width: 100%;
  }

}


/*====== 行動版 RWD | 460px ~ 768px ======*/
@media screen and (min-width: 460px) and (max-width: 767.98px){
  div.mission_block{
    width: 100%;
  }
  div.our_mission{
    min-width: 100%;
  }

  div.mission_title{
    font-size: 26px;
    width: 100%;
  }

  div.mission_intro{
    font-size: 16px;
    width: 87%;
  }

  div.brand_feature_block{
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  div.feature_row{
    width: 100%;
    flex-direction: column;
    height: auto;
  }

  div.row_card{
    margin: -60px auto -30px;
  }

  div.card_title{
    font-size: 26px;
    width: 100%;
  }

  div.card_text{
    font-size: 16px;
    width: 83%;
  }

  div.go_signup{
    width: 100%;
  }

  div.go{
    width: 100%;
  }

}


/*====== 行動版 RWD | 768px ~ 1200px ======*/
@media screen and (min-width: 768px) and (max-width: 1199.98px){
  
  div.mission_block{
    width: 100%;
  }
  div.our_mission{
    min-width: 100%;
  }

  div.mission_title{
    font-size: 26px;
    width: 100%;
  }

  div.mission_intro{
    font-size: 16px;
  }

  div.brand_feature_block{
    width: 100%;
    /* display: flex;
    flex-direction: column; */
  }

  div.feature_row{
    width: 100%;
    height: auto;
  }

  div.row_card{
    width: 50%;
    margin: -60px auto -50px;
  }

  div.card_title{
    font-size: 26px;
    width: 100%;
  }

  div.card_text{
    font-size: 16px;
    width: 75%;
  }

  div.go_signup{
    width: 100%;
  }

  div.go{
    width: 100%;
  }


}


/*====== 我們的團隊 ======*/

div.our_team{
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 60px; */
  min-width: 1200px;
  background-image: linear-gradient(180deg, #B3D0FF 0%, rgba(179, 208, 255, 0) 100%);
}

div.team_intro{
  width: 60%;
}

div.team_feature_block{
  margin: 40px auto 40px;
  /* border: 1px solid blue; */
  width: 1080px;
  padding-bottom: 30px;
}

div.team_row{
  width: 1080px;
  margin: -30px auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* border: 1px solid green; */
}

div.team_row_card{
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 30px;
  background-color: rgba(238, 238, 238, .7);
  width: 48%;
  height: 30%;
  margin-top: 60px;
}

img.team_img{
  width: 400px;
}

div.team_card_title{
  font-size: 28px;
  font-weight: 700;
  position: relative;
  top: 60px;
}

div.team_card_text{
  width: 436px;
  position: relative;
  bottom: 60px;
}

div.learn_more{
  width: 1080px;
  margin: 30px auto 40px;
  padding: 40px 0;
  text-align: center;
}

a.hr_src{
  text-decoration: none;
  text-align: center;
  color: #2869D1;
  border-bottom: 1px solid #2869D1;
}


/*====== 行動版 RWD | 320px ~ 414px ======*/
@media screen and (min-width: 320px) and (max-width: 413.98px){

  div.our_team{
    min-width: 100%;
  }
  div.team_title{
    font-size: 24px;
    width: 100%;
  }

  div.team_intro{
    font-size: 16px;
    width: 83%;
  }

  br.-break1{
    display: none;
  }

  div.team_feature_block{
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  div.team_row{
    width: 90%;
    flex-direction: column;
    height: auto;
    margin-bottom: 30px;
  }

  div.team_row_card{
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
  }  

  div.team_card_title{
    font-size: 26px;
    width: 100%;
    top: 40px;
  }

  div.team_card_text{
    font-size: 16px;
    width: 83%;
    bottom: 40px;
  }

  div.learn_more{
    width: 100%;
    margin: -60px auto 60px;
  }

  a.hr_src{
    font-size: 14px;
  }

}

/*====== 行動版 RWD | 414px ~ 520px ======*/
@media screen and (min-width: 414px) and (max-width: 519.98px){

  div.our_team{
    min-width: 100%;
  }
  div.team_title{
    font-size: 24px;
    width: 100%;
  }

  div.team_intro{
    font-size: 16px;
    width: 83%;
  }

  br.-break1{
    display: none;
  }

  div.team_feature_block{
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  div.team_row{
    width: 90%;
    flex-direction: column;
    height: auto;
    margin-bottom: 30px;
  }

  div.team_row_card{
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
  }  

  div.team_card_title{
    font-size: 26px;
    width: 100%;
  }

  div.team_card_text{
    font-size: 16px;
    width: 83%;
  }

  div.learn_more{
    width: 100%;
    margin: -60px auto 60px;
  }

  a.hr_src{
    font-size: 16px;
  }

}

/*====== 行動版 RWD | 520px ~ 768px ======*/
@media screen and (min-width: 520px) and (max-width: 767.98px){

  div.our_team{
    min-width: 100%;
  }
  div.team_title{
    font-size: 24px;
    width: 100%;
  }

  div.team_intro{
    font-size: 16px;
    width: 83%;
  }

  div.team_feature_block{
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  div.team_row{
    width: 100%;
    flex-direction: column;
    height: auto;
    margin-bottom: 30px;
  }

  div.team_row_card{
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
  }  

  div.team_card_title{
    font-size: 26px;
    width: 100%;
  }

  div.team_card_text{
    font-size: 16px;
    width: 83%;
  }

  div.learn_more{
    width: 100%;
    margin: -60px auto 60px;
  }

  a.hr_src{
    font-size: 14px;
  }
}


/*====== 行動版 RWD | 768px ~ 1200px ======*/
@media screen and (min-width: 768px) and (max-width: 1199.98px){

  div.our_team{
    min-width: 100%;
  }
  div.team_title{
    width: 100%;
  }

  div.team_intro{
    font-size: 16px;
  }
 
  div.team_feature_block{
    width: 100%;
    /* display: flex;
    flex-direction: column; */
  }

  div.team_row{
    width: 100%;
    /* flex-direction: column; */
    height: auto;
    margin-bottom: 30px;
  }

  div.team_row_card{
    /* min-width: 360px;
    min-height: 324px; */
    margin-top: 30px;
  }  

  img.team_img{
    width: 320px;
    height: 320px;
  }

  div.team_card_title{
    font-size: 26px;
    width: 100%;
  }

  div.team_card_text{
    font-size: 16px;
    width: 83%;
  }

  div.learn_more{
    width: 100%;
    margin: -60px auto 60px;
  }

  
  
}


/*====== 訂閱 set up ======*/

div.subscribe_block{
  margin: 0 auto 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 60px; */
  min-width: 100%;
  height: 400px;
  background-image: linear-gradient(90deg, rgba(242, 77, 46, 0.5) 1.49%, rgba(60, 100, 177, 0.5) 91.49%);
}

div.subscribe_title{
  font-size: 28px;
  font-weight: 700;
}

div.subscribe_text{
  font-family: 'Lato', sans-serif;
  padding: 20px 0 ;
}

form.sub_form{
  margin-top: 10px;
}

input.follow{
  width: 520px;
  height: 40px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
}

input.follow::placeholder{
  padding-left: 20px;
  font-family: 'Noto Sans TC', sans-serif;
  letter-spacing: 0.04em;
}

input.follow:focus, input[type="email"]:active{
  padding-left: 20px;
  background-color: white;
  font-family: 'Noto Sans TC', sans-serif;
  border: none;
  outline: none;
  border: 2px solid #2869D1;
}

button.sub_btn{
  cursor: pointer; 
  border: none;
  background-color: #2869D1;
  color: white;
  padding: 6px 18px 8px;
  border-radius: 8px;
  text-align:center;
  letter-spacing: 0.1em;
  font-size: 16px;
  margin-top: 30px;
}

button.sub_btn:hover{
  box-shadow: 1px 2px 2px 0px #00000040;
}



/*====== 行動版 RWD | 320px ~ 414px ======*/
@media screen and (min-width: 320px) and (max-width: 413.98px){

  div.subscribe_title{
    font-size: 18px;
  }

  div.subscribe_text{
    font-size: 14px;
  }

  input.follow{
    width: 100%;
  }

}


/*====== 行動版 RWD | 414px ~ 768px ======*/
@media screen and (min-width: 414px) and (max-width: 767.98px){

  div.subscribe_title{
    font-size: 20px;
  }

  div.subscribe_text{
    font-size: 14px;
  }

  input.follow{
    width: 100%;
  }

}


/*====== 行動版 RWD | 768px ~ 1200px ======*/
@media screen and (min-width: 768px) and (max-width: 1199.98px){

  div.subscribe_title{
    font-size: 26px;
  }

  input.follow{
    width: 100%;
  }

}
