/* 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 ========================== */

.hero-colored { /* Reservation under Header Section */
	background-color: #f9f9f9;
}

.button-border { /* Under Header Section Button */
    border: 3px solid #285e39;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 18px;
}

.button:after { /* Hero Button Calendar Icon */
    content: "\f133";
    display: inline;
    font-family: "Font Awesome 5 Pro";
    float: right;
	padding-left: 3rem;
}

.hero-reservations,
.hours-image > div > div { /* Hours and Black Box, Under Header Text and Button */
	display: flex;
    justify-content: space-between;
}

.hero-reservations > *,
.hours-image > div > div > * { /* Hours and Black Box, Under Header Text and Button */
    width: 49%;
}

.hours-image > div > div > div:nth-of-type(1) { /* Hours and Black Box */
	padding: 0;
}

.hours-image > div > div > img { /* Hours and Black Box */
	height: 100%;
	object-fit: cover;
}

.underline-mission { /* Underline */
	border-bottom: 1px solid #00843D;
}

.mission-title::before { /* Mission Section Arrow */
	content: "\f04b";
	vertical-align: middle;
	font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
	font-weight: 300;
    font-size: 1rem;
    padding-right: 0.5rem;
    color: #00843D;
}

.mission-text { /* Alings Paragraphs with Title  */
	padding-left: 1.5rem;
}

.second-text {
	align-content: center;
}

.mission-image { /* Moves Image to the Center */
	align-content: center;
}

.card-staff-admin-nameplate {
    padding: 25px 20px 40px;
}

.card-staff-admin-info {
	font-weight: bold;
}

/* Tour Page */
.photo-info {
	position: relative;
}

.photo-info > p:nth-of-type(2) {
	position: absolute;
	bottom: 0;
	left: 10px;
	color: #fff;
}

img.gallery-two-pics {
    aspect-ratio: 1200 / 657;
    object-fit: cover;
}

/* Price Page */
.table-header {
	color: white;
    background-color: #275d38;
    font-weight: bold;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (max-width: 768px) {
	.hero-reservations, .hours-image > div > div {
		flex-direction: column;
		gap: 4px;
	}
	.hero-reservations > *, .hours-image > div > div > * {
    width: 90%;
    margin: auto;
}
	.card-staff-admin {
		min-height: 590px;
	}
}


@media only screen and (min-width: 768px) {
	.jumbo header h1 {
		font-size: 80px;
	}	
	.card-staff-admin {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 529px;
        text-align: center;
    }
	.card-staff-img-container {
        max-height: 525px !important;
        width: 100%;
    }
	.card-staff-img-container img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
	.card-staff-img-container img {
    max-width: 475px;
    max-height: 625px;
}
}

/*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) {
	
	
}

/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/