body {
	margin: 0;
	font-family: "Montserrat", "Poppins", sans-serif;
	color: #333;
}

a {
	text-decoration: none;
	color: orange;
}

a:hover {
	color: rgb(255,200,0);
}

.logo {
	font-weight: bold;
	position: absolute;
	margin: 20px;
	color: #0077f5;
}

.logo img {
	width: 15px;
    top: 2px;
    position: relative;
    margin-right: 10px;
}

.header {
	width: 100%;
	height: 600px;
	background-image: url('header.jpg');
	background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.headerText {
	text-align: center;
    margin: 20%;
}

.mission {
	width: 70%;
    text-align: center;
    margin: auto;
    padding: 50px;
}

.flexSection {
    display: flex;
    margin: auto;
    width: 90%;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

.flexSection h2 {
	color: orange;
  background: -webkit-linear-gradient(34deg, rgba(255,164,0,1), rgba(255,211,0,1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flexSection img {
	width: 40%;
    height: 100%;
    padding: 5%;
}

.flexSection div {
	width: 40%;
	padding: 5%;
}

.flexSection p {
	font-family: sans-serif;
	font-weight: 100;
}

@media only screen and (max-width: 900px) {
	.flexSection {
	width: 100%;
	}
  .flexSection div {
    position: absolute;
    z-index: 1;
    color: white;
    width: 90%;
    padding: 0;
	} 
	.flexSection h2, .flexSection p {
	padding: 0 20px;
	}
	.flexSection p {
		font-size: 0.75em;
	}
  .flexSection img {
  	z-index: 0;
  	width: 100%;
  	padding: 0;
  	filter: brightness(40%);
  	}
}

.contact {
	text-align: center;
    color: white;
    padding: 30px;

background: rgb(255,164,0);
background: -moz-linear-gradient(34deg, rgba(255,164,0,1) 0%, rgba(255,211,0,1) 100%);
background: -webkit-linear-gradient(34deg, rgba(255,164,0,1) 0%, rgba(255,211,0,1) 100%);
background: linear-gradient(34deg, rgba(255,164,0,1) 0%, rgba(255,211,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffa400",endColorstr="#ffd300",GradientType=1);

}


/* BUTTONS! */

.pure-material-button-contained {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));


background: rgb(255,164,0);
background: -moz-linear-gradient(34deg, rgba(255,164,0,1) 0%, rgba(255,211,0,1) 100%);
background: -webkit-linear-gradient(34deg, rgba(255,164,0,1) 0%, rgba(255,211,0,1) 100%);
background: linear-gradient(34deg, rgba(255,164,0,1) 0%, rgba(255,211,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffa400",endColorstr="#ffd300",GradientType=1);

    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.pure-material-button-contained::-moz-focus-inner {
    border: none;
}

/* Overlay */
.pure-material-button-contained::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transition: opacity 0.2s;
}

/* Ripple */
.pure-material-button-contained::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px; /* Safari */
    height: 32px; /* Safari */
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}

/* Hover, Focus */
.pure-material-button-contained:hover,
.pure-material-button-contained:focus {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.pure-material-button-contained:hover::before {
    opacity: 0.08;
}

.pure-material-button-contained:focus::before {
    opacity: 0.24;
}

.pure-material-button-contained:hover:focus::before {
    opacity: 0.3;
}

/* Active */
.pure-material-button-contained:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.pure-material-button-contained:active::after {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}

/* Disabled */
.pure-material-button-contained:disabled {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
    box-shadow: none;
    cursor: initial;
}

.pure-material-button-contained:disabled::before {
    opacity: 0;
}

.pure-material-button-contained:disabled::after {
    opacity: 0;
}