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

.text-valley-rise {
	color: #8edc55;
}
.border-valley-rise {
	border-color: #8edc55;
}

/*CARDS CSS*/
.speaker-card {
    min-height: 300px;
}



/*HEADER CSS*/
header.header-text > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0px;
}
header.header-text img {
	max-height: 200px;
}
header.header-text h1 {
	color: white;
	font-size: 54px;
	font-weight: bold;
	font-family: "Raleway", sans-serif;
}
header.header-text h2 {
	color: white;
    font-size: 42px;
	text-transform: uppercase;
}



/*HOMEPAGE LINKS COLUMN*/
.rectangle-button {
	transition: all 300ms;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    border-radius: 0;
    justify-content: space-between;
	border: 1px solid #8edc55;
}
.rectangle-button:after {
	content: '\f178';
    font-family: "Font Awesome 5 Solid", "Font Awesome 5 Pro";
    margin-inline-start: 4px;
}
.rectangle-button:hover, .rectangle-button:focus, .rectangle-button.active {
	background-color: #8edc55;
	border-color: #275d38;
	color: #000;
}
.rectangle-button:hover:after, .rectangle-button:focus:after, .rectangle-button.active:after {
	color: #000;
}

/*Why it matters/who attend/benefits card*/
.white-card.card-content {
	border: 1px solid #8edc55;
	padding: 20px;
}

/*NEED TO KNOW LIST*/
.fa-ul .fa-li {
    color: #8edc55;
    font-size: 30px;
    left: -1.8em;
    top: -5px;
}

/*------------------------SPEAKERS PAGE-----------------------------*/
.speaker-card .speaker-image{
    max-width: 300px;
}



/*------------------------PROGRAM & SESSIONS PAGE-----------------------------*/

/*SCHEDULE TABLE */
.schedule-table table {
	width: 100%;
}
.schedule-table td {
	padding: 10px !important;
}
.schedule-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, .15);
    overflow: hidden;
}
th.time, th.location, .panel-header th.session {
    padding: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #8edc55;
    display: block;
    width: 100%;
}
.panel-header th.time, .panel-header th.location {
	width: 0%;
	display: none;
}
/*NEW CSS*/
tr.panel-header th {
    font-family: 'Rajdhani', sans-serif;
    padding: 15px 8px !important;
    background-color: #185c33;
    color: #fff;
    border-bottom: 1px solid #8edc55;
}
.schedule-table.table>tbody>tr>td {
	font-size: 16px;
	font-weight: 500;
	text-wrap: wrap;
}


/* SESSION LISTINGS TABLE */
.sessions-table thead > tr {
	border-bottom: 4px solid #8edc55;
}
.sessions-table.table>tbody>tr>td {
	border-top: 3px solid #8edc55;
}
/*For mobile, replace padding and th styling at higher screenwidths, */
.sessions-table.table>thead>tr>th, .sessions-table.table>tbody>tr>td {
	padding: 8px;
}
.sessions-table.table>tbody>tr>td {
	font-size: 14px;
	text-wrap: wrap;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	header.header-text h1 {
		font-size: 72px;
	}
	header.header-text h2 {
   		font-size: 48px;
	}
	.schedule-table tr {
		display: table-row;
        margin-bottom: 0;
        border: 0;
        overflow: visible;
	}
	th.time {
		min-width: 150px;
	}
	th.location {
		min-width: 120px;
	}
	th.time, td.location, td.session, .panel-header th.session, .panel-header th.time, .panel-header th.location {
		display: table-cell;
        width: auto;
		border-bottom: 1px solid rgba(0, 0, 0, .15);
	}

/*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) {
	header.header-text > div {
		flex-direction: row;
		justify-content: space-around;
		gap: 15px;
}
header.header-text img {
	margin-top: 20px;
}
header.header-text h1 {
	font-size: 84px;
}
header.header-text h2 {
    font-size: 54px;
	margin-top: 40px;
}
	
}

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