  
/* photo box */
.photo-box {
    width: auto;
    max-width: 100%;
    margin: 10px;
    position: relative;
    display: inline-block;
    border: #B9B9B9 1px solid;
    transition: 0.1s ease-in-out;
}

.photo-box:hover,
.photo-box:focus {
	box-shadow: 3px 3px 30px gray;
	transition: 0.1s ease-in-out;
}

.photo-box img {
	margin: 0 !important;
}

.photo-box:hover img,
.photo-box:focus img {
	opacity: 0.8;
}
.right-photo-box {
float: right;
}
@media(max-width: 600px) {
	.right-photo-box {
		float: none;
	}
}
.left-photo-box {
float: left;
}
.center-photo-box {
float: none;
margin: 10px auto;
}

.photo-box .photobox-text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 5px 25px 5px 10px;
    background-image: url('/mba/wp-content/plugins/photobox/arrow.png');
    background-position: right 5px bottom 8px;
    background-size: 22px;
    background-repeat: no-repeat;
    width: 100%;
}

.maroon-photo-box .photobox-text{
background-color: rgba(102, 0, 51, 0.82);
}
.blue-photo-box .photobox-text {
background-color: rgba(83, 129, 172, 0.82);
}
.green-photo-box .photobox-text {
background-color: rgba(133, 124, 24, 0.82);
}
.orange-photo-box .photobox-text {
background-color: rgba(188, 98, 37, 0.82);
}
.gray-photo-box .photobox-text {
background-color: rgba(51, 51, 51, 0.82);
}
.maroon-photo-box:hover .photobox-text,
.orange-photo-box:hover  .photobox-text, 
.green-photo-box:hover .photobox-text,
.blue-photo-box:hover .photobox-text,
.gray-photo-box:hover  .photobox-text, 
.maroon-photo-box:focus .photobox-text,
.orange-photo-box:focus  .photobox-text, 
.green-photo-box:focus .photobox-text,
.blue-photo-box:focus .photobox-text,
.gray-photo-box:focus  .photobox-text {
	background-color: rgba(0, 0, 0, 0.9);
}

.photo-box .photobox-text p {
    margin-bottom: 0px;
    text-transform: uppercase;
    color: white;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.03em;
    font-size: 18px;
    line-height: 23px;
    padding-top: 5px;
    text-shadow: 0px 0px 10px black;
}
