/* 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 IMAGE-----------------------*/
.bg-advising {
	background-image: url(/concurrent/images/banners/advising-banner.jpg);
	background-position: center;
	min-height: 200px;
	display: block;
}

.page-intro {
	width: 100% !important;
}
.page-intro ol>li:before {
	color: #fff;
}

/**************DROPDOWN****************/
.form-ui select {
    border: 2px solid #275D38;
    padding: 20px;
    font-size: 16px;
    border-radius: 4px;
    color: #275D38;
	width: 100%;
	margin-bottom: 30px;
    margin-top: 20px;
}

/*LEARNER GUIDE CARD*/
.item {
	width: 100%;
}
.card-advisor-2 {
    box-shadow: 0px 1px 6px rgb(0 0 0 / 5%);
    position: relative;
    border-radius: 8px;
    margin-top: 50px;
    margin-bottom: 50px;
	color: #000;
    background-color: #fff;
}
.card-advisor-2:after {
    content: "";
    bottom: -10px;
    right: -10px;
    width: 300px;
    height: 100px;
    z-index: -1;
    position: absolute;
    background: url(/concurrent/images/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(/concurrent/images/assets/teal-ladder.svg) no-repeat;
    background-size: 50px;
}
.card-advisor-2-content {
    padding: 210px 40px 40px 50px;
}
.card-advisor-2-inner-content p {
    margin-bottom: 5px;
}
.card-advisor-2-appointment {
	margin-top: 20px;
}
.card-advisor-2 .button-solid {
    color: #275D38;
    border-radius: 0;
    background-color: #fff;
    font-weight: 600;
    width: 100%;
	display: flex;
	justify-content: space-between;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
/**************DROPDOWN****************/
	.form-ui select {
		font-size: 18px;
		width: unset;
	}
	.card-advisor-2 .button-solid {
		width: 50%;
	}

}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	.card-advisor-2 {
		margin-top: 0;
	}
	.card-advisor-2-img {
		top: 40px;
    	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;
	}
	.card-advisor-2 .button-solid {
		width: 100%;
	}
	
}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
.card-advisor-2 {
		margin-left: auto;
		margin-right: 60px;
		width: 80%;
	}
	.card-advisor-2-img {
		left: -100px;
	}
	.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;
	}
	.card-advisor-2-content {
		display: flex;
		align-items: center;
	}
	
	
}/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/
