/*---Mobile---*/

/*banner*/
.banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006DB1;
  height: calc(100vh - 70px);
}

.banner-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  width: 80%;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 50px;
}

.banner-info--header {
  color: #006DB1;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.banner-info--content {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: center;
}

/*questions*/
.questions-container {
  background-color: #F5F5F5;
  padding: 20px;

}

.questions-header {
  color: #006DB1;
  font-size: 30px;
  font-weight: 800;
  margin: 15px 0;
  text-align: center;
}

.questions-separator {
  background-color: #FBBA00;
  height: 2px;
  width: 30%;
  margin: 15px 0 30px;
}

.academia {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.academia-container {
  background-color: #FFFFFF;
  width: 100%;
  padding: 20px;
}

.academia-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #DDDDDD;
}

.academia-header {
  color: #006DB1;
  font-size: 20px;
  margin: 10px 0;
}

.academia-question {
  border-bottom: 2px solid #DDDDDD;
}

.question {
  font-weight: bold;
  font-size: 16px;
}

.answer {
  font-size: 16px;
}

.consulting {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.consulting-container {
  background-color: #FFFFFF;
  width: 100%;
  padding: 20px;
}

#sat, #toefl, #other {
  cursor: pointer;
  font-size: 22px;
}

#questionsSAT {
  display: none;
}

#questionsTOEFL {
  display: none;
}

#questionsOTHER {
  display: none;
}

/*---Medium screen---*/
@media all and (min-width: 950px) {
  
  /*banner*/
  .banner-container {
    height: calc(100vh - 100px);
  }

  .banner-info {
    padding: 40px;
  }
  
  .banner-info--header {
    font-size: 50px;
    margin: 15px 0;
  }

  /*questions*/
  .questions-container {
    background-color: #F5F5F5;
    padding: 20px 100px;
  }

  .academia-question {
    display: flex;
  }
  
  .question {
    flex: 3;
    font-weight: bold;
    font-size: 16px;
  }
  
  .answer {
    flex: 8;
    font-size: 16px;
  }
}

/*---Large Screen---*/
@media all and (min-width: 2000px) {

  /*banner*/
  .banner-container {
    height: calc(100vh - 125px);
  }
  
  .banner-info {
    padding: 50px;
  }
  
  .banner-info--header {
    font-size: 60px;
  }

  .banner-info--content {
    font-size: 20px;
  }

  /*questions*/
  .questions-container {
    background-color: #F5F5F5;
    padding: 20px 150px;
  }
}