/* ====================== Mobile and Up ========================== */
/*hiding footer and nav*/
#globalFooter .footerUniversity-top {
	display: none !important;
}
#deptNav .deptNavWrap {
	display: none;
}

/*--------------------------HEADING STYLES---------------------------------*/
.bold-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 0px;
    letter-spacing: 0px;
}
.shadow-heading {
    text-shadow: 0px 3px 6px #00000029;
}

/*specifying h4 here due to design font size*/
h4.light-green-heading {
    font-size: 22px;
}

.light-heading {
    font-size: 30px;
    color: #000;
    font-weight: 400;
}

/*this needs to go after light-heading to match design, overrides black color on headings*/
.light-green-heading {
    color: #5A9D2C;
    font-size: 34px;
}
.program-name-heading {
    margin-top: 0px;
    text-decoration: underline;
}

/*--------------------------------GENERAL CSS------------------------------------*/
.bg-stripes {
	background-image: url(/_common/marketing/images/bg-lines.svg);
}
p.about-program {
    color: #275d38;
    font-size: 18px;
}

.padding-bottom-100 {
	padding-bottom: 100px;
}
.padding-top-100 {
	padding-top: 100px;
}
.padding-bottom-change {
	padding-bottom: 50px;
}
.padding-top-change {
	padding-top: 50px;
}
.padding-change {
	padding-left: 25px;
}

/*BUTTONS AND LINKS*/
.apply-button {
    margin-top: 60px;
    border-radius: 8px;
    font-size: 34px;
    padding: 15px 20px 15px 40px;
    text-transform: unset;
    font-weight: bold;
}
.apply-button span {
    font-size: 16px;
    margin-left: 40px;
}

/*------------------------------------GRAPHICS STYLING---------------------------------------------------*/
/*program info top section*/
.program-media {
	position: relative;
}
.program-media::before {
    position: absolute;
    background: url(/_common/marketing/images/dark-green-circle.svg) no-repeat;
    background-size: 70%;
    left: -15px;
    top: 130px;
    width: 50%;
    height: 100%;
    z-index: -1;
    content: "";
}
.program-media::after {
	background: url(/_common/marketing/images/x-square.svg) no-repeat;
	background-size: 70%;
    position: absolute;
    right: -80px;
    bottom: 20px;
    width: 50%;
    height: 100%;
    z-index: 1;
    content: "";
}

/*earnings middle section*/
.image-lines {
	position: relative;
	padding-top: 80px;
    text-align: center;
	z-index: 2;
}
.image-lines img {
	width: 80%;
	transform: rotate(-3deg);
    height: 100%;
	border-radius: 5px;
}
.image-lines::before {
	background: url(/testingsite/kim/images/campaign/image-lines-left.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    left: 20px;
    bottom: -10px;
    width: 50%;
    height: 55%;
    z-index: -1;
    content: "";
}
.image-lines::after {
    content: "";
    position: absolute;
    width: 70px;
    bottom: -10px;
    z-index: -1;
    height: 70px;
    background-color: #62A4A7;
    right: 10px;
}

/*---------------------------------------------------APPLY SECTION-------------------------------------------------------*/
.apply-blurb-left .bold-heading {
    font-size: 40px;
}
.apply-blurb-left {
	position: relative;
}
.apply-blurb-left::before {
    position: absolute;
    background: url(/_common/marketing/images/ladder-left.svg) no-repeat;
    background-size: 70px;
    left: 20px;
    top: -50px;
    width: 200px;
    height: 200px;
    content: "";
}
.apply-right {
	position: relative;
}
.apply-right::after {
	background: url(/_common/marketing/images/ladder-right.svg) no-repeat;
    background-size: 70px;
    position: absolute;
    right: -110px;
    bottom: -180px;
    width: 200px;
    height: 200px;
    content: "";
}
.apply-right .apply {
    text-align: center;
}


/*End mobile and up styles*/
/* ====================== 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) {
	.padding-change {
		padding-left: 60px;
	}
	.bold-heading {
    	font-size: 46px;
	}
	
	.light-green-heading {
    	font-size: 35px;
	}
	
	.light-heading {
    	font-size: 35px;
	}
	
	h4.light-green-heading {
    	font-size: 25px;
	}
	
	
}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	.padding-bottom-change {
		padding-bottom: 100px;
	}
	
	.padding-top-change {
		padding-top: 100px;
	}
	
	.light-heading {
		font-size: 40px;
	}

	
	/*--------------------------APPLY SECTION-------------------------*/
	.apply-blurb-left::before {
		left: 10px;
	}
	.apply-blurb-left .bold-heading {
		font-size: 45px;
	}
	.apply-button {
		font-size: 40px;
	}
	.apply-button span {
		font-size: 22px;
	}
	.apply-right .apply {
		text-align: center;
    	padding-right: 80px;
	}
	
	/*--------------------------PROGRAM INFO SECTION-------------------------*/
	.program-media::before {
		background-size: 250px;
		left: -50px;
		top: 200px;
		width: 300px;
		height: 300px;
	}
	.program-media::after {
		background-size: 250px;
		right: -80px;
		bottom: 130px;
		width: 300px;
		height: 300px;
	}
	

	
}