/*custom font*/
@import url(https://kenvue.brightspotcdn.com/resource/00000186-0f04-dffd-a3ae-ef8c85cb0000/styleguide/assets/fonts/NHaasGroteskDSPro-15UltTh.fbef1a031d2f12524f469423101908c8.ttf);

/*basic reset*/
* {
  margin: 0;
  padding: 0;
}

html {
  height: 140%;
  /*Image only BG fallback*/

  /*background = gradient + image pattern combo*/
}

body {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;

}
.body-class{
  background:#0169b0;

}
/*form styles*/
#msform {
  width: 950px;
  margin: 50px auto;
  text-align: center;
  position: relative;
}
#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 50px;
  box-shadow: 1 1 1px 1px rgba(0, 0, 0, 0.4);
  padding: 50px 120px;
  box-sizing: border-box;
  width: 85%;
  margin: 0 10%;

  /*stacking fieldsets above each other*/
  position: relative;
}

/*inputs*/
#msform input,
#msform textarea {
  padding: 15px;
  border: 1px solid #000000;
  border-radius: 50px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: Helvetica Neue, montserrat;
  color: #000000;
  font-size: 18px;
}

/*buttons*/
#msform .action-button {
  width: 260px;
  height: 70px;
  background: #ffffff;
  font-weight: normal;
  color: black;
  border: 4;
  border-radius: 50px;
  cursor: pointer;
  padding: 0px;
  margin: 10px 10px;
  text-decoration: none;
  font-size: 20px;
  transition: background 0.5s, border 0.5s, color 0.5s;
}
#msform .action-button:hover,
#msform .action-button:focus {
  box-shadow: 0 0 0 0px white, 0 0 0 0px #000000;
  background: #000000;
  font-weight: normal;
  color: white;
  border: 0;
}
/*headings*/
.fs-title {
  font-size: 28px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  text-align: left;
}

.container-contact100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background: #f5f5f5;

}

.card{
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  padding: 85px;
  border-radius: 30px;
}
.information-detail,
.infomration-title{
  font-size: 19px;
  font-weight: 500;
}
.information-box {
  margin-bottom: 8px;
}
.information-detail{
  margin-left: 5px;
}
.student-placeholder{
  border-radius: 30px;
}
.text-right{
  text-align: right;
}

@media (max-width:767px){
  .card{
    width:40rem !important;
  }
  #msform{
    width: 700px;
  }
}
@media (max-width:640px){
  .card{
    width:30rem !important;
  }
  .text-right{
    text-align: center;
    margin-top: 30px;
  }
  #msform{
    width: 600px;
    margin:30px auto;
  }
  #msform fieldset{
    padding: 40px;
  }
}

@media(max-width:480px){
  #msform{
    width:450px;
  }
}

@media(max-width:320px){
  #msform{
    width:300px;
  }
  #msform fieldset img{
    width:auto !important;
  }
  #msform .action-button{
    width: 117px;
    height: 47px;
  }
}




/* iPhone 6, 6S, 7, and 8 */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) {
  #msform fieldset{
    margin: 0 5%;
  }
  #msform{
    width: 400px;
  }
  #msform .action-button{
    width: 200px;
    
  }
}


