/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */


.button-division {
  border-radius: 4px;
  background-color: #1e482c;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 20px;
  width: 95%;
	height:60px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
	display: flex;
}

a.button-division {
  /*min-width: 100%;*/
	/*height:100%;*/
	width:100%;
	align-items:center;
	justify-content:center;
}

.button-division span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

/*.button-division span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}*/

.button-division span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button-division:hover span {
  padding-right: 25px;	
  border-radius: 4px;
	color:#fff;
}

.button-division:hover span:after {
  opacity: 1;
  right: 0;
	
}

.bg-image-home{
	background-image:url('/studentaffairs/images/wild_oliva.png');
	background-repeat:repeat;
}

.img-wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
 .img-wrap img{
	opacity: 0.8;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
} 

 .img-wrap a{
	overflow: hidden;
	height: 100%;
	display: block;
	background-color: black;
}  
/* .img-wrap img::before{
	background-color: black;
} */
.img-wrap h2{
	font-size: 2.4em;
	text-shadow: 1px 1px 24px black;
	-webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
	text-align: center;
	width: 85%;
	position: absolute;
	top: 50%;
 	left: 50%;
  	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
}
.img-wrap .img-wrap-p{
	text-shadow: 1px 1px 24px black;
	text-align: center;	
	-webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
	width: 85%;
	color: white;
	font-size: 19px;
	opacity: 0;
	position: absolute;
	top: 50%;
 	left: 50%;
  	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4 {
	color:#434344;
}

#employees .card-staff-5 .card-staff-portrait {
    max-height: unset;
}
/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {


.button-division {
	height:100px;
}	
	
}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {


	
	
}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {

.img-wrap:hover img{
	-ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari */
	transform: scale(1.1);
	opacity: .7;
}

.img-wrap span{
	display: none;
}	
	
.img-wrap:hover .img-wrap-p{
	opacity:1;
}
.img-wrap:hover h2{
	opacity:0;
}
.img-wrap:hover .about{
	opacity: 1;
}	
	
	
}/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/
