/* 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 ========================== */
/*removing slick dots bc they don't look nice on mobile*/
div:not([class*="lity"]) .slick-dots {
    display: none !important;
}

/**====================================================*GENERAL CSS*========================================================*/
/*badges on homepage*/
.heading-badge {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.heading-badge .heading {
    margin-bottom: 20px;
}
.heading-badge .badge-img img {
    width: 200px;
}

/*********ICON LINKS*********/
.icon-link-container {
    display: flex;
    align-items: center;
    transition: all 300ms;
    height: 150px;
}
.icon-link-container:hover {
    transform: translateY(-20px);
    border-bottom: 1px solid #00843D;
}
.icon-link-container p.icon-link-icon {
    flex: 2;
	text-align: center;
}
.icon-link-content {
    flex: 4;
    margin-left: 20px;
}

/*===============================*STUCK POPUP BUTTON*===============================*/
#popup {
	background-color: #275D38;
	position: fixed;
	top: 0;
	right: 0;
	color: #fff;
	z-index: 10;
}
#popup a{
	font-weight: 900;
    color: #fff !important;
    padding: 10px 20px;
    width: 100%;
	outline: none;
    text-decoration: none;
	transition: all 300ms;
    height: 100%;
    display: block;
    font-family: 'Rajdhani', sans-serif;
}
#popup a:hover{
	text-decoration: none;
	background-color: #4BA23F;
}
#popup .flipped {
	font-size: 20px;
	margin-left: 20px;
}


/**====================================================*HEADER IMAGE OVERRIDES*========================================================*/
.jumbo-header-override {
	min-height: 250px;
	padding: 0;
}

.jumbo-header-override .jumbo-header-heading {
	position: absolute;
	margin-top: 100px;
}
/*header with apfy assets*/
.apfy-header:before {
	content: "";
    position: absolute;
    background: url(https://www.uvu.edu/online/images/headers/apfy-asset.png) no-repeat;
    background-size: 200px;
    left: 10px;
    top: 5px;
    width: 240px;
    height: 120px;
}

/*GREEN HEADER SECTIONS*/
.full-green-header h2 {
	text-align: center;
	font-size: 36px;
}


/**====================================================*PROGRAM PAGE*========================================================*/
/*LEARNER GUIDE CARD*/
.card-advisor-2 {
    box-shadow: 0px 1px 6px rgb(0 0 0 / 5%);
    position: relative;
    border-radius: 8px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #fff;
}
.card-advisor-2:after {
    content: "";
    bottom: -10px;
    right: -10px;
    width: 300px;
    height: 100px;
    z-index: -1;
    position: absolute;
    background: url(https://www.uvu.edu/online/images/programs/assets/rectangle-stripes.png) no-repeat;
    background-size: 300px;
}
.card-advisor-2-img {
    position: absolute;
    top: -50px;
    left: 0;
}
.card-advisor-2-img img {
    width: 200px;
    position: relative;
    height: 200px;
    border-radius: 50%;
    z-index: 1;
}
.card-advisor-2-img p {
	position: relative;
}
.card-advisor-2-img p:before {
    content: '';
    position: absolute;
    width: 190px;
    height: 190px;
    left: -10px;
    z-index: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: #78BE48;
}
.card-advisor-2-img p:after {
    content: "";
    bottom: -40px;
    left: 10px;
    width: 50px;
    height: 50px;
    position: absolute;
    background: url(https://www.uvu.edu/online/images/programs/assets/teal-ladder.svg) no-repeat;
    background-size: 50px;
}
.card-advisor-2-content {
    padding: 210px 40px 40px 70px;
}
.card-advisor-2-inner-content p {
    margin-bottom: 5px;
}
#request-info h2 strong {
    font-size: 42px;
}

/*program cards*/
.program-card {
    background-color: #fff;
    padding: 0px;
}
.program-card .card-content-content {
    padding: 20px;
}
.program-card .card-content-content a {
    margin-top: 0;
    justify-content: space-between;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 5px;
    position: relative;
    margin-bottom: 5px;
}
.program-card .card-content-photo {
    position: relative;
}
.program-card .card-content-photo:before {
    content: "";
    bottom: -30px;
    z-index: 4;
    left: 50%;
    left: 50%;
    transform: translate(-50%, -0%);
    align-items: center;
    justify-content: center;
    display: flex;
    font-weight: 500;
    height: 60px;
    width: 60px;
    font-size: 25px;
    border-radius: 50%;
    position: absolute;
    color: #fff;
    background-color: #78BE48;
    font-family: "Font Awesome 5 Pro";
}
.program-card.find .card-content-photo::before {
	content: "\f002";
}
.program-card.advance .card-content-photo::before {
	content: "\f085";
}
.program-card.explore .card-content-photo::before {
	content: "\f672";
}
/**====================================================*!END PROGRAM PAGE*========================================================*/

/**====================================================*BADGE SLIDERS*========================================================*/
.marketing-slider {
    display: flex;
	    flex-direction: column-reverse;
    align-items: center;
}
.marketing-slider .marketing-content, .marketing-slider .marketing-content h3 {
    font-size: 30px;
    text-align: center;
}
.marketing-slider .marketing-content img {
    margin: 0 auto;
}

.marketing-slider .marketing-content .bigger-heading {
	font-size: 48px;
}
.marketing-slider .marketing-content .smaller-heading {
	font-size: 36px;
    font-weight: 600;
}

.online-recognition .border-black {
    padding-bottom: 30px;
	margin: 0 auto;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	/*badges on homepage*/
	.heading-badge {
		flex-direction: row;
		justify-content: space-around;
	}
	.heading-badge .heading {
		margin-bottom: 0;
	}
	.heading-badge .badge-img img {
		width: 125px;
	}
	.heading-badge.online-home {
		padding: 15px 0;
	}
	
	
	/*****************************HEADER OVERRIDES***************************/
	.jumbo-header-override {
		min-height: 350px;
	}
	.jumbo-header-override header {
		padding: 0;
	}

	.jumbo-header-override .jumbo-header-heading {
		bottom: -300px;
		margin-top: 0;
		font-size: 40px !important;
	}
	
	/*header with apfy assets*/
	.apfy-header:before {
		background-size: 300px;
		width: 300px;
    	height: 150px;
	}
	.apfy-header:after {
		content: "";
        position: absolute;
        background: url(https://www.uvu.edu/online/images/headers/apfy-polkadots.png) no-repeat;
        background-size: 500px;
        width: 500px;
        height: 470px;
        right: -200px;
        top: -135px;
	}
	
	/*GREEN HEADER SECTIONS*/
	.full-green-header {
		width: 77%;
	}
	.full-green-header h2{
		text-align: left;
	}
	
	/**====================================================*BADGE SLIDERS*========================================================*/
	.marketing-slider {
		justify-content: center;
		flex-direction: row;
	}
	.marketing-slider .marketing-badge {
		margin-right: 60px;
	}
	.online-recognition .border-black {
		width: 70%;
		padding-bottom: 50px;
	} 
	
}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	/*badges on homepage*/
	.heading-badge.online-home {
    	padding: 40px 0px;
	}
	.heading-badge.online-home .badge-img {
		position: absolute;
		right: 100px;
	}
	
	/*****************************HEADER OVERRIDES***************************/
	.jumbo-header-override .jumbo-header-heading {
		padding-right: 50px;
		font-size: 58px !important;
	}
	
	/**====================================================*PROGRAM PAGE*========================================================*/
		/**====================================================*LEARNER GUIDE CSS*========================================================*/
	
	.card-advisor-2 {
		margin-top: 0;
	}
	.card-advisor-2-img {
		top: 15px;
    	left: -10px;
	}
	.card-advisor-2-img img {
		width: 180px !important;
		height: 180px !important;
	}
	.card-advisor-2-img p:before {
		width: 170px;
		height: 170px;
		left: -10px;
		bottom: 0;
	}
	.card-advisor-2-content {
		padding: 50px 0px 50px 230px;
	}
	.card-advisor-2-img p:after {
		bottom: -50px;
		left: -10px;
	}
	
}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	/*badges on homepage*/
	.heading-badge {
        padding: 10px 0 20px;
    }
	.badge-img {
		position: absolute;
		right: 77px;
	}
	.heading-badge .badge-img img {
        width: 150px;
    }
	.heading-badge.online-home .badge-img {
		right: 130px;
	}
	
	/******************************STUCK POPUP BUTTON**********************/
	#popup {	
		transform: rotate(90deg);
        top: 20%;
        right: -70px;
	}
	#popup a {
		font-size: 20px;
        padding: 20px 15px 15px 20px;
	}
	#popup .flipped {
		transform: rotate(-90deg);
		font-size: 24px;
	}
	
	/*****************************HEADER OVERRIDES***************************/
	.jumbo-header-override {
		min-height: 500px;
	}

	.jumbo-header-override .jumbo-header-heading {
		bottom: -450px;
	}
	
	/*header with apfy assets*/
	.apfy-header:before {
		background-size: 400px;
        width: 400px;
        height: 190px;
	}
	.apfy-header:after {
         background-size: 650px;
        width: 650px;
        height: 650px;
        right: -290px;
	}
	
	/*GREEN HEADER SECTIONS*/
	.full-green-header {
		padding-left: 35px;
	}
	
	/*LEARNER GUIDE*/
	.card-advisor-2 {
		margin-left: auto;
		margin-right: 20px;
		width: 80%;
	}
	.card-advisor-2-img {
		left: -70px;
	}
	.card-advisor-2-img img {
		width: 200px !important;
    	height: 200px !important;
	}
	.card-advisor-2-img p:before {
		width: 190px;
		height: 190px;
		left: -20px;
		bottom: -5px;
	}
	.card-advisor-2-content {
		padding: 40px 50px 50px 170px;
	}
	.card-advisor-2-img p:after {
		bottom: -50px;
		left: -20px;
		width: 60px;
		height: 60px;
		background-size: 60px;
	}
	.card-advisor-2:after {
		bottom: -60px;
		right: -20px;
		width: 350px;
		height: 200px;
		background-size: 350px;
	}
	
	/**====================================================*BADGE SLIDERS*========================================================*/
	.online-recognition .border-black {
		width: 60%;
	}

}/*end media query*/
@media only screen and (min-width: 1400px) {
	/*****************************HEADER OVERRIDES***************************/
	.jumbo-header-override {
		min-height: 600px;
	}

	.jumbo-header-override .jumbo-header-heading {
		bottom: -550px;
		font-size: 66px !important;
	}
	
	/*header with apfy assets*/
	.apfy-header:before {
	    background-size: 450px;
        width: 450px;
        height: 216px;
		left: 65px;
        top: 20px;
	}
	.apfy-header:after {
       	background-size: 700px;
        width: 700px;
        height: 695px;
        right: -290px;
        top: -100px;
	}
	
	/*GREEN HEADER SECTIONS*/
	.full-green-header {
		padding-left: 110px;
	}
}/*end media query*/
@media only screen and (min-width: 1500px) {
	/*****************************HEADER OVERRIDES***************************/
	/*GREEN HEADER SECTIONS*/
	.full-green-header {
		padding-left: 181px;
	}
	
}/*end media query*/
@media only screen and (min-width: 1700px) {
	
	/*****************************HEADER OVERRIDES***************************/
	.jumbo-header-override {
		min-height: 700px;
	}

	.jumbo-header-override .jumbo-header-heading {
		bottom: -650px;
	}
	
	/*header with apfy assets*/
	.apfy-header:before {
	    background-size: 500px;
        width: 500px;
        height: 240px;
	}
	.apfy-header:after {
       	background-size: 800px;
        width: 800px;
        height: 785px;
        right: -330px;
        top: -87px;
	}
	
	/*GREEN HEADER SECTIONS*/
	.full-green-header {
		padding-left: 350px;
	}
}
/*END OF DOCUMENT*/
