@font-face {
	font-family: GoogleSans;
	src: url('font/GoogleSans-Medium.eot');
	src: url('font/GoogleSans-Medium.eot?#iefix') format('embedded-opentype'), url('font/GoogleSans-Medium.woff2') format('woff2'), url('font/GoogleSans-Medium.woff') format('woff'), url('font/GoogleSans-Medium.ttf') format('truetype'), url('font/GoogleSans-Medium.svg#GoogleSans-Medium') format('svg');
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body, html {
	font-family: GoogleSans;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
}

.hidden {
	display: none;
}

.header {
	width: 100%;
}

.header .navigation-bar {
	position: fixed;
	top: 0;
	z-index: 1;
	display: flex;
	flex-direction: row;
	flex: 1;
	flex-basis: auto;
	justify-content: space-between;
	align-items: center;
	max-width: 90rem;
	width: 100%;
	padding: 1rem 4rem;
	margin: 0 auto;
	transition: all 0.3s ease-in-out;
}

.navbar-visible {
	background: white !important;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2) !important;
	transition: all 0.3s ease-in-out !important;
}

.menu-item-a-visible {
	color: black !important;
}

.menu-item-a-active {
	color: #2861c7 !important;
}

.header .navigation-bar .brand img {
	width: 100%;
	max-width: 150px;
	height: auto;
}

.header .navigation-bar .menu {
	display: flex;
	flex-direction: row;
	flex: 1;
	flex-basis: auto;
	justify-content: center;
	align-items: center;
}

.header .navigation-bar .menu-item:not(:first-child) {
	margin-left: 2rem;
}

.header .navigation-bar .menu-item a {
	font-size: 1rem;
	font-weight: 700;
	line-height: inherit;
	color: #FFFFFF;
	transition: all 0.3s ease-in-out;
}

.menu-item a:hover {
	color: #2861c7 !important;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 768px) {
	.header .navigation-bar {
		padding: 1rem 2rem;
		margin: 0 auto;
		position: absolute;
	}

	.header .navigation-bar .wrapper {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		opacity: 0;
		background: #f1f5f8;
		transition: all 0.3s ease;
		visibility: hidden;
	}

	.header .navigation-bar .wrapper .menu {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 25%;
		width: 100%;
		transform: translateY(-50%);
	}

	.header .navigation-bar .wrapper .menu-item {
		padding-bottom: 1rem;
		width: 100%;
		text-align: left;
	}

	.header .navigation-bar .wrapper .menu-item:nth-child(1) a {
		transition-delay: 0.2s;
	}

	.header .navigation-bar .wrapper .menu-item:nth-child(2) a {
		transition-delay: 0.3s;
	}

	.header .navigation-bar .wrapper .menu-item:nth-child(3) a {
		transition-delay: 0.4s;
	}

	.header .navigation-bar .wrapper .menu-item:nth-child(4) a {
		transition-delay: 0.5s;
	}

	.header .navigation-bar .wrapper .menu-item:not(:first-child) {
		margin-left: 0;
	}

	.header .navigation-bar .wrapper .menu-item a {
		padding: 1rem 2rem;
		opacity: 0;
		color: #252a32;
		font-size: 1rem;
		font-weight: 600;
		transform: translateX(-20px);
		transition: all 0.3s ease-in-out;
	}

	.header .navigation-bar .nav-toggle {
		display: block;
		position: fixed;
		right: 1rem;
		top: 1rem;
		width: 2.5rem;
		height: 2.5rem;
		cursor: pointer;
		z-index: 999;
	}

	.header .navigation-bar .nav-toggle:hover {
		background: transparent;
	}

	.header .navigation-bar .nav-toggle .nav-top {
		display: block;
		width: 20px;
		height: 2px;
		background: white;
		border-radius: 2px;
		margin-left: 14px;
		margin-top: 16px;
		transition: transform 0.5s ease !important;
	}

	.header .navigation-bar .nav-toggle .nav-middle {
		display: block;
		width: 20px;
		height: 2px;
		background: white;
		border-radius: 2px;
		margin-left: 14px;
		margin-top: 4px;
		opacity: 1;
		transition: transform 0.5s ease !important;
	}

	.header .navigation-bar .nav-toggle .nav-bottom {
		display: block;
		width: 20px;
		height: 2px;
		background: white;
		border-radius: 2px;
		margin-left: 14px;
		margin-top: 4px;
		transition: transform 0.5s ease !important;
	}

	.span-visible {
		background: black !important;
	}
}

.nav-toggle-clicked {
	transform: rotate(45deg) !important;
}

.nav-top-clicked {
	background: black !important;
	transition: transform 0.5s ease !important;
	transform: translateY(6px) rotate(180deg) !important;
}

.nav-middle-clicked {
	background: black !important;
	transition: transform 0.5s ease !important;
	opacity: 0 !important;
}

.nav-bottom-clicked {
	background: black !important;
	transition: transform 0.5s ease !important;
	transform: translateY(-6px) rotate(90deg) !important;
}

.wrapper-clicked {
	z-index: 99 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.menu-item-clicked {
	opacity: 1 !important;
	transform: translateX(0) !important;
}

.landing {
	height: 100vh;
	width: 100vw;
	position: relative;
}

.landing .background {
	width: 100%;
	height: 100%;
	position: absolute;
	background: linear-gradient(-45deg, #2C5192, #DAB22E, #2C5192, #2BA147, #DAB22E, #2BA147);
	background-size: 400% 400%;
	animation: animate 20s ease infinite;
    padding: 0px !important;
    margin: 0px !important;
}

@keyframes animate {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.landing .caption {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	flex: 1;
	flex-basis: auto;
	justify-content: space-between;
	align-items: center;
	max-width: 50%;
	width: 100%;
	padding: 1rem 4rem;
	margin: 0 auto;
}

.title {
	color: #FFFFFF;
	font-size: 5vw;
	font-weight: bold;
	padding: 0px;
	margin: 0px;
}

.description {
    color: #FFFFFF;
    padding: 0px;
	margin-bottom: 50px;
	font-size: 20px;
}

@keyframes caret {
  50% {
    border-color: transparent;
  }
}

@media only screen and (max-width: 999px) {
    .landing .caption {
        max-width: 80% !important;
    }
    
    .title {
        font-size: 9vw !important;
    }
}

@media only screen and (max-width: 768px) {
    .landing .caption {
        max-width: 100% !important;
    }
    
    .caption {
        padding: 1rem 2rem !important;
    }
}

.contact {
    margin-top: 100px;
    margin-bottom: 100px;
    padding-right: 200px;
    padding-left: 200px;
}

.input-field input:focus + label {
    color: #2C5192 !important;
}

.input-field textarea:focus + label {
    color: #2C5192 !important;
}

.input-field input:focus, .input-field textarea:focus  {
    border-bottom: 1px solid #2C5192 !important;
    box-shadow: 0 1px 0 0 #2C5192 !important;
}

.materialize-textarea {
    height: 200px !important;
}

.submit {
    background-color: #2C5192;
    border: none;
    color: white;
    padding: 16px !important;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 25px;
    border-radius: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.submit:hover {
    transform: scale(1.2);
}

.submit:focus, .submit:active {     
    background-color: #2C5192 !important;    
}

.submit p, .submit span {
    display: inline-block;
    margin: 0px !important;
    padding: 0px !important;
}

.submit p {
    font-weight: bold;
    margin-right: 10px !important;
    font-size: 12px;
}

.submit span {
    font-size: 20px;
}

@media only screen and (max-width: 999px) {
    .contact {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    
    .materialize-textarea {
        padding-bottom: 40px !important;
    }
}

@media only screen and (max-width: 768px) {
    .contact {
        margin-top: 50px;
    }
}

.footer {
    width: 100vw;
    height: 70vh;
    object-fit: cover;
	z-index: 0;
	background: #2C5192;
	background-image: radial-gradient(#ADACAC 1px, transparent 0);
	background-size: 25px 25px;
	background-position: 10px 10px;
    padding: 0px !important;
    margin: 0px !important;
}

.reach-out {
    width: 100%;
    height: 60vh;
    position: relative;
}

.details {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 50px;
    margin-right: 50px;
}

.details h2 {
    font-size: 2.5vw;
    font-weight: bold;
    color: white;
    margin-bottom: 30px !important;
}

.detail {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.next {
    margin-top: 15px;
}

.icon {
    font-size: 20px;
    color: white;
}

.text {
    font-size: 16px;
    color: white;
    display: block;
    margin-left: 16px;
    transition: all 0.3s ease-in-out;
}

.text a {
    font-size: 16px;
    color: white;
    transition: all 0.3s ease-in-out;
}

.text a:hover {
    color: #2BA147;
}

.credits {
    width: 100%;
    height: 10vh;
    position: relative;
}

.credits div {
    width: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
	flex-direction: row;
	flex: 1;
	flex-basis: auto;
	justify-content: space-between;
	align-items: center;
}

.developer {
    color: white;
    margin-left: 50px;
}

.developer a {
    color: white;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid white;
}

.developer a:hover {
    color: #2BA147;
    border-bottom: 2px solid #2BA147;
}

.copyright {
    color: white;
    margin-right: 50px;
}

@media only screen and (max-width: 999px) {
    .footer {
        height: 40vh !important;
    }
    
    .reach-out {
        height: 30vh !important;
    }
    
    .details h2 {
        font-size: 4vw !important;
        margin-bottom: 15px !important;
        margin-top: 15px;
    }
    
    .credits {
        height: 10vh !important;
    }
}

@media only screen and (max-width: 768px) {
    .details h2 {
        font-size: 5vw !important;
        margin-bottom: 15px !important;
        margin-top: 15px;
    }
    
    .text, .developer, .copyright {
        font-size: 14px !important;
    }
}