* {
  box-sizing: border-box;
}

::selection { background: #df0f7a; color: #ffffff; }
::-moz-selection { background: #df0f7a; color: #ffffff; }

body {
	background: #edd6e2;
	font: 1.1rem 'Source Sans Pro', sans-serif;
	color: #070707;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'PT Mono', monospace;
	text-align: left;
}

.meetings {
	font-family: 'PT Mono', monospace;
	font-size: 5px;
	text-align: center;
	position: absolute;
	right: 5px;
}

.bold_pink {
	color:#df0f7a;
}

a {
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
}

.navbar {
	background: #ffffff;
	width: 100%;
	padding: 20px;
	position: fixed;
	z-index: 99999999;
	border-bottom: 2px solid #df0f7a;
	font: 1.05rem 'PT Mono', monospace;
}

	.navbar ul {
		text-transform: uppercase;
	}

	.navbar .nav-item {
		padding: 0px 20px;
		text-align: center;
	}
	
	.navbar .nav-item a {
		background: transparent;
		color: #070707;
		border-radius: 5px;
	}
	
		.navbar .nav-item a:hover {
			background: #df0f7a;
			color: #ffffff;
		}

	.navbar .brand {
		font-size: 2rem;
		font-weight: 600;
	}
	
	.navbar .navbar-toggler {
		background: transparent;
		border-radius: 0px;
		border: none;
		color: #070707;
	}
	
/*INDIVIDUAL PAGES*/
	
#home{
	background: transparent;
	width: 100%;
	min-height: 100vh;
	position: relative;
}

.page {
	background: transparent;
	width: 100%;
	min-height: 50vh;
	position: relative;
	margin-bottom: 75px;
	text-align: justify;
}

.page a[href] {
	color: #df0f7a;
	text-decoration: underline;
}

	.page a[href]:hover {
		opacity: 0.5;
		text-decoration: none;
	}

/*HOME PAGE*/

#home .bgPanel {
	background: #ffffff;
	width: 100%;
	height: 50%;
	margin: 0;
	position: absolute;
	z-index: -1;
	bottom: 0;
}

#home #dashboard {
	width: 80%;
	height: 100vh;
	margin: 0 auto;
}

	.logo img {
		width: 100%;
	}

#home .info {
	width: auto;
}

	.info .socials {
		width: auto;
		height: auto;
		margin-bottom: 10px;
		overflow: auto;
	}
		
	.icon {
		background: #df0f7a;
		width: 50px;
		height: 50px;
		margin: 10px;
		border-radius: 100%;
		float: left;
		padding: 12px 10px;
		font-size: 20pt;
		color: #ffffff;
		text-align: center;
		box-shadow: 2px 2px #ffffff;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
	}
	
		.icon:hover {
			background: #e656ac;
		}
	
	.schedule {
		background: #ffffff;
		border-radius: 35px;
	}
	
	.schedule h3 {
		text-align: center;
	}
	
	.schedule button {
		background: #df0f7a;
		border: none;
		border-radius: 5px;
		font-size: 15pt;
		color: #ffffff;
		padding: 4px 8px;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
	}
	
		.schedule button:hover {
			background: #070707;
		}
	
.title {
	padding: 100px 0px 50px 50px;
	font: 3rem 'PT Mono', monospace;
	position: relative;
	text-align: left;
}

	.title span {
		color: #ffffff;
	}

h2 { /*subtitle*/
	background: #ffffff;
	padding: 10px 20px;
	border-radius: 5px;
	border-bottom: 2px solid #df0f7a;
}
	
.headerIcon {
	color: #df0f7a;
}

.carousel {
	margin-top: 50px;
}

	.carousel img {
		width: 100%;
		max-height: 240px;
		object-fit: cover;
	}
	
	ol.carousel-indicators {
		margin-top: 10px;
		position: relative;
	}
	
	ol.carousel-indicators li, ol.carousel-indicators li.active {
		background: transparent;
		width: 20px;
		height: 20px;
		margin: 3px 5px 0px 5px;
		float: left;
		border-radius: 100%;
		opacity: 1;
		border: 2px solid #ffffff;
	}

	ol.carousel-indicators li.active {
		background: #df0f7a;
		border: 2px solid #df0f7a;
	}
	
.board {
	max-width: 200px;
	border-radius: 100%;
	border: 5px solid #ffffff;
}

.name {
	margin-top: 5px;
	font: 1.5rem 'PT Mono', monospace;
}

.position {
	margin-bottom: 30px;
	font-size: 1rem;
	color: #df0f7a;
}

footer {
	background: #ffffff;
	bottom: 0;
	padding: 50px 10px;
	position: relative;
	border-top: 2px solid #df0f7a;
}

input {
	border-radius: 5px;
	border: 1px solid lightgray;
}

form .sub {
	background: #df0f7a;
	color: #ffffff;
	padding: 7px 14px;
	border-radius: 5px;
	border: none;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.sub:hover {
	background: #df0f7a;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}