/*
|-----------------------------------------------
| @ABOUT PAGE
|----------------------------------------------- */
.about-purpose__row {
	width: 50%;
	margin: auto;
	margin-bottom: 40px;
	text-align: center;
}

.about-purpose__row > * {
	margin-bottom: 10px;
}

.about-business__inner > *:first-child {
	text-align: left;
}

.about-message__inner {
	text-align: left;
}

.about-message__inner > *:first-child {
    width: 28%;
    height: 100%;
    margin-left: 4%;
}

.about-message__inner > *:last-child {
	width: 55%;
	margin-left: 11%;
}

.about-message__img {
	height: 100%;
}

.about-wedo__inner > * {
	margin: auto;
	color: white;
}

/*
|-----------------------------------------------
| @MESSAGE PAGE
|----------------------------------------------- */
/*.message-box-holder {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap; 
	justify-content: space-around;
}*/

.message-box {
	position: relative;
	/*width: 30%;*/
	max-width: 320px;
    height: 550px;
    /*margin-bottom: 15px;*/
	margin: 15px;
	-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;
}

.message-box__img {
	min-width: 300px;
	max-width: 100%;
	height: 380px;
	margin: auto;
	margin-bottom: 10px;
}

.message-box__img > * {
	height: 100%;
}

.message-box__desc {
    position: relative;
    width: 95%;
    height: 100px;
    overflow-y: auto;
    margin: auto;
}

.message-box__desc img {
	width: 100%;
}

.message-box:hover {
	-webkit-box-shadow: 1px 1px 5px 3px #eee;	
			box-shadow: 1px 1px 5px 3px #eee; 
}

.message-btn-holder {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
}

.message-featured__desc.scroll--custom {
	max-height: 50%;
}

.message--1 .message {
    max-height: 500px;
    overflow: auto;
}

.message-btn-holder button {
	margin-bottom: 15px;
}

/*
|-----------------------------------------------
| @VENDORS : REMODAL -- MESSAGE PAGE
|----------------------------------------------- */
.message-modal__inner {
	height: 450px;
}

.message-modal__desc img {
	width: 100%;
}


/*
|-----------------------------------------------
| @OFFICERS PAGE
|----------------------------------------------- */
.officers-dept__inner,
.officers-list__inner {
	padding-top: 50px;	
}

.officers-dept__desc {
	margin-bottom: 20px;
}

.officers-dept__box {
	position: relative;
	/*width: 28%;*/
	width: 320px;
	height: 280px;
	margin: 15px;
	cursor: pointer;
}

.officers-dept__img {
	height: 100%;
}

.officers-dept__overlay {
	position: absolute;
	top: 50%;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		 -o-transform: translateY(-50%);
			transform: translateY(-50%);
}

.officers-dept__box-overlay {
	background: rgba(252, 228, 5, 0.7);
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	height: 100%;
	-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;
}


.officers-dept__box.is-active .officers-dept__overlay,
.officers-dept__box:hover .officers-dept__overlay,
.officers-dept__box.is-active .officers-dept__box-overlay,
.officers-dept__box:hover .officers-dept__box-overlay {
	visibility: visible;
	opacity: 1;
}

.officers-dept__box.is-active .officers-dept__box-overlay {
	box-shadow: 1px 1px 10px rgba(51, 51, 51, 0.73);
}

/*
.officers-dept__box.is-active .officers-dept__img,
.officers-dept__box:hover .officers-dept__img {
	opacity: 0.5;
}*/

.officers-list {
	display: none;
}

.officers-list.is-active {
	display: block;
}

.officer-list__holder {
	margin-top: 20px;
}

.officer {
	/*width: 47%;*/
    width: 550px;
	margin-top: 65px;
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 40px;
}

.officer__col-1 {
	width: 200px;
	margin-top: -50px;
}

.officer__col-2 {
	width: 55%;
	margin-left: -15px;
}

.officer__col-2 > * {
	padding-left: 20px;
	text-align: left;
}

.officer__img {
	/*background: #1f1f1f;*/
	position: relative;
	max-width: 200px;
	height: 200px;
	overflow: hidden;
	-webkit-border-radius: 50%;
			border-radius: 50%;
}

/*.officer__img > * {
	position: absolute;
	top: -9999px;
	left: -9999px;
	right: -9999px;
	bottom: -9999px;
	max-width: 90%;
	max-height: 100%;
	margin: auto;
}
*/
.officer__position {
	background: #fcec01;
	width: 80%;
	padding-top: 10px;
	padding-bottom: 10px;
}

.officer__name {
	background: black;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #fcec01;
}

.officer__info {
	min-height: 135px;
	margin-top: 5px;
}

.officer__info > * {
	margin-bottom: 5px;
}

/*
|-----------------------------------------------
| @GALLERY PAGE
|----------------------------------------------- */

.gallery-photo {
	/*width: 30%;*/
	width: 320px;
	margin: 15px;
	cursor: pointer;
}

.gallery-photo-itself {
	height: 300px;
}

/*
|-----------------------------------------------
| @VENDORS: LIGHTBOX
|----------------------------------------------- */
.lightbox {
	position: fixed;
	top: 50% !important;
    transform: translateY(-50%);
}

/*
|-----------------------------------------------
| @VENDORS: REMODAL
|----------------------------------------------- */
.remodal-close {
	left: auto;
    right: 0;
}

/*
|-----------------------------------------------
| @VENDORS: REMODAL - CONTACT FORM
|----------------------------------------------- */
.contact-modal__row {
	width: 100%;
	margin-bottom: 10px;
}

.contact-modal__row > * {
	width: 90%;
	margin-top: 0px !important;
	padding: 10px;
    font-family: 'Roboto Condensed', sans-serif;
	font-size: 1em;
	resize: none;
}