/*detail page*/


/*breadcrumb*/
.breadcrumb {
  position: relative;
  top: 90px;
  left: 100px;
  width: 350px;
  background-color: white;
}
.breadcrumbSeparator {
  margin: auto 10px;
}

@media all and (max-width: 800px){
  .breadcrumb {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
  }
}

/*form*/
#application_form > input, #application_form > textarea {
  border-style: solid;
  border-radius: 19px;
  border-color: #49DDD1;
  padding: 7px 15px;
  margin: 12px;
  width: 300px;
}
@media all and (max-width: 800px) {
  #application_form > input, #application_form > textarea {
    width: 89%;
  }
}

#application_form > input[type="file"] {
  margin-left: 50px;
  /*color: transparent;*/
  border-style: none;
}
#application_form > textarea {
  resize: none;
  border-width: 2px;
  width: 89%;
  height: 100px;
}
#application_form > label {
  margin-top: 50px;
  color: #49DDD1;
}

/*for mobile*/
/*picture*/
@media all and (max-width: 799px) {
  .detailPage img {
    width: 80%;
    margin-top: 100px;
  }
  .detailPage {
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
  .detailPage img.press{
    margin: 0 20px 0 0;
	width: auto;
  }
}

@media all and (min-width: 800px) {
  .detailPage {
    width: 700px;
  }
  .detailPage img {
    margin: 90px auto 40px auto;
    width: 700px;
  }
  .detailPage img.press{
    margin: 0 20px 0 0;
	width: auto;
  }
}
/* text styling */
.detailPage {
  text-align: center;
  margin: 0 auto;
}

.detailPage.row {
  margin: auto 0px !important;
}

.detailPage h2 {
  padding-bottom: 20px;
}

.detailPage p, .detailPage ul, .detailPage ol {
  color: #888787;
  font-weight: 100;
  font-size: 18px;
  text-align: left;
  margin: auto 10px; 
}

.detailPage h3 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Source Sans Pro';
  font-weight: 500;
  font-size: 24px;
  padding-bottom: 40px;
  text-transform: uppercase;
}

.detailPage h4 {
  font-weight: 600;
  text-align: left;
  font-size: 18px;
  margin: 10px 0px 5px 20px; 
}

.detailPage ul {
  list-style: none;
  list-style-position: inside;
  text-indent: -19px;
  padding-left: 21px;
}

.detailPage ul li:before {
  content: "•";
  color: black;
  padding-right: 15px;
}

.applyNowButton {
  font-weight: 100;
  font-size: 21px;
  border: solid;
  background-color: #49DDD1;
  color: white;
  margin-top: 60px;
  padding: 10px 30px;
  border-radius: 20px;
}
.applyNowButton:hover {
  background-color: #21B8AC;
}

.justify p {
	text-align: justify;
}