/* style for header content */

.header-container {
  background-color: #d1e8e2;
}

.header-content {
  width: 80%;
  height: 100vh;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-side-img {
  width: 85%;
}

.header-content .text h1 {
  text-align: center;
  font-size: 50px;
}

.header-content .text h1 span {
  color: #116466;
}

.header-content .text p {
  width: 90%;
  margin: auto;
  text-align: justify;
  /* ? */
  font-size: 20px;
  color: #757575;
}

#learn-more {
  background-color: rgb(253, 174, 109);
  color: white;
  display: block;
  width: 130px;
  margin: auto;
  margin-top: 50px;
  text-align: center;
  padding: 15px 20px;
  font-size: 20px;
  border-radius: 5px;
  box-shadow: 4px 4px 2px #ff7b00;
}


/* introduction section: how wwt works */
.introduction-container {
  width: 90%;
  margin: auto;
  margin-bottom: 50px;
}

/* how wwt works? & 100% safety guaranteed */
.introduction-container h1 {
  text-align: center;
  padding: 50px 50px;
  margin: 0;
}

.step {
  background-color: #d1e8e2;
  border: 1px solid #d1e8e2;
  box-shadow: 4px 4px 2px #116466;
  border-radius: 10px;
  width: 75%;
  margin: auto;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step .text {
  width: 50%;
}

.step .text p {
  color: #525252;
  text-align: justify;
}

.step-img {
  width: calc(100px + 10%);
  height: calc(100px + 10%);
  margin-left: 5%;
}

#complete {
  width: calc(95px + 5%);
  padding: 5% 2% 5% 2%;
  /* image does not have padding initially so give some padding */
}

#find-translator {
  width: calc(115px + 10%);
  height: calc(115px + 10%);
  ;
}

.introduction-container h1>img {
  width: 45px;
  display: block;
  margin: auto;
  margin-top: 20px;
}

/* see other's comments */

.comments-container {
  width: 80%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.comments-container h1 {
  margin-left: 10px;
  padding: 20px 20px;
}

.comments-container .comment-area img {
  width: 120px;
  height: 120px;
  margin: 15px;
  border-radius: 50%;
}

.comment-area {
  background-color: white;
  box-shadow: 4px 4px 2px #7e7e7e;
  border-radius: 10px;
  width: 85%;
  margin: auto;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-around;
}

.comment {
  width: 80%;
}

.comment h3 {
  text-align: right;
  margin-right: 15px;
}

.comment blockquote {
  color: #757575;
}

.comments-container h1 a {
  font-size: inherit;
  /* h1 size */
  color: #f7902f;
}

.comments-container h1 a:hover {
  color: #116466;
}

@media screen and (max-width: 920px) {
  .header-content {
    height: 95vh;
  }

  .header-content .text h1 {
    font-size: 46px;
  }

  .header-content .text {
    margin-top: -20px;
  }

  .header-content {
    flex-direction: column-reverse;
    justify-content: space-evenly;
  }

  .header-side-img {
    display: none;
  }

  .header-side-img {
    display: inline-block;
    width: 70%;
    margin-top: -10px;
  }

  #learn-more {
    margin-top: 30px
  }

}

@media screen and (max-width:780px) {
  .header-content .text h1 {
    font-size: 40px;
  }

  .header-content .text {
    margin-top: -40px;
  }

  .header-content .text p {
    font-size: 14px;
  }

  #learn-more {
    width: 110px;
    font-size: 16px;
    padding: 10px 12px;
    margin-top: 40px;
  }


  .comment-area {
    width: 100%;
  }


  .header-content {
    width: 90%;
  }

  .comment {
    width: 100%;
  }

}

@media screen and (max-width: 530px) {
  .header-side-img {
    width: 85%;
  }
  .step {
    flex-direction: column-reverse;
    width: 100%;
  }
  .step .text{
    width: 85%;
  }
  .step-img{
    margin: 0px;
  }
  .comments-container .comment-area img {
    width: 50px;
    height: 50px;
    margin: 25px 0px;
  }
  .comments-container h1{
    padding: 0px;
  }
  blockquote {
    margin: 20px 10px;
  }
  h1{
    font-size: 25px;
  }
}

@media screen and (min-height: 844px) {
  .header-content .text {
    margin-top: -140px;
  }

}