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

/**====================================================*STUDENT RESOURCES PAGE*========================================================*/
/********NAVIGATION*********/
ul.student-resources-nav {
    list-style-type: none;
    padding: 0;
}
ul.student-resources-nav li {
    margin: 0;
}
.student-resources-nav a {
    color: #000;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
	transition: all 300ms;
    text-decoration: none;
    letter-spacing: 1.5px;
    position: relative;
    width: 80%;
    margin: 0 auto;
	margin-bottom: 30px;
}
.student-resources-nav a:hover {
    transform: translateY(-20px);
}
.student-resources-nav a img {
    padding-bottom: 15px;
}
.student-resources-nav .nav-info {
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}
/*wilson link*/
.wilson-link a {
    color: #fff;
    padding: 10px;
    margin-bottom: 0;
    background-color: #275d38;
}

/**RESOURCE SECTION SIDE NAV**/
.student-resource-tabs {
    padding-left: 0;
    list-style-type: none;
}
.student-resource-tabs li {
    padding-bottom: 10px;
    border-bottom: 1px solid #275d38;
}
.student-resource-tabs .anchorTab {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
	font-weight: 500;
    display: block;
    width: 100%;
    height: 100%;
    color: #275d38;
	position: relative;
	outline: none;
    text-decoration: none;
}
.student-resource-tabs .anchorTab:hover, .student-resource-tabs .anchorTab.active {
	color: #4ba23f;
}
.student-resource-tabs .anchorTab:after {
    display: flex;
    justify-content: center;
    align-items: center;
    content: "\f063";
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    font-size: 100%;
	font-weight: bold;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: auto;
    width: 50px;
    color: inherit;
}
/*BUTTONS IN RESOURCE SECTIONS*/
.sr-button {
    border-radius: 0;
    font-family: "Lato", arial, sans-serif;
    text-transform: capitalize;
    padding: 10px;
    position: relative !important;
    width: 100%;
    letter-spacing: 0.5px;
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
}
.sr-button:after {
    display: flex;
    justify-content: center;
    align-items: center;
    content: "\f061";
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    font-size: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: auto;
    width: 50px;
    color: #fff;
}
.sr-button:hover:after {
	color: #000;
}

/*hidden image*/
.tab-img, .tab-box-icon {
    display: none;
}

/**====================================================*!END STUDENT RESOURCES PAGE*========================================================*/

/**====================================================*STUDENT SUCCESS PAGE*========================================================*/
/*CARDS WITH ICONS AND BUTTONS ON CONNECT SECTION*/
.transform-grid-cell {
	padding-bottom: 40px;
}
.card-content.card-content-custom {
    background-color: #f9f9f9;
    border-radius: 8px;
	box-shadow: 0px 3px 6px #00000029;
}

.card-content-icon-container {
    border-radius: 50%;
	background-color: #78BE48;
    width: 70px;
    height: 70px;
    display: flex;
    position: absolute;
    top: -23px;
    left: 0;
    right: 0;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.card-content-content {
    margin-top: 30px;
}
.card-content-content .card-content-heading {
    font-weight: bold;
	text-align: center;
}

/**====================================================*!END STUDENT SUCCESS PAGE*========================================================*/

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
	/**====================================================*STUDENT RESOURCES PAGE*========================================================*/
	/********NAVIGATION*********/
	ul.student-resources-nav {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	.student-resources-nav .wilson-link {
		grid-column: 1 / 4;
	}
	.wilson-link a {
		width: 100%;
	}
	/*BUTTONS IN RESOURCE SECTIONS*/
	.sr-button {
		width: 70%;
	}
	
	.student-resource-tabs .anchorTab:after {
		content: "\f061";
	}
	/*hidden image*/
	.tab-img, .tab-box-icon {
		display: block;
		position: relative;
	}
	.tab-img:after {
		content: "";
        background: url(/online/images/assets/x-rectangle.png) no-repeat;
        position: absolute;
        background-size: 230px;
        width: 230px;
        right: -20px;
        bottom: 0px;
        height: 40px;
	}
	
	/**====================================================*STUDENT SUCCESS PAGE*========================================================*/
	.transform-grid-cell {
		padding: 20px;
		padding-bottom: 30px;
	}
	.card-content-icon-container {
		top: -13px;
	}
	
}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	
	/**====================================================*STUDENT RESOURCES PAGE*========================================================*/
	/*BUTTONS IN RESOURCE SECTIONS*/
	.sr-button {
		width: 50%;
	}
	
	/*hidden image*/
	.tab-img:after {
		background-size: 300px;
        width: 300px;
        bottom: 5px;
        height: 50px;
	}
	
	
}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	/**====================================================*STUDENT RESOURCES PAGE*========================================================*/
	/*hidden image*/
	.tab-img:after {
        background-size: 350px;
        width: 350px;
        height: 60px;
	}
	
}
/*END OF DOCUMENT*/
