/* University FAQ CSS Document */


.Container_FAQ {
    margin: 40px 0 50px;
}

.Head_Container {
	width: 100%;
	background-color: #eeede9;
	margin: 0;
	padding: 0;
	box-shadow: 5px 5px 10px 2px #999;
}

.Head_Image {
	background-image: url("/site/graphics/People/ErrollPaden/I_ErrollThinking_blank_1415x500.png");
	width: 100%;
	height: 240px;
  	background-repeat: no-repeat;
  	background-size: cover;
	background-position: right;
	padding-top: 6%;
	padding-left: 0;
	padding-right: 50%;
    padding-bottom: 100px;
	text-align: left;
	font-size: 30px;
	font-weight: bold;
	text-shadow: 2px 2px 5px #FFF;
}


/* Style the element that is used to open and close the accordion class */
p.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    padding-right: 50px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-bottom:10px;
    font-weight: bold;
    font-size: 1.2em;
    position: relative;
    z-index: 0;
}

/* Add a background color to the accordion if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
p.accordion.active, p.accordion:hover {
    background-color: #ddd;
}

/* Unicode character for "plus" sign (+) */
p.accordion:after {
    content: '\2795'; 
    font-size: 1em;
    color: #777;
    position: absolute;
    right: 15px;
    top: 20px;
    margin-left: 5px;
}

/* Unicode character for "minus" sign (-) */
p.accordion.active:after {
    content: "\2796"; 
}

/* Style the element that is used for the panel class */

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    opacity: 0;
    margin-bottom:10px;
}

div.panel.show {
    opacity: 1;
    max-height: 2400px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}










/* Mobile First */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

	.Head_Image {
		font-size: 5.8vw;
		height: 260px;
		padding-right: 35%;
	}

}





/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

	.Head_Image {
		font-size: 45px;
		height: 290px;
		padding-right: 35%;
		padding-top: 5%;
	}

}



/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

	.Head_Image {
		font-size: 60px;
		height: 320px;
		padding-top: 4%;
	}

}




/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

	.Head_Image {
		font-size: 70px;
		height: 380px;
		padding-top: 2%;
	}
	
}





/* Extra large devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {

	.Head_Image {
		font-size: 70px;
		height: 440px;
		padding-top: 2%;
	}
	
}

