@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	font-family: 'Lora', serif;
}

#top_title{
    text-align: center;
    font-size: 40px;
	margin: 5rem 0rem 2rem 0rem;
    text-shadow: 2px 2px 3px grey;
}

#sub_title {
	text-align: center;
    font-size: 22px;
	margin-bottom: 5rem;
	font-weight: 700;
}

#intro_container{
    background-color: #E7E7E7;
    display: flex;
    flex-flow: row wrap;
	justify-content: center;
	margin-bottom: 50px;
}

#left{
/*    border: 2px solid green;*/
    width:25%;
    margin:30px 20px;
	min-width: 300px;
	max-width: 600px;
	flex:300px;
	}
#student_img{
    order: 1;
    width:100%;
/*    margin: 30px;*/
    object-fit: cover;
	margin: 20% 0;
}

#right{
    order:2;
    width:85%;
	max-width: 900px;
	padding: 30px 3%;
	flex:400px;
	font-size: 18px;
/*    border: 2px solid green;*/
}

#FAQ-section-title {
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	margin: 5rem 0rem 3rem 0rem;
}

.accordion-item-body-content li {
	list-style-position: inside;
	margin-left: 20px;
}

.detail {
  margin-left: 20px;
}


table {
	padding: 2rem 5% 0 5%;
	width: 100%;
}

table td {
	border-bottom: 1px solid black;
}

caption {
	font-size: 14px;
	padding-top: 20px;
	border-top: solid 1px gold;
}

.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}
.accordion-item {
  background-color: lightgoldenrodyellow;
  color: black;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}
.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}
.accordion-item-header.active::after {
  content: "\2212";
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
	background-color: white;
}

#intern-container {
	max-width: 95%;
	margin: 0rem auto 10rem auto;
	font-size: 15px;
	color: white;
	column-count: 3;
	background-color: #053C99;
	padding: 5%;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

#previous-interns {
	max-width: 95%;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin: 5rem auto 0rem;
	padding-top: 2rem;
	background-color: #053C99;
	color: white;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

#intern-container ul li {
	padding-bottom: 0.5rem;
	list-style-type: circle;
	list-style-position: inside;
}

#callforapps {
	background-color: gold;
	padding: 1rem;
	border-radius: 12px;
}

@media(max-width:767px) {
	#intern-container {
		column-count: 2;
	}
}

