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

.background-vineyard { /* Adds Background Image */
	background-image: url('/vineyard-campus/images/header-img.png');
	width: auto;
    height: 281px;
	background-size: cover;
}

.second-image { /* Positions Arrows */
	position: relative;
    top: 82px;
}

.second-text { /* Positions Text Under Arrows */
	position: relative;
    top: 96px;
}

.header-text { /* Removes Distance between both texts */
	margin-bottom: 1px;
}

.header-text-1 { /* Removes Distance between both texts */
	margin-top: 1px;
}

.bg-history { /* Background Color */
	background-color: #ecf0ed;
}

.button-master { /* Master Plan Section Button */
	position: relative;
	background-color: #275d38;
	border-radius: 8px;
	color: #fff;
	display: inline-block;
    padding: 15px 20px;
	font-weight: 600;
	width: 38%;
}

.button-master:after { /* Master Plan Section Button */
    content: "\f061";
    display: inline;
    font-family: "Font Awesome 5 Pro";
    float: right;
}

.button-master:hover { /* Master Plan Section Button */
	background-color: white;
    border: 1px solid #275D38;
}

.button-master:focus { /* Master Plan Section Button */
	background-color: white;
	border: 1px solid #275d38;
}

.bg-recent { /* Background Color */
	background-color: #f9f9f9;
}

.vineyard-title { /* Changes Font Size */
	font-size: 39px;
}

/*End mobile and up styles*/
/* ====================== Smartphone ========================== */
@media only screen and (max-width: 767px) {
	.second-image {
		top: 1px;
	}
	
	.second-text {
		top: 1px;
	}
	
}

/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
	
}

/*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) {
	.position-image-1 {
        top: 10px;
        left: 550px;
        width: 562px;
        height: 304px;
        opacity: 1;
        position: absolute;
        z-index: 1;
    }
	
	    .position-image-2 {
        top: 246px;
        left: 10px;
        width: 648px;
        height: 352px;
        opacity: 1;
        position: absolute;
        z-index: 0;
    }
	
	.position-text-1 {
		top: 57px;
		left: 619px;
		width: 524px;
		height: 304px;
	}
	
}

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