@charset "UTF-8";
/* CSS Document */

/*color schemes
#009FDD blue
#30A6C4 gradient-1
#41ABAE gradient-2
#52B195 gradient-3
#62B771 green
#4B3521 brown
#FFDE00 yellow
#E8EDF0 light blue
*/


* {
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
	box-sizing: border-box;
	font-size: 1.1rem;
	margin: 0;
	padding: 0;
	text-decoration: none;
	scroll-padding-top: 5rem;
}


/* navigation bar */
#nav-logo {
	display: flex;
	height: 70%;
}

header {
	position: fixed;
	display: flex;
	width: 100%;
	background-color: #E8EDF0;
	height: 3.25rem;
	box-shadow: 0 0.2rem 1rem 0.2rem rgba(0,0,0,0.3);
	justify-content: center;
	top: 0;
	z-index: 2;
}

nav {
	position: fixed;
	display: flex;
	width: 100%;
	max-width: 1300px;
	background-color: #E8EDF0;
	top: 0;
	z-index: 2;
	text-transform: uppercase;
}

#nav-upper-wrapper {
	display: flex;
	align-items: center;
	width: 100%;
	height: 3.25rem;
	margin-left: 2.5rem;
}

#nav-lower-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 1300px;
	height: 3.25rem;
	margin-right: 2.5rem;
}

.nav-menu {
	position: relative;
	display: flex;
	align-items: center;
}

.nav-item {
	list-style: none;	
	white-space: nowrap;
	margin-left: 2rem;
}

.nav-item a {
	color: #009FDD;
	padding: 0.5rem;
	font-weight: 500;
}

.nav-item a:hover {
	color: #FFFFFF;
	background: #009FDD;
	padding: 0.8rem 0.5rem;
	transition: all 0.3s ease-in-out;
}

.nav-dropdown {
	display: none;
	position: absolute;
	background-color:  #FFFFFF;
	border: solid 1px #E8EDF0;
	width: 20rem;
	z-index: 2;
	margin-top: 0.9rem;
}

.nav-dropdown-item {
	display: block;
	list-style: none;
	padding: 0.8rem 0.5rem;
}

.nav-dropdown-item a {
	color: #009FDD;
}

.nav-dropdown-item:hover {
	color: #FFFFFF;
	background: #009FDD;
}

.nav-item:hover .nav-dropdown {
	display: block;
	z-index: 2;
}





@media only screen and (max-width: 870px) {	
	#nav-logo {
		text-align: center;
	}
	
	nav {
		display: block;
		text-align: center;
	}
	
	#nav-upper-wrapper {
		display: blcok;
		text-align: center;
	}
	
	#nav-lower-wrapper {
		display: none;
		width: 100%;
		height: 100vh;
		background-color: #E8EDF0;
		margin: auto;
	}

	#nav-lower-wrapper.active {
		display: block;
	}

	.nav-menu {
		display: block;
	}

	.nav-item {
		margin: 0;
		white-space: normal;
		position: static;
		padding: 0.5rem 0rem;
	}

	.nav-item a {
		padding: 0;
	}

	.nav-item a:hover {
		color: #009FDD;
		background: none;
		padding: 0;
		transition: none;
	}

	.nav-dropdown {
		display: none;
		position: static;
		background-color:  #FFFFFF;
		border: none;
		width: 100%;
		margin-top: 0.4rem;
		padding: 1rem;
		text-align: center;
	}

	.nav-dropdown-item {
		display: block;
		list-style: none;
		padding: 0.3rem 0;
	}
	
	.nav-dropdown-item a {
		color: #30A6C4;
		font-size: 0.9rem;
	}
	
	.nav-dropdown-item a:hover {
		color: #30A6C4;
	}

	.nav-dropdown-item:hover {
		background: none;
	}
	
	.nav-item:hover .nav-dropdown {
		display: none;
	}

	.nav-accordion-item::after {
		position: absolute;
		margin-left: 0.5rem;
		margin-top: 0.25rem;
		content: "▼";
		font-size: 0.7rem;
		color: #009FDD;
		cursor: pointer;
		transition: transform 0.2s ease-in-out;
	}
	
	.nav-accordion-item.active::after {
		transform: rotate(180deg);
	}
	
	.nav-accordion-item.active + .nav-dropdown {
		display: block;
	}

	.nav-toggle {
		display: block;
		position: absolute;
		right: 10%;
	}
	
	.bar {
		display: block;
		width: 25px;
		height: 3px;
		background-color: #009FDD;
		margin: 5px;
		cursor: pointer;
		transition: all 0.3s ease-in-out;
		z-index: 2;
	}

	#nav-icon.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	#nav-icon.active .bar:nth-child(2) {
		opacity: 0;
	}

	#nav-icon.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	
}





/* body */
h1 {
	font-size: 2rem;
	color: #009FDD;
	text-transform: uppercase;
	font-weight: 500;
}

h2 {
	font-size: 1.7rem;
	color: #30A6C4;
	text-transform: uppercase;
	font-weight: 500;
}

.p-with-top-margin {
	margin-top: 0.5rem;
}

.page-heading {
    font-size: 3rem;
    background-color: #009FDD;
    background-image: linear-gradient(to right, #009FDD, #62B771);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-transform: uppercase;
    margin-top: 6rem;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    text-align: center;
	font-weight: 500;
}

.event-title {
	margin-top: 1rem;
}

.event-info {
	text-transform: uppercase;
	font-size: 1.2rem;
	font-weight: 500;
}

.event-text {
	margin-top: 0.5rem;
}

.hyperlink {
	color: #62B771;
	font-weight: 500;
}

@media only screen and (max-width: 800px) {
    h1 {
		font-size: 1.4rem;
	}
	
	h2 {
		font-size: 1.3rem;
	}
}





/* upcoming */
#upcoming-heading-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1300px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

#upcoming-h1 {
	margin-top: 3rem;
	margin-left: 2.5rem;
	margin-right: 2.5rem;
}

#upcoming {
	margin-top: 1rem;
	background-color: #E8EDF0;
	width: 100%;
}

#upcoming-wrapper {
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

#upcoming-grid-wrapper {
	display: grid;
	grid-template-columns: 0.9fr 2fr;
	grid-template-rows: 1fr;
	grid-template-areas:
		"upcoming-box1 upcoming-box2";
	grid-column-gap: 2.5rem; 
	margin-top: 1rem;
	margin-left: 2.5rem;
	margin-right: 2.5rem;
	margin-bottom: 1rem;
	max-width: 1300px;
}

#upcoming-box1 {
	grid-area: upcoming-box1;
	background-color: white;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	max-width: 20rem;
}

#upcoming-box2 {
	grid-area: upcoming-box2;
	margin-bottom: 1.5rem;
}

.event-info {
	margin-top: 1rem;
}


#button-sign-up {
	width: 100%;
	height: 3rem;
	border: none;
	background-image: linear-gradient(to right, #009FDD, #62B771);
	color: white;
	font-size: 1.2rem;
	margin-top: 2rem;
	font-weight: 500;
}

#button-sign-up:hover {
	border: solid;
	border-color: #009FDD;
	background-image: linear-gradient(white, white);
	color: #009FDD;
}

@media only screen and (max-width: 800px){
	#upcoming-grid-wrapper {
		grid-template-columns: 1fr;
		grid-template-rows: 0.5fr 0.4fr;
		grid-template-areas:
			"upcoming-box1"
			"upcoming-box2";
		grid-row-gap: 1rem;
	}

	#upcoming-box1 {
		margin-bottom: 0;
		max-width: 100%;
	}

	#upcoming-box2 {
		margin-bottom: 1.5rem;
	}
}





/* how does it work */
#how-does-it-work {
	display: flex;
	flex-direction: column;
	margin-top: 5rem;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
	width: 100%;
	max-width: 1300px;
	z-index: -1;
}

#how-does-it-work-wrapper {
	margin-left: 2.5rem;
	margin-right: 2.5rem;
}
	
#sessions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	grid-column-gap: 6rem;
	grid-row-gap: 2.5rem;
	margin-top: 2.5rem;
}

.session-img-box {
	text-align: center;
}

.session-img {
	width: 15rem;
	padding-bottom: 0.5rem;
}





/* mentors and discussion topics */
#mentors-and-discussion-topics > h1 {
	margin-left: 2.5rem;
	margin-right: 2.5rem;
}

#mentors-and-discussion-topics {
	margin-top: 5rem;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1300px;
}

#mentors-and-discussion-topics-wrapper {
	display: block;
	margin-top: 2rem;
	margin-left: 2.5rem;
	margin-right: 2.5rem;
}

.mentor-wrapper {
	display: flex;
	margin-bottom: 3rem;
}

.mentor-box1 {
	width: 15rem;
	height: 15rem;
}

.mentor-photo {
	width: 15rem;
	height: 15rem;
	border: solid 1px #E8EDF0;
}

.mentor-name {
	text-transform: uppercase;
	font-size: 1.3rem;
	font-weight: 500;
	margin-top: 0.5rem;
	margin-bottom: 0.2rem;
}

.icon-mentor-link {
	height: 1.2rem;
	filter: invert(68%) sepia(20%) saturate(930%) hue-rotate(79deg) brightness(92%) contrast(83%);
}

.mentor-title {
	text-transform: uppercase;
	font-weight: 500;
}

.mentor-company {
	text-transform: uppercase;
	font-weight: 500;
}

.mentor-box2 {
	margin-left: 2rem;
}

.mentor-bio {
	margin-top: 0.5rem;
}

.mentor-coming-soon {
	display: flex;
	width: 15rem;
	height: 15rem;
	background-color: #E8EDF0;
	color: white;
	font-size: 1.5rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#join-discussion-button-wrapper {
	display: flex;
}

#join-discussion-button {
	width: 100%;
	max-width: 1300px;
	height: 3rem;
	border: none;
	background-image: linear-gradient(to right, #009FDD, #62B771);
	color: white;
	font-size: 1.2rem;
	margin-bottom: 1.2rem;
	margin-left: 2.5rem;
	margin-right: 2.5rem;
	font-weight: 500;
}
	
#join-discussion-button:hover {
	border: solid;
	border-color: #009FDD;
	background-image: linear-gradient(white, white);
	color: #009FDD;
}


@media only screen and (max-width: 800px) {
	.mentor-wrapper {
		display: block;
		margin-bottom: 3rem;
	}
	
	.mentor-box1 {
		width: 100%;
		height: 100%;
	}

	.mentor-photo {
		width: 100%;
		height: 100%;
	}

	.mentor-box2 {
		margin-top: 1rem;
		margin-left: 0;
	}

	.mentor-box2> h2 {
		text-align: center;
	}
	
	.mentor-name {
		font-size: 1rem;
		text-align: center;
		margin-bottom: 0.1rem;
	}

	.icon-mentor-link {
		height: 1rem;
	}

	.mentor-title {
		font-size: 0.9rem;
		text-align: center;
	}

	.mentor-company {
		font-size: 0.9rem;
		text-align: center;
	}
	
	.mentor-bio {
		margin-top: 0.8rem;
		margin-bottom: 4rem;
	}

	.mentor-coming-soon {
		width: 100%;
	}

	#join-discussion-button {
		font-size: 0.8rem;
	}
}






/* past events */
#past-events-heading {
	margin-left: 2.5rem;
	margin-right: 2.5rem;
	margin-bottom: 1.5rem;
}

#past-events {
	width: 100%;
	min-height: 40rem;
	max-width: 1300px;
	margin-top: 5rem;
	margin-left: auto;
	margin-right: auto;
}

#past-events-wrapper {
	margin-left: 2.5rem;
	margin-right: 2.5rem;
}

.past-event {
	display: block;
	width: 20rem;
	border: solid 2px #30A6C4;
}

.past-event-image-wrapper {
	width: 100%;
}

.past-event-content {
	width: 100%;
	background-color: #E8EDF0;
	height: auto;

}

.past-event-title {
	color: white;
	background-color: #30A6C4;
	text-align: center;;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.past-event-info {
	text-transform: uppercase;
	text-align: center;
	line-height: 1.2rem;
	margin-top: 1rem;
	font-weight: 500;
}

.past-event-topic-title {
	margin-top: 1rem;
	margin-left: 1rem;
	margin-right: 1rem;
	text-transform: uppercase;
	text-align: center;
	font-weight: 500;
	color: #41ABAE;
	font-size: 1.2rem;
}

.past-event-list {
	width: 100%;
	list-style: none;
	margin-top: 0.5rem;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 2rem;
	line-height: 1.2rem;
}

.past-event-topic {
	text-align: center;
	margin-left: 1rem;
	margin-right: 1rem;
}

@media only screen and (max-width: 660px) {
	.past-event {
		width: 100%;
	}
}





/* footer */
footer {
	display: flex;
	height: 4rem;
	background-color: #E8EDF0;
	align-items: center;
	margin-top: 10rem;
}

#copyright-box {
	margin-left: 2.5rem;
}

.copyright {
	color: #4B3521;
	text-transform: uppercase;
}

#social-icons-box {
	margin-right: 2.5rem;
	margin-left: auto;
}

.social-icons {
	width: 2rem;
	filter: invert(36%) sepia(82%) saturate(2321%) hue-rotate(171deg) brightness(103%) contrast(103%);
	margin: 0 0.15rem;
}

@media only screen and (max-width: 800px) {
	footer {
		flex-direction: column-reverse;
		height: 6rem;
		justify-items: center;
	}
	
	#copyright-box {
		margin-left: 0;
		margin-right: 0;
		margin-top: 0.4rem;
		margin-bottom: 1rem;
	}
	
	#social-icons-box {
		margin-left: 0;
		margin-right: 0;
	}
}

@media only screen and (max-width: 450px) {
	.copyright {
		font-size: 0.8rem;
	}
}
