@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 10px;
	font-family: "Montserrat" , sans-serif;
}

body {
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: #eee;
}

header {
	width: 100%;
	height: 100vh;
	background: linear-gradient(to bottom, rgba(122, 196, 237, 0.6), rgba(122, 196, 237, 0.6)), url("../images/background.jpg") center no-repeat;
	background-size: cover;
}

.container {
	max-width: 120rem;
	width: 90%;
	margin: 0 auto;
}

.menu-toggle{
	position: fixed;
	top: 2.5rem;
	right: 2.5rem;
	color: #eeeeee;
	font-size: 3rem;
	cursor: pointer;
	z-index: 1000;
	display: none;
}

nav {
	padding-top: 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: uppercase;
	font-size: 1.6rem;
}

.brand {
	font-size: 4rem;
	font-weight: 400;
	color: white;
	transform: translateX(-100rem);
	animation: slideIn .5s forwards;
}

.brand span {
	color: crimson;
}

nav ul {
	display: flex;
}

nav ul li {
	list-style: none;
	transform: translateX(100rem);
	animation: slideIn .5s forwards;
}

nav ul li:nth-child(1){
	animation-delay: 0s;
}

nav ul li:nth-child(2){
	animation-delay: .2s;
}

nav ul li:nth-child(3){
	animation-delay: .4s;
}

nav ul li:nth-child(4){
	animation-delay: .6s;
}

nav ul li a {
	padding: 1rem 0;
	margin: 0 3rem;
	position: relative;
	letter-spacing: 2px;
}

nav ul li a:last-child {
	margin-right: 0;
}

nav ul li a::before,
nav ul li a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: crimson;
	left: 0;
	transform: scaleX(0);
	transition: all .5s;
}

nav ul li a::before {
	top: 0;
	transform-origin: left;
}

nav ul li a::after {
	bottom: 0;
	transform-origin: right;
}

nav ul li a:hover::before,
nav ul li a:hover::after {
	transform: scaleX(1);
}

.overlay{
	background-color: rgba(0,0,0,.95);
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	transition: opacity 650ms;
	transform: scale(0);
	opacity: 0;
  	display: none;
}

@keyframes slideIn {
	from {

	}
	to {
		transform: translateX(0);
	}
}

@media screen and (max-width: 700px){

	.menu-toggle{
		display: block;
	}

	nav{
		padding-top: 0;
		display: none;
		flex-direction: column;
		justify-content: space-evenly;
		align-items: center;
		height: 100vh;
		text-align: center;
	}

	nav ul{
		flex-direction: column;
	}

	nav ul li{
		margin-top: 5rem;
	}

	nav ul li a{
		margin: 0;
		font-size: 2.5rem;
	}

	.brand{
		font-size: 5rem;
	}
  
  	.overlay.menu-open,
  	nav.menu-open{
	  display: flex;
	  transform: scale(1);
	  opacity: 1;
  }
  
}

/**End of NavBar Code**/

/**Main Content Code**/

.logo-container {
	text-align: center;
	margin-top: 50px;
}

.logo-container h1 {
	color: white;
	font-size: 4rem;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 1px;
}

.container-2 {
	text-align: center;
	width: 100%;
	min-height: 30vh;
	background-color: #EFEFEF;
	padding-bottom: 50px;
}

.container-3 {
	text-align: center;
	width: 100%;
	min-height: 30vh;
	padding-bottom: 50px;
}

.logo-container h1 {
	font-size: 100px;
	padding-top: 200px;
}

/** Home Page About Section **/
.title {
	font-size: 30px;
	font-family: "Montserrat", sans-serif;
	padding-top: 20px;
	font-weight: 600;
	display: inline-block;
	position: relative;
}

.title::after {
	content: '';
	height: 2px;
	width: 100%;
	background: crimson;
	position: absolute;
	left: 0;
	bottom: 0;
}

.about-section p {
	font-size: 18px;
	margin-top: 20px;
	padding-left: 10%;
	padding-right: 10%;
	text-align: left;
}

.board-members {
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 10%;
	padding-right: 10%;
}

.board-members img {
	width: 200px;
	border-radius: 200px;
	justify-content: space-between;
}

.board-members figcaption {
	font-size: 16px;
	margin-top: 10px;
}

.initiatives {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 20%;
	padding-right: 20%;
}

.initiatives h3 {
	margin-top: 20px;
	font-size: 16px;
}

.icons {
	padding-top: 20px;
}

.icons i {
	background-color: #EFEFEF;
	font-size: 40px;
	padding: 30px;
	border-radius: 200px;
	height: 100px;
	width: 100px;
}

.contact-info {
	margin-top: 20px;
}

.contact-info a {
	color: black;
	font-size: 24px;
	font-weight: 400;
}

.contact-info h4 {
	color: black;
	font-size: 24px;
	font-weight: 400;
}

.careers-form {
	margin-top: 20px;
}

.careers-form input[type=text], input[type=email],input[type=number] {
	padding-right: 450px;
	padding-top: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
	border-radius: 5px;
	margin-bottom: 10px;
}

.careers-form input[type=submit] {
	padding: 15px 40px;
	border-radius: 10px;
	border: none;
	background-color: #5e60cd;
	color: white;
	margin-top: 20px;
}

.careers-form input[type=submit]:hover {
	opacity: 80%;
}

.upload {
	padding: 15px 40px;
	border-radius: 10px;
	border: none;
	background-color: #5e60cd;
	color: white;
	margin-top: 20px;
}

/*-------- Footer CSS --------*/
.footer {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 5%;
    margin-right: 5%;
    bottom: 0;
    font-size: 14px;
}

.footer-text {
    color: #2f8ffd;
    font-size: 14px;
}

.footer-text:hover {
    opacity: 90%;
}

/** CSS Media Query **/
@media screen and (max-width: 768px) {
	.logo-container img {
		width: 200px;
	}
	.logo-container {
		margin-top: 0px;
		padding-top: 80px;
	}
	.initiatives {
		display: block;
	}
	.initiatives h3 {
		margin-bottom: 20px;
		margin-top: 40px;
	}
	.icons:nth-child(1) {
		margin-top: 30px;
	}
	.board-members {
		display: block;
	}
	.board-members figcaption {
		margin-bottom: 20px;
	}
	.logo-container h1 {
		font-size: 50px;
	}
}

/** End of CSS Media Queries **/